From dea0ed56fcfc4fa0bd0ebaa58dfd047c5af856d2 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 02:17:54 -0700 Subject: [PATCH 01/34] Fix atree validator sometimes giving the wrong reason accidentally used reasons from previous iteration --- js/atree.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/atree.js b/js/atree.js index 0a6151c..1ab5e4c 100644 --- a/js/atree.js +++ b/js/atree.js @@ -416,6 +416,7 @@ const atree_validate = new (class extends ComputeNode { reachable.add(ability.id); } if (atree_to_add.length == _add.length) { + atree_to_add = _add; break; } atree_to_add = _add; From 75f4fc684bb24c168eb656a02b6a49bee09ccaa9 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 12:06:34 -0700 Subject: [PATCH 02/34] Add debug flag to fix compute graph memory leak mfw no destructor hook --- builder/doc.html | 1 + js/computation_graph.js | 11 ++++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/builder/doc.html b/builder/doc.html index 9b735e8..0a52469 100644 --- a/builder/doc.html +++ b/builder/doc.html @@ -1376,6 +1376,7 @@ + diff --git a/js/computation_graph.js b/js/computation_graph.js index 0dcc8d8..d144e29 100644 --- a/js/computation_graph.js +++ b/js/computation_graph.js @@ -1,5 +1,6 @@ -let all_nodes = []; +let all_nodes = new Set(); let node_debug_stack = []; +let COMPUTE_GRAPH_DEBUG = false; class ComputeNode { /** * Make a generic compute node. @@ -21,7 +22,7 @@ class ComputeNode { // 0: clean this.inputs_dirty = new Map(); this.inputs_dirty_count = 0; - all_nodes.push(this); + if (COMPUTE_GRAPH_DEBUG) { all_nodes.add(this); } } /** @@ -34,7 +35,7 @@ class ComputeNode { if (this.dirty === 0) { return; } - node_debug_stack.push(this.name); + if (COMPUTE_GRAPH_DEBUG) { node_debug_stack.push(this.name); } if (this.dirty == 2) { let calc_inputs = new Map(); for (const input of this.inputs) { @@ -46,7 +47,7 @@ class ComputeNode { for (const child of this.children) { child.mark_input_clean(this.name, this.value); } - node_debug_stack.pop(); + if (COMPUTE_GRAPH_DEBUG) { node_debug_stack.pop(); } return this; } @@ -190,7 +191,7 @@ function calcSchedule(node, timeout) { } node.mark_dirty(); node.update_task = setTimeout(function() { - node_debug_stack = []; + if (COMPUTE_GRAPH_DEBUG) { node_debug_stack = []; } node.update(); node.update_task = null; }, timeout); From dc26e10fc64f13d90e30a6f7397f9eb73339da59 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Wed, 20 Jul 2022 22:09:04 -0500 Subject: [PATCH 03/34] atree inconsistencies 2 (mightve messed up a bit) --- js/atree_constants.js | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 09d8c8a..e103afb 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -7956,8 +7956,8 @@ const atrees = { "Purification" ], "_parents": [ - "Purification", - "Fortitude" + "Fortitude", + "Purification" ], "dependencies": [], "blockers": [], @@ -8973,7 +8973,7 @@ const atrees = { "display_name": "Arcane Overflow", "desc": "Arcane Transfer will allow you to overflow your mana over its maximum limits.", "archetype": "Arcanist", - "archetype_req": 11, + "archetype_req": 12, "base_abil": "Arcane Transfer", "parents": [ "Larger Mana Bank III" @@ -9950,7 +9950,14 @@ const atrees = { "properties": { "clone": 3 }, - "effects": [] + "effects": [ + + { + "type": "raw_stat", + "toggle": "Activate Clones", + "bonuses": [{ "type": "stat", "name": "defMult.Clone", "value": 70}] + } + ] }, { "display_name": "Lacerate", @@ -10557,7 +10564,7 @@ const atrees = { "effects": [ { "type": "raw_stat", - "toggle": "Activate Echo", + "toggle": "Activate Clones", "bonuses": [ { "type": "stat", @@ -11162,7 +11169,7 @@ const atrees = { "effects": [ { "type": "raw_stat", - "toggle": "Activate Echo", + "toggle": "Activate Clones", "bonuses": [ { "type": "stat", From ecd1ad84b524a4b7e0dc76d9c2d909c7d0639836 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Wed, 20 Jul 2022 22:09:36 -0500 Subject: [PATCH 04/34] same as last idk why it didnt commit --- js/atree_constants_min.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index daaacfd..8180676 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"_parents":["Purification","Fortitude"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"_parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"_parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":11,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown)","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Echo","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"ws","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Echo","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"_parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"_parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"_parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":70}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown)","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"ws","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From 4aee8f2d31f6f799d2b3990de018c0a764430ed5 Mon Sep 17 00:00:00 2001 From: fin444 Date: Thu, 21 Jul 2022 11:26:46 -0700 Subject: [PATCH 05/34] dependencies in atree tooltips --- js/atree.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/js/atree.js b/js/atree.js index 623aa29..1e9bd6b 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1143,6 +1143,7 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { let apUsed = 0; let maxAP = parseInt(document.getElementById("active_AP_cap").innerHTML); let archChosen = 0; + let satisfiedDependencies = []; let blockedBy = []; for (let [id, node_wrap] of atree_map.entries()) { if (!node_wrap.active || id == ability.id) { @@ -1152,6 +1153,9 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { if (node_wrap.ability.archetype == ability.archetype) { archChosen++; } + if (ability.dependencies.includes(id)) { + satisfiedDependencies.push(id); + } if (ability.blockers.includes(id)) { blockedBy.push(node_wrap.ability.display_name); } @@ -1182,6 +1186,19 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { container.appendChild(archReq); } + // dependencies + console.log(satisfiedDependencies) + for (let i = 0; i < ability.dependencies.length; i++) { + let dependency = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); + if (satisfiedDependencies.includes(ability.dependencies[i])) { + dependency.innerHTML = reqYes; + } else { + dependency.innerHTML = reqNo; + } + dependency.innerHTML += " Required Ability: " + atree_map.get(ability.dependencies[i]).ability.display_name; + container.appendChild(dependency); + } + // blockers for (let i = 0; i < blockedBy.length; i++) { let blocker = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); From 7d5741f88396422f6046dbf97083f04e52df83f0 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Thu, 21 Jul 2022 15:41:42 -0500 Subject: [PATCH 06/34] atree inconsistencies 2 pt 2 --- js/atree_constants_min.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 7f7bd06..1e195b3 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"_parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"_parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"_parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":70}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"ws","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"_parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"_parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"_parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":70}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From ce645a3db22ac92aaaf03f3c0ee712bb9f86d7d7 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Thu, 21 Jul 2022 15:42:23 -0500 Subject: [PATCH 07/34] same thing as prev --- js/atree_constants.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index b5848b4..47fdfc8 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -1473,7 +1473,7 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "parents": [ - "Cheaper Escape", + "Cheaper Dash", "Thunder Mastery", "Fire Mastery" ], @@ -10669,7 +10669,7 @@ const atrees = { "effects": [ { "type": "add_spell_prop", - "base_spell": 0, + "base_spell": 3, "target_part": "Total Damage", "hits": { "Per Hit": 3 @@ -10701,7 +10701,7 @@ const atrees = { "bonuses": [ { "type": "stat", - "name": "ws", + "name": "spd", "value": 20 }, { @@ -10907,7 +10907,7 @@ const atrees = { ], "dependencies": [], "blockers": [], - "cost": 1, + "cost": 2, "display": { "row": 33, "col": 6, From 73877290eeaa8e4e7b8343c88634302bfc7b02e2 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Thu, 21 Jul 2022 15:44:43 -0500 Subject: [PATCH 08/34] fixed the damage reduction for clones --- js/atree_constants.js | 2 +- js/atree_constants_min.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 47fdfc8..7e2c591 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -9955,7 +9955,7 @@ const atrees = { { "type": "raw_stat", "toggle": "Activate Clones", - "bonuses": [{ "type": "stat", "name": "defMult.Clone", "value": 70}] + "bonuses": [{ "type": "stat", "name": "defMult.Clone", "value": 80}] } ] }, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 1e195b3..df1e8ae 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"_parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"_parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"_parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":70}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"_parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"_parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"_parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From aba4d85b1e4e2d5c71223c0337e7393cb8c7580b Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Thu, 21 Jul 2022 15:47:15 -0500 Subject: [PATCH 09/34] got rid of all the random _s in the parents xd --- js/atree_constants.js | 6 +++--- js/atree_constants_min.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 7e2c591..5ab53a3 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -7955,7 +7955,7 @@ const atrees = { "parents": [ "Purification" ], - "_parents": [ + "parents": [ "Fortitude", "Purification" ], @@ -8716,7 +8716,7 @@ const atrees = { "parents": [ "Cheaper Meteor II" ], - "_parents": [ + "parents": [ "Explosive Entrance", "Cheaper Meteor II" ], @@ -8792,7 +8792,7 @@ const atrees = { "parents": [ "Time Dilation" ], - "_parents": [ + "parents": [ "Time Dilation", "Dynamic Faith" ], diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index df1e8ae..f4f4be9 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"_parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"_parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"_parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From 868e56b0ea6c89b7f53cb0f31493e628f851c373 Mon Sep 17 00:00:00 2001 From: fin444 Date: Thu, 21 Jul 2022 17:17:33 -0700 Subject: [PATCH 10/34] remove print statement --- js/atree.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/atree.js b/js/atree.js index 1e9bd6b..2b38f27 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1187,7 +1187,6 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { } // dependencies - console.log(satisfiedDependencies) for (let i = 0; i < ability.dependencies.length; i++) { let dependency = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); if (satisfiedDependencies.includes(ability.dependencies[i])) { From 8e0cf18056d317c357f841f9394c843f5e79d2c9 Mon Sep 17 00:00:00 2001 From: hppeng Date: Thu, 21 Jul 2022 21:49:10 -0700 Subject: [PATCH 11/34] HOTFIX: remove duplicate parent, cheaper dash --- js/atree_constants.js | 12 ++---------- js/atree_constants_min.js | 2 +- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 5ab53a3..9bbdb4b 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -1473,7 +1473,7 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "parents": [ - "Cheaper Dash", + "Cheaper Escape", "Thunder Mastery", "Fire Mastery" ], @@ -7952,9 +7952,6 @@ const atrees = { "display_name": "Cheaper Teleport II", "desc": "Reduce the Mana cost of Teleport.", "base_abil": "Teleport", - "parents": [ - "Purification" - ], "parents": [ "Fortitude", "Purification" @@ -8713,9 +8710,6 @@ const atrees = { "archetype": "Light Bender", "archetype_req": 0, "base_abil": "Ophanim", - "parents": [ - "Cheaper Meteor II" - ], "parents": [ "Explosive Entrance", "Cheaper Meteor II" @@ -8789,9 +8783,6 @@ const atrees = { "base_abil": "Windsweeper", "archetype": "Riftwalker", "archetype_req": 0, - "parents": [ - "Time Dilation" - ], "parents": [ "Time Dilation", "Dynamic Faith" @@ -9641,6 +9632,7 @@ const atrees = { "archetype_req": 0, "base_abil": 998, "parents": [ + "Cheaper Dash", "Multihit", "Air Mastery" ], diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index f4f4be9..d35a75a 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[24],"parents":["Fortitude","Purification"],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[49],"parents":["Explosive Entrance","Cheaper Meteor II"],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54],"parents":["Time Dilation","Dynamic Faith"],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[9,14,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From 36d263a7bfc8423c14a0addc5f8ae9d0145fc42e Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Thu, 21 Jul 2022 23:58:32 -0500 Subject: [PATCH 12/34] patch 9 and random bug fixes --- js/atree_constants.js | 41 +++++++++++++++++++++++++-------------- js/atree_constants_min.js | 2 +- 2 files changed, 27 insertions(+), 16 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 9bbdb4b..82e625f 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -1473,7 +1473,7 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "parents": [ - "Cheaper Escape", + "Cheaper Dash", "Thunder Mastery", "Fire Mastery" ], @@ -2050,6 +2050,7 @@ const atrees = { "display_name": "Homing Shots", "desc": "Your Main Attack arrows will follow nearby enemies and not be affected by gravity", "archetype": "Sharpshooter", + "archetype_req": 2, "base_abil": 999, "parents": [ "Leap", @@ -3829,7 +3830,7 @@ const atrees = { { "display_name": "Ragnarokkr", - "desc": "War Scream become deafening, increasing its range and giving damage bonus to players", + "desc": "War Scream become deafening, increasing its duration and giving damage bonus to players", "archetype": "Fallen", "archetype_req": 0, "base_abil": "War Scream", @@ -3843,7 +3844,7 @@ const atrees = { "icon": "node_2" }, "properties": { - "aoe": 2 + "duration": 90 }, "effects": [ { @@ -7952,6 +7953,9 @@ const atrees = { "display_name": "Cheaper Teleport II", "desc": "Reduce the Mana cost of Teleport.", "base_abil": "Teleport", + "parents": [ + "Purification" + ], "parents": [ "Fortitude", "Purification" @@ -8710,6 +8714,9 @@ const atrees = { "archetype": "Light Bender", "archetype_req": 0, "base_abil": "Ophanim", + "parents": [ + "Cheaper Meteor II" + ], "parents": [ "Explosive Entrance", "Cheaper Meteor II" @@ -8783,6 +8790,9 @@ const atrees = { "base_abil": "Windsweeper", "archetype": "Riftwalker", "archetype_req": 0, + "parents": [ + "Time Dilation" + ], "parents": [ "Time Dilation", "Dynamic Faith" @@ -9208,7 +9218,7 @@ const atrees = { }, { "display_name": "Double Spin", - "desc": "Spin Attack will activate twice.", + "desc": "Spin Attack will activate a second time with a larger area of effect.", "archetype": "", "archetype_req": 0, "base_abil": "Spin Attack", @@ -9632,7 +9642,6 @@ const atrees = { "archetype_req": 0, "base_abil": 998, "parents": [ - "Cheaper Dash", "Multihit", "Air Mastery" ], @@ -9724,7 +9733,8 @@ const atrees = { "Multihit" ], "blockers": [ - "Stronger Multihit" + "Stronger Multihit", + "Fatality" ], "cost": 2, "display": { @@ -9771,7 +9781,7 @@ const atrees = { "dependencies": [ "Multihit" ], - "blockers": [], + "blockers": ["Backstab"], "cost": 2, "display": { "row": 15, @@ -9805,7 +9815,7 @@ const atrees = { }, { "display_name": "Vanish", - "desc": "Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)", + "desc": "Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)", "archetype": "", "archetype_req": 0, "base_abil": "Dash", @@ -9824,7 +9834,8 @@ const atrees = { "icon": "node_2" }, "properties": { - "duration": 5 + "duration": 5, + "cooldown": 5 }, "effects": [] }, @@ -9953,7 +9964,7 @@ const atrees = { }, { "display_name": "Lacerate", - "desc": "Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward", + "desc": "Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.", "archetype": "Acrobat", "archetype_req": 2, "base_abil": "Spin Attack", @@ -9982,7 +9993,7 @@ const atrees = { "name": "Per Hit", "type": "damage", "multipliers": [ - 40, + 50, 0, 0, 10, @@ -10910,7 +10921,7 @@ const atrees = { }, { "display_name": "Wall Jump", - "desc": "When you Hop into a wall, bounce backward. (Hold shift to cancel)", + "desc": "Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)", "archetype": "Acrobat", "archetype_req": 5, "parents": [ @@ -10997,7 +11008,7 @@ const atrees = { "Violent Vortex" ], "blockers": [], - "cost": 2, + "cost": 1, "display": { "row": 35, "col": 0, @@ -11189,7 +11200,7 @@ const atrees = { }, { "display_name": "Satsujin", - "desc": "If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)", + "desc": "If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)", "archetype": "Shadestepper", "archetype_req": 12, "parents": [ @@ -11244,7 +11255,7 @@ const atrees = { "display_name": "Diversion", "desc": "Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.", "archetype": "Trickster", - "archetype_req": 12, + "archetype_req": 11, "base_abil": "Smoke Bomb", "parents": [ "Forbidden Art" diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index d35a75a..07182e8 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From 8d394b30c3d41844b0d177cbff6d609790bc7fa6 Mon Sep 17 00:00:00 2001 From: hppeng Date: Thu, 21 Jul 2022 22:06:14 -0700 Subject: [PATCH 13/34] Undo undoing patch changes --- js/atree_constants.js | 12 ++---------- js/atree_constants_min.js | 2 +- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 82e625f..d4b3e9c 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -1473,7 +1473,7 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "parents": [ - "Cheaper Dash", + "Cheaper Escape", "Thunder Mastery", "Fire Mastery" ], @@ -7953,9 +7953,6 @@ const atrees = { "display_name": "Cheaper Teleport II", "desc": "Reduce the Mana cost of Teleport.", "base_abil": "Teleport", - "parents": [ - "Purification" - ], "parents": [ "Fortitude", "Purification" @@ -8714,9 +8711,6 @@ const atrees = { "archetype": "Light Bender", "archetype_req": 0, "base_abil": "Ophanim", - "parents": [ - "Cheaper Meteor II" - ], "parents": [ "Explosive Entrance", "Cheaper Meteor II" @@ -8790,9 +8784,6 @@ const atrees = { "base_abil": "Windsweeper", "archetype": "Riftwalker", "archetype_req": 0, - "parents": [ - "Time Dilation" - ], "parents": [ "Time Dilation", "Dynamic Faith" @@ -9642,6 +9633,7 @@ const atrees = { "archetype_req": 0, "base_abil": 998, "parents": [ + "Cheaper Dash", "Multihit", "Air Mastery" ], diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 07182e8..6e6a81f 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its range and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate twice.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (10s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[40,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":2,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next hit will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":12,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"duration":90},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From b74f654e7ce7d5d7c158a1cd826b284469c68563 Mon Sep 17 00:00:00 2001 From: hppeng Date: Thu, 21 Jul 2022 22:24:09 -0700 Subject: [PATCH 14/34] Deleted duplicate mage atree??? wtf --- js/atree_constants.js | 2103 ------------------------------------- js/atree_constants_min.js | 2 +- 2 files changed, 1 insertion(+), 2104 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index d4b3e9c..b46b403 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -4669,2032 +4669,6 @@ const atrees = { "aoe": 12 }, "effects": [] - } - ], - "Mage": [ - { - "display_name": "Meteor", - "desc": "Summon a slow but powerful meteor from the sky, dealing massive damage in a large area", - "parents": [], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 0, - "col": 4, - "icon": "node_mage" - }, - "properties": { - "aoe": 5, - "range": 18 - }, - "effects": [{ - "type": "replace_spell", - "name": "Meteor", - "cost": 55, - "base_spell": 3, - "display": "Total Damage", - "parts": [ - { - "name": "Meteor Damage", - "multipliers": [300, 100, 0, 0, 0, 0] - }, - { - "name": "Total Damage", - "hits": { "Meteor Damage": 1 } - } - ] - }] - }, - { - "display_name": "Teleport", - "desc": "Instantly teleport in the direction you're facing", - "parents": ["Shooting Star"], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 6, - "col": 4, - "icon": "node_mage" - }, - "properties": { - "range": 12 - }, - "effects": [{ - "type": "replace_spell", - "name": "Teleport", - "cost": 25, - "base_spell": 2, - "display": "", - "parts": [] - }] - }, - { - "display_name": "Heal", - "desc": "Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)", - "parents": ["Wand Proficiency II", "Cheaper Teleport"], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { "row": 8, "col": 2, "icon": "node_mage"}, - "properties": { "aoe": 5 }, - "effects": [ - { - "type": "replace_spell", - "name": "Heal", - "cost": 35, - "base_spell": 1, - "display": "Heal", - "parts": [ - { - "name": "Heal", - "power": 0.1 - } - ] - } - ] - }, - { - "display_name": "Ice Snake", - "desc": "Summon a fast-moving ice snake that reduces your enemies' speed and damage them.", - "parents": ["Wisdom", "Cheaper Teleport"], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 10, - "col": 0, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "eDamPct", - "value": 20 - }, - { - "type": "stat", - "name": "eDamAddMin", - "value": 2 - }, - { - "type": "stat", - "name": "eDamAddMax", - "value": 4 - } - ] - } - ] - }, - { - "display_name": "Thunder Mastery", - "base_abil": 998, - "desc": "Increases base damage from all Thunder attacks", - "archetype": "Fallen", - "archetype_req": 0, - "parents": [ - "Uppercut", - "Air Mastery", - "Cheaper Charge" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 10, - "col": 2, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "tDamPct", - "value": 10 - }, - { - "type": "stat", - "name": "tDamAddMin", - "value": 1 - }, - { - "type": "stat", - "name": "tDamAddMax", - "value": 8 - } - ] - } - ] - }, - { - "display_name": "Water Mastery", - "base_abil": 998, - "desc": "Increases base damage from all Water attacks", - "archetype": "Battle Monk", - "archetype_req": 0, - "parents": [ - "Cheaper Charge", - "Thunder Mastery", - "Air Mastery" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 11, - "col": 4, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "wDamPct", - "value": 15 - }, - { - "type": "stat", - "name": "wDamAddMin", - "value": 2 - }, - { - "type": "stat", - "name": "wDamAddMax", - "value": 4 - } - ] - } - ] - }, - { - "display_name": "Air Mastery", - "base_abil": 998, - "desc": "Increases base damage from all Air attacks", - "archetype": "Battle Monk", - "archetype_req": 0, - "parents": [ - "War Scream", - "Thunder Mastery", - "Cheaper Charge" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 10, - "col": 6, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "aDamPct", - "value": 15 - }, - { - "type": "stat", - "name": "aDamAddMin", - "value": 3 - }, - { - "type": "stat", - "name": "aDamAddMax", - "value": 4 - } - ] - } - ] - }, - { - "display_name": "Fire Mastery", - "base_abil": 998, - "desc": "Increases base damage from all Fire attacks", - "archetype": "Paladin", - "archetype_req": 0, - "parents": [ - "War Scream" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 10, - "col": 8, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "fDamPct", - "value": 15 - }, - { - "type": "stat", - "name": "fDamAddMin", - "value": 3 - }, - { - "type": "stat", - "name": "fDamAddMax", - "value": 5 - } - ] - } - ] - }, - { - "display_name": "Quadruple Bash", - "desc": "Bash will hit 4 times at an even larger range", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "Bash", - "parents": [ - "Earth Mastery", - "Fireworks" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 12, - "col": 0, - "icon": "node_1" - }, - "properties": { - "range": 6 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Total Damage", - "hits": { - "Single Hit": 2 - } - }, - { - "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Single Hit", - "multipliers": [ - -20, - 0, - 0, - 0, - 0, - 0 - ] - } - ] - }, - { - "display_name": "Fireworks", - "desc": "Mobs hit by Uppercut will explode mid-air and receive additional damage", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "Uppercut", - "parents": [ - "Thunder Mastery", - "Quadruple Bash" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 12, - "col": 2, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Fireworks", - "multipliers": [ - 80, - 0, - 20, - 0, - 0, - 0 - ] - }, - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Total Damage", - "hits": { - "Fireworks": 1 - } - } - ] - }, - { - "display_name": "Half-Moon Swipe", - "desc": "Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water", - "archetype": "Battle Monk", - "archetype_req": 1, - "base_abil": "Uppercut", - "parents": [ - "Water Mastery" - ], - "dependencies": [ - "Uppercut" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 13, - "col": 4, - "icon": "node_1" - }, - "properties": { - "range": 4 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Uppercut", - "cost": -10, - "multipliers": [ - -70, - 0, - 0, - 30, - 0, - 0 - ] - } - ] - }, - { - "display_name": "Flyby Jab", - "desc": "Damage enemies in your way when using Charge", - "base_abil": "Charge", - "parents": [ - "Air Mastery", - "Flaming Uppercut" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 12, - "col": 6, - "icon": "node_1" - }, - "properties": { - "aoe": 2 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 2, - "target_part": "Flyby Jab", - "multipliers": [ - 20, - 0, - 0, - 0, - 0, - 40 - ] - }, - { - "type": "add_spell_prop", - "base_spell": 2, - "target_part": "Contact Damage", - "display": "Contact Damage", - "hits": { - "Flyby Jab": 1 - } - } - ] - }, - { - "display_name": "Flaming Uppercut", - "desc": "Uppercut will light mobs on fire, dealing damage every 0.6 seconds", - "archetype": "Paladin", - "archetype_req": 0, - "base_abil": "Uppercut", - "parents": [ - "Fire Mastery", - "Flyby Jab" - ], - "dependencies": [ - "Uppercut" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 12, - "col": 8, - "icon": "node_1" - }, - "properties": { - "duration": 3, - "tick": 0.6 - }, - "effects": [ - { - "type": "replace_spell", - "name": "Flaming Uppercut", - "base_spell": 8, - "display": "DPS", - "parts": [ - { - "name": "Damage Tick", - "multipliers": [ - 0, - 0, - 0, - 0, - 50, - 0 - ] - }, - { - "name": "DPS", - "hits": { - "Damage Tick": 1.6666666666666667 - } - }, - { - "name": "Total Damage", - "hits": { - "Damage Tick": 5 - } - } - ] - } - ] - }, - { - "display_name": "Iron Lungs", - "desc": "War Scream deals more damage", - "archetype": "Paladin", - "archetype_req": 0, - "base_abil": "War Scream", - "parents": [ - "Flyby Jab", - "Flaming Uppercut" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 13, - "col": 7, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "War Scream", - "cost": 0, - "multipliers": [ - 30, - 0, - 0, - 0, - 0, - 30 - ] - } - ] - }, - { - "display_name": "Generalist", - "desc": "After casting 3 different spells in a row, your next spell will cost 5 mana", - "archetype": "Battle Monk", - "archetype_req": 3, - "parents": [ - "Counter" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 15, - "col": 2, - "icon": "node_3" - }, - "properties": {}, - "effects": [] - }, - { - "display_name": "Counter", - "desc": "When dodging a nearby enemy attack, get 30% chance to instantly attack back", - "archetype": "Battle Monk", - "archetype_req": 0, - "parents": [ - "Half-Moon Swipe" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 15, - "col": 4, - "icon": "node_1" - }, - "properties": { - "chance": 30 - }, - "effects": [ - { - "type": "replace_spell", - "name": "Counter", - "base_spell": 5, - "display": "Counter Damage", - "parts": [ - { - "name": "Counter Damage", - "multipliers": [ - 60, - 0, - 20, - 0, - 0, - 20 - ] - } - ] - } - ] - }, - { - "display_name": "Mantle of the Bovemists", - "desc": "When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)", - "archetype": "Paladin", - "archetype_req": 3, - "parents": [ - "Iron Lungs" - ], - "dependencies": [ - "War Scream" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 15, - "col": 7, - "icon": "node_3" - }, - "properties": { - "mantle_charge": 3 - }, - "effects": [ - { - "type": "raw_stat", - "toggle": "Activate Mantle", - "bonuses": [ - { - "type": "stat", - "name": "defMult.Mantle", - "value": 70 - } - ] - } - ] - }, - { - "display_name": "Bak'al's Grasp", - "desc": "After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)", - "archetype": "Fallen", - "archetype_req": 2, - "parents": [ - "Quadruple Bash", - "Fireworks" - ], - "dependencies": [ - "War Scream" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 16, - "col": 1, - "icon": "node_3" - }, - "properties": { - "cooldown": 15 - }, - "effects": [ - { - "type": "stat_scaling", - "slider": true, - "slider_name": "Corrupted", - "slider_max": 100, - "slider_step": 1, - "output": { - "type": "stat", - "name": "damRaw" - }, - "max": 120, - "scaling": [ - 2 - ] - } - ] - }, - { - "display_name": "Spear Proficiency 2", - "desc": "Improve your Main Attack's damage and range w/ spear", - "base_abil": 999, - "parents": [ - "Bak'al's Grasp", - "Cheaper Uppercut" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 17, - "col": 0, - "icon": "node_0" - }, - "properties": { - "melee_range": 1 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 0, - "target_part": "melee", - "multipliers": [ - 5, - 0, - 0, - 0, - 0, - 0 - ] - } - ] - }, - { - "display_name": "Cheaper Uppercut", - "desc": "Reduce the Mana Cost of Uppercut", - "base_abil": "Uppercut", - "parents": [ - "Spear Proficiency 2", - "Aerodynamics", - "Counter" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 17, - "col": 3, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 3, - "cost": -5 - } - ] - }, - { - "display_name": "Aerodynamics", - "desc": "During Charge, you can steer and change direction", - "archetype": "Battle Monk", - "archetype_req": 0, - "base_abil": "Charge", - "parents": [ - "Cheaper Uppercut", - "Provoke" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 17, - "col": 5, - "icon": "node_1" - }, - "properties": {}, - "effects": [] - }, - { - "display_name": "Provoke", - "desc": "Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream", - "base_abil": "War Scream", - "parents": [ - "Aerodynamics", - "Mantle of the Bovemists" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 17, - "col": 7, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 4, - "cost": -5 - } - ] - }, - { - "display_name": "Precise Strikes", - "desc": "+30% Critical Hit Damage", - "parents": [ - "Cheaper Uppercut", - "Spear Proficiency 2" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 18, - "col": 2, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "critDamPct", - "value": 30 - } - ] - } - ] - }, - { - "display_name": "Air Shout", - "desc": "War Scream will fire a projectile that can go through walls and deal damage multiple times", - "base_abil": "War Scream", - "parents": [ - "Aerodynamics", - "Provoke" - ], - "dependencies": [ - "War Scream" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 18, - "col": 6, - "icon": "node_1" - }, - "properties": { - "attackRate": 2 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "Air Shout", - "multipliers": [ - 40, - 0, - 0, - 0, - 0, - 10 - ] - } - ] - }, - { - "display_name": "Enraged Blow", - "desc": "While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "Bak'al's Grasp", - "parents": [ - "Spear Proficiency 2" - ], - "dependencies": [ - "Bak'al's Grasp" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 20, - "col": 0, - "icon": "node_2" - }, - "properties": {}, - "effects": [ - { - "type": "stat_scaling", - "slider_name": "Corrupted", - "slider": true, - "output": { - "type": "stat", - "name": "damMult.Enraged" - }, - "scaling": [ - 3 - ] - } - ] - }, - { - "display_name": "Flying Kick", - "desc": "When using Charge, mobs hit will halt your momentum and get knocked back", - "archetype": "Battle Monk", - "archetype_req": 1, - "base_abil": "Charge", - "parents": [ - "Cheaper Uppercut", - "Stronger Mantle" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 20, - "col": 3, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 2, - "target_part": "Flying Kick", - "multipliers": [ - 150, - 0, - 0, - 20, - 0, - 30 - ] - }, - { - "type": "add_spell_prop", - "base_spell": 2, - "target_part": "Flying Kick Max Damage", - "hits": { - "Flying Kick": 1 - }, - "display": "Flying Kick Max Damage" - } - ] - }, - { - "display_name": "Stronger Mantle", - "desc": "Add +2 additional charges to Mantle of the Bovemists", - "archetype": "Paladin", - "archetype_req": 0, - "base_abil": "Mantle of the Bovemists", - "parents": [ - "Manachism", - "Flying Kick" - ], - "dependencies": [ - "Mantle of the Bovemists" - ], - "blockers": [], - "cost": 1, - "display": { - "row": 20, - "col": 6, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "prop", - "abil": "Mantle of the Bovemists", - "name": "mantle_charge", - "value": 2 - } - ] - } - ] - }, - { - "display_name": "Manachism", - "desc": "If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)", - "archetype": "Paladin", - "archetype_req": 3, - "parents": [ - "Stronger Mantle", - "Provoke" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 20, - "col": 8, - "icon": "node_2" - }, - "properties": { - "cooldown": 1 - }, - "effects": [] - }, - { - "display_name": "Boiling Blood", - "desc": "Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds", - "base_abil": "Bash", - "parents": [ - "Enraged Blow", - "Ragnarokkr" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 22, - "col": 0, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Boiling Blood", - "cost": 0, - "multipliers": [ - 25, - 0, - 0, - 0, - 5, - 0 - ] - } - ] - }, - { - "display_name": "Ragnarokkr", - "desc": "War Scream become deafening, increasing its range and giving damage bonus to players", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "War Scream", - "parents": [ - "Boiling Blood", - "Flying Kick" - ], - "dependencies": [ - "War Scream" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 22, - "col": 2, - "icon": "node_2" - }, - "properties": { - "aoe": 2 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 4, - "cost": 10 - } - ] - }, - { - "display_name": "Ambidextrous", - "desc": "Increase your chance to attack with Counter by +30%", - "base_abil": "Counter", - "parents": [ - "Flying Kick", - "Stronger Mantle", - "Burning Heart" - ], - "dependencies": [ - "Counter" - ], - "blockers": [], - "cost": 1, - "display": { - "row": 22, - "col": 4, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "prop", - "abil": "Counter", - "name": "chance", - "value": 30 - } - ] - } - ] - }, - { - "display_name": "Burning Heart", - "desc": "For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)", - "archetype": "Paladin", - "archetype_req": 0, - "parents": [ - "Ambidextrous", - "Stronger Bash" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 22, - "col": 6, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "stat_scaling", - "slider": false, - "inputs": [ - { - "type": "stat", - "name": "hpBonus" - } - ], - "output": { - "type": "stat", - "name": "fDamPct" - }, - "scaling": [ - 0.02 - ], - "max": 100 - } - ] - }, - { - "display_name": "Stronger Bash", - "desc": "Increase the damage of Bash", - "base_abil": "Bash", - "parents": [ - "Burning Heart", - "Manachism" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 22, - "col": 8, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Single Hit", - "multipliers": [ - 30, - 0, - 0, - 0, - 0, - 0 - ] - } - ] - }, - { - "display_name": "Intoxicating Blood", - "desc": "After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted", - "archetype": "Fallen", - "archetype_req": 5, - "base_abil": "Bak'al's Grasp", - "parents": [ - "Ragnarokkr", - "Boiling Blood" - ], - "dependencies": [ - "Bak'al's Grasp" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 23, - "col": 1, - "icon": "node_1" - }, - "properties": {}, - "effects": [] - }, - { - "display_name": "Comet", - "desc": "After being hit by Fireworks, enemies will crash into the ground and receive more damage", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "Uppercut", - "parents": [ - "Ragnarokkr" - ], - "dependencies": [ - "Fireworks" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 24, - "col": 2, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Comet", - "cost": 0, - "multipliers": [ - 80, - 20, - 0, - 0, - 0, - 0 - ] - }, - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Total Damage", - "cost": 0, - "hits": { - "Comet": 1 - } - } - ] - }, - { - "display_name": "Collide", - "desc": "Mobs thrown into walls from Flying Kick will explode and receive additonal damage", - "archetype": "Battle Monk", - "archetype_req": 4, - "base_abil": "Charge", - "parents": [ - "Ambidextrous", - "Burning Heart" - ], - "dependencies": [ - "Flying Kick" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 23, - "col": 5, - "icon": "node_1" - }, - "properties": { - "aoe": 4 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 2, - "target_part": "Collide", - "cost": 0, - "multipliers": [ - 150, - 0, - 0, - 0, - 50, - 0 - ] - }, - { - "type": "add_spell_prop", - "base_spell": 2, - "target_part": "Flying Kick Max Damage", - "hits": { - "Collide": 1 - } - } - ] - }, - { - "display_name": "Rejuvenating Skin", - "desc": "Regain back 30% of the damage you take as healing over 30s", - "archetype": "Paladin", - "archetype_req": 5, - "parents": [ - "Burning Heart", - "Stronger Bash" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 23, - "col": 7, - "icon": "node_3" - }, - "properties": {}, - "effects": [] - }, - { - "display_name": "Uncontainable Corruption", - "desc": "Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1", - "base_abil": "Bak'al's Grasp", - "parents": [ - "Boiling Blood", - "Radiant Devotee" - ], - "dependencies": [ - "Bak'al's Grasp" - ], - "blockers": [], - "cost": 1, - "display": { - "row": 26, - "col": 0, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "stat_scaling", - "slider": true, - "slider_name": "Corrupted", - "output": { - "type": "stat", - "name": "damRaw" - }, - "scaling": [ - 0.5 - ] - }, - { - "type": "raw_stat", - "bonuses": [ - { - "type": "prop", - "abil": "Bak'al's Grasp", - "name": "cooldown", - "value": -5 - } - ] - } - ] - }, - { - "display_name": "Radiant Devotee", - "desc": "For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)", - "archetype": "Battle Monk", - "archetype_req": 1, - "parents": [ - "Whirlwind Strike", - "Uncontainable Corruption" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 26, - "col": 2, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "stat_scaling", - "inputs": [ - { - "type": "stat", - "name": "ref" - } - ], - "output": { - "type": "stat", - "name": "mr" - }, - "scaling": [ - 0.25 - ], - "max": 10 - } - ] - }, - { - "display_name": "Whirlwind Strike", - "desc": "Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)", - "archetype": "Battle Monk", - "archetype_req": 5, - "base_abil": "Uppercut", - "parents": [ - "Ambidextrous", - "Radiant Devotee" - ], - "dependencies": [ - "Uppercut" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 26, - "col": 4, - "icon": "node_1" - }, - "properties": { - "range": 2 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Uppercut", - "multipliers": [ - 0, - 0, - 0, - 0, - 0, - 50 - ] - } - ] - }, - { - "display_name": "Mythril Skin", - "desc": "Gain +5% Base Resistance and become immune to knockback", - "archetype": "Paladin", - "archetype_req": 6, - "parents": [ - "Rejuvenating Skin" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 26, - "col": 7, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "defMult.Base", - "value": 5 - } - ] - } - ] - }, - { - "display_name": "Armour Breaker", - "desc": "While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "Uppercut", - "parents": [ - "Uncontainable Corruption", - "Radiant Devotee" - ], - "dependencies": [ - "Bak'al's Grasp" - ], - "blockers": [], - "cost": 2, - "display": { - "row": 27, - "col": 1, - "icon": "node_2" - }, - "properties": { - "duration": 5 - }, - "effects": [ - { - "type": "raw_stat", - "toggle": "Activate Armor Breaker", - "bonuses": [ - { - "type": "stat", - "name": "damMult.ArmorBreaker", - "value": 30 - } - ] - } - ] - }, - { - "display_name": "Shield Strike", - "desc": "When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost", - "archetype": "Paladin", - "archetype_req": 0, - "base_abil": "Mantle of the Bovemists", - "parents": [ - "Mythril Skin", - "Sparkling Hope" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 27, - "col": 6, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "replace_spell", - "name": "Shield Strike", - "base_spell": 6, - "display": "Damage per Shield", - "parts": [ - { - "name": "Damage per Shield", - "multipliers": [ - 60, - 0, - 20, - 0, - 0, - 0 - ] - } - ] - } - ] - }, - { - "display_name": "Sparkling Hope", - "desc": "Everytime you heal 5% of your max health, deal damage to all nearby enemies", - "archetype": "Paladin", - "archetype_req": 0, - "parents": [ - "Mythril Skin" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 27, - "col": 8, - "icon": "node_2" - }, - "properties": { - "aoe": 6 - }, - "effects": [ - { - "type": "replace_spell", - "name": "Sparkling Hope", - "base_spell": 7, - "display": "Damage Tick", - "parts": [ - { - "name": "Damage Tick", - "multipliers": [ - 10, - 0, - 5, - 0, - 0, - 0 - ] - } - ] - } - ] - }, - { - "display_name": "Massive Bash", - "desc": "While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)", - "archetype": "Fallen", - "archetype_req": 8, - "base_abil": "Bak'al's Grasp", - "parents": [ - "Tempest", - "Uncontainable Corruption" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 28, - "col": 0, - "icon": "node_2" - }, - "properties": {}, - "effects": [ - { - "type": "stat_scaling", - "slider": true, - "slider_name": "Corrupted", - "output": { - "type": "prop", - "abil": "Bash", - "name": "aoe" - }, - "scaling": [ - 0.3333333333333333 - ], - "max": 10 - } - ] - }, - { - "display_name": "Tempest", - "desc": "War Scream will ripple the ground and deal damage 3 times in a large area", - "archetype": "Battle Monk", - "archetype_req": 0, - "base_abil": "War Scream", - "parents": [ - "Massive Bash", - "Spirit of the Rabbit" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 28, - "col": 2, - "icon": "node_1" - }, - "properties": { - "aoe": 16 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "Tempest", - "multipliers": [ - 30, - 10, - 0, - 0, - 0, - 10 - ] - }, - { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "Tempest Total Damage", - "hits": { - "Tempest": 3 - } - }, - { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "Total Damage", - "hits": { - "Tempest": 3 - } - } - ] - }, - { - "display_name": "Spirit of the Rabbit", - "desc": "Reduce the Mana cost of Charge and increase your Walk Speed by +20%", - "archetype": "Battle Monk", - "archetype_req": 5, - "base_abil": "Charge", - "parents": [ - "Tempest", - "Whirlwind Strike" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 28, - "col": 4, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 2, - "cost": -5 - }, - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "spd", - "value": 20 - } - ] - } - ] - }, - { - "display_name": "Massacre", - "desc": "While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar", - "archetype": "Fallen", - "archetype_req": 5, - "base_abil": 999, - "parents": [ - "Tempest", - "Massive Bash" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 29, - "col": 1, - "icon": "node_1" - }, - "properties": {}, - "effects": [] - }, - { - "display_name": "Axe Kick", - "desc": "Increase the damage of Uppercut, but also increase its mana cost", - "base_abil": "Uppercut", - "parents": [ - "Tempest", - "Spirit of the Rabbit" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 29, - "col": 3, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Uppercut", - "cost": 10, - "multipliers": [ - 100, - 0, - 0, - 0, - 0, - 0 - ] - } - ] - }, - { - "display_name": "Radiance", - "desc": "Bash will buff your allies' positive IDs. (15s Cooldown)", - "archetype": "Paladin", - "archetype_req": 2, - "base_abil": "Bash", - "parents": [ - "Spirit of the Rabbit", - "Cheaper Bash 2" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 29, - "col": 5, - "icon": "node_2" - }, - "properties": { - "cooldown": 15 - }, - "effects": [] - }, - { - "display_name": "Cheaper Bash 2", - "desc": "Reduce the Mana cost of Bash", - "base_abil": "Bash", - "parents": [ - "Radiance", - "Shield Strike", - "Sparkling Hope" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 29, - "col": 7, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 1, - "cost": -5 - } - ] - }, - { - "display_name": "Cheaper War Scream", - "desc": "Reduce the Mana cost of War Scream", - "base_abil": "War Scream", - "parents": [ - "Massive Bash" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 31, - "col": 0, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 4, - "cost": -5 - } - ] - }, - { - "display_name": "Discombobulate", - "desc": "Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second", - "archetype": "Battle Monk", - "archetype_req": 11, - "parents": [ - "Cyclone" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 31, - "col": 2, - "icon": "node_3" - }, - "properties": {}, - "effects": [ - { - "type": "stat_scaling", - "slider": true, - "slider_name": "Hits dealt", - "slider_max": 27, - "output": [ - { - "type": "stat", - "name": "eDamAddMin" - }, - { - "type": "stat", - "name": "eDamAddMax" - }, - { - "type": "stat", - "name": "tDamAddMin" - }, - { - "type": "stat", - "name": "tDamAddMax" - }, - { - "type": "stat", - "name": "wDamAddMin" - }, - { - "type": "stat", - "name": "wDamAddMax" - }, - { - "type": "stat", - "name": "fDamAddMin" - }, - { - "type": "stat", - "name": "fDamAddMax" - }, - { - "type": "stat", - "name": "aDamAddMin" - }, - { - "type": "stat", - "name": "aDamAddMax" - } - ], - "scaling": [ - 3 - ], - "max": 80 - } - ] - }, - { - "display_name": "Thunderclap", - "desc": "Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder", - "archetype": "Battle Monk", - "archetype_req": 8, - "parents": [ - "Cyclone" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 32, - "col": 5, - "icon": "node_1" - }, - "properties": {}, - "effects": [ - { - "type": "convert_spell_conv", - "target_part": "all", - "base_spell": 1, - "conversion": "Thunder" - }, - { - "type": "raw_stat", - "bonuses": [ - { - "type": "prop", - "abil": "Bash", - "name": "aoe", - "value": 3 - } - ] - } - ] - }, - { - "display_name": "Cyclone", - "desc": "After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s", - "archetype": "Battle Monk", - "archetype_req": 0, - "parents": [ - "Spirit of the Rabbit" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 31, - "col": 4, - "icon": "node_1" - }, - "properties": { - "aoe": 4, - "duration": 20 - }, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "Cyclone", - "multipliers": [ - 10, - 0, - 0, - 0, - 5, - 10 - ] - }, - { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "Cyclone Total Damage", - "hits": { - "Cyclone": 40 - } - } - ] - }, - { - "display_name": "Second Chance", - "desc": "When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)", - "archetype": "Paladin", - "archetype_req": 12, - "parents": [ - "Cheaper Bash 2" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 32, - "col": 7, - "icon": "node_3" - }, - "properties": {}, - "effects": [] - }, - { - "display_name": "Blood Pact", - "desc": "If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)", - "archetype": "Fallen", - "archetype_req": 10, - "parents": [ - "Cheaper War Scream" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 34, - "col": 1, - "icon": "node_3" - }, - "properties": { - "health_cost": 0.6 - }, - "effects": [] }, { "display_name": "Haemorrhage", @@ -6729,83 +4703,6 @@ const atrees = { ] } ] - }, - { - "display_name": "Brink of Madness", - "desc": "If your health is 25% full or less, gain +40% Resistance", - "parents": [ - "Blood Pact", - "Cheaper Uppercut 2" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 35, - "col": 4, - "icon": "node_2" - }, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "toggle": "Activate Brink", - "bonuses": [ - { - "type": "stat", - "name": "defMult.Brink", - "value": 40 - } - ] - } - ] - }, - { - "display_name": "Cheaper Uppercut 2", - "desc": "Reduce the Mana cost of Uppercut", - "base_abil": "Uppercut", - "parents": [ - "Second Chance", - "Brink of Madness" - ], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 35, - "col": 6, - "icon": "node_0" - }, - "properties": {}, - "effects": [ - { - "type": "add_spell_prop", - "base_spell": 3, - "cost": -5 - } - ] - }, - { - "display_name": "Martyr", - "desc": "When you receive a fatal blow, all nearby allies become invincible", - "archetype": "Paladin", - "archetype_req": 0, - "parents": [ - "Second Chance" - ], - "dependencies": [], - "blockers": [], - "cost": 2, - "display": { - "row": 35, - "col": 8, - "icon": "node_1" - }, - "properties": { - "duration": 3, - "aoe": 12 - }, - "effects": [] } ], "Mage": [ diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 6e6a81f..be36f89 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"duration":90},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"duration":90},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From bf28e219f4e29f4b458b031eeaaddfdd6bbd4977 Mon Sep 17 00:00:00 2001 From: hppeng Date: Fri, 22 Jul 2022 00:12:47 -0700 Subject: [PATCH 15/34] Fix Orphion's pulse heal, fix single item page for armor --- item/index.html | 1 - js/atree_constants.js | 8 +++++--- js/atree_constants_min.js | 2 +- js/builder_graph.js | 2 +- js/item.js | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/item/index.html b/item/index.html index 8ad3bd9..25d6371 100644 --- a/item/index.html +++ b/item/index.html @@ -59,7 +59,6 @@ - diff --git a/js/atree_constants.js b/js/atree_constants.js index b46b403..2652e22 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -3843,14 +3843,16 @@ const atrees = { "col": 2, "icon": "node_2" }, - "properties": { - "duration": 90 - }, + "properties": {}, "effects": [ { "type": "add_spell_prop", "base_spell": 4, "cost": 10 + }, + { + "type": "raw_stat", + "bonuses": [ {"type": "prop", "abil": "War Scream", "name": "duration", "value": 90} ] } ] }, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index be36f89..80faade 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{"duration":90},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file diff --git a/js/builder_graph.js b/js/builder_graph.js index 73caa07..093f367 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -620,7 +620,7 @@ class SpellDamageCalcNode extends ComputeNode { } } else { - spell_result.heal_amount += subpart.heal_amount; + spell_result.heal_amount += subpart.heal_amount * hits; } } spell_result.name = part.name; diff --git a/js/item.js b/js/item.js index 4371afe..bf8a977 100644 --- a/js/item.js +++ b/js/item.js @@ -20,8 +20,8 @@ function init_itempage() { //displayExpandedItem(expandItem(itemMap.get(item_url_tag).statMap, []), "item-view"); try{ item = expandItem(itemMap.get(item_url_tag.replaceAll("%20"," ")), []); + item.set('powders', []); if (item.get('category') === 'weapon') { - item.set('powders', []); apply_weapon_powders(item); } displayExpandedItem(item, "item-view"); From 5d4e0c63ec081154e0d45cad431d21810b9671d4 Mon Sep 17 00:00:00 2001 From: hppeng Date: Fri, 22 Jul 2022 10:27:59 -0700 Subject: [PATCH 16/34] Make spellcost floating point display 2 decimal places --- js/display.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/js/display.js b/js/display.js index ff5124f..714aa38 100644 --- a/js/display.js +++ b/js/display.js @@ -866,7 +866,7 @@ function displayNextCosts(_stats, spell, spellIdx) { let int_needed = document.createElement("b"); if (init_cost.textContent === "1") { int_needed.textContent = ": n/a (+0)"; - }else { //do math + } else { //do math let target = getSpellCost(stats, spellIdx, spell.cost) - 1; let needed = intel; let noUpdate = false; @@ -1386,10 +1386,9 @@ function getSpellCost(stats, spell) { } function getBaseSpellCost(stats, spell) { - // old intelligence: - let cost = Math.ceil(spell.cost * (1 - skillPointsToPercentage(stats.get('int')) * skillpoint_final_mult[2])); + let cost = spell.cost * (1 - skillPointsToPercentage(stats.get('int')) * skillpoint_final_mult[2]); cost += stats.get("spRaw"+spell.base_spell); - return Math.floor(cost * (1 + stats.get("spPct"+spell.base_spell) / 100)); + return cost * (1 + stats.get("spPct"+spell.base_spell) / 100); } @@ -1408,7 +1407,7 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell title_elem.appendChild(first.cloneNode(true)); //cloneNode is needed here. title_elemavg.appendChild(first); - let second = make_elem("span", ["Mana"], { textContent: getSpellCost(stats, spell) }); + let second = make_elem("span", ["Mana"], { textContent: getSpellCost(stats, spell).toFixed(2) }); title_elem.appendChild(second.cloneNode(true)); title_elemavg.appendChild(second); @@ -1425,8 +1424,7 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell overallparent_elem.append(title_elemavg); // if ('cost' in spell) { - // :( ...... ? - // overallparent_elem.append(displayNextCosts(stats, spell, spellIdx)); + // overallparent_elem.append(displayNextCosts(stats, spell, spellIdx)); // } let critChance = skillPointsToPercentage(stats.get('dex')); From 60f89a44c6a3f87bdd337dd3e1fc1a1aba0be213 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Fri, 22 Jul 2022 21:22:23 -0500 Subject: [PATCH 17/34] escape artist archetype removed --- js/atree_constants.js | 2 -- js/atree_constants_min.js | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 2652e22..a44f4d5 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -823,8 +823,6 @@ const atrees = { { "display_name": "Escape Artist", "desc": "When casting Escape, release 120 arrows towards the ground.", - "archetype": "Boltslinger", - "archetype_req": 0, "base_abil": "Escape", "parents": [ "Better Guardian Angels", diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 80faade..ea2e34b 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From ac1d741919bdb5d02a62f7dd24c777ff2b4341e5 Mon Sep 17 00:00:00 2001 From: reschan Date: Sat, 23 Jul 2022 10:11:28 +0700 Subject: [PATCH 18/34] relocate toggles and sliders to active boosts section --- builder/index_full.html | 10 ++++++++-- js/atree.js | 13 ++++++++----- js/utils.js | 3 +-- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/builder/index_full.html b/builder/index_full.html index 600db3f..818961d 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -947,8 +947,8 @@ -
-
+
+
Active boosts
@@ -972,6 +972,12 @@ Fortitude (+60%)
+
+ +
+
+
+
diff --git a/js/atree.js b/js/atree.js index 540d679..13b66eb 100644 --- a/js/atree.js +++ b/js/atree.js @@ -644,6 +644,9 @@ const atree_make_interactives = new (class extends ComputeNode { const atree_order = input_map.get('atree-order'); const atree_html = input_map.get('atree-elements'); + document.getElementById("boost-sliders").innerHTML = ""; + document.getElementById("boost-toggles").innerHTML = ""; + /** * slider_info * label_name: str, @@ -658,7 +661,7 @@ const atree_make_interactives = new (class extends ComputeNode { const slider_map = new Map(); const button_map = new Map(); - // first, pull out all the sliders. + // first, pull out all the sliders and toggles. for (const [abil_id, ability] of merged_abils.entries()) { for (const effect of ability.effects) { if (effect['type'] === "stat_scaling" && effect['slider'] === true) { @@ -688,15 +691,15 @@ const atree_make_interactives = new (class extends ComputeNode { } } } - // next, render the sliders onto the abilities. + // next, render the sliders and toggles onto the abilities. for (const [slider_name, slider_info] of slider_map.entries()) { let slider_container = gen_slider_labeled(slider_info); - atree_html.get(slider_info.abil.id).appendChild(slider_container); + document.getElementById("boost-sliders").appendChild(slider_container); slider_info.slider = document.getElementById(slider_info.id); slider_info.slider.addEventListener("change", (e) => atree_stats.mark_dirty().update()); } for (const [button_name, button_info] of button_map.entries()) { - let button = make_elem('button', ["button-boost", "border-0", "text-white", "dark-8u", "dark-shadow-sm"], { + let button = make_elem('button', ["button-boost", "border-0", "text-white", "dark-8u", "dark-shadow-sm", "m-1"], { id: button_info.abil.id, textContent: button_name }); @@ -709,7 +712,7 @@ const atree_make_interactives = new (class extends ComputeNode { atree_stats.mark_dirty().update() }); button_info.button = button; - atree_html.get(button_info.abil.id).appendChild(button); + document.getElementById("boost-toggles").appendChild(button); } return [slider_map, button_map]; } diff --git a/js/utils.js b/js/utils.js index 30cc395..c4651e3 100644 --- a/js/utils.js +++ b/js/utils.js @@ -788,12 +788,11 @@ function deepcopy(obj, refs=undefined) { */ function gen_slider_labeled({label_name, label_classlist = [], min = 0, max = 100, step = 1, default_val = min, id = undefined, color = "#FFFFFF", classlist = []}) { let slider_container = document.createElement("div"); + slider_container.classList.add("col"); let buf_col = document.createElement("div"); - buf_col.classList.add("col"); let label = document.createElement("div"); - label.classList.add("col"); label.classList.add(...label_classlist); label.textContent = label_name + ": " + default_val; From 49b1f667f68dde59a693f618ab6f1dfbe091bc35 Mon Sep 17 00:00:00 2001 From: hppeng Date: Fri, 22 Jul 2022 20:26:04 -0700 Subject: [PATCH 19/34] Add info about slider source ability to sliders --- js/atree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/atree.js b/js/atree.js index 13b66eb..555e99f 100644 --- a/js/atree.js +++ b/js/atree.js @@ -674,7 +674,7 @@ const atree_make_interactives = new (class extends ComputeNode { } else if (slider_behavior === 'merge') { slider_map.set(slider_name, { - label_name: slider_name, + label_name: slider_name+' ('+ability.display_name+')', max: slider_max, step: slider_step, id: "ability-slider"+ability.id, From 5290acab19fc0eece995e214d7f4a70b6596b127 Mon Sep 17 00:00:00 2001 From: hppeng Date: Fri, 22 Jul 2022 20:33:21 -0700 Subject: [PATCH 20/34] Minify index.html --- builder/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/index.html b/builder/index.html index 42ac371..a641dc0 100644 --- a/builder/index.html +++ b/builder/index.html @@ -1,2 +1,2 @@ - WynnBuilder
Join the discord today to suggest new features, submit bug reports, and hangout/talk to devs!
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
Level:
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Active boosts
Earth
Thunder
Water
Fire
Air
Curse (Active)
Concentration (Passive)
Offense
Defense
Overall
Input a weapon to see abilities!

Made by hppeng, ferricles, and reschan with Atlas Inc (JavaScript required to function, nothing works without js)

Hard refresh the page (Ctrl+Shift+R on windows/chrome) if it isn't updating correctly.

+ WynnBuilder
Join the discord today to suggest new features, submit bug reports, and hangout/talk to devs!
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
Level:
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Active boosts
Earth
Thunder
Water
Fire
Air
Curse (Active)
Concentration (Passive)
Offense
Defense
Overall
Input a weapon to see abilities!

Made by hppeng, ferricles, and reschan with Atlas Inc (JavaScript required to function, nothing works without js)

Hard refresh the page (Ctrl+Shift+R on windows/chrome) if it isn't updating correctly.

From 2ef378156a7c0f5df457bdd357ff77b1f839cc03 Mon Sep 17 00:00:00 2001 From: hppeng Date: Fri, 22 Jul 2022 20:39:18 -0700 Subject: [PATCH 21/34] HOTFIX: set bonus mana and cost ID 5xing --- clean.json | 114 +++++++++++++++++++-------------------- compress.json | 2 +- js/load.js | 2 +- py_script/merge_items.py | 12 +++++ 4 files changed, 71 insertions(+), 59 deletions(-) diff --git a/clean.json b/clean.json index a546351..368d187 100644 --- a/clean.json +++ b/clean.json @@ -76176,8 +76176,8 @@ "sdPct": 14, "mdPct": 14, "jh": 1, - "mr": -1, - "ms": -1 + "mr": -5, + "ms": -5 }, { "hprRaw": 50, @@ -76205,19 +76205,19 @@ "bonuses": [ {}, { - "ms": 1, + "ms": 5, "dex": 2, "sdRaw": 15, "mdRaw": 5 }, { - "ms": 1, + "ms": 5, "dex": 6, "sdRaw": 35, "mdRaw": 10 }, { - "ms": 3, + "ms": 15, "dex": 20, "sdRaw": 65, "mdRaw": 70 @@ -76277,10 +76277,10 @@ {}, {}, { - "mr": 5, + "mr": 25, "sdPct": 75, "mdPct": 75, - "ms": 5, + "ms": 25, "ls": 400, "hprRaw": 600 } @@ -76405,24 +76405,24 @@ "bonuses": [ {}, { - "mr": -1, - "ms": 2, + "mr": -5, + "ms": 10, "sdRaw": 40, "wDamPct": 5, "tDamPct": 5, "eDamPct": -34 }, { - "mr": -2, - "ms": 4, + "mr": -10, + "ms": 20, "sdRaw": 115, "wDamPct": 10, "tDamPct": 10, "eDamPct": -67 }, { - "mr": -3, - "ms": 6, + "mr": -15, + "ms": 30, "sdRaw": 230, "wDamPct": 32, "tDamPct": 32, @@ -76459,7 +76459,7 @@ "spRegen": 15 }, { - "mr": 2, + "mr": 10, "sdPct": 25, "mdPct": 25, "xpb": 50, @@ -76545,7 +76545,7 @@ "bonuses": [ {}, { - "mr": 2, + "mr": 10, "xpb": 40, "def": 25, "fDamPct": 20, @@ -76689,21 +76689,21 @@ {}, { "hprPct": -10, - "mr": 1, + "mr": 5, "sdPct": 6, "ref": 10, "thorns": 8 }, { "hprPct": -20, - "mr": 2, + "mr": 10, "sdPct": 14, "ref": 35, "thorns": 24 }, { "hprPct": -30, - "mr": 4, + "mr": 20, "sdPct": 30, "ref": 75, "thorns": 70 @@ -76719,9 +76719,9 @@ {}, { "mdPct": 30, - "ms": 2, + "ms": 10, "spd": 25, - "spPct2": -40 + "spPct2": -28 } ] }, @@ -76743,46 +76743,46 @@ "lb": 5 }, { - "mr": 1, + "mr": 5, "xpb": 10, "lb": 10, - "spRaw2": -1, + "spRaw2": -5, "hpBonus": 125 }, { - "mr": 1, + "mr": 5, "xpb": 15, "lb": 15, - "spRaw2": -1, + "spRaw2": -5, "hpBonus": 425 }, { - "mr": 2, + "mr": 10, "xpb": 35, "lb": 35, "hpBonus": 1325, - "spRaw2": -1, - "spRaw4": -1 + "spRaw2": -5, + "spRaw4": -5 }, { - "mr": 2, + "mr": 10, "xpb": 55, "lb": 55, "hpBonus": 2575, - "spRaw2": -1, - "spRaw4": -1 + "spRaw2": -5, + "spRaw4": -5 }, { - "mr": 3, + "mr": 15, "xpb": 80, "lb": 80, "hpBonus": 4450, - "spRaw1": -1, - "spRaw2": -1, - "spRaw4": -1 + "spRaw1": -5, + "spRaw2": -5, + "spRaw4": -5 }, { - "mr": 4, + "mr": 20, "xpb": 100, "lb": 100, "str": 15, @@ -76791,10 +76791,10 @@ "agi": 15, "def": 15, "hpBonus": 8270, - "spRaw1": -1, - "spRaw2": -1, - "spRaw3": -1, - "spRaw4": -1 + "spRaw1": -5, + "spRaw2": -5, + "spRaw3": -5, + "spRaw4": -5 } ] }, @@ -76816,8 +76816,8 @@ "xpb": 25, "spRegen": 10, "sdPct": 8, - "spPct1": -12, - "spPct3": -12 + "spPct1": -8, + "spPct3": -8 } ] }, @@ -76858,11 +76858,11 @@ "bonuses": [ {}, { - "mr": 2, + "mr": 10, "sdPct": 15, "mdPct": -15, "sdRaw": 30, - "spPct2": -50 + "spPct2": -35 } ] }, @@ -77126,7 +77126,7 @@ "bonuses": [ {}, { - "mr": 2, + "mr": 10, "mdPct": -24, "int": 5, "wDamPct": 10, @@ -77134,7 +77134,7 @@ "wDefPct": 16 }, { - "mr": 5, + "mr": 25, "mdPct": -54, "int": 15, "wDamPct": 20, @@ -77142,7 +77142,7 @@ "wDefPct": 36 }, { - "mr": 8, + "mr": 40, "mdPct": -90, "int": 25, "wDamPct": 40, @@ -77168,7 +77168,7 @@ "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, - "ms": 1 + "ms": 5 }, { "xpb": 50, @@ -77178,7 +77178,7 @@ "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, - "ms": 2 + "ms": 10 }, { "xpb": 75, @@ -77189,7 +77189,7 @@ "tDefPct": 100, "eDefPct": 100, "sdPct": 40, - "ms": 6 + "ms": 30 } ] }, @@ -77203,7 +77203,7 @@ "bonuses": [ {}, { - "mr": 1, + "mr": 5, "sdPct": -10, "mdPct": -15, "def": 7, @@ -77212,7 +77212,7 @@ "aDamPct": 15 }, { - "mr": 3, + "mr": 15, "sdPct": -20, "mdPct": -40, "def": 15, @@ -77221,7 +77221,7 @@ "aDamPct": 40 }, { - "mr": 6, + "mr": 30, "sdPct": -40, "mdPct": -85, "def": 40, @@ -77283,7 +77283,7 @@ "sdPct": -33, "mdPct": -33, "ls": 90, - "ms": 2, + "ms": 10, "sdRaw": 160, "mdRaw": 105, "atkTier": 1 @@ -77304,7 +77304,7 @@ "hprRaw": 90 }, { - "mr": 5, + "mr": 25, "int": 20, "def": 20, "hpBonus": 1500, @@ -77324,19 +77324,19 @@ "bonuses": [ {}, { - "mr": 1, + "mr": 5, "xpb": 5, "lb": 10, "hpBonus": 55 }, { - "mr": 2, + "mr": 10, "xpb": 10, "lb": 25, "hpBonus": 170 }, { - "mr": 4, + "mr": 20, "xpb": 25, "lb": 50, "int": 20, diff --git a/compress.json b/compress.json index 2b17229..a142617 100644 --- a/compress.json +++ b/compress.json @@ -1 +1 @@ -{"items": [{"name": "Keratoconus", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Keratoconus", "slots": 3, "hp": 3900, "fDef": -150, "aDef": 250, "tDef": -150, "lvl": 101, "intReq": 65, "agiReq": 65, "hprPct": -50, "mr": 8, "int": 15, "def": -10, "wDamPct": 30, "aDamPct": 35, "tDamPct": -40, "spRaw4": -4, "id": 3579}, {"name": "Wanderlust", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Wanderlust", "slots": 2, "hp": 3500, "fDef": -75, "wDef": 100, "aDef": 100, "tDef": 75, "lvl": 103, "dexReq": 45, "agiReq": 55, "hprPct": -15, "ls": 230, "ms": -12, "spd": 25, "sdRaw": 208, "wDamPct": 20, "aDamPct": 30, "id": 3592}, {"name": "Anaerobic", "type": "leggings", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Anaerobic", "slots": 4, "hp": 3850, "wDef": -150, "aDef": 100, "eDef": 100, "lvl": 104, "strReq": 60, "agiReq": 60, "mr": 8, "ref": 48, "str": 12, "atkTier": -1, "aDamPct": 32, "eDamPct": 24, "spRaw1": -8, "id": 3611}, {"name": "Danse Macabre", "type": "relik", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Danse Macabre", "basedps": 238, "slots": 1, "nDam": "0-0", "fDam": "97-141", "wDam": "0-0", "aDam": "0-0", "tDam": "24-214", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 102, "classReq": "Shaman", "dexReq": 55, "defReq": 50, "ms": 13, "atkTier": 1, "hpBonus": -1150, "hprRaw": -204, "sdRaw": 184, "spRaw1": -7, "id": 3614}, {"name": "Darkness's Dogma", "type": "bow", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Darkness's Dogma", "basedps": 1250, "slots": 3, "nDam": "0-0", "fDam": "550-700", "wDam": "600-650", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 103, "classReq": "Archer", "intReq": 60, "defReq": 50, "ls": -700, "ms": 13, "ref": 25, "hpBonus": 1500, "fDefPct": -50, "wDefPct": -50, "id": 3654}, {"name": "Frameshift", "type": "wand", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Frameshift", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "160-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-210", "atkSpd": "VERY_SLOW", "lvl": 104, "classReq": "Mage", "strReq": 40, "defReq": 60, "mr": 7, "mdPct": 25, "ls": 380, "def": 20, "wDamPct": -30, "spRaw1": -4, "id": 3655}, {"name": "Helminth", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Helminth", "basedps": 100, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-199", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 102, "classReq": "Warrior", "dexReq": 65, "ls": 500, "atkTier": 1, "hpBonus": -1250, "tDamPct": 20, "wDefPct": -35, "aDefPct": -35, "id": 3656}, {"name": "Lanternfly Leg", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Lanternfly Leg", "basedps": 180, "slots": 3, "nDam": "150-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 101, "classReq": "Assassin", "agiReq": 50, "defReq": 50, "spd": 30, "hpBonus": 1000, "fDamPct": 23, "aDamPct": 23, "spRaw2": -4, "jh": 1, "id": 3657}, {"name": "Dissonance", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Dissonance", "sprint": 20, "slots": 2, "hp": 3050, "wDef": 100, "aDef": -175, "tDef": 100, "lvl": 103, "dexReq": 50, "intReq": 50, "sdPct": 20, "ls": -275, "lb": 20, "spd": -20, "wDamPct": 20, "tDamPct": 12, "id": 3658}, {"name": "Atomizer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Atomizer", "poison": 600, "thorns": 25, "slots": 3, "hp": 4350, "fDef": 120, "wDef": 120, "aDef": 200, "lvl": 102, "agiReq": 75, "hprPct": 37, "agi": 8, "fDefPct": 31, "wDefPct": 31, "jh": 1, "id": 3660}, {"name": "Wasteland Azalea", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Wasteland Azalea", "poison": 500, "sprint": -15, "slots": 3, "hp": 2750, "fDef": -75, "eDef": 75, "lvl": 101, "strReq": 45, "agiReq": 50, "atkTier": -1, "sdRaw": 140, "aDamPct": 25, "eDamPct": 25, "spRaw3": -6, "id": 3661}, {"name": "Tranquility", "type": "ring", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Tranquility", "hp": 550, "fDef": 50, "wDef": 50, "lvl": 101, "intReq": 45, "defReq": 45, "hprPct": 17, "sdPct": 5, "str": -3, "dex": -3, "spd": -7, "id": 3662}, {"name": "Misalignment", "type": "bracelet", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Misalignment", "lvl": 101, "strReq": 35, "dexReq": 45, "mr": 3, "dex": 3, "int": 3, "wDamPct": 10, "tDamPct": 6, "eDamPct": 6, "id": 3663}, {"name": "Grafted Eyestalk", "type": "necklace", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Grafted Eyestalk", "hp": -600, "tDef": -40, "eDef": -40, "lvl": 101, "agiReq": 40, "defReq": 40, "hprPct": -12, "sdPct": 8, "agi": 5, "def": 5, "spRaw1": -1, "id": 3664}, {"name": "Forbearance", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Forbearance", "lvl": 105, "dexReq": 60, "intReq": 60, "mr": 4, "ls": 120, "dex": 6, "int": 6, "wDamPct": -15, "tDamPct": -15, "id": 3665}, {"name": "Ingress", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Ingress", "aDef": 55, "eDef": 55, "lvl": 105, "strReq": 55, "agiReq": 55, "dex": 4, "int": 2, "def": 4, "sdRaw": 55, "aDamPct": 8, "eDamPct": 8, "id": 3666}, {"name": "Breakthrough", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Breakthrough", "fDef": -30, "tDef": -45, "eDef": -45, "lvl": 105, "intReq": 45, "agiReq": 45, "sdPct": 13, "ms": 6, "str": -4, "dex": -4, "def": -6, "sdRaw": 75, "spRaw2": -4, "id": 3667}, {"name": "Simulacrum", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Simulacrum", "hp": -800, "fDef": -90, "eDef": -70, "lvl": 105, "strReq": 55, "defReq": 45, "mr": 5, "spd": 8, "hprRaw": -150, "sdRaw": 150, "id": 3670}, {"name": "Medeis", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Medeis", "slots": 3, "hp": 2950, "fDef": 75, "wDef": 75, "aDef": -100, "tDef": 75, "eDef": -100, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "sdPct": 8, "dex": 10, "int": 10, "def": 10, "fDamPct": 8, "wDamPct": 8, "aDamPct": -75, "tDamPct": 8, "eDamPct": -75, "id": 1763}, {"name": "Roulette", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Roulette", "basedps": 29, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-58", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "dexReq": 40, "xpb": 8, "lb": 8, "dex": 8, "tDamPct": 888, "id": 2368}, {"name": "Prowess", "type": "bracelet", "tier": "Legendary", "majorIds": [], "quest": "The Qira Hive", "category": "accessory", "displayName": "Prowess", "set": "Master Hive", "hp": 425, "lvl": 100, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 1284}, {"name": "Caesura", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Caesura", "slots": 2, "hp": 2450, "wDef": -250, "tDef": 100, "eDef": 100, "lvl": 93, "strReq": 45, "dexReq": 60, "intReq": 30, "mr": -15, "sdPct": 10, "ms": -15, "str": 10, "int": 15, "sdRaw": 231, "tDamPct": 25, "eDamPct": 25, "id": 463}, {"name": "Gigabyte", "type": "necklace", "tier": "Legendary", "category": "accessory", "displayName": "Gigabyte", "thorns": 8, "hp": -512, "lvl": 93, "mr": -4, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "spd": 8, "hprRaw": 48, "fixID": true, "id": 731}, {"name": "Pro Tempore", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Pro Tempore", "slots": 4, "hp": 2350, "wDef": -50, "tDef": -50, "lvl": 88, "dexReq": 40, "intReq": 50, "mr": 10, "sdPct": 20, "ls": 165, "ms": -15, "int": 10, "sdRaw": 104, "id": 3577}, {"name": "Orange Lily", "type": "bow", "tier": "Legendary", "category": "weapon", "displayName": "Orange Lily", "basedps": 507.5, "slots": 3, "nDam": "75-140", "fDam": "0-0", "wDam": "165-235", "aDam": "0-0", "tDam": "0-0", "eDam": "165-235", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "intReq": 60, "mr": 10, "wDamPct": 20, "aDamPct": -150, "eDamPct": 20, "aDefPct": -100, "fixID": true, "spRaw3": -5, "spRaw4": 50, "id": 717}, {"name": "Brainwash", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Brainwash", "hp": 2800, "wDef": -220, "tDef": 100, "eDef": 70, "lvl": 96, "strReq": 40, "dexReq": 70, "hprPct": -40, "mr": 10, "sdPct": 10, "ms": 15, "str": 13, "int": -50, "sdRaw": 190, "wDamPct": -30, "tDamPct": 15, "id": 416}, {"name": "Second Wind", "type": "leggings", "tier": "Fabled", "majorIds": [], "category": "armor", "displayName": "Second Wind", "slots": 3, "hp": 6325, "fDef": 120, "aDef": 120, "tDef": -350, "eDef": -350, "lvl": 83, "agiReq": 40, "defReq": 65, "hprPct": -30, "ls": -475, "agi": 20, "spd": 20, "atkTier": 1, "id": 2973}, {"name": "Cumulonimbus", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Cumulonimbus", "slots": 3, "hp": 1800, "wDef": 70, "aDef": 70, "tDef": 70, "lvl": 94, "dexReq": 30, "intReq": 30, "agiReq": 30, "sdPct": 15, "dex": 10, "int": 10, "agi": 10, "spd": 25, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "id": 696}, {"name": "Morrowind", "type": "wand", "tier": "Legendary", "majorIds": [], "category": "weapon", "displayName": "Morrowind", "basedps": 135, "slots": 3, "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "agiReq": 45, "ref": 46, "agi": 14, "spd": 23, "sdRaw": 145, "aDamPct": 23, "eDamPct": -15, "aDefPct": 23, "id": 1818}, {"name": "Anima-Infused Helmet", "displayName": "Boreal-Patterned Crown", "type": "helmet", "tier": "Legendary", "quest": "The Qira Hive", "category": "armor", "set": "Master Hive", "slots": 2, "hp": 3000, "wDef": 150, "aDef": 150, "tDef": 150, "lvl": 100, "dexReq": 40, "intReq": 40, "agiReq": 40, "mr": 8, "sdPct": 20, "mdPct": -40, "str": -30, "def": -30, "sdRaw": 300, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "fixID": true, "id": 1267}, {"name": "Corsair", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Corsair", "slots": 2, "hp": 2900, "aDef": 110, "tDef": 80, "eDef": -140, "lvl": 99, "dexReq": 55, "agiReq": 35, "ms": 5, "dex": 8, "spd": 11, "eSteal": 4, "aDamPct": 12, "tDamPct": 10, "spPct1": -10, "spPct4": -14, "id": 658}, {"name": "Charging Flame", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Charging Flame", "basedps": 190, "slots": 2, "nDam": "20-40", "fDam": "20-140", "wDam": "40-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 12, "mdPct": 12, "expd": 24, "hpBonus": -1200, "fDamPct": 12, "wDamPct": 12, "tDefPct": -25, "spRaw2": -12, "id": 519}, {"name": "Aphotic", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aphotic", "slots": 2, "hp": 3200, "wDef": 150, "tDef": -150, "lvl": 98, "intReq": 100, "sdPct": 50, "dex": -80, "int": 5, "atkTier": -6, "spRaw3": -7, "id": 133}, {"name": "Silent Ballet", "type": "relik", "tier": "Unique", "majorIds": [], "category": "weapon", "displayName": "Silent Ballet", "basedps": 231, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "110-121", "tDam": "0-0", "eDam": "110-121", "atkSpd": "FAST", "lvl": 83, "strReq": 40, "agiReq": 40, "sdPct": -40000, "mdPct": 40, "sdRaw": -40000, "spPct1": -40, "spRaw1": -400, "spPct2": -40, "spRaw2": -400, "spPct3": -40, "spRaw3": -400, "spPct4": -40, "spRaw4": -400, "id": 3021}, {"name": "Rhythm of the Seasons", "type": "spear", "tier": "Fabled", "majorIds": ["RALLY"], "category": "weapon", "displayName": "Rhythm of the Seasons", "basedps": 165, "slots": 2, "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-140", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 80, "defReq": 60, "mr": 15, "def": 12, "hpBonus": 1800, "hprRaw": -660, "wDamPct": 25, "id": 3598}, {"name": "Sorrow", "type": "chestplate", "tier": "Rare", "category": "armor", "displayName": "Sorrow", "slots": 1, "hp": 1400, "wDef": 150, "tDef": -150, "lvl": 72, "intReq": 95, "mr": 5, "sdPct": 8, "ms": -20, "spRegen": 20, "wDamPct": 42, "fixID": true, "spRaw1": -8, "id": 666}, {"name": "Condensation", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Condensation", "hp": 2000, "wDef": 100, "tDef": -120, "lvl": 87, "intReq": 75, "sdPct": 30, "mdPct": -30, "int": 10, "tDefPct": -20, "spRaw3": -6, "id": 586}, {"name": "Augoeides", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Augoeides", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 63, "intReq": 65, "mr": 5, "xpb": 5, "lb": 8, "ref": 30, "spRegen": 10, "mdRaw": -52, "spRaw3": -5, "id": 169}, {"name": "Matryoshka Shell", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Matryoshka Shell", "slots": 18, "hp": 550, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 20, "lb": 20, "spd": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "spRaw1": -5, "id": 1764}, {"name": "Pure", "type": "wand", "tier": "Mythic", "majorIds": ["ENTROPY"], "category": "weapon", "displayName": "Pure", "basedps": 70, "nDam": "0-5", "fDam": "0-0", "wDam": "20-45", "aDam": "15-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 50, "agiReq": 30, "sdPct": 400, "mdPct": -100, "ms": 30, "xpb": 30, "ref": 20, "spRaw3": 6, "id": 1711}, {"name": "Resurgence", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Resurgence", "slots": 4, "hp": 4550, "fDef": 125, "wDef": 175, "lvl": 91, "intReq": 65, "defReq": 90, "mr": 30, "sdPct": -35, "mdPct": -45, "int": 25, "spd": -14, "spRegen": 20, "hprRaw": 390, "id": 1717}, {"name": "Galleon", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Galleon", "poison": 4231, "slots": 3, "hp": 4500, "wDef": 250, "aDef": -175, "eDef": 200, "lvl": 92, "strReq": 65, "intReq": 60, "mdPct": 45, "ms": 20, "lb": 20, "atkTier": -1, "eSteal": 15, "wDamPct": 36, "eDamPct": 36, "id": 1702}, {"name": "Boreal", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Boreal", "slots": 3, "hp": 5000, "fDef": 250, "aDef": 375, "lvl": 93, "agiReq": 65, "defReq": 75, "hprPct": 100, "mr": 10, "ref": 25, "spd": 25, "hprRaw": 269, "tDamPct": -75, "eDamPct": -75, "fDefPct": 50, "aDefPct": 50, "id": 1687}, {"name": "Freedom", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Freedom", "basedps": 485, "slots": 4, "nDam": "0-0", "fDam": "75-119", "wDam": "65-129", "aDam": "55-139", "tDam": "45-149", "eDam": "85-109", "atkSpd": "NORMAL", "lvl": 93, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "agi": 30, "spd": 15, "hpBonus": 1000, "sdRaw": 111, "mdRaw": 111, "id": 1695}, {"name": "Olympic", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Olympic", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "345-375", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "agiReq": 105, "agi": 25, "spd": 35, "aDamPct": 20, "aDefPct": 30, "spRaw1": -10, "spRaw2": -10, "jh": 6, "id": 1718}, {"name": "Guardian", "type": "spear", "tier": "Mythic", "majorIds": ["GUARDIAN"], "category": "weapon", "displayName": "Guardian", "basedps": 255, "thorns": 25, "slots": 3, "nDam": "50-90", "fDam": "165-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 110, "mr": 1, "def": 20, "hpBonus": 6000, "hprRaw": 585, "fDefPct": 20, "wDefPct": 20, "eDefPct": 20, "id": 1701}, {"name": "Hadal", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Hadal", "basedps": 1950, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "1750-2150", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 94, "intReq": 130, "mr": 30, "sdPct": 75, "spPct3": 112, "spPct4": 112, "id": 1703}, {"name": "Nullification", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Nullification", "basedps": 315, "poison": -7000, "slots": 3, "nDam": "0-0", "fDam": "36-90", "wDam": "46-80", "aDam": "28-98", "tDam": "22-104", "eDam": "60-66", "atkSpd": "FAST", "lvl": 95, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "ls": 495, "ms": 16, "ref": 80, "def": 40, "fDefPct": 143, "wDefPct": 143, "aDefPct": 143, "tDefPct": 143, "eDefPct": 143, "id": 1714}, {"name": "Idol", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Idol", "basedps": 280, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "230-330", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "intReq": 120, "mr": 10, "ref": 30, "int": 26, "spRegen": 25, "sdRaw": 264, "wDefPct": 15, "spRaw2": -50, "id": 1705}, {"name": "Dawnbreak", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Dawnbreak", "slots": 2, "hp": 4225, "fDef": 200, "wDef": -125, "aDef": -125, "tDef": 200, "lvl": 96, "dexReq": 65, "defReq": 65, "ls": 350, "ms": 12, "expd": 23, "atkTier": -20, "mdRaw": 2700, "fDamPct": 27, "tDamPct": 27, "id": 1691}, {"name": "Cataclysm", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Cataclysm", "basedps": 265, "thorns": 21, "slots": 3, "nDam": "40-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-305", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 96, "dexReq": 120, "dex": 20, "hpBonus": -6000, "eSteal": 5, "tDamPct": 17, "spRaw1": -1, "id": 1690}, {"name": "Grimtrap", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Grimtrap", "basedps": 570, "poison": 2000, "thorns": 70, "slots": 3, "nDam": "175-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "305-425", "atkSpd": "SLOW", "lvl": 96, "strReq": 100, "ls": 650, "ms": -10, "str": 15, "spRaw2": 1, "spRaw4": -10, "id": 1699}, {"name": "Weathered", "type": "dagger", "tier": "Mythic", "majorIds": ["ROVINGASSASSIN"], "category": "weapon", "displayName": "Weathered", "basedps": 245, "slots": 3, "nDam": "40-80", "fDam": "0-0", "wDam": "0-0", "aDam": "140-230", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 110, "ms": 16, "ref": 25, "agi": 15, "expd": -50, "spd": 25, "atkTier": 1, "aDamPct": 20, "id": 1726}, {"name": "Thrundacrack", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Thrundacrack", "basedps": 205, "slots": 4, "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-220", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "dexReq": 105, "hprPct": -60, "dex": 35, "spd": 9, "wDamPct": 60, "tDamPct": 25, "spRaw3": -6, "id": 1722}, {"name": "Lament", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Lament", "basedps": 265, "slots": 3, "nDam": "70-90", "fDam": "0-0", "wDam": "180-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "intReq": 110, "ls": -500, "ms": 40, "int": 20, "wDamPct": 80, "spPct1": -35, "id": 1710}, {"name": "Toxoplasmosis", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Toxoplasmosis", "basedps": 3, "poison": 10000, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-3", "atkSpd": "VERY_FAST", "lvl": 96, "strReq": 110, "ls": 500, "ms": 18, "lb": 20, "str": 40, "spd": 20, "id": 1724}, {"name": "Stardew", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Stardew", "slots": 2, "hp": 4075, "fDef": -100, "wDef": 150, "aDef": -100, "tDef": 150, "eDef": -100, "lvl": 97, "dexReq": 65, "intReq": 75, "mr": -9, "ms": 15, "ref": 25, "sdRaw": 313, "wDamPct": 35, "tDamPct": 35, "id": 1723}, {"name": "Divzer", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Divzer", "basedps": 299, "slots": 3, "nDam": "48-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "250-250", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 115, "ls": 973, "ms": 30, "dex": 37, "agi": -550, "def": -39, "atkTier": 1, "sdRaw": 253, "mdRaw": 536, "fDamPct": -550, "wDamPct": -550, "id": 1692}, {"name": "Inferno", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Inferno", "basedps": 950, "slots": 3, "nDam": "0-0", "fDam": "855-1045", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 105, "hprPct": -45, "mr": -1, "mdPct": 25, "def": 15, "spd": 25, "hpBonus": 1500, "mdRaw": 560, "fDamPct": 35, "wDefPct": -40, "spRaw1": -1, "id": 1707}, {"name": "Nirvana", "type": "dagger", "tier": "Mythic", "majorIds": ["ARCANES"], "category": "weapon", "displayName": "Nirvana", "basedps": 352.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "320-385", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 110, "mr": 10, "sdPct": 25, "mdPct": -80, "ms": -20, "ref": 15, "int": 40, "hpBonus": -2000, "id": 1712}, {"name": "Collapse", "type": "spear", "tier": "Mythic", "majorIds": ["FISSION"], "category": "weapon", "displayName": "Collapse", "basedps": 827.5, "slots": 3, "nDam": "40-65", "fDam": "0-310", "wDam": "0-310", "aDam": "0-310", "tDam": "0-310", "eDam": "0-310", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "mdPct": 50, "ms": 18, "str": 45, "expd": 250, "fDefPct": -65, "wDefPct": -65, "aDefPct": -65, "tDefPct": -65, "eDefPct": -65, "id": 1693}, {"name": "Gaia", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Gaia", "basedps": 620, "poison": 2500, "thorns": 15, "slots": 3, "nDam": "150-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "380-490", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 105, "mdPct": 15, "str": 25, "sdRaw": -275, "mdRaw": 575, "spRaw4": -9, "id": 1700}, {"name": "Absolution", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Absolution", "basedps": 200, "nDam": "0-0", "fDam": "195-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "defReq": 115, "mr": 16, "hpBonus": 3000, "spRegen": 23, "fDamPct": 20, "wDamPct": 200, "tDefPct": 45, "eDefPct": 45, "spRaw1": -20, "id": 1682}, {"name": "Spring", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Spring", "basedps": 422.5, "slots": 3, "nDam": "150-185", "fDam": "0-0", "wDam": "200-310", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "intReq": 120, "mr": 30, "str": 15, "dex": -40, "int": 15, "wDamPct": 20, "tDamPct": -50, "id": 1721}, {"name": "Monster", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Monster", "basedps": 315, "slots": 3, "nDam": "110-140", "fDam": "160-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "defReq": 110, "mdPct": 40, "ls": 500, "ms": 10, "def": 40, "hpBonus": 3000, "fDamPct": 25, "spRaw1": 4, "id": 1713}, {"name": "Revenant", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Revenant", "slots": 3, "hp": 7000, "aDef": 70, "eDef": 70, "lvl": 99, "strReq": 70, "agiReq": 70, "mdPct": -70, "ms": 10, "ref": 120, "spd": 40, "hpBonus": -2500, "mdRaw": 520, "aDamPct": 40, "eDamPct": 40, "spPct4": -28, "id": 1719}, {"name": "Fatal", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fatal", "basedps": 180.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-360", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "dexReq": 110, "sdPct": 25, "ms": 1, "dex": 25, "spd": 15, "spPct1": 28, "spPct2": -49, "id": 1698}, {"name": "Warp", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Warp", "basedps": 260, "slots": 3, "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "190-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "agiReq": 130, "hprPct": -200, "mr": -45, "ref": 90, "agi": 20, "expd": 50, "spd": 180, "hprRaw": -600, "aDamPct": 15, "spRaw1": 4, "spRaw2": -299, "id": 1729}, {"name": "Oblivion", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Oblivion", "basedps": 1699.5, "slots": 4, "nDam": "1-200", "fDam": "0-0", "wDam": "600-999", "aDam": "0-0", "tDam": "600-999", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 101, "dexReq": 75, "intReq": 65, "mr": -30, "ms": 15, "dex": 15, "expd": 40, "spRegen": 40, "sdRaw": 265, "spRaw2": -20, "id": 3647}, {"name": "Epoch", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Epoch", "basedps": 1680, "sprint": 70, "slots": 3, "nDam": "500-620", "fDam": "0-0", "wDam": "0-0", "aDam": "520-600", "tDam": "480-640", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 102, "dexReq": 70, "agiReq": 70, "sdPct": 40, "ls": 825, "ms": -1, "spd": -20, "mdRaw": 769, "spRaw1": -1, "spRaw4": -1, "id": 3645}, {"name": "Fantasia", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fantasia", "basedps": 1350, "slots": 3, "nDam": "0-0", "fDam": "185-295", "wDam": "200-280", "aDam": "215-265", "tDam": "230-250", "eDam": "170-310", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": -20, "sdPct": 30, "ms": -20, "int": 50, "spPct1": -27, "spPct2": -27, "spPct3": -27, "spPct4": -27, "id": 1697}, {"name": "Slayer", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Slayer", "slots": 2, "hp": 3775, "wDef": -100, "lvl": 94, "dexReq": 75, "agiReq": 60, "dex": 20, "spd": 27, "atkTier": 1, "eSteal": 10, "hprRaw": -270, "mdRaw": 285, "spPct3": -30, "id": 1716}, {"name": "Immolation", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Immolation", "basedps": 640, "slots": 3, "nDam": "0-0", "fDam": "200-440", "wDam": "0-0", "aDam": "310-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 101, "agiReq": 80, "defReq": 80, "hprPct": -180, "agi": 50, "def": 50, "hpBonus": -2750, "fDamPct": 45, "wDamPct": -1000, "aDamPct": 45, "spPct3": -14, "id": 3646}, {"name": "Convergence", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Convergence", "basedps": 300, "slots": 3, "nDam": "70-90", "fDam": "105-115", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 104, "intReq": 65, "defReq": 75, "hprPct": 43, "tDamPct": 55, "eDamPct": 55, "aDefPct": 35, "spPct3": -45, "sprintReg": 43, "id": 3643}, {"name": "Guillotine", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Guillotine", "slots": 4, "hp": 1000, "fDef": 70, "wDef": 70, "aDef": -220, "tDef": 70, "eDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "defReq": 45, "mr": 10, "sdPct": 10, "mdPct": 23, "ls": 215, "ms": 10, "str": 5, "dex": 5, "int": 5, "agi": -99, "def": 5, "hpBonus": -1337, "sdRaw": 150, "aDamPct": -50, "aDefPct": -15, "id": 3588}, {"name": "Prayer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Prayer", "slots": 2, "hp": 1280, "wDef": 100, "tDef": -100, "lvl": 68, "intReq": 45, "sdPct": 12, "xpb": 8, "int": 5, "spRegen": 8, "fDamPct": -16, "wDefPct": 12, "spRaw3": -5, "id": 2155}, {"name": "Symphony", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Symphony", "slots": 2, "hp": 1350, "fDef": 80, "wDef": 80, "tDef": -90, "eDef": -90, "lvl": 72, "intReq": 50, "defReq": 50, "hprPct": 20, "sdPct": 10, "mdPct": -10, "xpb": 12, "ref": 17, "hprRaw": 70, "spRaw4": -6, "id": 3196}, {"name": "Entamyx", "type": "leggings", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Entamyx", "slots": 3, "hp": 2150, "fDef": -100, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": 150, "lvl": 76, "strReq": 50, "intReq": 50, "agiReq": 50, "dex": -20, "def": -20, "wDamPct": 15, "aDamPct": 15, "eDamPct": 15, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw1": -4, "spRaw3": -4, "id": 2638}, {"name": "Gysdep", "type": "helmet", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Gysdep", "slots": 3, "hp": 2000, "fDef": 150, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": -100, "lvl": 74, "intReq": 50, "agiReq": 50, "defReq": 50, "str": -20, "dex": -20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -3, "id": 2642}, {"name": "Aquarius", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aquarius", "slots": 3, "hp": 2550, "fDef": -100, "lvl": 95, "intReq": 110, "mr": 25, "mdPct": -20, "spRaw1": -7, "id": 126}, {"name": "Scaldsteppers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Scaldsteppers", "slots": 2, "hp": 2325, "fDef": 80, "wDef": 110, "aDef": -90, "tDef": -100, "lvl": 90, "intReq": 40, "defReq": 30, "sdPct": 20, "int": 7, "expd": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": -12, "spRaw1": -6, "id": 2956}, {"name": "Steamstone", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Steamstone", "slots": 2, "hp": 2900, "fDef": 75, "wDef": 75, "tDef": -130, "eDef": 50, "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 25, "ms": 5, "int": 7, "def": 8, "aDamPct": -10, "tDamPct": -10, "eDamPct": 16, "fDefPct": 8, "wDefPct": 8, "fixID": true, "spRaw3": -6, "spRaw4": -3, "id": 2821}, {"name": "Leviathan", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Leviathan", "slots": 2, "hp": 2850, "wDef": 90, "aDef": -90, "tDef": -100, "eDef": 100, "lvl": 97, "strReq": 45, "intReq": 45, "str": 12, "atkTier": 1, "eSteal": 7, "wDamPct": 19, "eDamPct": 19, "tDefPct": -10, "spRaw3": -6, "id": 1634}, {"name": "The Courier's Cape", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "The Courier's Cape", "slots": 3, "hp": 1900, "aDef": 50, "lvl": 86, "agiReq": 70, "mr": 10, "xpb": 15, "lb": 10, "agi": 10, "spd": 20, "aDamPct": 23, "aDefPct": 15, "eDefPct": 10, "id": 3261}, {"name": "Exhibition", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Exhibition", "fDef": -30, "wDef": 60, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 105, "intReq": 80, "mr": -10, "spRaw1": -2, "spRaw2": -2, "spRaw3": -2, "spRaw4": -2, "id": 3669}, {"name": "Ambivalence", "type": "necklace", "tier": "Legendary", "majorIds": [], "category": "accessory", "displayName": "Ambivalence", "fDef": 70, "aDef": 70, "tDef": 70, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "sdPct": 50, "int": -100, "wDamPct": 25, "fixID": true, "spPct1": 100, "spPct2": 100, "spPct3": 100, "spPct4": 100, "id": 3618}, {"name": "Conduit of Spirit", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Conduit of Spirit", "hp": 2800, "aDef": 150, "lvl": 93, "agiReq": 105, "mr": 5, "sdPct": 25, "ms": 15, "ref": 25, "spRegen": 50, "aDamPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -5, "id": 639}, {"name": "Ossuary", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Ossuary", "thorns": 30, "slots": 2, "hp": 2550, "aDef": 90, "tDef": 90, "lvl": 84, "ls": 245, "spd": 15, "sdRaw": 170, "aDamPct": 12, "tDamPct": 15, "fixID": true, "spRaw3": -4, "id": 629}, {"name": "Far Cosmos", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Far Cosmos", "slots": 5, "hp": 3500, "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "str": 9, "dex": 9, "int": 9, "agi": 9, "def": 9, "spPct2": -6, "id": 1022}, {"name": "Ophiolite", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Ophiolite", "slots": 4, "hp": 2400, "fDef": 80, "wDef": -60, "aDef": 80, "tDef": -120, "eDef": -60, "lvl": 98, "strReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 20, "sdPct": 14, "mdPct": 40, "ls": -235, "str": 5, "dex": -99, "int": 5, "agi": 5, "def": 5, "spd": -20, "hprRaw": 170, "tDefPct": -20, "spRaw1": -6, "id": 3596}, {"name": "Ionosphere", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Ionosphere", "slots": 3, "hp": 2850, "fDef": 70, "aDef": -110, "tDef": 90, "lvl": 97, "dexReq": 55, "hprPct": -15, "ls": 190, "ms": 5, "dex": 7, "spd": 11, "tDamPct": 21, "eDefPct": -15, "spRaw1": -5, "id": 1466}, {"name": "Dragon's Eye Bracelet", "type": "bracelet", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Dragon's Eye Bracelet", "set": "Grookwarts", "fDef": 25, "lvl": 60, "defReq": 40, "xpb": 10, "expd": 5, "fDamPct": 11, "wDefPct": -8, "spRaw3": -3, "id": 1879}, {"name": "Draoi Fair", "type": "ring", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Draoi Fair", "set": "Grookwarts", "wDef": 20, "eDef": 20, "lvl": 60, "strReq": 25, "intReq": 25, "xpb": 10, "hprRaw": 30, "spRaw1": -3, "id": 1882}, {"name": "Renda Langit", "type": "necklace", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Renda Langit", "set": "Grookwarts", "hp": 230, "aDef": 30, "lvl": 60, "agiReq": 40, "xpb": 10, "spd": 12, "eDefPct": -8, "spRaw2": -3, "spRaw4": -3, "id": 1931}, {"name": "Cloudwalkers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Cloudwalkers", "sprint": 15, "slots": 3, "aDef": 100, "lvl": 94, "agiReq": 50, "sdPct": 40, "xpb": 10, "spd": 30, "aDamPct": 30, "aDefPct": 20, "fixID": true, "spRaw1": -5, "id": 2510}, {"name": "Harmony", "type": "leggings", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Harmony", "slots": 2, "hp": 2650, "fDef": 180, "wDef": 180, "tDef": 180, "eDef": 180, "lvl": 84, "agiReq": 65, "sdPct": 9, "mdPct": -18, "spd": 18, "spRegen": 18, "aDefPct": 45, "spRaw3": -5, "id": 1314}, {"name": "Detachment", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Detachment", "aDef": 60, "tDef": 60, "lvl": 105, "dexReq": 55, "agiReq": 60, "spd": 13, "sdRaw": -65, "mdRaw": -85, "spPct4": -19, "id": 3668}, {"name": "Roridula", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Roridula", "slots": 2, "hp": 3675, "fDef": -150, "eDef": 150, "lvl": 104, "strReq": 55, "intReq": 55, "ms": 8, "xpb": 25, "str": 10, "spd": 15, "wDamPct": 25, "tDamPct": -30, "spPct4": 14, "id": 3659}, {"name": "Panic Zealot", "tier": "Fabled", "type": "relik", "material": "273:7", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 3, "lore": "They must know what you went through. They must suffer the same as you did.", "drop": "never", "restrict": "Untradable", "nDam": "46-60", "fDam": "0-0", "wDam": "0-0", "aDam": "43-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 101, "agiReq": 85, "spd": 30, "atkTier": 3, "hpBonus": -5000, "tDamPct": -30, "spPct1": -100, "spPct2": -100, "spPct3": -100, "id": 3600}, {"name": "The Nothing", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-1", "wDam": "0-0", "aDam": "0-1", "tDam": "0-1", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "dexReq": 55, "defReq": 55, "ls": 700, "ms": 15, "int": -25, "spd": 10, "tSdRaw": 500, "fSdRaw": 500, "aSdRaw": 500, "fixID": true, "spRaw3": -10, "id": 781}, {"name": "Dondasch", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3375, "aDef": 150, "eDef": 150, "lvl": 100, "strReq": 50, "agiReq": 50, "str": 20, "spd": 27, "spRegen": 15, "mdRaw": 280, "fDamPct": -100, "aDamPct": 25, "eDamPct": 25, "id": 0}, {"name": "Eidolon", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "520-570", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "agiReq": 45, "ms": 5, "xpb": 10, "agi": 15, "spd": 30, "spRegen": 15, "fDamPct": -20, "aDefPct": 30, "tDefPct": 25, "id": 1}, {"name": "Nona", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-85", "tDam": "0-0", "eDam": "62-85", "atkSpd": "SUPER_FAST", "lvl": 95, "strReq": 50, "agiReq": 40, "xpb": 10, "agi": 13, "spd": 25, "atkTier": 1, "spRegen": 15, "hprRaw": -180, "sdRaw": 90, "mdRaw": 100, "fDefPct": -100, "id": 2}, {"name": "Breakbore", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-130", "eDam": "60-130", "atkSpd": "SLOW", "lvl": 90, "strReq": 35, "dexReq": 35, "mdPct": 30, "xpb": 10, "lb": 10, "str": 13, "expd": 57, "tDamPct": 20, "wDefPct": -20, "aDefPct": -20, "id": 4}, {"name": "Tera", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3225, "aDef": -200, "tDef": 100, "eDef": 100, "lvl": 90, "strReq": 50, "dexReq": 50, "xpb": 10, "lb": 20, "str": 10, "dex": 10, "tDamPct": 36, "eDamPct": 36, "id": 3}, {"name": "Summa", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": -25, "tDef": -25, "lvl": 95, "mr": 5, "xpb": 10, "str": 1, "dex": 4, "agi": 1, "def": 4, "hprRaw": -35, "type": "ring", "id": 5}, {"name": "Helm Splitter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "714-1114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 60, "mdPct": 150, "xpb": 10, "lb": 10, "str": 20, "atkTier": -1, "sdRaw": -2000, "id": 8}, {"name": "Back-up Plan", "displayName": "Back-Up Plan", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 625, "lvl": 70, "defReq": 50, "xpb": 10, "agi": 7, "def": 7, "type": "bracelet", "id": 7}, {"name": "Quick-Strike Leggings", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1525, "lvl": 70, "classReq": "Assassin", "dexReq": 60, "dex": 20, "spd": 14, "atkTier": 1, "eDefPct": -14, "id": 6}, {"name": "Greenhoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "strReq": 10, "agiReq": 5, "mdPct": 15, "str": 7, "spd": 12, "eDamPct": 10, "id": 11}, {"name": "Durum's Serenity", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "wDef": 7, "eDef": 7, "lvl": 25, "strReq": 5, "intReq": 10, "xpb": 10, "str": 5, "int": 7, "spRegen": 12, "type": "necklace", "id": 10}, {"name": "The Scarecrow's Vest", "tier": "Legendary", "type": "chestplate", "thorns": 60, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": -5, "lvl": 20, "ref": 40, "def": 7, "spd": -7, "hpBonus": 58, "id": 13}, {"name": "Kahontsi Ohstyen", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 60, "strReq": 80, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "sdPct": 20, "xpb": 10, "lb": 10, "dex": -15, "expd": 35, "spd": 20, "tDamPct": -100, "id": 9}, {"name": "Onenya Hronkas", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1750, "fDef": 100, "wDef": -60, "aDef": -60, "eDef": 100, "lvl": 60, "strReq": 30, "defReq": 85, "hprPct": 20, "mdPct": 40, "str": 7, "def": 7, "spd": -12, "atkTier": -1, "hprRaw": 70, "id": 15}, {"name": "Ohonte Kerhite", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "intReq": 100, "defReq": 15, "hprPct": 25, "mr": 15, "sdPct": 25, "mdPct": -75, "xpb": 10, "int": 13, "hpBonus": 770, "spRegen": 25, "wDamPct": 45, "id": 12}, {"name": "Blade of Shade", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-55", "fDam": "65-80", "wDam": "0-0", "aDam": "55-90", "tDam": "40-105", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "dexReq": 20, "agiReq": 20, "defReq": 20, "ls": 225, "ms": 10, "xpb": 10, "spd": 20, "hpBonus": -250, "hprRaw": -70, "fDamPct": 20, "aDamPct": 20, "id": 17}, {"name": "Shackle of Shade", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 50, "tDef": 50, "lvl": 70, "dexReq": 10, "defReq": 10, "xpb": 10, "wDefPct": -3, "aDefPct": 9, "eDefPct": -3, "type": "bracelet", "id": 16}, {"name": "Plague Mask", "tier": "Legendary", "type": "helmet", "poison": 400, "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 925, "fDef": 10, "wDef": 10, "aDef": 70, "tDef": 10, "eDef": 70, "lvl": 55, "hprPct": 20, "sdPct": -10, "mdPct": -15, "ls": 95, "xpb": 10, "def": 7, "spd": -15, "id": 20}, {"name": "Plague Staff", "tier": "Fabled", "type": "wand", "majorIds": ["PLAGUE"], "poison": 1800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "intReq": 50, "int": 20, "hprRaw": 100, "id": 21}, {"name": "Shadestep", "tier": "Legendary", "type": "boots", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": -275, "aDef": 100, "tDef": 120, "lvl": 70, "classReq": "Archer", "dexReq": 30, "agiReq": 60, "ls": 175, "ref": 50, "agi": 13, "spd": 30, "hprRaw": -45, "mdRaw": 195, "id": 14}, {"name": "Purification Bead", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 55, "defReq": 20, "hprPct": 10, "def": 5, "spRegen": 5, "hprRaw": 30, "type": "necklace", "id": 18}, {"name": "Anxiolytic", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3880, "fDef": -125, "wDef": 150, "aDef": 150, "tDef": 125, "eDef": -175, "lvl": 101, "strReq": 35, "dexReq": 40, "intReq": 50, "agiReq": 50, "defReq": 35, "mr": 20, "dex": 15, "int": 10, "agi": 12, "spRaw1": 5, "spRaw3": 5, "spRaw4": 5, "sprintReg": 13, "id": 3629}, {"name": "Deadeye", "tier": "Fabled", "type": "bow", "majorIds": ["HAWKEYE"], "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "577-578", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 45, "xpb": 10, "dex": 30, "id": 19}, {"name": "Redrock Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 425, "fDef": 25, "lvl": 40, "defReq": 30, "xpb": 11, "str": 9, "fDamPct": 19, "fDefPct": 19, "id": 23}, {"name": "Sundown Poncho", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 25, "tDef": 30, "lvl": 40, "dexReq": 15, "defReq": 15, "mdPct": 34, "xpb": 11, "dex": 9, "def": 9, "atkTier": -1, "fDamPct": 30, "tDamPct": 30, "wDefPct": -25, "id": 24}, {"name": "Crossbolt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "mdPct": 50, "spd": -5, "sdRaw": -25, "id": 22}, {"name": "Dissociation", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 101, "mr": 10, "mdPct": 60, "str": -35, "int": -20, "def": -35, "hpBonus": 3550, "sdRaw": 231, "aDefPct": 75, "tDefPct": 75, "spRaw3": -5, "id": 3628}, {"name": "Obolus", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 25, "ls": 38, "xpb": 10, "lb": 30, "def": 9, "spRegen": 20, "hprRaw": 42, "id": 25}, {"name": "Haros' Oar", "tier": "Legendary", "type": "wand", "poison": 75, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-18", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 15, "sdPct": 15, "ms": 10, "xpb": 10, "dex": 7, "wDamPct": 11, "id": 28}, {"name": "Stave of the Legends", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-70", "fDam": "10-40", "wDam": "20-30", "aDam": "0-0", "tDam": "5-45", "eDam": "15-35", "atkSpd": "NORMAL", "lvl": 70, "mr": 10, "sdPct": 20, "str": 10, "dex": 10, "int": 10, "def": 10, "fDefPct": 25, "wDefPct": 25, "tDefPct": 25, "eDefPct": 25, "id": 26}, {"name": "Legend Guard's Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 70, "classReq": "Warrior", "strReq": 30, "defReq": 50, "sdPct": -10, "mdPct": 20, "xpb": 15, "str": 7, "def": 10, "spd": -10, "hpBonus": 339, "id": 27}, {"name": "Trainer's Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 70, "hprPct": 20, "sdPct": -7, "mdPct": -7, "xpb": 12, "hprRaw": 20, "type": "necklace", "id": 33}, {"name": "Binding Brace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 25, "lvl": 50, "dexReq": 25, "sdPct": -4, "ms": -5, "xpb": 10, "dex": 7, "spd": 12, "tDamPct": 15, "type": "bracelet", "id": 32}, {"name": "Constrict Collar", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 45, "xpb": 15, "def": 7, "hpBonus": 96, "hprRaw": -10, "type": "necklace", "id": 29}, {"name": "Marius' Prison", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "lvl": 50, "intReq": 45, "ls": 58, "ms": 20, "xpb": 10, "spd": -20, "atkTier": -1, "sdRaw": 80, "mdRaw": 105, "id": 31}, {"name": "Capsid Frame", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 165, "fDef": 60, "lvl": 60, "intReq": 50, "defReq": 40, "hprPct": 30, "mr": 15, "int": 10, "expd": 25, "fDamPct": 30, "wDamPct": 35, "aDefPct": -90, "id": 3553}, {"name": "Shackles of the Beast", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 525, "wDef": -60, "aDef": 50, "tDef": 50, "lvl": 45, "strReq": 10, "defReq": 20, "mr": -5, "sdPct": -10, "mdPct": 25, "str": 7, "def": 7, "expd": 20, "hpBonus": 525, "id": 30}, {"name": "Phage Pins", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -260, "fDef": 75, "eDef": 75, "lvl": 65, "defReq": 60, "mr": 20, "str": 15, "spd": 15, "hprRaw": 108, "fDamPct": 15, "eDamPct": 15, "spPct2": -47, "id": 3555}, {"name": "Bonder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "210-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "hprPct": 30, "mr": 20, "sdPct": -20, "mdPct": -20, "expd": -500, "spRegen": 20, "hprRaw": 200, "id": 37}, {"name": "Crystal Coil", "tier": "Legendary", "type": "chestplate", "poison": 600, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 190, "eDef": 70, "lvl": 60, "strReq": 50, "ms": 10, "def": 15, "spd": -10, "atkTier": -13, "mdRaw": 1100, "eDamPct": 20, "id": 3554}, {"name": "Braker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "405-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "sdPct": -100, "str": 13, "expd": 77, "spd": -20, "hpBonus": -2050, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 34}, {"name": "About-Face", "tier": "Unique", "type": "chestplate", "thorns": 333, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "fDef": 60, "eDef": 60, "lvl": 86, "strReq": 40, "defReq": 40, "sdPct": -55, "mdPct": -55, "ls": 195, "ms": 10, "ref": 333, "str": 10, "def": 10, "hprRaw": 160, "id": 40}, {"name": "Lower", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "350-430", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "str": 10, "spRaw1": 55, "spRaw2": -15, "spRaw3": -15, "spRaw4": -15, "id": 35}, {"name": "Abyssal Walkers", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": 80, "wDef": -100, "aDef": -80, "tDef": 80, "lvl": 71, "dexReq": 25, "defReq": 25, "ls": 100, "dex": 7, "expd": 5, "spRegen": -15, "eDamPct": -8, "id": 46}, {"name": "Slider", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "ms": 15, "dex": -30, "agi": 15, "spd": 40, "eSteal": 5, "sdRaw": 160, "mdRaw": -50, "id": 36}, {"name": "Accelerator", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 3500, "aDef": -150, "tDef": -150, "lvl": 92, "sdPct": -15, "mdPct": -20, "dex": 10, "agi": 10, "spd": 15, "atkTier": 1, "aDamPct": 11, "tDamPct": 11, "id": 74}, {"name": "Absorption", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "40-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "dexReq": 25, "intReq": 15, "mr": 5, "ms": 5, "xpb": 15, "id": 41}, {"name": "Ace of Spades", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-75", "wDam": "0-0", "aDam": "0-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "agiReq": 50, "defReq": 45, "mr": -15, "agi": 13, "def": 10, "spd": 15, "hpBonus": 2700, "fDamPct": 15, "aDamPct": 25, "id": 44}, {"name": "Acid", "tier": "Unique", "poison": 550, "category": "accessory", "drop": "lootchest", "hp": -250, "wDef": -30, "lvl": 99, "def": -2, "type": "ring", "id": 43}, {"name": "Achromatic Gloom", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 98, "sdPct": 14, "mdPct": 14, "str": -4, "dex": -4, "int": -4, "agi": -4, "def": -4, "sdRaw": 85, "mdRaw": 65, "type": "necklace", "id": 42}, {"name": "Acidstream", "tier": "Rare", "type": "bow", "poison": 311, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "31-37", "aDam": "0-0", "tDam": "0-0", "eDam": "12-14", "atkSpd": "SLOW", "lvl": 31, "ms": 5, "wDefPct": -35, "eDefPct": 15, "id": 45}, {"name": "Acrobat", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "80-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 10, "agiReq": 40, "mdPct": 5, "agi": 7, "spd": 10, "aDamPct": 4, "tDamPct": 6, "fDefPct": -12, "id": 48}, {"name": "Adamantite", "tier": "Legendary", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -20, "lvl": 70, "hprPct": 25, "str": 7, "def": 13, "hpBonus": 1350, "fDamPct": -3, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -3, "id": 47}, {"name": "Adanac", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "wDef": 50, "aDef": 50, "tDef": -50, "lvl": 63, "intReq": 30, "agiReq": 30, "mr": 5, "spd": -15, "hprRaw": 48, "wDefPct": 6, "aDefPct": 6, "id": 49}, {"name": "Adder Stone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 375, "wDef": 25, "eDef": 25, "lvl": 80, "strReq": 30, "intReq": 40, "mr": 5, "xpb": 10, "spd": -5, "hprRaw": 80, "tDamPct": -6, "type": "necklace", "id": 50}, {"name": "Adigard's Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -5, "wDef": 15, "lvl": 30, "mr": 5, "xpb": 12, "agi": 5, "spd": 4, "tDefPct": -4, "id": 51}, {"name": "Admiral's Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 170, "wDef": -10, "tDef": -10, "lvl": 21, "defReq": 15, "xpb": 7, "def": 8, "spd": -6, "hprRaw": 7, "id": 52}, {"name": "Ado Saki", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 105, "wDef": 10, "tDef": -8, "lvl": 20, "intReq": 5, "ls": -6, "ms": 5, "xpb": 12, "ref": 3, "id": 72}, {"name": "Abandoned Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "sdPct": 6, "lb": 5, "id": 39}, {"name": "Stinger", "tier": "Legendary", "type": "bow", "poison": 2000, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "1200-1555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "ls": 735, "ms": -5, "expd": 30, "atkTier": -99, "hprRaw": -240, "id": 38}, {"name": "Adrift", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-33", "fDam": "0-0", "wDam": "70-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 63, "intReq": 25, "mdPct": -15, "ref": 30, "spRegen": 30, "wDefPct": 40, "aDefPct": 15, "tDefPct": 15, "id": 53}, {"name": "Adrenaline", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2200, "fDef": -30, "wDef": -30, "aDef": -65, "tDef": -100, "eDef": -65, "lvl": 88, "intReq": 60, "defReq": 60, "sdPct": 17, "mdPct": -25, "ls": -450, "ms": 15, "int": 6, "def": 6, "spd": 13, "sdRaw": 170, "mdRaw": -170, "id": 3589}, {"name": "Aeolipile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-121", "wDam": "110-162", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "intReq": 35, "defReq": 35, "mr": 5, "sdPct": 10, "mdPct": -10, "int": 9, "fDefPct": 20, "wDefPct": 10, "eDefPct": -15, "id": 54}, {"name": "Adventurous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 60, "agiReq": 30, "xpb": 5, "ref": 5, "spd": 8, "type": "bracelet", "id": 56}, {"name": "Aeolian", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-50", "fDam": "0-0", "wDam": "0-0", "aDam": "14-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "agiReq": 10, "str": -3, "agi": 5, "spd": 5, "aDamPct": 4, "id": 57}, {"name": "Aeolus", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": -30, "lvl": 41, "agiReq": 25, "xpb": 15, "def": -7, "spd": 17, "aDamPct": 6, "fDefPct": -15, "id": 55}, {"name": "Aerodynamics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1400, "fDef": -70, "aDef": 70, "tDef": 60, "eDef": -80, "lvl": 73, "dexReq": 35, "agiReq": 50, "mdPct": -10, "agi": 8, "spd": 16, "aDefPct": 12, "tDefPct": 10, "id": 60}, {"name": "Aerokinesis", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-190", "fDam": "0-0", "wDam": "0-0", "aDam": "100-190", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "agiReq": 75, "agi": 5, "sdRaw": 120, "fDamPct": -29, "wDamPct": -29, "aDamPct": 20, "tDamPct": -29, "eDamPct": -29, "id": 59}, {"name": "Aeronaut", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": -10, "aDef": 10, "lvl": 29, "agiReq": 15, "ref": 7, "agi": 5, "spd": 9, "aDamPct": 7, "fDefPct": -12, "id": 62}, {"name": "Aersectra", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "96-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "41-240", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "agiReq": 40, "sdPct": 21, "def": -10, "expd": 20, "hpBonus": -1000, "mdRaw": 115, "fDamPct": -30, "aDamPct": 24, "aDefPct": 20, "id": 64}, {"name": "Aether", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-70", "tDam": "0-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "spd": 15, "aDamPct": 15, "tDamPct": 15, "fDefPct": -15, "eDefPct": -15, "id": 61}, {"name": "Aerosol", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-92", "fDam": "0-0", "wDam": "0-0", "aDam": "50-125", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "agiReq": 40, "agi": 8, "def": -6, "mdRaw": 75, "fDamPct": -60, "aDamPct": 12, "fDefPct": -60, "id": 58}, {"name": "Affrettando", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-15", "fDam": "0-0", "wDam": "0-0", "aDam": "14-31", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 30, "agiReq": 20, "str": -5, "spd": 21, "mdRaw": 20, "aDamPct": 5, "tDamPct": 15, "eDefPct": -30, "id": 63}, {"name": "Agave", "tier": "Rare", "thorns": 10, "category": "accessory", "drop": "lootchest", "hp": -275, "tDef": 30, "eDef": 30, "lvl": 97, "strReq": 35, "dexReq": 35, "atkTier": -3, "sdRaw": 59, "mdRaw": 85, "type": "ring", "id": 3594}, {"name": "Aggression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": 10, "lvl": 44, "strReq": 15, "mdPct": 7, "str": 4, "expd": 5, "type": "bracelet", "id": 67}, {"name": "Afterimage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "40-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 90, "sdPct": 14, "agi": 9, "spd": 22, "atkTier": 1, "aDamPct": 14, "fDefPct": -12, "wDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 65}, {"name": "Agitation", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "24-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "dexReq": 50, "sdPct": 15, "mdPct": 23, "expd": 19, "hprRaw": -60, "tDamPct": 20, "tDefPct": -70, "id": 66}, {"name": "Air Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "45-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 50, "aDamPct": 15, "aDefPct": 15, "id": 69}, {"name": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 68}, {"name": "Air Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "40-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 70, "aDamPct": 15, "aDefPct": 15, "id": 71}, {"name": "Alarm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "7-10", "tDam": "4-13", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 41, "dexReq": 15, "agiReq": 15, "str": -5, "dex": 5, "agi": 5, "mdRaw": 13, "eDamPct": -14, "id": 79}, {"name": "Air Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "20-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 70}, {"name": "Ajax", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 525, "aDef": -30, "eDef": 30, "lvl": 45, "strReq": 25, "mdPct": 15, "str": 13, "agi": -10, "spd": -10, "sdRaw": -40, "mdRaw": 85, "id": 73}, {"name": "Alaxica", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "27-56", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 40, "sdPct": 15, "xpb": 15, "ref": 10, "agi": 8, "spd": 10, "spRegen": 5, "fDamPct": -20, "wDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 76}, {"name": "Albacore", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": 80, "lvl": 97, "intReq": 45, "defReq": 35, "mr": 5, "ref": 8, "int": 5, "def": 5, "sdRaw": 154, "fDamPct": 13, "wDamPct": 13, "eDefPct": -18, "id": 75}, {"name": "Albedo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2800, "fDef": 100, "wDef": 125, "aDef": 150, "tDef": 125, "eDef": 100, "lvl": 85, "agiReq": 60, "ref": 65, "agi": 10, "fDefPct": 21, "wDefPct": 18, "aDefPct": 15, "tDefPct": 18, "eDefPct": 21, "id": 77}, {"name": "Aldo", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-104", "fDam": "0-0", "wDam": "31-45", "aDam": "71-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "xpb": 19, "lb": 19, "int": 5, "agi": 4, "hpBonus": -190, "wDamPct": 10, "id": 78}, {"name": "Albakaya", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "8-12", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "hprPct": 10, "mr": 5, "hpBonus": 40, "fDefPct": 10, "wDefPct": -10, "id": 125}, {"name": "Alice's Sleeve", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 14, "hprPct": 6, "mdPct": -6, "def": 4, "type": "bracelet", "id": 80}, {"name": "Aldorei's Tear", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 50, "aDef": -10, "tDef": -50, "eDef": 50, "lvl": 77, "strReq": 10, "intReq": 10, "ms": 5, "str": 8, "spd": -5, "id": 83}, {"name": "Aldorei's Vision", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "0-0", "wDam": "45-60", "aDam": "0-0", "tDam": "0-0", "eDam": "45-60", "atkSpd": "SLOW", "lvl": 82, "strReq": 25, "intReq": 25, "mr": 5, "str": 7, "int": 7, "spRegen": 5, "mdRaw": 100, "fDamPct": -10, "aDamPct": -10, "tDamPct": -10, "id": 81}, {"name": "Aldorei's Training Bow", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "7-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "hprPct": 7, "mr": 5, "dex": 1, "id": 84}, {"name": "Aliez", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -225, "aDef": 25, "tDef": 25, "lvl": 75, "dexReq": 35, "agiReq": 40, "mdPct": -10, "ms": 5, "mdRaw": 50, "aDamPct": 11, "tDamPct": 9, "type": "ring", "id": 82}, {"name": "Alazarin", "displayName": "Alizarin", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "15-28", "fDam": "17-60", "wDam": "17-60", "aDam": "17-60", "tDam": "17-60", "eDam": "17-60", "atkSpd": "FAST", "lvl": 89, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "xpb": 23, "hpBonus": 1250, "spRegen": 10, "hprRaw": 150, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 87}, {"name": "Alka Cometflinger", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "425-605", "atkSpd": "SLOW", "lvl": 93, "strReq": 80, "mdPct": 31, "str": 13, "expd": 31, "sdRaw": -175, "eDamPct": 31, "wDefPct": -30, "aDefPct": -30, "id": 85}, {"name": "Alkahest", "tier": "Rare", "type": "helmet", "poison": 3500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "lvl": 95, "strReq": 70, "defReq": 30, "hprPct": -20, "mr": -5, "ls": 145, "ms": 5, "atkTier": -18, "eDamPct": 10, "id": 86}, {"name": "Allegro", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": -50, "lvl": 71, "agiReq": 40, "sdPct": -10, "mdPct": 10, "agi": 5, "spd": 18, "fDamPct": -30, "id": 89}, {"name": "Almuj's Daggers", "tier": "Legendary", "type": "dagger", "poison": 45, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-16", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 20, "dexReq": 15, "agiReq": 8, "xpb": 5, "agi": 8, "spd": 20, "eSteal": 5, "id": 102}, {"name": "Alligator", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "wDef": 7, "tDef": -5, "lvl": 16, "strReq": 5, "intReq": 5, "sdPct": 7, "mdPct": 7, "wDamPct": 4, "tDefPct": -6, "id": 91}, {"name": "Almuj's Walker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 200, "lvl": 25, "lb": 15, "dex": 7, "agi": 7, "spd": 25, "eSteal": 8, "id": 90}, {"name": "Alternator", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 250, "wDef": -10, "tDef": 5, "eDef": -5, "lvl": 32, "dexReq": 20, "mr": -15, "sdPct": 19, "ms": 10, "lb": 7, "mdRaw": 52, "wDamPct": -15, "tDamPct": 11, "id": 94}, {"name": "Aloof", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "spd": -3, "hpBonus": 6, "id": 95}, {"name": "Amadeus", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "160-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 50, "defReq": 30, "mr": 15, "sdPct": 15, "ls": -220, "def": 15, "spd": -15, "fDamPct": 20, "wDefPct": 15, "id": 97}, {"name": "Alumia", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "tDef": 10, "eDef": -5, "lvl": 24, "dexReq": 8, "sdPct": 8, "ref": 6, "spRegen": 4, "tDamPct": 10, "eDamPct": -10, "id": 93}, {"name": "Altimeter", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "28-32", "tDam": "0-0", "eDam": "25-30", "atkSpd": "VERY_FAST", "lvl": 59, "strReq": 25, "agiReq": 27, "sdPct": -8, "mdPct": 12, "spd": 15, "mdRaw": 34, "tDefPct": -10, "id": 92}, {"name": "Amethyst Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "lvl": 36, "intReq": 5, "defReq": 10, "int": 3, "hprRaw": 10, "type": "ring", "id": 98}, {"name": "Amiscia", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 155, "tDef": 10, "eDef": -10, "lvl": 29, "dexReq": 15, "sdPct": 6, "ls": 13, "dex": 5, "tDamPct": 6, "id": 115}, {"name": "Amulet of the Necromancer", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -5, "lvl": 18, "hprPct": -7, "mr": -5, "ls": 3, "ms": 5, "type": "necklace", "id": 101}, {"name": "Amplitude", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "tDef": 75, "eDef": -75, "lvl": 61, "dexReq": 50, "mdPct": 10, "str": -5, "dex": 7, "tDamPct": 10, "eDamPct": -10, "tDefPct": 10, "eDefPct": -10, "id": 100}, {"name": "Anarchy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "sdRaw": 30, "mdRaw": 26, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 108}, {"name": "Anamnesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": -1600, "wDef": 200, "lvl": 82, "intReq": 100, "mr": 20, "mdPct": -55, "ref": 20, "int": 29, "spRegen": 20, "wDamPct": 55, "id": 103}, {"name": "Anchor Chain", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "20-100", "atkSpd": "VERY_SLOW", "lvl": 35, "strReq": 15, "intReq": 15, "mdPct": 11, "str": 10, "spd": -15, "wDamPct": 12, "eDamPct": 12, "aDefPct": -19, "id": 104}, {"name": "Anchoryl", "tier": "Legendary", "type": "boots", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 50, "lvl": 52, "defReq": 25, "hprPct": 23, "ref": 11, "spd": -15, "hpBonus": 250, "hprRaw": 50, "id": 106}, {"name": "Ancient Battle Crossbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "VERY_SLOW", "lvl": 23, "strReq": 45, "mdPct": 23, "xpb": 10, "lb": 12, "str": 15, "dex": 8, "spd": -10, "id": 107}, {"name": "Ancient Scout Shoes", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 10, "lb": 5, "agi": 4, "spd": 7, "id": 105}, {"name": "Ancient Wand", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 109}, {"name": "Aneroid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "aDef": -5, "eDef": 10, "lvl": 23, "strReq": 7, "sdPct": -6, "mdPct": 10, "str": 5, "int": -2, "id": 111}, {"name": "Aneurysm", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": -30, "lvl": 64, "strReq": 20, "dexReq": 45, "hprPct": -15, "mdPct": 10, "ls": -150, "sdRaw": 40, "mdRaw": 100, "wDamPct": -15, "eDamPct": 10, "id": 112}, {"name": "Andante", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "201-201", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 25, "mdPct": 15, "str": 4, "spd": -15, "eDamPct": 10, "eDefPct": 8, "id": 110}, {"name": "Andesite Aegis", "tier": "Legendary", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 110, "wDef": -50, "aDef": -50, "tDef": 100, "eDef": 110, "lvl": 77, "strReq": 30, "defReq": 30, "str": 8, "def": 8, "spd": -10, "hprRaw": 80, "fDefPct": 15, "tDefPct": 10, "eDefPct": 15, "id": 119}, {"name": "Ambiguity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -180, "fDef": 40, "wDef": -50, "aDef": 40, "lvl": 92, "agiReq": 45, "defReq": 45, "hprPct": 10, "agi": 5, "spd": 5, "hpBonus": 600, "hprRaw": 70, "type": "necklace", "id": 96}, {"name": "Animosity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "60-80", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "dexReq": 40, "agiReq": 40, "sdPct": 16, "dex": 8, "agi": 8, "def": -8, "spd": 10, "fDefPct": -26, "wDefPct": -14, "eDefPct": -14, "id": 118}, {"name": "Anger Point", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -80, "wDef": -80, "aDef": -80, "tDef": -80, "lvl": 68, "strReq": 40, "sdPct": 5, "mdPct": 15, "str": 7, "def": -7, "sdRaw": 30, "mdRaw": 145, "eDamPct": 15, "eDefPct": -15, "id": 113}, {"name": "Angel Robe", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1450, "fDef": -60, "aDef": 80, "tDef": 20, "eDef": -20, "lvl": 78, "agiReq": 40, "xpb": 5, "ref": 5, "agi": 7, "spd": 15, "aDefPct": 10, "id": 114}, {"name": "Anno", "tier": "Rare", "poison": 110, "category": "accessory", "drop": "lootchest", "hp": 40, "lvl": 39, "dexReq": 10, "defReq": 10, "hprRaw": 8, "type": "ring", "id": 116}, {"name": "Anokumeme", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-62", "aDam": "32-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "intReq": 40, "agiReq": 25, "mdPct": -12, "spRegen": 10, "wDamPct": 8, "aDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 117}, {"name": "Anthracite Ballista", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "545-675", "wDam": "0-0", "aDam": "545-675", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 98, "agiReq": 40, "defReq": 40, "sdPct": -20, "mdPct": 15, "ls": 500, "expd": 30, "hpBonus": 2000, "mdRaw": 560, "fDefPct": 20, "aDefPct": 20, "id": 122}, {"name": "Amanuensis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "wDef": -60, "lvl": 87, "intReq": 65, "sdPct": 4, "int": 13, "wDamPct": -7, "type": "necklace", "id": 3580}, {"name": "Antimony", "tier": "Rare", "type": "leggings", "poison": 465, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 975, "fDef": 75, "wDef": -80, "lvl": 59, "strReq": 25, "defReq": 10, "mr": -5, "str": 5, "def": 4, "expd": 10, "spd": -5, "fDefPct": 10, "wDefPct": -12, "id": 120}, {"name": "Aluminium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "hprPct": 5, "type": "ring", "id": 99}, {"name": "Antithesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 60, "wDef": 40, "tDef": -120, "lvl": 78, "intReq": 30, "defReq": 35, "hprPct": -27, "sdPct": 16, "hprRaw": -95, "fDamPct": 19, "wDamPct": 13, "tDamPct": -28, "id": 124}, {"name": "Apology", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "266-270", "fDam": "0-0", "wDam": "266-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "intReq": 42, "mr": 10, "mdPct": -10, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 123}, {"name": "Antim", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 99, "hprRaw": 45, "sdRaw": 21, "mdRaw": 23, "type": "necklace", "id": 121}, {"name": "Backburner", "displayName": "Anvil Crawler", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1700", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "dexReq": 50, "sdPct": -20, "dex": 15, "expd": 30, "spd": -20, "atkTier": -10, "mdRaw": 575, "tDamPct": 15, "aDefPct": -30, "id": 129}, {"name": "Antipode", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-35", "fDam": "30-45", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 10, "int": 9, "def": 9, "expd": 10, "fDamPct": 10, "wDamPct": -10, "fDefPct": -10, "wDefPct": 10, "id": 128}, {"name": "Aquamarine", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 60, "eDef": 60, "lvl": 100, "strReq": 40, "intReq": 40, "mr": 10, "ref": 18, "str": 7, "int": 7, "eSteal": 6, "hprRaw": 150, "sdRaw": 105, "mdRaw": 105, "fDamPct": -25, "id": 135}, {"name": "Arakadicus' Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-130", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 66, "strReq": 20, "dexReq": 20, "sdPct": -10, "mdPct": 20, "str": 12, "dex": 12, "aDamPct": -30, "wDefPct": -10, "aDefPct": -30, "id": 130}, {"name": "Arakadicus' Leg", "tier": "Unique", "type": "wand", "poison": 465, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "30-45", "atkSpd": "SLOW", "lvl": 67, "strReq": 15, "dexReq": 15, "sdPct": -10, "mdPct": 10, "xpb": 10, "aDamPct": -50, "tDamPct": 15, "aDefPct": -50, "id": 134}, {"name": "Arakadicus' Maw", "tier": "Rare", "type": "dagger", "poison": 1350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 98, "strReq": 55, "ms": 10, "str": 12, "mdRaw": 220, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "id": 127}, {"name": "Arbalest", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "210-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "230-250", "atkSpd": "SLOW", "lvl": 87, "strReq": 55, "mdPct": -30, "dex": -12, "expd": 40, "sdRaw": 200, "wDamPct": -20, "eDamPct": 25, "spPct4": -45, "id": 131}, {"name": "Aratera", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 80, "wDef": -40, "aDef": -80, "eDef": 40, "lvl": 70, "strReq": 30, "defReq": 40, "str": 12, "expd": 11, "sdRaw": -125, "fDamPct": 20, "eDamPct": 20, "wDefPct": -20, "id": 132}, {"name": "Arc Bracer", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "wDef": -20, "tDef": 50, "eDef": -40, "lvl": 95, "dexReq": 40, "dex": 5, "tDamPct": 7, "type": "bracelet", "id": 136}, {"name": "Arc Rifle", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-240", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 55, "sdPct": 12, "mdPct": 12, "xpb": 8, "dex": 10, "hpBonus": -1550, "tDamPct": 20, "eDefPct": -30, "id": 137}, {"name": "Arcane Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 40, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 15, "mr": 5, "sdPct": 4, "mdPct": -7, "id": 139}, {"name": "Arcane Grieves", "displayName": "Arcane Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "wDef": 3, "lvl": 10, "mr": 5, "int": 3, "id": 138}, {"name": "Archaic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 40, "wDef": -30, "aDef": 20, "lvl": 83, "agiReq": 20, "defReq": 30, "sdPct": -8, "mdPct": -6, "agi": 4, "def": 5, "hprRaw": 50, "type": "ring", "id": 140}, {"name": "Aries", "tier": "Legendary", "type": "helmet", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "lvl": 92, "strReq": 55, "agiReq": 55, "mdPct": 25, "ls": 240, "ms": 5, "agi": 10, "spd": 25, "sdRaw": 175, "wDamPct": -20, "id": 143}, {"name": "Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "11-13", "aDam": "11-13", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 11, "int": 5, "agi": 5, "spRegen": 4, "mdRaw": -21, "tDamPct": -10, "tDefPct": 7, "id": 154}, {"name": "Arcus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 40, "tDef": 40, "eDef": -90, "lvl": 63, "dexReq": 35, "intReq": 35, "ms": 10, "sdRaw": 100, "eDamPct": -12, "eDefPct": -12, "id": 141}, {"name": "Ardiente", "tier": "Unique", "type": "leggings", "poison": 500, "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": -80, "wDef": -120, "lvl": 93, "defReq": 60, "hprPct": -20, "sdPct": 10, "def": 7, "spd": 9, "fDamPct": 27, "wDamPct": -40, "wDefPct": -40, "id": 142}, {"name": "Arkhalis", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "122-182", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 60, "ms": 5, "str": -15, "dex": 15, "spd": 15, "atkTier": -1, "hpBonus": -1350, "mdRaw": 310, "tDamPct": 15, "eDefPct": -30, "id": 145}, {"name": "Ariodo's Dial", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -40, "lvl": 63, "dexReq": 10, "intReq": 5, "sdPct": 5, "int": 3, "tDamPct": 7, "type": "bracelet", "id": 144}, {"name": "Arma Gauntlet", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "106-150", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 75, "strReq": 25, "defReq": 25, "sdPct": -20, "mdPct": 25, "str": 8, "def": 10, "expd": 10, "spd": -12, "hpBonus": 1600, "hprRaw": 80, "sdRaw": -75, "id": 146}, {"name": "Armageddon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 10, "dexReq": 20, "sdPct": 6, "str": 9, "dex": 9, "eDamPct": 15, "id": 147}, {"name": "Artifice", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "mdPct": 6, "ms": 5, "spd": 5, "tDamPct": 8, "eDefPct": -9, "id": 149}, {"name": "Ashes Anew", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "90-110", "wDam": "0-0", "aDam": "90-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "agiReq": 25, "defReq": 30, "mr": 5, "sdPct": -10, "mdPct": -15, "hprRaw": 80, "wDamPct": 50, "id": 150}, {"name": "Asbestos", "tier": "Unique", "poison": 385, "category": "accessory", "drop": "lootchest", "hp": -375, "lvl": 80, "hprPct": -14, "ls": 65, "type": "necklace", "id": 148}, {"name": "Asher's Relic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 17, "mr": 5, "ls": -10, "ms": -10, "spd": 6, "spRegen": -6, "hprRaw": 4, "type": "bracelet", "id": 151}, {"name": "Asphalt", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "87-88", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 32, "defReq": 32, "ls": 200, "int": -5, "agi": -5, "spd": 15, "mdRaw": 115, "wDefPct": -20, "aDefPct": -20, "id": 152}, {"name": "Asphyxia", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -200, "tDef": 150, "lvl": 90, "dexReq": 75, "dex": 15, "agi": -13, "spd": -15, "sdRaw": 200, "mdRaw": 155, "aDamPct": -50, "tDamPct": 30, "id": 155}, {"name": "Assassin's Hood", "tier": "Unique", "type": "helmet", "poison": 110, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 315, "eDef": -10, "lvl": 41, "dex": 4, "eSteal": 5, "tDamPct": 5, "id": 153}, {"name": "Astigmatism", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 48, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "hprPct": -15, "mr": -5, "sdPct": 18, "mdPct": 18, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "id": 156}, {"name": "Assurance", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "30-38", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-38", "atkSpd": "SLOW", "lvl": 53, "strReq": 15, "defReq": 15, "mdPct": 10, "spd": -10, "hpBonus": 200, "fDamPct": 10, "wDamPct": -15, "eDamPct": 10, "id": 158}, {"name": "Asterisk", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "11-15", "tDam": "11-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "dexReq": 20, "agiReq": 20, "sdPct": 13, "str": -4, "def": -4, "spd": 8, "id": 157}, {"name": "Asymptote", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": -100, "tDef": 60, "eDef": 60, "lvl": 66, "strReq": 25, "dexReq": 25, "hprPct": -10, "mdPct": 10, "ls": 115, "ms": 5, "xpb": -10, "lb": 10, "hprRaw": -55, "id": 161}, {"name": "Astral Walkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 70, "wDef": -65, "tDef": 70, "eDef": -75, "lvl": 66, "dexReq": 25, "defReq": 45, "ref": 14, "dex": 5, "hprRaw": 60, "eDamPct": -15, "fDefPct": 12, "id": 159}, {"name": "Atheist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 110, "eDef": 15, "lvl": 19, "strReq": 15, "str": 7, "fDamPct": -5, "tDamPct": -5, "eDamPct": 8, "wDefPct": -5, "aDefPct": -5, "eDefPct": 8, "id": 162}, {"name": "Ataraxy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 25, "eDef": 25, "lvl": 93, "strReq": 30, "intReq": 30, "sdPct": 6, "ms": 5, "atkTier": -2, "type": "ring", "spPct3": 7, "id": 3607}, {"name": "Atlas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 94, "ls": 140, "ms": 5, "atkTier": -8, "type": "bracelet", "id": 167}, {"name": "Atoll", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 80, "wDef": 80, "tDef": -70, "eDef": -70, "lvl": 66, "intReq": 30, "defReq": 30, "sdPct": 6, "def": 4, "hprRaw": 60, "eDamPct": -18, "fDefPct": 13, "wDefPct": 14, "id": 160}, {"name": "Atroce", "tier": "Unique", "type": "chestplate", "poison": 240, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "aDef": -60, "tDef": 60, "eDef": 60, "lvl": 63, "strReq": 45, "dexReq": 45, "ref": 15, "str": 10, "dex": 10, "expd": 20, "id": 166}, {"name": "Audacity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "lvl": 9, "xpb": 10, "sdRaw": 15, "mdRaw": 13, "id": 165}, {"name": "Aura of Element", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "xpb": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 168}, {"name": "Auric", "tier": "Rare", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 80, "ls": 70, "ref": 9, "hprRaw": 60, "sdRaw": -55, "mdRaw": -60, "type": "bracelet", "id": 163}, {"name": "Australis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "34-40", "wDam": "34-40", "aDam": "34-40", "tDam": "34-40", "eDam": "34-40", "atkSpd": "FAST", "lvl": 72, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": -12, "mdPct": -12, "xpb": 12, "ref": 24, "hpBonus": 600, "spRegen": 24, "id": 171}, {"name": "Autumn Tree", "tier": "Unique", "type": "wand", "poison": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-7", "atkSpd": "SLOW", "lvl": 14, "str": 7, "id": 170}, {"name": "Aurora", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 94, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "ring", "id": 164}, {"name": "Autotomized", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 73, "agiReq": 35, "xpb": -3, "str": -3, "agi": 7, "def": -3, "spd": 12, "type": "necklace", "id": 173}, {"name": "Average Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 73, "lvl": 23, "id": 172}, {"name": "Average Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 71, "lvl": 21, "id": 177}, {"name": "Average Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 112, "lvl": 27, "id": 174}, {"name": "Awakening", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "45-72", "wDam": "45-72", "aDam": "45-72", "tDam": "45-72", "eDam": "45-72", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "id": 175}, {"name": "Average Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 86, "lvl": 25, "id": 176}, {"name": "Avocado", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-29", "aDam": "0-0", "tDam": "0-0", "eDam": "25-29", "atkSpd": "NORMAL", "lvl": 29, "strReq": 10, "intReq": 10, "str": 7, "int": 7, "hpBonus": 65, "hprRaw": 20, "id": 269}, {"name": "Azar", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "lb": 4, "type": "bracelet", "id": 180}, {"name": "Azimuth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-80", "tDam": "0-0", "eDam": "20-60", "atkSpd": "FAST", "lvl": 66, "strReq": 40, "agiReq": 45, "sdPct": -9, "mdPct": 9, "str": 7, "agi": 8, "spd": 17, "wDamPct": -20, "aDamPct": 15, "eDamPct": 12, "wDefPct": -15, "id": 178}, {"name": "Azotar", "tier": "Rare", "type": "relik", "poison": 250, "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "65-75", "fDam": "50-60", "wDam": "50-60", "aDam": "50-60", "tDam": "50-60", "eDam": "50-60", "atkSpd": "SLOW", "lvl": 64, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "ls": 140, "ms": 10, "hprRaw": -200, "fixID": true, "spRaw4": -5, "id": 181}, {"name": "Awesome Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 1, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 179}, {"name": "Azure Halo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "wDef": 150, "aDef": 150, "lvl": 91, "intReq": 60, "agiReq": 30, "hprPct": 10, "mr": 10, "xpb": 10, "ref": 23, "def": 8, "spRegen": 30, "hprRaw": 170, "tDamPct": -10, "eDamPct": -10, "fDefPct": 20, "sprintReg": 10, "id": 182}, {"name": "Ba'al's Betrayal", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -45, "lvl": 30, "ls": 23, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 185}, {"name": "Azurite", "tier": "Unique", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2675, "wDef": 90, "eDef": 80, "lvl": 92, "strReq": 35, "intReq": 35, "sdPct": 27, "mdPct": 20, "str": 7, "int": 9, "eSteal": 6, "mdRaw": 175, "tDamPct": -25, "id": 184}, {"name": "Babbling Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "36-53", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -12, "ref": 13, "int": 7, "spd": 5, "sdRaw": 30, "fDamPct": -30, "id": 183}, {"name": "Back Protector", "tier": "Unique", "type": "leggings", "thorns": 2, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 130, "wDef": -6, "lvl": 24, "strReq": 5, "def": 5, "id": 186}, {"name": "Babylon's Scale", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "10-400", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "agiReq": 65, "agi": 13, "def": -10, "expd": -13, "spd": 13, "fDamPct": -19, "aDamPct": 19, "fDefPct": -16, "aDefPct": 16, "id": 187}, {"name": "Bakteri", "tier": "Rare", "type": "boots", "poison": 680, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": -50, "wDef": -70, "aDef": -50, "tDef": 65, "eDef": 90, "lvl": 77, "strReq": 50, "dexReq": 50, "ls": 140, "atkTier": -1, "hprRaw": -120, "wDamPct": -30, "tDamPct": 45, "eDamPct": 30, "id": 191}, {"name": "Backfire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "126-149", "fDam": "149-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "137-171", "atkSpd": "SUPER_SLOW", "lvl": 69, "strReq": 30, "defReq": 30, "mdPct": 8, "ls": -105, "ms": -5, "str": 5, "expd": 14, "id": 189}, {"name": "Backlash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-185", "eDam": "85-85", "atkSpd": "SLOW", "lvl": 77, "strReq": 20, "dexReq": 35, "mdPct": 12, "ls": 180, "str": 5, "dex": 5, "hpBonus": -500, "hprRaw": -90, "id": 207}, {"name": "Bad Wolf", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1350, "aDef": -100, "tDef": 70, "lvl": 60, "dexReq": 35, "mdPct": 15, "xpb": 32, "dex": 8, "spd": 7, "mdRaw": 65, "tDamPct": 15, "id": 188}, {"name": "Ballad", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 20, "wDef": 20, "lvl": 50, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "mdPct": -10, "spRegen": 15, "id": 192}, {"name": "Balankia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 380, "lvl": 39, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 193}, {"name": "Ballista", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "125-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-150", "atkSpd": "VERY_SLOW", "lvl": 55, "strReq": 30, "mdPct": 10, "dex": -2, "def": 5, "expd": 10, "spd": -10, "id": 190}, {"name": "Balloon's Bane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "200-320", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 55, "sdPct": -15, "ls": 115, "def": 5, "expd": 15, "fDamPct": 9, "fDefPct": 15, "aDefPct": 9, "id": 194}, {"name": "Bantisu's Approach", "tier": "Unique", "type": "leggings", "sprint": 10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2500, "fDef": 10, "wDef": 10, "aDef": 80, "tDef": 10, "eDef": 10, "lvl": 86, "mr": 5, "ms": 5, "xpb": 25, "lb": 15, "str": 1, "dex": 1, "int": 1, "agi": 8, "def": 1, "spd": 10, "aDefPct": 20, "sprintReg": 10, "id": 197}, {"name": "Balm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 630, "aDef": 30, "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 10, "xpb": 6, "str": -4, "agi": 4, "spd": 6, "hprRaw": 20, "id": 195}, {"name": "Barbarian", "tier": "Unique", "type": "leggings", "sprint": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": 80, "eDef": 70, "lvl": 92, "strReq": 40, "agiReq": 30, "sdPct": -15, "mdPct": 12, "def": 9, "spd": 9, "mdRaw": 300, "tDamPct": -10, "id": 198}, {"name": "Bamboo Cuff", "tier": "Unique", "poison": 125, "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 15, "dexReq": 15, "mdRaw": 26, "tDamPct": 4, "eDamPct": 4, "fDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 196}, {"name": "Bard's Song", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "23-69", "aDam": "23-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "intReq": 45, "agiReq": 35, "sdPct": -7, "mdPct": -11, "xpb": 12, "ref": 12, "spRegen": 12, "wDamPct": 19, "aDamPct": 19, "id": 203}, {"name": "Barbed Spear", "tier": "Unique", "type": "spear", "poison": 120, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "65-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "strReq": 10, "hprPct": -10, "sdPct": -7, "id": 199}, {"name": "Barrage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 28, "dexReq": 10, "dex": 4, "tDamPct": 5, "type": "ring", "id": 201}, {"name": "Bardiche", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-170", "fDam": "0-0", "wDam": "70-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 35, "agiReq": 40, "hprPct": 25, "ref": 15, "agi": 12, "spd": 14, "spRegen": 10, "aDamPct": 18, "eDamPct": -20, "wDefPct": 23, "id": 200}, {"name": "Basaltic Schynbalds", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "wDef": 40, "eDef": 40, "lvl": 50, "strReq": 20, "intReq": 20, "hprPct": 12, "spd": -8, "wDefPct": 10, "eDefPct": 10, "id": 208}, {"name": "Andesite-hewn Bow", "displayName": "Andesite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 202}, {"name": "Andesite-hewn Relik", "displayName": "Andesite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 204}, {"name": "Andesite-hewn Shears", "displayName": "Andesite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "id": 205}, {"name": "Standard Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 445, "lvl": 50, "id": 211}, {"name": "Andesite-hewn Stick", "displayName": "Andesite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 206}, {"name": "Andesite-hewn Spear", "displayName": "Andesite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 209}, {"name": "Unfinished Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 265, "lvl": 41, "id": 210}, {"name": "Standard Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "lvl": 51, "id": 212}, {"name": "Standard Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "lvl": 52, "id": 213}, {"name": "Refined Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 560, "lvl": 54, "id": 214}, {"name": "Refined Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 590, "lvl": 55, "id": 218}, {"name": "Refined Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 530, "lvl": 53, "id": 215}, {"name": "Refined Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 56, "id": 216}, {"name": "High-Quality Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 58, "id": 220}, {"name": "High-Quality Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 735, "lvl": 59, "id": 222}, {"name": "Unfinished Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 43, "id": 223}, {"name": "Unfinished Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 285, "lvl": 42, "id": 219}, {"name": "Unfinished Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 320, "lvl": 44, "id": 225}, {"name": "Flawed Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 355, "lvl": 46, "id": 224}, {"name": "Flawed Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "lvl": 47, "id": 227}, {"name": "Flawed Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "lvl": 45, "id": 226}, {"name": "Standard Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 420, "lvl": 49, "id": 229}, {"name": "Flawed Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 400, "lvl": 48, "id": 228}, {"name": "Dim Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1540, "lvl": 81, "id": 230}, {"name": "Cloudy Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1985, "lvl": 90, "id": 233}, {"name": "Cloudy Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2040, "lvl": 91, "id": 240}, {"name": "Cloudy Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "lvl": 92, "id": 232}, {"name": "Clear Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2215, "lvl": 94, "id": 231}, {"name": "High-Quality Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 57, "id": 217}, {"name": "Clear Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2155, "lvl": 93, "id": 234}, {"name": "Clear Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2335, "lvl": 96, "id": 235}, {"name": "Clear Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2270, "lvl": 95, "id": 236}, {"name": "Brilliant Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2400, "lvl": 97, "id": 237}, {"name": "High-Quality Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "lvl": 60, "id": 221}, {"name": "Brilliant Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2460, "lvl": 98, "id": 238}, {"name": "Brilliant Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2530, "lvl": 99, "id": 242}, {"name": "Brilliant Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2600, "lvl": 100, "id": 244}, {"name": "Dim Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1630, "lvl": 83, "id": 243}, {"name": "Dim Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1680, "lvl": 84, "id": 248}, {"name": "Smoky Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1725, "lvl": 85, "id": 241}, {"name": "Dim Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1585, "lvl": 82, "id": 239}, {"name": "Smoky Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "lvl": 86, "id": 246}, {"name": "Smoky Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1830, "lvl": 87, "id": 253}, {"name": "Smoky Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1880, "lvl": 88, "id": 251}, {"name": "Diorite-hewn Bow", "displayName": "Diorite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 249}, {"name": "Diorite-hewn Shears", "displayName": "Diorite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "id": 252}, {"name": "Diorite-hewn Relik", "displayName": "Diorite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 247}, {"name": "Cloudy Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1935, "lvl": 89, "id": 245}, {"name": "Aged Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 71, "lvl": 21, "id": 256}, {"name": "Diorite-hewn Stick", "displayName": "Diorite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 255}, {"name": "Used Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 127, "lvl": 30, "id": 254}, {"name": "Used Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 148, "lvl": 32, "id": 266}, {"name": "Used Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 137, "lvl": 31, "id": 261}, {"name": "New Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 158, "lvl": 33, "id": 257}, {"name": "Diorite-hewn Spear", "displayName": "Diorite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 250}, {"name": "New Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 168, "lvl": 34, "id": 258}, {"name": "New Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 178, "lvl": 35, "id": 259}, {"name": "Shining Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 206, "lvl": 37, "id": 262}, {"name": "New Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 192, "lvl": 36, "id": 260}, {"name": "Aged Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 78, "lvl": 22, "id": 264}, {"name": "Shining Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 233, "lvl": 39, "id": 263}, {"name": "Aged Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 86, "lvl": 24, "id": 267}, {"name": "Shining Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "lvl": 38, "id": 265}, {"name": "Aged Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "lvl": 23, "id": 268}, {"name": "Shining Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 247, "lvl": 40, "id": 270}, {"name": "Worn Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 92, "lvl": 25, "id": 271}, {"name": "Worn Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 26, "id": 272}, {"name": "Worn Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 109, "lvl": 27, "id": 274}, {"name": "Worn Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 111, "lvl": 28, "id": 273}, {"name": "Granite-hewn Bow", "displayName": "Granite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "68-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 276}, {"name": "Granite-hewn Shears", "displayName": "Granite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "id": 279}, {"name": "Granite-hewn Relik", "displayName": "Granite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 277}, {"name": "Granite-hewn Spear", "displayName": "Granite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 278}, {"name": "Granite-hewn Stick", "displayName": "Granite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 281}, {"name": "Cracked Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "lvl": 61, "id": 282}, {"name": "Used Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 119, "lvl": 29, "id": 275}, {"name": "Plated Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1090, "lvl": 70, "id": 280}, {"name": "Plated Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "lvl": 71, "id": 283}, {"name": "Plated Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1165, "lvl": 72, "id": 285}, {"name": "Solid Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1205, "lvl": 73, "id": 284}, {"name": "Solid Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1280, "lvl": 75, "id": 286}, {"name": "Solid Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1320, "lvl": 76, "id": 288}, {"name": "Solid Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1240, "lvl": 74, "id": 287}, {"name": "Reinforced Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1405, "lvl": 78, "id": 289}, {"name": "Reinforced Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "lvl": 79, "id": 290}, {"name": "Reinforced Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1365, "lvl": 77, "id": 291}, {"name": "Reinforced Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1490, "lvl": 80, "id": 296}, {"name": "Cracked Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 860, "lvl": 63, "id": 293}, {"name": "Cracked Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "lvl": 62, "id": 292}, {"name": "Cracked Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 890, "lvl": 64, "id": 294}, {"name": "Thin Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 955, "lvl": 66, "id": 295}, {"name": "Thin Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "lvl": 65, "id": 299}, {"name": "Plated Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1055, "lvl": 69, "id": 297}, {"name": "Thin Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 990, "lvl": 67, "id": 300}, {"name": "Thin Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "lvl": 68, "id": 298}, {"name": "Padded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 26, "lvl": 10, "id": 305}, {"name": "Padded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 11, "id": 301}, {"name": "Plain Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3, "lvl": 1, "id": 302}, {"name": "Hard Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 36, "lvl": 13, "id": 304}, {"name": "Padded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 12, "id": 303}, {"name": "Hard Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 40, "lvl": 14, "id": 308}, {"name": "Hard Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 49, "lvl": 16, "id": 309}, {"name": "Studded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 54, "lvl": 17, "id": 306}, {"name": "Hard Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 44, "lvl": 15, "id": 307}, {"name": "Studded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 55, "lvl": 18, "id": 317}, {"name": "Plain Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 2, "id": 311}, {"name": "Studded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 19, "id": 310}, {"name": "Studded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 65, "lvl": 20, "id": 314}, {"name": "Plain Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 7, "lvl": 3, "id": 312}, {"name": "Tanned Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 14, "lvl": 6, "id": 316}, {"name": "Plain Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 9, "lvl": 4, "id": 313}, {"name": "Tanned Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 17, "lvl": 7, "id": 319}, {"name": "Tanned Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 8, "id": 318}, {"name": "Tanned Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 11, "lvl": 5, "id": 315}, {"name": "Padded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 23, "lvl": 9, "id": 321}, {"name": "Light Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 320}, {"name": "Light Birch Wood Shears", "displayName": "Light Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "id": 324}, {"name": "Light Birch Wood Stick", "displayName": "Light Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 329}, {"name": "Light Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 326}, {"name": "Light Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 322}, {"name": "Light Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 323}, {"name": "Light Jungle Wood Stick", "displayName": "Light Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 325}, {"name": "Light Jungle Wood Shears", "displayName": "Light Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 25, "id": 327}, {"name": "Light Oak Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 332}, {"name": "Light Oak Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 328}, {"name": "Light Oak Wood Shears", "displayName": "Light Oak Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "id": 331}, {"name": "Light Oak Wood Stick", "displayName": "Light Oak Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 330}, {"name": "Light Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 336}, {"name": "Light Spruce Wood Shears", "displayName": "Light Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "id": 333}, {"name": "Stone-hewn Bow", "displayName": "Stone-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "17-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 337}, {"name": "Light Spruce Wood Stick", "displayName": "Light Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 335}, {"name": "Stone-hewn Relik", "displayName": "Stone-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 339}, {"name": "Stone-hewn Shears", "displayName": "Stone-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "id": 365}, {"name": "Light Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 334}, {"name": "Stone-hewn Spear", "displayName": "Stone-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 343}, {"name": "Stone-hewn Stick", "displayName": "Stone-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 340}, {"name": "Battle Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "wDef": 60, "tDef": -30, "lvl": 50, "intReq": 35, "sdPct": 10, "mdPct": 5, "str": 4, "int": 4, "sdRaw": 45, "wDamPct": 15, "id": 344}, {"name": "Battleground Dancer", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 50, "agiReq": 60, "sdPct": -25, "mdPct": -8, "str": 6, "agi": 6, "spd": 16, "atkTier": 1, "mdRaw": 135, "id": 342}, {"name": "Bear Opener", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 47, "strReq": 35, "hprPct": -15, "sdPct": -12, "ls": 55, "xpb": 12, "str": 5, "expd": 8, "id": 346}, {"name": "Bastille", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 98, "defReq": 50, "sdPct": -5, "mdPct": -5, "ms": 10, "dex": 13, "spd": -10, "fDamPct": 17, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 338}, {"name": "Bedrock Eater", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 12, "ls": 3, "ms": 5, "id": 348}, {"name": "Bear Pelt", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 57, "lvl": 13, "sdPct": -6, "str": 4, "spd": -3, "hpBonus": 10, "mdRaw": 17, "id": 345}, {"name": "Bedruthan", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-170", "atkSpd": "NORMAL", "lvl": 92, "strReq": 45, "intReq": 55, "mr": 5, "sdPct": 12, "mdPct": 12, "ms": 5, "str": 9, "int": 9, "wDamPct": 30, "tDefPct": -25, "id": 349}, {"name": "Beauty", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "xpb": 4, "type": "necklace", "id": 347}, {"name": "Behemoth", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "110-610", "eDam": "375-535", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 40, "dexReq": 35, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 25, "spd": -20, "tDamPct": 15, "eDamPct": 15, "id": 350}, {"name": "Bejeweled Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 17, "lb": 5, "type": "bracelet", "id": 353}, {"name": "Belcon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-105", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 92, "strReq": 30, "intReq": 40, "sdPct": 8, "mdPct": 8, "str": 8, "spRegen": 30, "eDamPct": 20, "aDefPct": -30, "tDefPct": -30, "id": 354}, {"name": "Bete Noire", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2150, "tDef": 100, "eDef": 100, "lvl": 80, "strReq": 80, "dexReq": 80, "sdPct": 30, "ms": 10, "str": 20, "dex": 20, "atkTier": -7, "spRegen": -150, "hprRaw": -155, "mdRaw": 1100, "id": 352}, {"name": "Battery", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-75", "fDam": "0-0", "wDam": "50-150", "aDam": "0-0", "tDam": "0-200", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "dexReq": 60, "intReq": 60, "mr": 5, "sdPct": 15, "ms": 5, "wDamPct": 15, "tDamPct": 15, "eDamPct": -20, "eDefPct": -30, "id": 341}, {"name": "Belligerence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "lvl": 91, "sdPct": -15, "mdPct": 25, "ls": -145, "str": 8, "dex": 8, "hprRaw": 125, "id": 351}, {"name": "Bianco", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "42-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-38", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "xpb": 9, "ref": 12, "agi": 5, "spRegen": 10, "id": 355}, {"name": "Bibliotek", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "207-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 49, "xpb": 15, "lb": 15, "str": 11, "dex": 11, "int": 11, "agi": 11, "def": 11, "hpBonus": -300, "spPct2": 25, "spPct4": -24, "id": 359}, {"name": "Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 361}, {"name": "Big Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "430-900", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 90, "strReq": 55, "mdPct": 30, "str": 15, "expd": 15, "spd": -15, "eDamPct": 231, "aDefPct": -25, "id": 357}, {"name": "Birch Wood Shears", "displayName": "Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 6, "id": 360}, {"name": "Big Ol' Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-25", "atkSpd": "SLOW", "lvl": 23, "strReq": 20, "mdPct": 6, "str": 5, "agi": -4, "spd": -4, "fDamPct": 7, "eDamPct": 7, "id": 356}, {"name": "Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 358}, {"name": "Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 367}, {"name": "Bismuthinite", "tier": "Legendary", "type": "wand", "poison": 1825, "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-195", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 35, "dexReq": 55, "str": 12, "spd": 15, "tDamPct": 40, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "id": 368}, {"name": "Birch Wood Stick", "displayName": "Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 364}, {"name": "Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "lvl": 20, "classReq": "Mage", "intReq": 30, "sdPct": -25, "mdPct": -25, "int": 5, "wDamPct": 35, "id": 362}, {"name": "Black Abyss", "tier": "Unique", "type": "relik", "poison": 1414, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "690-715", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 94, "dexReq": 55, "mdPct": 15, "str": 75, "dex": -100, "spd": -12, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": 22, "eDamPct": -50, "id": 366}, {"name": "Bizzles", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-125", "fDam": "0-0", "wDam": "125-185", "aDam": "0-0", "tDam": "25-255", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 15, "ms": 5, "int": 7, "hpBonus": -850, "wDamPct": 8, "aDamPct": -25, "tDamPct": 13, "id": 363}, {"name": "Black Arrow", "tier": "Unique", "type": "bow", "poison": 2000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "283-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 40, "ls": 215, "ms": -15, "id": 370}, {"name": "Black", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "65-115", "wDam": "0-0", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "dexReq": 55, "defReq": 55, "mr": -10, "sdPct": 19, "ms": 15, "spRegen": -25, "fDamPct": 19, "wDamPct": -30, "tDamPct": 19, "aDefPct": -40, "eDefPct": -40, "id": 369}, {"name": "Black Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 72, "dexReq": 15, "mdPct": 6, "tDamPct": 6, "type": "ring", "id": 379}, {"name": "Black Sheep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "lvl": 79, "strReq": 50, "spd": 20, "eDamPct": 8, "id": 373}, {"name": "Black Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-130", "fDam": "0-0", "wDam": "0-0", "aDam": "50-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "agiReq": 10, "mdPct": 10, "ls": 135, "dex": -5, "agi": 9, "spd": 5, "aDamPct": 9, "id": 374}, {"name": "Blackened Boots", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "tDef": 20, "eDef": -15, "lvl": 41, "dexReq": 15, "sdPct": 6, "ms": 5, "dex": 4, "spRegen": -15, "wDamPct": -10, "tDamPct": 12, "id": 371}, {"name": "Blade of Purity", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "175-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "mr": 10, "sdPct": 15, "mdPct": 15, "xpb": 20, "spRegen": 20, "sdRaw": 160, "mdRaw": 165, "fDamPct": -150, "wDamPct": -150, "aDamPct": -150, "tDamPct": -150, "eDamPct": -150, "id": 377}, {"name": "Blackout", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "fDef": 6, "tDef": -6, "lvl": 22, "defReq": 5, "dex": -2, "def": 3, "fDamPct": 5, "tDamPct": -5, "type": "bracelet", "id": 372}, {"name": "Blade of Snow", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-28", "fDam": "0-0", "wDam": "12-19", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "intReq": 10, "mr": 5, "sdPct": 6, "ref": 8, "spd": -9, "aDamPct": 5, "fDefPct": -7, "aDefPct": 10, "id": 376}, {"name": "Bladeguard", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "70-100", "fDam": "35-70", "wDam": "0-0", "aDam": "35-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "agiReq": 35, "defReq": 25, "sdPct": -10, "ref": 15, "agi": 15, "def": 15, "fDefPct": 15, "aDefPct": 15, "id": 375}, {"name": "Blade of Wisdom", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 24, "intReq": 8, "mr": 5, "xpb": 8, "lb": 8, "int": 4, "wDamPct": 5, "tDamPct": -5, "id": 378}, {"name": "Bladerunners", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 40, "aDef": -20, "tDef": 20, "eDef": -40, "lvl": 53, "dexReq": 20, "intReq": 20, "hprPct": -16, "dex": 5, "int": 4, "spd": 7, "sdRaw": 35, "id": 382}, {"name": "Bleeding Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-41", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": -13, "ls": 33, "hpBonus": 50, "id": 381}, {"name": "Blank", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "hprPct": 5, "type": "necklace", "id": 383}, {"name": "Blessed Wrappings", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 5, "hprPct": 12, "xpb": 10, "def": 3, "hpBonus": 15, "id": 385}, {"name": "Blight", "tier": "Rare", "type": "wand", "poison": 1000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-20", "atkSpd": "SLOW", "lvl": 55, "eDefPct": 33, "id": 395}, {"name": "Bladestorm", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "37-50", "tDam": "22-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dex": 12, "spd": 15, "aDefPct": -7, "id": 380}, {"name": "Blightsaber", "tier": "Unique", "type": "relik", "poison": 800, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-76", "eDam": "70-76", "atkSpd": "FAST", "lvl": 91, "strReq": 33, "dexReq": 33, "sdPct": 19, "mdPct": 19, "ms": 5, "str": 8, "dex": 8, "hprRaw": -150, "spRaw1": -15, "spRaw2": 15, "id": 384}, {"name": "Blindblight", "tier": "Rare", "type": "helmet", "poison": 95, "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -3, "wDef": -3, "aDef": -3, "tDef": -3, "eDef": -3, "lvl": 29, "ls": 15, "str": 8, "dex": -4, "hprRaw": -10, "mdRaw": 36, "id": 386}, {"name": "Blind Thrust", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3725, "tDef": -300, "lvl": 90, "strReq": 95, "ms": 10, "str": 10, "atkTier": -14, "mdRaw": 1600, "eDamPct": 31, "id": 388}, {"name": "Blizzard", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "29-37", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "intReq": 35, "agiReq": 35, "sdPct": 11, "mdPct": -13, "int": 5, "spd": 10, "fDamPct": -12, "fDefPct": -17, "id": 387}, {"name": "Blood-Soaked Claws", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "mdPct": 8, "ls": 12, "hprRaw": -6, "id": 390}, {"name": "Bloodless", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 250, "lvl": 44, "hprPct": -30, "ls": 41, "hpBonus": 300, "hprRaw": -20, "id": 397}, {"name": "Block Buster", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-100", "atkSpd": "SLOW", "lvl": 76, "strReq": 35, "expd": 48, "eDefPct": -6, "id": 389}, {"name": "Bloodlust", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": -100, "aDef": -100, "tDef": 100, "eDef": 100, "lvl": 87, "strReq": 45, "dexReq": 45, "hprPct": -25, "sdPct": -7, "mdPct": 20, "ls": 240, "str": 7, "dex": 7, "int": -8, "spd": 25, "mdRaw": 190, "id": 391}, {"name": "Blossom", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-65", "atkSpd": "NORMAL", "lvl": 33, "strReq": 30, "intReq": 10, "sdPct": 10, "int": 7, "spd": -10, "eDamPct": 8, "fDefPct": -20, "id": 392}, {"name": "Bloudil", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1380, "lvl": 65, "xpb": 14, "ref": 6, "agi": 5, "spd": 14, "id": 394}, {"name": "Blue Mask", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1, "lvl": 68, "str": 12, "dex": 12, "int": 12, "agi": 12, "def": 12, "id": 393}, {"name": "Blossom Haze", "tier": "Fabled", "type": "dagger", "majorIds": ["CHERRY_BOMBS"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-185", "atkSpd": "FAST", "lvl": 87, "strReq": 65, "ms": 5, "expd": 22, "spd": -20, "atkTier": -1, "aDamPct": 25, "eDamPct": 25, "wDefPct": 26, "spRaw4": -5, "id": 3610}, {"name": "Blueberry", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 870, "wDef": 40, "tDef": -30, "lvl": 58, "ms": 5, "xpb": 16, "ref": 6, "wDamPct": 5, "id": 396}, {"name": "Blur", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "55-73", "tDam": "40-90", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "dexReq": 40, "agiReq": 40, "ms": 10, "dex": 9, "agi": 9, "spd": 14, "fDamPct": -21, "aDamPct": 14, "tDamPct": 14, "eDefPct": -18, "id": 398}, {"name": "Blues Whistle", "tier": "Unique", "type": "bow", "poison": 1500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "FAST", "lvl": 99, "strReq": 50, "ls": -295, "ms": 10, "agi": 9, "def": 9, "eDamPct": 20, "fDefPct": -30, "id": 400}, {"name": "Bob's Lost Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 880, "fDef": 30, "lvl": 58, "sdPct": 5, "mdPct": 5, "xpb": 8, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 402}, {"name": "Blushwind", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 110, "wDef": -75, "aDef": 110, "lvl": 88, "agiReq": 60, "defReq": 30, "ms": 5, "int": -25, "agi": 7, "spd": 14, "hpBonus": 3000, "fDefPct": 12, "aDefPct": 12, "spPct2": -14, "spPct3": -7, "id": 399}, {"name": "Boiler", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "30-48", "wDam": "30-48", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "hprPct": 16, "mr": 10, "int": 4, "def": 4, "fDefPct": 13, "wDefPct": 13, "id": 403}, {"name": "Bombardier", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "25-45", "fDam": "15-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "defReq": 10, "expd": 20, "spd": -10, "hpBonus": -50, "id": 405}, {"name": "Bolt", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-9", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "xpb": 5, "lb": 5, "tDamPct": 5, "id": 401}, {"name": "Bonethrasher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "56-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 83, "agiReq": 40, "sdPct": -20, "dex": 13, "int": -7, "agi": 13, "mdRaw": 75, "id": 406}, {"name": "Bolter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-110", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "dexReq": 40, "sdPct": -15, "ref": 16, "dex": 8, "mdRaw": 75, "tDamPct": 8, "aDefPct": -8, "tDefPct": 12, "id": 404}, {"name": "Booster Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2800, "wDef": 130, "aDef": 100, "lvl": 84, "intReq": 25, "agiReq": 50, "xpb": 12, "agi": 10, "spd": 35, "wDamPct": 15, "aDamPct": 15, "tDefPct": -18, "jh": 3, "id": 408}, {"name": "Boots of Blue Stone", "tier": "Unique", "type": "boots", "sprint": 13, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 82, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "sdRaw": 120, "mdRaw": 160, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "sprintReg": 13, "id": 407}, {"name": "Boots of the Sorcerer", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 96, "wDef": 5, "tDef": 10, "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "mdPct": -7, "int": 3, "wDamPct": 10, "tDamPct": 10, "id": 410}, {"name": "Boulder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": 6, "lvl": 24, "strReq": 10, "sdRaw": -2, "mdRaw": 8, "eDefPct": 5, "type": "ring", "id": 409}, {"name": "Bottled Sky", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "aDef": 150, "eDef": -100, "lvl": 95, "agiReq": 60, "ref": 10, "dex": 6, "int": -24, "agi": 6, "def": 6, "spd": 18, "wDamPct": -25, "spPct1": -7, "spPct3": -7, "spPct4": -14, "id": 446}, {"name": "Bourreau", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "ls": -2, "sdRaw": 4, "mdRaw": 4, "type": "bracelet", "id": 415}, {"name": "Bough of Fir", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 53, "strReq": 20, "intReq": 10, "mr": 5, "sdPct": 16, "lb": 16, "int": 9, "spRegen": 19, "fDamPct": -20, "wDamPct": 20, "fDefPct": -15, "eDefPct": 30, "id": 411}, {"name": "Bovine Killer", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 65, "aDef": -5, "eDef": 5, "lvl": 12, "mdPct": 15, "str": 10, "agi": -4, "id": 413}, {"name": "Bovemist Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 5, "tDef": 5, "lvl": 18, "intReq": 8, "hprPct": 8, "int": 3, "spRegen": 3, "type": "necklace", "id": 412}, {"name": "Bow of Retribution", "tier": "Unique", "type": "bow", "thorns": 18, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-20", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "ls": 39, "ms": 5, "ref": 18, "id": 414}, {"name": "Bow Of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 417}, {"name": "Bow of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 420}, {"name": "Brackenwall", "tier": "Unique", "type": "chestplate", "poison": 360, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -40, "eDef": 110, "lvl": 83, "strReq": 40, "mdPct": 13, "str": 7, "spd": -8, "mdRaw": 145, "eDamPct": 13, "fDefPct": -10, "id": 418}, {"name": "Brass Knuckle", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 20, "mdPct": 8, "str": 4, "eSteal": 3, "aDamPct": -6, "type": "ring", "id": 422}, {"name": "Brass Brand", "tier": "Legendary", "type": "dagger", "thorns": 60, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-160", "atkSpd": "FAST", "lvl": 86, "strReq": 40, "dexReq": 55, "ls": -290, "ref": 20, "dex": 25, "sdRaw": 169, "tDamPct": 40, "fDefPct": -20, "tDefPct": -20, "id": 426}, {"name": "Bravery", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 46, "strReq": 15, "agiReq": 20, "mdPct": 8, "str": 5, "spd": 6, "hpBonus": 150, "eDamPct": 8, "fDefPct": 10, "id": 419}, {"name": "Breakbeat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1800, "fDef": -40, "wDef": -20, "tDef": -20, "eDef": -20, "lvl": 79, "agiReq": 55, "sdPct": 5, "spd": 10, "mdRaw": 120, "fDamPct": 7, "wDamPct": 7, "aDamPct": 10, "tDamPct": 7, "eDamPct": 4, "id": 423}, {"name": "Breaker Bar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "280-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 25, "agiReq": 25, "str": 8, "agi": 8, "spd": 15, "fDamPct": -40, "wDamPct": -40, "aDamPct": 40, "tDamPct": -40, "eDamPct": 40, "id": 424}, {"name": "Breath of the Dragon", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "13-17", "wDam": "0-0", "aDam": "23-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 11, "defReq": 11, "agi": 6, "def": 6, "hprRaw": 9, "fDamPct": 15, "aDefPct": 15, "spRaw1": 5, "id": 428}, {"name": "Breath of the Vampire", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "35-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 35, "agiReq": 25, "ls": 190, "agi": 7, "spd": 10, "aDamPct": 5, "tDamPct": 20, "id": 427}, {"name": "Bridge of the Divide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 650, "wDef": 50, "tDef": 50, "lvl": 51, "dexReq": 20, "intReq": 20, "mr": 5, "ms": 5, "xpb": 20, "ref": 10, "wDamPct": -10, "tDamPct": 20, "wDefPct": 20, "tDefPct": -10, "id": 430}, {"name": "Brocach", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": -150, "eDef": 175, "lvl": 94, "strReq": 65, "mdPct": 10, "spd": -9, "eDamPct": 19, "aDefPct": -15, "eDefPct": 23, "id": 432}, {"name": "Breeze", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "8-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "dex": 3, "agi": 3, "spd": 5, "id": 425}, {"name": "Bright Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 15, "tDef": 3, "eDef": -3, "lvl": 5, "xpb": 6, "id": 431}, {"name": "Broken Balance", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": -500, "lvl": 50, "sdPct": 75, "mdPct": 75, "str": -7, "dex": -7, "int": -7, "agi": -7, "def": -7, "id": 433}, {"name": "Broken Gauntlet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 410, "wDef": -25, "aDef": -25, "lvl": 79, "strReq": 15, "defReq": 15, "sdPct": -5, "mdPct": 6, "type": "bracelet", "id": 434}, {"name": "Brimstone", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "110-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "defReq": 45, "hprPct": 20, "mr": -5, "mdPct": 8, "str": 10, "expd": 12, "hpBonus": 1500, "fDamPct": 8, "eDamPct": 27, "id": 429}, {"name": "Broken Cross", "tier": "Unique", "type": "spear", "thorns": 45, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-257", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "86-143", "eDam": "86-143", "atkSpd": "SUPER_SLOW", "lvl": 62, "strReq": 25, "dexReq": 15, "mdPct": 13, "xpb": 20, "lb": 10, "ref": 45, "def": -40, "hpBonus": 831, "spRegen": -13, "fDefPct": -30, "wDefPct": -30, "aDefPct": -30, "id": 435}, {"name": "Broken Harp", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 10, "sdPct": 10, "int": 4, "tDamPct": -5, "wDefPct": 10, "id": 436}, {"name": "Broken Trident", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "intReq": 10, "sdPct": 8, "mdPct": -8, "wDamPct": 5, "wDefPct": 3, "id": 438}, {"name": "Bronze-Plated Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "aDef": -5, "lvl": 26, "strReq": 10, "defReq": 10, "ref": 10, "str": 4, "def": 4, "id": 437}, {"name": "Bubble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 50, "lvl": 72, "sdPct": 4, "type": "ring", "id": 443}, {"name": "Brook", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 130, "tDef": -150, "lvl": 73, "intReq": 45, "mr": 5, "ref": 10, "fDamPct": -7, "wDamPct": 10, "wDefPct": 10, "tDefPct": -15, "id": 439}, {"name": "Brook Keeper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 460, "wDef": 30, "tDef": -20, "lvl": 49, "intReq": 15, "mr": 5, "sdPct": 10, "spd": 3, "fDamPct": -10, "wDamPct": 5, "id": 440}, {"name": "Bull", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "20-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "FAST", "lvl": 63, "mdPct": 8, "str": 5, "agi": -7, "def": 5, "hpBonus": 450, "aDamPct": -25, "fDefPct": 15, "eDefPct": 25, "id": 441}, {"name": "Bulldozer", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 20, "mdPct": 10, "expd": 20, "spd": -20, "hpBonus": -100, "mdRaw": 105, "eDamPct": 8, "id": 444}, {"name": "Bullseye", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 1, "dex": 4, "id": 449}, {"name": "Bubbline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1875, "wDef": 140, "tDef": -90, "lvl": 81, "intReq": 40, "mr": 10, "mdPct": -15, "ref": 30, "int": 8, "fDefPct": 7, "wDefPct": 15, "id": 442}, {"name": "Bumblebee", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "mdPct": 5, "xpb": 6, "id": 447}, {"name": "Burning Pants", "tier": "Rare", "type": "leggings", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": -5, "wDef": -5, "lvl": 18, "defReq": 10, "expd": 5, "spd": 8, "hpBonus": -20, "fDamPct": 7, "id": 448}, {"name": "Burn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 73, "expd": 6, "fDamPct": 8, "type": "ring", "id": 445}, {"name": "Buster Bracer", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 20, "strReq": 20, "sdPct": 10, "str": 5, "expd": 10, "hpBonus": -45, "mdRaw": 20, "type": "bracelet", "id": 451}, {"name": "Burning Torch", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "10-30", "fDam": "110-180", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 25, "sdPct": -12, "mdPct": 5, "expd": 5, "hpBonus": -90, "fDamPct": 7, "wDamPct": -30, "wDefPct": -20, "aDefPct": -5, "id": 452}, {"name": "Butcher's Clever", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-55", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "intReq": 15, "mr": 5, "int": 8, "wDamPct": 5, "tDamPct": -10, "tDefPct": -10, "id": 453}, {"name": "Burnout", "tier": "Rare", "type": "boots", "sprint": 16, "category": "armor", "drop": "NORMAL", "hp": 3200, "fDef": -80, "aDef": -80, "lvl": 96, "agiReq": 40, "defReq": 60, "mr": -5, "sdPct": -14, "def": 10, "spd": 12, "atkTier": 1, "hprRaw": 175, "fDamPct": 10, "aDamPct": 10, "sprintReg": -8, "id": 450}, {"name": "Butter Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 5, "lb": 20, "id": 457}, {"name": "Butterfly Wings", "tier": "Unique", "type": "relik", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "ref": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 454}, {"name": "Butter Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "lvl": 15, "agi": 4, "id": 455}, {"name": "Bygones", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "120-960", "wDam": "0-0", "aDam": "0-0", "tDam": "390-690", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 35, "defReq": 35, "hprPct": -30, "mdPct": 25, "ls": -290, "ms": 15, "expd": 20, "mdRaw": 610, "wDefPct": -35, "id": 456}, {"name": "Bylvis' Pitchfork", "tier": "Unique", "type": "spear", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-0", "wDam": "70-90", "aDam": "70-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 15, "wDamPct": 17, "aDamPct": 17, "tDamPct": -20, "fDefPct": -30, "tDefPct": -10, "id": 458}, {"name": "Wybel Paw", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 32, "hprPct": -100, "sdPct": -100, "mdPct": -100, "agi": 5, "spd": 35, "fixID": true, "id": 459}, {"name": "Cadence", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 94, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "xpb": 12, "lb": 12, "fDamPct": 17, "wDamPct": 17, "aDamPct": 17, "tDamPct": 17, "eDamPct": 17, "id": 461}, {"name": "Foreword", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "90-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "agiReq": 20, "xpb": 20, "lb": 20, "spd": 20, "aDamPct": 20, "aDefPct": 20, "fixID": true, "id": 460}, {"name": "Cactus", "tier": "Unique", "thorns": 12, "category": "accessory", "drop": "lootchest", "lvl": 36, "ls": -11, "type": "ring", "id": 464}, {"name": "Permafrosted Saxifrage", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "50-73", "tDam": "0-0", "eDam": "60-63", "atkSpd": "NORMAL", "lvl": 45, "strReq": 18, "agiReq": 18, "mdPct": 10, "str": 5, "agi": 5, "aDamPct": 10, "eDamPct": 10, "fDefPct": -20, "wDefPct": 20, "fixID": true, "id": 462}, {"name": "Calcined Estoc", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-99", "aDam": "0-0", "tDam": "0-0", "eDam": "90-99", "atkSpd": "NORMAL", "lvl": 68, "strReq": 40, "intReq": 40, "mr": 5, "mdPct": 15, "str": 8, "dex": -15, "spd": -15, "wDefPct": 10, "eDefPct": 10, "id": 465}, {"name": "Caffeine", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -160, "lvl": 74, "agiReq": 40, "agi": 3, "spd": 12, "hprRaw": -15, "aDamPct": 5, "type": "ring", "id": 469}, {"name": "Cage of Bones", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 80, "wDef": -100, "tDef": 60, "lvl": 57, "dexReq": 35, "defReq": 25, "hprPct": -20, "mdPct": 20, "def": 7, "spd": -10, "mdRaw": 130, "fDamPct": 15, "tDamPct": 20, "wDefPct": -20, "id": 466}, {"name": "Calcite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "fDef": 50, "lvl": 67, "defReq": 20, "mdPct": -3, "def": 13, "spd": -5, "fDamPct": 5, "fDefPct": 7, "id": 467}, {"name": "Caldera", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "36-60", "fDam": "40-85", "wDam": "55-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "sdPct": 10, "int": 5, "def": 7, "hpBonus": -1200, "fDamPct": 15, "wDamPct": 18, "tDefPct": -25, "eDefPct": -15, "id": 468}, {"name": "Calidade Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "fDef": -80, "aDef": -80, "tDef": -80, "lvl": 97, "dexReq": 55, "defReq": 50, "sdPct": -15, "mdPct": 30, "ms": 5, "dex": 5, "agi": 6, "def": 4, "atkTier": 1, "hprRaw": -145, "mdRaw": -113, "fDamPct": 10, "tDamPct": 10, "id": 471}, {"name": "Caledonia", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-455", "fDam": "180-225", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 90, "sdPct": -11, "mdPct": -11, "xpb": 15, "def": 9, "hpBonus": 825, "hprRaw": 125, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 472}, {"name": "Call to Concord", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 25, "aDef": 25, "eDef": 10, "lvl": 64, "defReq": 40, "hprPct": 15, "ref": 10, "def": 5, "spRegen": 5, "tDamPct": -8, "type": "bracelet", "id": 476}, {"name": "Calidum Aurea", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1650, "fDef": 100, "wDef": -95, "lvl": 74, "defReq": 25, "sdPct": -10, "xpb": 5, "lb": 19, "def": 5, "fDamPct": 12, "id": 470}, {"name": "Cancer\u058e", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5200, "fDef": 180, "lvl": 98, "defReq": 80, "int": 10, "def": 15, "hprRaw": 300, "wDefPct": 50, "id": 475}, {"name": "Calming Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 260, "wDef": 60, "tDef": -60, "lvl": 93, "intReq": 35, "int": 5, "wDamPct": 7, "wDefPct": 7, "type": "necklace", "id": 474}, {"name": "Canopy", "tier": "Unique", "type": "leggings", "thorns": 14, "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1300, "fDef": -100, "wDef": 80, "eDef": 60, "lvl": 69, "strReq": 30, "intReq": 30, "sdPct": 4, "ref": 8, "eDamPct": 8, "wDefPct": 10, "id": 485}, {"name": "Canyon Spirit", "tier": "Unique", "type": "wand", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "agiReq": 35, "mdPct": 12, "xpb": 10, "lb": 10, "agi": 13, "aDamPct": 19, "id": 477}, {"name": "Capricorn", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 99, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 15, "ms": 5, "int": 12, "agi": 12, "spd": 18, "id": 480}, {"name": "Capsaicin", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 700, "fDef": -40, "lvl": 52, "defReq": 20, "hprPct": -15, "sdPct": 20, "mdPct": 20, "spd": 15, "hprRaw": -40, "sdRaw": 50, "fDamPct": 20, "fDefPct": -20, "id": 483}, {"name": "Carapace", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 70, "strReq": 20, "sdPct": -10, "mdPct": 10, "str": 13, "agi": -5, "spd": -10, "hpBonus": 700, "eDamPct": 10, "aDefPct": -20, "id": 479}, {"name": "Capstone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 880, "fDef": 35, "wDef": -30, "aDef": -30, "eDef": 35, "lvl": 55, "strReq": 10, "defReq": 30, "lb": 14, "str": 4, "def": 7, "spd": -6, "fDefPct": 14, "eDefPct": 14, "id": 481}, {"name": "Cardiac Arrest", "tier": "Legendary", "type": "chestplate", "poison": 1000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "tDef": 90, "eDef": 130, "lvl": 91, "strReq": 70, "dexReq": 50, "hprPct": -40, "sdPct": 30, "agi": -20, "def": -20, "atkTier": -1, "hprRaw": -200, "spPct2": -32, "spPct3": -21, "spPct4": -24, "id": 482}, {"name": "Cardinal Ruler", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "300-370", "fDam": "65-75", "wDam": "0-0", "aDam": "0-0", "tDam": "5-135", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 88, "dexReq": 35, "defReq": 35, "hprPct": -30, "sdPct": 15, "ls": 260, "ms": 10, "dex": 16, "spd": -20, "fDamPct": 15, "tDamPct": 15, "id": 488}, {"name": "Call of the Void", "tier": "Legendary", "type": "helmet", "thorns": 65, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 56, "hprPct": 10, "ls": -75, "ref": 65, "agi": -8, "hprRaw": 50, "id": 473}, {"name": "Careless Whisper", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "165-188", "wDam": "0-0", "aDam": "165-188", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "agiReq": 40, "defReq": 40, "mr": 5, "agi": 11, "def": 11, "spd": -8, "hpBonus": 1750, "hprRaw": 125, "spPct1": -48, "id": 490}, {"name": "Carnivorous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -8, "lvl": 33, "mdPct": 6, "ls": 10, "hprRaw": 4, "mdRaw": 9, "type": "ring", "id": 484}, {"name": "Carvel's Creation", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 51, "wDef": 7, "aDef": 7, "lvl": 14, "mr": 5, "xpb": 6, "lb": 6, "spd": 9, "id": 487}, {"name": "Carrot", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1-190", "atkSpd": "VERY_SLOW", "lvl": 58, "strReq": 15, "mdPct": 25, "ls": -90, "ms": -5, "str": 13, "int": -20, "agi": -5, "eDamPct": 40, "id": 486}, {"name": "Cascade", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "18-30", "fDam": "15-30", "wDam": "15-30", "aDam": "15-30", "tDam": "15-30", "eDam": "15-30", "atkSpd": "VERY_FAST", "lvl": 98, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "mr": 10, "sdPct": 30, "str": -6, "dex": -6, "int": -6, "agi": -6, "def": -6, "expd": 30, "spd": 30, "mdRaw": 65, "id": 489}, {"name": "Carvel's Sight", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "9-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "intReq": 8, "mr": 5, "sdPct": 4, "xpb": 4, "lb": 4, "id": 495}, {"name": "Candlestick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-22", "fDam": "11-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "sdPct": 8, "int": 5, "expd": 4, "fDamPct": 10, "wDamPct": -20, "id": 478}, {"name": "Cassiterite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 50, "eDef": 50, "lvl": 71, "strReq": 30, "defReq": 30, "hprPct": 15, "mdPct": 10, "xpb": 10, "mdRaw": 150, "fDefPct": 10, "eDefPct": 10, "id": 491}, {"name": "Cataract", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-1630", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "intReq": 50, "sdPct": 15, "ls": -130, "ms": 10, "dex": -30, "int": 10, "atkTier": -1, "wDamPct": 15, "tDefPct": -30, "id": 492}, {"name": "Caterpillar", "tier": "Rare", "type": "leggings", "poison": 3500, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2885, "aDef": -110, "eDef": 130, "lvl": 92, "strReq": 55, "dexReq": 40, "xpb": 8, "str": 8, "def": 5, "spd": -8, "atkTier": -8, "eDamPct": 20, "id": 497}, {"name": "Cave In", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 21, "strReq": 18, "lb": 10, "expd": 35, "spd": -20, "hprRaw": -20, "eDamPct": 25, "spPct3": -21, "id": 493}, {"name": "Celestial", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-16", "fDam": "0-0", "wDam": "0-0", "aDam": "6-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "agiReq": 8, "mr": 5, "xpb": 5, "ref": 3, "id": 501}, {"name": "Ceiling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-120", "tDam": "0-0", "eDam": "40-80", "atkSpd": "FAST", "lvl": 70, "strReq": 30, "agiReq": 35, "sdPct": -10, "mdPct": 10, "xpb": 15, "spd": 12, "wDamPct": -17, "id": 494}, {"name": "Celebration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "xpb": 25, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 5, "id": 500}, {"name": "Cementing Arrow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "140-175", "aDam": "0-0", "tDam": "0-0", "eDam": "140-175", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 8, "agi": -12, "spd": -12, "wDamPct": 8, "eDamPct": 8, "id": 496}, {"name": "Cemented Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "160-200", "fDam": "0-0", "wDam": "360-465", "aDam": "0-0", "tDam": "0-0", "eDam": "360-465", "atkSpd": "SUPER_SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 10, "agi": -12, "spd": -12, "wDamPct": 12, "eDamPct": 12, "id": 498}, {"name": "Cementing String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 48, "strReq": 20, "intReq": 20, "sdPct": 8, "mdPct": 8, "str": 5, "agi": -8, "spd": -8, "wDamPct": 6, "eDamPct": 6, "id": 503}, {"name": "Cenote", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 40, "eDef": 40, "lvl": 68, "strReq": 50, "intReq": 50, "hprPct": 20, "str": 4, "int": 4, "hprRaw": 55, "wDefPct": 12, "eDefPct": 12, "id": 504}, {"name": "Centrifugal", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-95", "atkSpd": "SLOW", "lvl": 90, "strReq": 25, "intReq": 25, "sdPct": 6, "mdPct": 6, "ms": 5, "spd": -7, "eDamPct": 8, "aDefPct": -10, "id": 502}, {"name": "Centennial", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2125, "fDef": 100, "wDef": 100, "lvl": 80, "intReq": 20, "defReq": 20, "hprPct": 18, "mr": 5, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 499}, {"name": "Ceramic Shell Greaves", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2555, "fDef": 135, "aDef": 70, "tDef": -135, "eDef": -70, "lvl": 91, "agiReq": 25, "defReq": 45, "sdPct": -40, "int": -12, "agi": 8, "expd": 18, "spd": 15, "wDamPct": 40, "fDefPct": 12, "aDefPct": 12, "spPct1": -21, "id": 507}, {"name": "Cerid's Dynamo", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 59, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "id": 506}, {"name": "Chain Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "45-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "strReq": 50, "agiReq": 20, "sdPct": -12, "mdPct": 8, "str": 8, "agi": 4, "eDamPct": 19, "fDefPct": -9, "id": 508}, {"name": "Cerid's Precision", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "wDef": -20, "tDef": 30, "eDef": -20, "lvl": 42, "dexReq": 25, "sdPct": 10, "dex": 9, "expd": 5, "mdRaw": 60, "tDamPct": 8, "eDamPct": -10, "wDefPct": -10, "eDefPct": -10, "id": 505}, {"name": "Chain Link", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 400, "lvl": 45, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdRaw": 30, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 511}, {"name": "Chain Rule", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "wDef": 85, "tDef": -75, "eDef": 145, "lvl": 85, "strReq": 105, "hprPct": -36, "ms": 5, "sdRaw": 135, "wDamPct": -20, "tDamPct": -22, "eDamPct": 20, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3617}, {"name": "Chains of Steel", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 280, "lvl": 38, "xpb": 5, "str": 7, "hpBonus": 40, "id": 510}, {"name": "Chained Pixels", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 512, "fDef": 16, "wDef": 16, "aDef": 16, "tDef": 16, "eDef": 16, "lvl": 38, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "xpb": 16, "lb": 16, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 509}, {"name": "Chakram", "tier": "Legendary", "type": "dagger", "poison": 350, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-50", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "22-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 60, "agi": 13, "spd": 21, "atkTier": 1, "eSteal": 5, "tDamPct": 10, "tDefPct": 10, "id": 513}, {"name": "Chaleur", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "70-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 25, "hprPct": -25, "int": -5, "def": 7, "expd": 15, "sdRaw": 35, "mdRaw": 59, "fDamPct": 15, "wDefPct": -25, "id": 512}, {"name": "Chandelle", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "5-8", "fDam": "5-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "hprPct": 5, "hpBonus": 10, "id": 540}, {"name": "Chameleon", "tier": "Unique", "type": "helmet", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 750, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 57, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 9, "mdPct": 9, "ref": 9, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "spd": 9, "id": 515}, {"name": "Chaos", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 62, "sdPct": 30, "mdPct": 30, "hpBonus": 1200, "sdRaw": 70, "mdRaw": 90, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 514}, {"name": "Chaotic", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-193", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 71, "dexReq": 40, "dex": 9, "expd": 7, "spd": 7, "eDamPct": -30, "eDefPct": -30, "id": 517}, {"name": "Charm of the Magma", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 45, "eDef": 45, "lvl": 88, "classReq": "Warrior", "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 10, "xpb": 6, "lb": 6, "spd": -8, "hpBonus": 500, "type": "necklace", "id": 516}, {"name": "Charm of the Storms", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -200, "wDef": 30, "aDef": 30, "tDef": -70, "lvl": 88, "classReq": "Archer", "intReq": 40, "agiReq": 40, "mdPct": -8, "xpb": 6, "lb": 6, "agi": 5, "wDamPct": 13, "aDamPct": 13, "type": "necklace", "id": 518}, {"name": "Charm of the Tides", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": 40, "tDef": -80, "lvl": 88, "classReq": "Mage", "intReq": 40, "defReq": 40, "mr": 5, "sdPct": -21, "mdPct": -21, "xpb": 6, "lb": 6, "wDamPct": 15, "type": "necklace", "id": 520}, {"name": "Charm of the Tempest", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 25, "tDef": 25, "eDef": -60, "lvl": 88, "classReq": "Assassin", "dexReq": 40, "agiReq": 40, "hprPct": -15, "xpb": 6, "lb": 6, "mdRaw": 52, "aDamPct": 11, "tDamPct": 11, "type": "necklace", "id": 523}, {"name": "Charm of the Flea", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 15, "lvl": 20, "agiReq": 8, "ls": 4, "agi": 3, "type": "necklace", "id": 522}, {"name": "Charm of the Leech", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 100, "lvl": 50, "intReq": 15, "ls": 21, "ms": 5, "tDefPct": -7, "type": "necklace", "id": 521}, {"name": "Charm of the Tick", "tier": "Unique", "poison": 60, "category": "accessory", "drop": "lootchest", "hp": 45, "lvl": 35, "ls": 9, "type": "necklace", "id": 524}, {"name": "Charon's Left Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-13", "eDam": "10-17", "atkSpd": "SLOW", "lvl": 21, "strReq": 10, "ls": 14, "ms": -5, "str": 4, "dex": 4, "spd": -5, "tDamPct": 10, "fDefPct": -15, "id": 525}, {"name": "Charm of the Vampire", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 65, "ls": 45, "tDamPct": 5, "type": "necklace", "id": 526}, {"name": "Charybdis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "wDef": 80, "tDef": -120, "eDef": 80, "lvl": 85, "strReq": 40, "intReq": 40, "mr": 5, "sdPct": 6, "str": 5, "int": 5, "spd": -8, "mdRaw": 190, "wDamPct": 12, "eDamPct": 12, "tDefPct": -12, "id": 528}, {"name": "Chef Hamsey's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 3, "drop": "never", "hp": 2900, "fDef": -150, "wDef": -150, "tDef": 150, "lvl": 96, "hprPct": 25, "mr": 10, "int": 7, "def": 7, "spRegen": 10, "id": 527}, {"name": "Cherufe", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "75-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-75", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "defReq": 20, "ls": 50, "def": 5, "mdRaw": 145, "eDamPct": 10, "wDefPct": -18, "id": 530}, {"name": "Chief", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "4-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 14, "xpb": 7, "lb": 8, "def": 4, "hpBonus": 40, "fDamPct": 5, "id": 533}, {"name": "Chest Breaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "strReq": 30, "sdPct": 7, "mdPct": 18, "str": 7, "def": -4, "expd": 8, "hpBonus": -210, "aDefPct": -15, "id": 531}, {"name": "Chestplate of Ineptitude", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3375, "lvl": 98, "sdPct": -10, "mdPct": 10, "str": -3, "dex": -3, "int": -3, "agi": -3, "def": -3, "atkTier": 1, "sdRaw": -110, "mdRaw": 140, "id": 529}, {"name": "Chill", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -40, "fDef": -5, "wDef": 5, "aDef": 5, "lvl": 41, "intReq": 15, "spd": -3, "sdRaw": 13, "wDamPct": 5, "aDamPct": 5, "type": "ring", "id": 534}, {"name": "Chimaera", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 78, "lvl": 13, "ls": 5, "str": 7, "agi": 7, "def": 7, "id": 536}, {"name": "Chinked Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "fDef": 90, "aDef": -160, "lvl": 72, "defReq": 20, "hprPct": 12, "def": 8, "spd": -9, "hpBonus": 650, "fDefPct": 15, "aDefPct": -15, "tDefPct": 7, "eDefPct": 7, "id": 537}, {"name": "Chipped Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "never", "hp": 7, "lvl": 3, "id": 539}, {"name": "Chipped Leather Pants", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "never", "hp": 11, "lvl": 5, "id": 535}, {"name": "Chipped Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "hp": 3, "lvl": 1, "id": 541}, {"name": "Chipped Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "hp": 16, "lvl": 7, "id": 538}, {"name": "Chimney", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 760, "fDef": 55, "wDef": -55, "aDef": 55, "lvl": 52, "agiReq": 25, "defReq": 25, "hprPct": 20, "agi": 5, "def": 5, "expd": 8, "wDamPct": -15, "fDefPct": 12, "aDefPct": 12, "id": 532}, {"name": "Chlorine", "tier": "Unique", "poison": 170, "category": "accessory", "drop": "lootchest", "tDef": -20, "lvl": 64, "intReq": 15, "hprPct": -7, "sdPct": 6, "wDamPct": 5, "type": "ring", "id": 542}, {"name": "Chlorofury", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-40", "fDam": "0-0", "wDam": "35-40", "aDam": "0-0", "tDam": "0-0", "eDam": "35-40", "atkSpd": "NORMAL", "lvl": 63, "strReq": 30, "intReq": 30, "sdPct": 8, "mdPct": 8, "hpBonus": -250, "sdRaw": 60, "mdRaw": 80, "id": 545}, {"name": "Chroma Cannon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "20-60", "wDam": "20-60", "aDam": "20-60", "tDam": "20-60", "eDam": "20-60", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "hpBonus": -150, "spRegen": -30, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 543}, {"name": "Cigar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 43, "expd": 5, "fDamPct": 12, "eDamPct": 6, "id": 546}, {"name": "Chrysoprase", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-100", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "SLOW", "lvl": 59, "strReq": 25, "defReq": 25, "sdPct": -13, "mdPct": 11, "hpBonus": 300, "fDamPct": 12, "wDamPct": -15, "eDamPct": 12, "wDefPct": -15, "id": 544}, {"name": "Ciocca", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "0-0", "aDam": "10-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "agiReq": 15, "sdPct": 8, "mdPct": -5, "spd": 8, "fDefPct": -8, "eDefPct": 8, "id": 548}, {"name": "Circuit Buster", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-31", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "dexReq": 10, "hprPct": -9, "dex": 5, "sdRaw": 15, "mdRaw": 20, "id": 547}, {"name": "Cinnabar", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 90, "wDef": -75, "aDef": 90, "tDef": -75, "lvl": 77, "agiReq": 55, "defReq": 55, "hprPct": 25, "sdPct": -12, "mdPct": -12, "agi": 9, "def": 9, "expd": 30, "hprRaw": 80, "fDefPct": 15, "aDefPct": 15, "id": 550}, {"name": "Cirrus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 40, "aDef": 70, "tDef": -90, "eDef": -70, "lvl": 69, "agiReq": 50, "ms": 5, "agi": 7, "spd": 12, "wDamPct": 6, "aDamPct": 10, "wDefPct": 10, "aDefPct": 6, "id": 553}, {"name": "Clairvoyance", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "intReq": 55, "sdPct": 20, "ms": 10, "ref": 20, "dex": 13, "spRegen": 5, "wDefPct": 14, "tDefPct": 14, "id": 551}, {"name": "Circuit Flights", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "43-60", "tDam": "52-74", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 66, "dexReq": 25, "agiReq": 25, "ls": -169, "xpb": 12, "mdRaw": 75, "aDamPct": 18, "tDamPct": 18, "eDefPct": 24, "id": 549}, {"name": "Clap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "mdPct": 4, "mdRaw": 4, "type": "ring", "id": 552}, {"name": "Clarity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 12, "int": 3, "type": "ring", "id": 556}, {"name": "Cleanshear", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 875, "lvl": 63, "dexReq": 60, "ls": 75, "ref": 3, "dex": 8, "spd": 6, "mdRaw": 100, "eDamPct": -10, "id": 554}, {"name": "Cleansing Flame", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "8-16", "fDam": "45-55", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 20, "defReq": 20, "mr": 5, "def": 8, "spd": -10, "hpBonus": 200, "wDamPct": 15, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 560}, {"name": "Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 5, "xpb": 3, "id": 557}, {"name": "Clash Hook", "tier": "Legendary", "type": "spear", "thorns": 34, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "5-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 10, "xpb": 10, "agi": 7, "spd": 5, "id": 555}, {"name": "Clearwater", "tier": "Unique", "type": "bow", "poison": -200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "intReq": 55, "hprPct": 20, "mr": 5, "int": 9, "spRegen": 5, "wDefPct": 14, "tDefPct": -8, "id": 558}, {"name": "Clerical", "tier": "Rare", "type": "leggings", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "wDef": 195, "tDef": -110, "lvl": 94, "intReq": 60, "mr": 5, "sdPct": -50, "mdPct": -60, "ref": 25, "int": 10, "wDamPct": 40, "tDamPct": -25, "wDefPct": 25, "id": 3605}, {"name": "Clay", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 50, "lvl": 73, "mdPct": 6, "type": "ring", "id": 559}, {"name": "Clock Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "xpb": 8, "id": 563}, {"name": "Cloud Cover", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "aDef": 80, "tDef": -70, "lvl": 72, "intReq": 15, "agiReq": 40, "ms": 5, "agi": 8, "spd": 6, "hprRaw": 60, "fDamPct": -11, "wDamPct": 8, "wDefPct": 11, "id": 561}, {"name": "Cloud Nine", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "30-100", "aDam": "10-10", "tDam": "50-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "intReq": 40, "mdPct": -11, "ref": 20, "dex": 8, "int": 8, "fDamPct": -40, "fDefPct": 15, "wDefPct": 25, "aDefPct": 20, "tDefPct": 25, "eDefPct": 15, "id": 564}, {"name": "Cloudbreaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-65", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "35-52", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "agiReq": 25, "dex": 7, "agi": 7, "spd": 20, "fDamPct": -5, "aDamPct": 20, "tDamPct": 20, "eDamPct": -10, "id": 562}, {"name": "Clovis Leg Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "fDef": -40, "aDef": 15, "eDef": 15, "lvl": 46, "strReq": 20, "agiReq": 20, "sdPct": -20, "mdPct": 8, "spd": 8, "mdRaw": 65, "aDamPct": 10, "eDamPct": 10, "id": 565}, {"name": "Cloudburst", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "aDef": 10, "lvl": 19, "agiReq": 20, "def": -5, "spd": 12, "mdRaw": 30, "aDamPct": 15, "id": 568}, {"name": "Cnidocyte", "tier": "Unique", "type": "leggings", "poison": 450, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 70, "aDef": -80, "tDef": -80, "eDef": 90, "lvl": 78, "strReq": 45, "intReq": 25, "hprPct": -16, "sdPct": 6, "mdPct": 6, "str": 7, "tDefPct": -20, "id": 566}, {"name": "Cluster", "tier": "Legendary", "type": "bow", "poison": 800, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-240", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "ls": 585, "ms": 10, "expd": 65, "eSteal": 10, "id": 567}, {"name": "Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "fDef": 15, "wDef": -15, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 3, "def": 4, "expd": 8, "spd": -5, "hpBonus": 70, "id": 570}, {"name": "Coba", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 80, "wDef": -70, "tDef": 80, "eDef": -100, "lvl": 78, "dexReq": 45, "defReq": 40, "sdPct": 7, "ls": 125, "xpb": 10, "lb": 15, "dex": 4, "hpBonus": -150, "spRegen": -5, "id": 569}, {"name": "Corase Torc", "displayName": "Coarse Torc", "tier": "Unique", "poison": 80, "category": "accessory", "drop": "lootchest", "hp": 55, "aDef": -20, "eDef": 20, "lvl": 43, "strReq": 15, "str": 3, "eDamPct": 7, "type": "necklace", "id": 571}, {"name": "Coat of Byakko", "tier": "Unique", "type": "chestplate", "thorns": 20, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -100, "aDef": 75, "eDef": 75, "lvl": 85, "strReq": 30, "agiReq": 30, "mdPct": -10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 220, "aDamPct": 10, "eDamPct": 10, "id": 574}, {"name": "Cobra", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "dexReq": 15, "xpb": 6, "lb": 6, "dex": 4, "eSteal": 6, "mdRaw": 23, "aDamPct": 6, "id": 573}, {"name": "Cockleburr", "tier": "Unique", "type": "dagger", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-155", "atkSpd": "SLOW", "lvl": 96, "strReq": 45, "ls": 290, "ms": 5, "spd": -8, "mdRaw": 190, "eDamPct": 7, "fDefPct": -10, "aDefPct": 12, "id": 575}, {"name": "Coconut\u058e", "displayName": "Coconut", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-105", "aDam": "0-0", "tDam": "0-0", "eDam": "90-105", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 20, "intReq": 15, "hprPct": 10, "mdPct": 12, "str": 7, "spd": -10, "id": 576}, {"name": "Coeur de Lion", "tier": "Rare", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-75", "fDam": "30-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 30, "hprPct": 15, "mr": 5, "def": 10, "hpBonus": 600, "fDefPct": 20, "wDefPct": -20, "id": 572}, {"name": "Cognizance", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "lvl": 49, "intReq": 40, "str": -4, "int": 10, "def": -4, "wDamPct": 7, "eDamPct": -7, "fDefPct": -7, "wDefPct": 7, "id": 580}, {"name": "Coiled Briar", "tier": "Rare", "thorns": 11, "category": "accessory", "drop": "lootchest", "fDef": -15, "lvl": 90, "mdPct": 5, "ref": -6, "spd": -5, "eDamPct": 8, "type": "ring", "id": 578}, {"name": "Cold Integrity", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "24-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 74, "intReq": 55, "agiReq": 40, "mr": 5, "int": 15, "hpBonus": -1500, "spRegen": 15, "sdRaw": 800, "wDamPct": 72, "aDefPct": 30, "id": 579}, {"name": "Col Legno", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-35", "eDam": "30-35", "atkSpd": "FAST", "lvl": 48, "strReq": 24, "dexReq": 24, "ls": -50, "def": -10, "mdRaw": 52, "tDamPct": 10, "eDamPct": 10, "id": 577}, {"name": "Cold Wave", "tier": "Fabled", "majorIds": ["FLASHFREEZE"], "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 75, "intReq": 40, "sdPct": 6, "spd": -10, "wDamPct": 8, "fDefPct": -14, "type": "ring", "id": 3556}, {"name": "Collector", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "necklace", "id": 583}, {"name": "Comfort", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 6, "hpBonus": 8, "hprRaw": 2, "mdRaw": -3, "type": "bracelet", "id": 588}, {"name": "Columns", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 50, "aDef": -5, "eDef": 5, "lvl": 11, "str": 4, "def": 4, "spd": -5, "hpBonus": 20, "id": 584}, {"name": "Collier Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "fDef": 7, "wDef": -5, "lvl": 14, "hprPct": 8, "def": 3, "hpBonus": 15, "id": 582}, {"name": "Concentration", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 8, "mr": 5, "type": "ring", "id": 581}, {"name": "Conclave Crossfire", "tier": "Rare", "type": "relik", "poison": 99, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "12-15", "wDam": "0-0", "aDam": "0-0", "tDam": "12-15", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 13, "defReq": 13, "str": -10, "dex": 15, "expd": -100, "aDamPct": -50, "eDamPct": -50, "id": 587}, {"name": "Conductor", "tier": "Legendary", "type": "leggings", "thorns": 9, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "wDef": -10, "tDef": -10, "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 14, "dex": 8, "expd": 7, "tDamPct": 16, "id": 585}, {"name": "Conflagrate", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1800, "fDef": 180, "lvl": 84, "defReq": 90, "ls": 260, "int": -16, "def": 16, "mdRaw": 285, "fDamPct": 50, "wDefPct": -30, "spRaw3": -5, "id": 589}, {"name": "Conductor's Baton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "27-37", "aDam": "0-0", "tDam": "27-37", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 25, "intReq": 35, "sdPct": 12, "ls": -120, "ms": 5, "dex": 5, "int": 7, "eDefPct": -12, "id": 600}, {"name": "Conference Call", "tier": "Legendary", "type": "relik", "poison": 1111, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-30", "fDam": "72-78", "wDam": "0-0", "aDam": "0-0", "tDam": "72-78", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 94, "dexReq": 47, "defReq": 47, "ls": 350, "ms": 10, "str": -15, "dex": 15, "expd": -100, "fDamPct": 15, "tDamPct": 15, "aDefPct": -70, "eDefPct": -70, "id": 591}, {"name": "Conrupt", "tier": "Rare", "type": "helmet", "poison": 600, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2950, "wDef": -100, "aDef": -100, "tDef": 110, "eDef": 110, "lvl": 99, "strReq": 50, "dexReq": 50, "mdPct": 15, "ls": 295, "str": 8, "dex": 8, "spRegen": -20, "hprRaw": -125, "tDamPct": 20, "eDamPct": 20, "id": 590}, {"name": "Conspirator's Trickpockets", "tier": "Fabled", "type": "leggings", "majorIds": ["CHERRY_BOMBS"], "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": -80, "eDef": -80, "lvl": 78, "classReq": "Assassin", "agiReq": 65, "mr": 5, "expd": 23, "eSteal": 5, "sdRaw": 140, "aDamPct": 19, "tDamPct": -58, "wDefPct": -20, "spRaw4": 5, "id": 3551}, {"name": "Contrail", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 10, "aDef": 50, "lvl": 94, "agiReq": 45, "agi": 4, "spd": 10, "aDamPct": 8, "type": "bracelet", "id": 597}, {"name": "Collier's Guard", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "fDef": 75, "wDef": -40, "aDef": -40, "lvl": 64, "defReq": 25, "hprPct": 21, "agi": -2, "def": 7, "expd": 5, "spd": -7, "hpBonus": 275, "id": 598}, {"name": "Contamination", "tier": "Legendary", "type": "bow", "poison": 1000, "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-30", "atkSpd": "SLOW", "lvl": 51, "sdPct": -15, "expd": 65, "spd": 6, "id": 593}, {"name": "Convallaria", "tier": "Legendary", "type": "leggings", "poison": 300, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -65, "eDef": 55, "lvl": 55, "strReq": 40, "ls": 75, "spd": -8, "mdRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 594}, {"name": "Cooler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -30, "wDef": 40, "aDef": 25, "tDef": -30, "lvl": 50, "intReq": 20, "ms": 5, "ref": 12, "int": 5, "spd": -11, "sdRaw": 55, "fDamPct": -5, "id": 596}, {"name": "Cool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 8, "sdPct": 4, "agi": 3, "type": "bracelet", "id": 592}, {"name": "Copper-Alloy Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-38", "fDam": "8-14", "wDam": "0-0", "aDam": "0-0", "tDam": "8-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "dexReq": 10, "defReq": 10, "sdPct": 5, "ms": 5, "fDamPct": 12, "tDamPct": 12, "eDefPct": -15, "id": 601}, {"name": "Copper-Alloy Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "fDef": 8, "wDef": -10, "tDef": 8, "eDef": -10, "lvl": 38, "dexReq": 10, "defReq": 10, "mdPct": 8, "hprRaw": 15, "fDamPct": 5, "wDamPct": -7, "tDamPct": 5, "eDamPct": -7, "id": 599}, {"name": "Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "fDef": -8, "tDef": -8, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 9, "ref": 5, "fDamPct": 6, "tDamPct": 8, "id": 605}, {"name": "Centipede", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 80, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "sdPct": -1000, "spd": 24, "atkTier": 2, "eSteal": 8, "fixID": true, "id": 604}, {"name": "Air Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": -50, "aDef": 300, "lvl": 80, "agiReq": 70, "aDamPct": 85, "fixID": true, "id": 602}, {"name": "Earth Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "aDef": -80, "eDef": 330, "lvl": 80, "strReq": 70, "eDamPct": 85, "fixID": true, "id": 603}, {"name": "Copper Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "73-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "73-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "strReq": 40, "dexReq": 35, "ms": 10, "tDamPct": 12, "eDamPct": 25, "fDefPct": -20, "wDefPct": -20, "tDefPct": -15, "id": 595}, {"name": "Fire Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 350, "wDef": -100, "lvl": 80, "defReq": 70, "fDamPct": 85, "fixID": true, "id": 608}, {"name": "Rainbow Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 80, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "fDamPct": 85, "wDamPct": 85, "aDamPct": 85, "tDamPct": 85, "eDamPct": 85, "fixID": true, "id": 606}, {"name": "Thunder Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "tDef": 320, "eDef": -70, "lvl": 80, "dexReq": 70, "tDamPct": 85, "fixID": true, "id": 609}, {"name": "Dust Skaters", "tier": "Rare", "type": "boots", "poison": 800, "thorns": 18, "sprint": 12, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2375, "aDef": 55, "eDef": -80, "lvl": 87, "agiReq": 55, "sdPct": 18, "agi": 8, "spd": 24, "mdRaw": 210, "eDamPct": 15, "aDefPct": 45, "fixID": true, "sprintReg": 12, "id": 611}, {"name": "Corrupted Nii Mukluk", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2275, "fDef": 100, "tDef": -50, "lvl": 78, "defReq": 65, "def": 10, "fDamPct": 20, "fDefPct": 10, "fixID": true, "id": 610, "set": "Corrupted Nii"}, {"name": "Water Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "wDef": 340, "tDef": -90, "lvl": 80, "intReq": 70, "wDamPct": 85, "fixID": true, "id": 615}, {"name": "Dune Storm", "tier": "Rare", "type": "helmet", "sprint": 28, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -1300, "aDef": 260, "eDef": 190, "lvl": 87, "strReq": 60, "agiReq": 70, "str": 12, "agi": 16, "spd": 36, "mdRaw": 520, "aDamPct": 56, "eDamPct": 48, "fixID": true, "id": 607}, {"name": "Golden Scarab", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "tDef": 80, "lvl": 88, "dexReq": 80, "sdPct": 24, "mdPct": 24, "ms": 10, "xpb": 16, "lb": 32, "dex": 8, "spd": 8, "eSteal": 8, "tDamPct": 8, "eDamPct": -64, "fixID": true, "id": 613}, {"name": "Infidel", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-875", "fDam": "0-0", "wDam": "0-1000", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 50, "intReq": 45, "sdPct": 20, "ms": 10, "dex": 5, "int": 10, "sdRaw": 285, "tDamPct": 30, "fDefPct": -70, "fixID": true, "id": 612}, {"name": "Judas", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-45", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 60, "mdPct": 33, "ls": -1085, "ms": 10, "lb": 30, "dex": 10, "spRegen": -30, "sdRaw": 125, "wDamPct": -70, "tDamPct": 20, "fixID": true, "id": 619}, {"name": "Lion's Pelt", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "aDef": -70, "tDef": 100, "eDef": 120, "lvl": 89, "strReq": 60, "mdPct": 15, "ls": 310, "str": 8, "eDamPct": 20, "eDefPct": 40, "fixID": true, "id": 614}, {"name": "Plague", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "500-720", "fDam": "500-720", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 55, "defReq": 45, "ls": 700, "ms": 15, "ref": 30, "def": 10, "expd": 30, "tDamPct": 15, "fDefPct": 30, "wDefPct": -40, "aDefPct": 35, "tDefPct": 25, "fixID": true, "id": 617}, {"name": "Manna", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "150-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 55, "intReq": 40, "mr": 10, "sdPct": 15, "str": 5, "int": 5, "hpBonus": 1800, "hprRaw": 175, "eDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "id": 616}, {"name": "Sacramentalia", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "aDef": 20, "tDef": 20, "lvl": 89, "strReq": 50, "intReq": 40, "mr": 10, "sdPct": -12, "spRegen": 10, "hprRaw": 50, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 618}, {"name": "Corrupted Nii Shako", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1650, "fDef": 50, "wDef": 50, "tDef": -50, "lvl": 70, "intReq": 50, "defReq": 50, "hprPct": 30, "mr": 5, "fDefPct": 15, "wDefPct": 15, "fixID": true, "id": 624, "set": "Corrupted Nii"}, {"name": "Corrupted Uth Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2850, "fDef": 150, "wDef": -70, "lvl": 86, "defReq": 75, "def": 10, "fDamPct": 15, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 620, "set": "Corrupted Uth"}, {"name": "Ghoul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "75-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "agiReq": 55, "ls": 235, "ms": 10, "agi": 10, "spd": 20, "aDamPct": 10, "tDamPct": 14, "fixID": true, "id": 621}, {"name": "Nest", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "NORMAL", "lvl": 76, "strReq": 20, "mdPct": 10, "xpb": 15, "fDamPct": -15, "aDamPct": -15, "tDamPct": -15, "eDamPct": 35, "fixID": true, "id": 623}, {"name": "Corrupted Nii Plate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1625, "wDef": 100, "tDef": -75, "lvl": 74, "intReq": 65, "int": 10, "wDamPct": 20, "wDefPct": 10, "fixID": true, "id": 622, "set": "Corrupted Nii"}, {"name": "Salticidae", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "315-815", "tDam": "0-0", "eDam": "95-495", "atkSpd": "SUPER_SLOW", "lvl": 76, "strReq": 30, "agiReq": 40, "sdPct": -10, "agi": 30, "spd": 42, "fixID": true, "jh": 3, "id": 676}, {"name": "Scytodidae", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "180-230", "fDam": "0-0", "wDam": "130-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "intReq": 40, "mr": 10, "ms": 10, "def": -20, "sdRaw": 130, "fDefPct": -10, "fixID": true, "id": 625}, {"name": "Vanguard", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 77, "sdPct": 10, "mdPct": 10, "xpb": 15, "lb": 10, "type": "bracelet", "fixID": true, "id": 626}, {"name": "Argos", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3900, "lvl": 86, "defReq": 50, "sdPct": -65, "ls": 275, "def": 15, "atkTier": -1, "fDamPct": 100, "fDefPct": 20, "fixID": true, "id": 630}, {"name": "Achilles", "tier": "Legendary", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3600, "fDef": 200, "wDef": -850, "aDef": 200, "tDef": 200, "eDef": 250, "lvl": 86, "strReq": 40, "defReq": 20, "str": 7, "def": 15, "mdRaw": 380, "fDamPct": 15, "eDamPct": 15, "fDefPct": 40, "eDefPct": 500, "fixID": true, "id": 627}, {"name": "Drain", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 375, "lvl": 85, "ls": 200, "xpb": 10, "spRegen": -75, "type": "necklace", "fixID": true, "id": 631}, {"name": "Corrupted Uth Plume", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "wDef": -60, "aDef": 150, "lvl": 82, "agiReq": 75, "agi": 10, "spd": 20, "aDamPct": 15, "fixID": true, "id": 632, "set": "Corrupted Uth"}, {"name": "Black Catalyst", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -325, "lvl": 83, "xpb": -5, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": -5, "type": "ring", "fixID": true, "id": 628, "set": "Black Catalyst"}, {"name": "Tophet", "tier": "Legendary", "type": "leggings", "poison": 666, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3050, "fDef": 100, "wDef": -120, "tDef": 100, "lvl": 85, "dexReq": 40, "ms": 10, "str": 5, "dex": 8, "def": 5, "expd": 35, "fDamPct": 25, "wDamPct": -15, "tDamPct": 20, "eDamPct": 20, "eDefPct": 25, "fixID": true, "id": 635}, {"name": "Prognosticum", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 84, "intReq": 40, "ms": 10, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 634}, {"name": "Coronium", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "wDef": -40, "tDef": 30, "lvl": 50, "dexReq": 20, "defReq": 15, "hprPct": -8, "xpb": 8, "def": 5, "expd": 12, "wDamPct": -10, "tDamPct": 10, "id": 638}, {"name": "Coriolis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "aDef": 55, "eDef": -60, "lvl": 58, "agiReq": 35, "ref": 6, "agi": 4, "spd": 12, "aDamPct": 11, "aDefPct": 8, "eDefPct": -10, "id": 633}, {"name": "Brace of the Ninth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "113-119", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "intReq": 55, "mr": 10, "ref": 20, "int": 40, "spd": -20, "wDamPct": 15, "fixID": true, "id": 636}, {"name": "Desperation", "tier": "Rare", "type": "dagger", "thorns": -100, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-76", "wDam": "0-0", "aDam": "0-160", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 91, "agiReq": 35, "defReq": 50, "hprPct": 50, "ls": 360, "ref": -100, "str": -20, "spd": 35, "hpBonus": -1000, "wDamPct": -20, "fixID": true, "id": 637}, {"name": "Closure", "tier": "Rare", "type": "bow", "poison": 1500, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "120-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-355", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "dexReq": 35, "defReq": 45, "ms": 15, "xpb": 15, "ref": 15, "sdRaw": 145, "fDamPct": 80, "aDamPct": -100, "aDefPct": -20, "fixID": true, "id": 643}, {"name": "Final Compulsion", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "270-315", "fDam": "130-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 35, "defReq": 50, "hprPct": -100, "mdPct": 40, "ls": 290, "spd": -10, "hpBonus": 2875, "tDamPct": -20, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 640}, {"name": "Pulse Stopper", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 20, "eDef": 20, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": -10, "sdPct": 10, "ls": 130, "sdRaw": 50, "type": "necklace", "fixID": true, "id": 642}, {"name": "Peaceful Rest", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "16-24", "fDam": "52-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 55, "defReq": 45, "sdPct": 35, "int": 8, "spd": -25, "atkTier": -30, "spRegen": 100, "wDamPct": 30, "tDamPct": -30, "fDefPct": 40, "wDefPct": 40, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "id": 644}, {"name": "Pulse Starter", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 650, "fDef": 35, "tDef": 35, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": 10, "hprRaw": 80, "fDamPct": 7, "tDamPct": 7, "type": "necklace", "fixID": true, "id": 641}, {"name": "Rune of Safe Passage", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": -25, "wDef": -30, "aDef": -25, "lvl": 92, "spd": 7, "spRegen": 5, "fDefPct": 15, "wDefPct": 10, "aDefPct": 15, "type": "ring", "fixID": true, "id": 645}, {"name": "Corrupted Uth Sandals", "tier": "Set", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3400, "fDef": 75, "wDef": -80, "aDef": 75, "lvl": 90, "agiReq": 85, "defReq": 85, "ref": 20, "spd": 30, "fixID": true, "id": 646, "set": "Corrupted Uth"}, {"name": "The Crossing", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "tDef": -75, "eDef": -75, "lvl": 93, "mr": -10, "spRegen": 10, "sdRaw": 425, "wDamPct": -20, "fixID": true, "id": 651}, {"name": "Corrupted Witherhead's Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "37-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-170", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 74, "dexReq": 75, "agiReq": 10, "sdPct": 20, "dex": 10, "spd": -15, "spRegen": -10, "aDamPct": 14, "tDamPct": 7, "fixID": true, "id": 667}, {"name": "Depth", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "45-55", "fDam": "30-45", "wDam": "0-0", "aDam": "55-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "agiReq": 40, "defReq": 20, "def": 5, "spd": 10, "hpBonus": 900, "fDamPct": 12, "aDamPct": 12, "fixID": true, "id": 649}, {"name": "Bane", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 120, "lvl": 72, "dexReq": 50, "dex": 17, "expd": 30, "mdRaw": 125, "fixID": true, "id": 647}, {"name": "Demonio", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "90-110", "fDam": "130-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 71, "defReq": 60, "ls": 190, "xpb": 10, "str": 5, "expd": 30, "eDamPct": 20, "fixID": true, "id": 648}, {"name": "Nightmare", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "defReq": 70, "hprPct": 30, "ls": 255, "agi": 12, "fDamPct": 10, "wDamPct": -20, "aDamPct": 15, "fixID": true, "id": 650}, {"name": "Gaze from the Snowbank", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3200, "wDef": -50, "aDef": -75, "lvl": 92, "strReq": 75, "ls": -240, "ms": 20, "spd": -12, "atkTier": -2, "eSteal": 8, "mdRaw": 700, "eDamPct": 40, "fixID": true, "id": 694}, {"name": "Destructor", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "460-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "dexReq": 50, "sdPct": -15, "mdPct": 35, "expd": 100, "spd": -100, "mdRaw": 315, "tDamPct": 10, "eDamPct": 25, "fixID": true, "id": 652}, {"name": "Wall Breaker", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "225-335", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-1125", "atkSpd": "SUPER_SLOW", "lvl": 72, "strReq": 80, "sdPct": -60, "mdPct": 65, "str": 10, "expd": 100, "spd": -20, "aDamPct": 15, "fixID": true, "id": 654}, {"name": "Corruption Seal", "tier": "Unique", "type": "boots", "poison": 675, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2650, "wDef": -90, "aDef": -90, "tDef": 90, "eDef": 90, "lvl": 92, "strReq": 40, "dexReq": 40, "ls": 205, "ms": 5, "str": 7, "dex": 7, "spRegen": -10, "hprRaw": -125, "tDamPct": 23, "eDamPct": 23, "id": 655}, {"name": "Cotton Swab", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "130-138", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 83, "agiReq": 40, "agi": 40, "fDefPct": -50, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 656}, {"name": "Void", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "aDef": 80, "lvl": 73, "agiReq": 60, "xpb": 15, "lb": 15, "int": -10, "spd": 15, "aDamPct": 15, "fixID": true, "id": 653}, {"name": "Cosmium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 450, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 657}, {"name": "Couteau", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "66-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 56, "sdPct": -5, "mdPct": 10, "str": 8, "dex": 8, "id": 662}, {"name": "Countdown", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-52", "fDam": "10-62", "wDam": "10-62", "aDam": "0-72", "tDam": "0-72", "eDam": "20-52", "atkSpd": "FAST", "lvl": 84, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": -15, "sdPct": 15, "mdPct": 15, "hprRaw": -290, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "id": 661}, {"name": "Coursing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1250, "wDef": -60, "eDef": -60, "lvl": 68, "dexReq": 25, "dex": 7, "expd": 10, "mdRaw": 105, "wDamPct": -7, "tDamPct": 13, "eDamPct": -7, "id": 659}, {"name": "Coyote Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 67, "dexReq": 20, "dex": 5, "agi": 3, "mdRaw": 16, "type": "necklace", "id": 663}, {"name": "Crack the Skies", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-160", "tDam": "80-110", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 100, "dexReq": 35, "agiReq": 50, "sdPct": 15, "dex": 7, "agi": 13, "spd": 15, "aDamPct": 10, "tDamPct": 12, "eDefPct": -16, "id": 664}, {"name": "Cracklers", "tier": "Unique", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 80, "wDef": -115, "tDef": 50, "lvl": 86, "defReq": 35, "hprPct": 30, "ls": 200, "def": 12, "expd": 20, "atkTier": -7, "mdRaw": 750, "fDamPct": 15, "tDamPct": 10, "wDefPct": -10, "id": 668}, {"name": "Coyopa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "52-96", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 25, "mr": -5, "sdPct": 12, "ls": 60, "ms": 5, "dex": 4, "expd": 15, "id": 660}, {"name": "Crackshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "149-149", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 11, "ms": 5, "xpb": 15, "id": 669}, {"name": "Crash", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -215, "wDef": -50, "tDef": 30, "eDef": 40, "lvl": 63, "strReq": 20, "dexReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "spd": -5, "type": "necklace", "id": 692}, {"name": "Crafted Gem", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "1-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 44, "xpb": 15, "lb": 12, "id": 665}, {"name": "Crater Print", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "wDef": -80, "aDef": -120, "eDef": 120, "lvl": 93, "strReq": 70, "sdPct": 19, "ms": 5, "str": 10, "spd": -15, "hprRaw": 155, "mdRaw": 255, "eDamPct": 15, "id": 671}, {"name": "Creek", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "wDef": 50, "tDef": -50, "lvl": 54, "intReq": 20, "mr": 5, "ref": 7, "spd": -10, "spRegen": 10, "wDefPct": 20, "id": 670}, {"name": "Crescendo", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 45, "wDef": 45, "lvl": 57, "intReq": 30, "defReq": 30, "hprPct": 22, "mr": 5, "sdPct": -15, "mdPct": -15, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "id": 673}, {"name": "Creeper Mask", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "thorns": 5, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 14, "expd": 5, "fixID": true, "id": 672}, {"name": "Crescent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-145", "fDam": "0-0", "wDam": "115-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "intReq": 50, "mr": 5, "xpb": 12, "spRegen": 10, "wDamPct": 15, "wDefPct": 15, "tDefPct": -10, "id": 677}, {"name": "Crestfallen", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -90, "lvl": 99, "strReq": 50, "agiReq": 40, "sdPct": 10, "mdPct": -15, "ms": 10, "sdRaw": 170, "fDamPct": -20, "tDamPct": -20, "id": 675}, {"name": "Cross", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "41-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "sdPct": -4, "mdPct": -3, "xpb": 10, "lb": 5, "id": 674}, {"name": "Cross-aegis", "displayName": "Cross-Aegis", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-105", "fDam": "31-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 30, "hprPct": 19, "def": 9, "spd": -12, "hpBonus": 450, "hprRaw": 32, "fDefPct": 13, "wDefPct": -30, "aDefPct": 13, "tDefPct": 12, "eDefPct": 12, "id": 678}, {"name": "Crimson", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-90", "fDam": "95-110", "wDam": "95-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 30, "ls": 436, "ms": -5, "int": 13, "def": 13, "hprRaw": 207, "aDefPct": 35, "tDefPct": 35, "eDefPct": 35, "id": 679}, {"name": "Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 42, "sdPct": 20, "mdPct": 20, "str": 7, "spd": -20, "id": 681}, {"name": "Crossroad Killer", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "314-486", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "194-686", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "dexReq": 70, "sdPct": -15, "mdPct": 19, "dex": 14, "def": -5, "eDefPct": -10, "id": 680}, {"name": "Crowbeak", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "21-24", "tDam": "14-36", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "sdPct": 5, "agi": 5, "spd": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": -6, "tDefPct": -6, "eDefPct": -6, "id": 682}, {"name": "Crown of Suzaku", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 2100, "fDef": 250, "wDef": -90, "aDef": 250, "lvl": 88, "strReq": 40, "dexReq": 40, "ls": 165, "ms": 5, "str": 5, "dex": 5, "agi": -5, "def": -5, "expd": 20, "spd": -9, "eSteal": 8, "tDamPct": 14, "eDamPct": 14, "id": 683}, {"name": "Crustacean", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "35-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "mr": 5, "hpBonus": 25, "id": 729}, {"name": "Crwth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "65-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "95-120", "atkSpd": "VERY_FAST", "lvl": 83, "strReq": 35, "defReq": 35, "mr": 5, "ms": -5, "spd": -10, "fDamPct": 23, "eDamPct": 23, "aDefPct": -15, "id": 687}, {"name": "Cruel Sun", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-85", "fDam": "75-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 24, "defReq": 15, "mdPct": 20, "ls": 20, "def": 10, "expd": 30, "hprRaw": -10, "fDamPct": 15, "spRaw1": 10, "id": 684}, {"name": "Crust Crusher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "195-210", "fDam": "210-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-270", "atkSpd": "VERY_SLOW", "lvl": 99, "strReq": 35, "defReq": 35, "sdPct": -8, "mdPct": 20, "str": 10, "def": 10, "expd": 20, "spd": -15, "id": 685}, {"name": "Cryoseism", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "241-275", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "intReq": 70, "mr": 10, "mdPct": -35, "int": 15, "spd": -10, "wDamPct": 25, "spRaw1": 5, "spRaw3": -5, "spRaw4": 5, "id": 686}, {"name": "Crystal", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1575, "wDef": 110, "aDef": 110, "tDef": -70, "eDef": -70, "lvl": 69, "intReq": 45, "agiReq": 45, "mr": 10, "ref": 50, "int": 9, "agi": 9, "spd": 10, "id": 688}, {"name": "Crystal Senbon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "77-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 690}, {"name": "Crystal Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 28, "strReq": 3, "dexReq": 3, "intReq": 3, "agiReq": 3, "defReq": 3, "ref": 5, "type": "necklace", "id": 689}, {"name": "Crystal Thorn", "tier": "Rare", "type": "wand", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "NORMAL", "lvl": 80, "strReq": 30, "intReq": 30, "mr": 10, "mdPct": 5, "ref": 12, "aDefPct": -10, "tDefPct": -10, "id": 693}, {"name": "Culex", "tier": "Rare", "type": "leggings", "poison": 172, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 585, "aDef": -20, "tDef": -25, "lvl": 50, "agiReq": 20, "ls": 60, "agi": 9, "id": 695}, {"name": "Cue Stick", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "220-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "150-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 50, "mdPct": 12, "ms": 5, "dex": 16, "eSteal": 5, "tDefPct": 77, "id": 691}, {"name": "Cumulus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1225, "wDef": 30, "aDef": 60, "tDef": -80, "lvl": 70, "agiReq": 40, "agi": 8, "spd": 9, "wDamPct": 10, "id": 701}, {"name": "Curador Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3300, "fDef": 120, "wDef": 120, "tDef": -150, "lvl": 99, "intReq": 45, "defReq": 45, "hprPct": 20, "ls": 255, "ms": 10, "dex": 8, "int": 5, "def": 5, "expd": -30, "hprRaw": 160, "eDamPct": -20, "id": 698}, {"name": "Curse", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "9-11", "aDam": "0-0", "tDam": "0-0", "eDam": "9-11", "atkSpd": "VERY_FAST", "lvl": 38, "strReq": 5, "hprPct": 12, "mr": 5, "ls": -20, "int": 7, "tDamPct": -10, "eDamPct": 10, "wDefPct": 10, "tDefPct": -10, "id": 697}, {"name": "Cursed Spike", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-185", "atkSpd": "FAST", "lvl": 80, "strReq": 45, "hprPct": -30, "hpBonus": -1700, "spRegen": -15, "eDefPct": 6, "id": 699}, {"name": "Cursed Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 18, "mr": -10, "ms": 20, "xpb": 10, "lb": 10, "spRegen": -5, "aDefPct": -15, "id": 702}, {"name": "Cursed Jackboots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 80, "tDef": 50, "lvl": 66, "dexReq": 20, "intReq": 20, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 120, "wDamPct": 12, "tDamPct": 12, "eDefPct": -35, "fixID": true, "id": 3630}, {"name": "Cyanine", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 90, "tDef": -120, "lvl": 73, "intReq": 55, "mdPct": -17, "int": 5, "wDamPct": 25, "tDefPct": -12, "id": 700}, {"name": "Cyclo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 21, "dexReq": 4, "agiReq": 8, "dex": 4, "agi": 8, "spd": 10, "sdRaw": 23, "mdRaw": 26, "id": 705}, {"name": "Cyclone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-45", "fDam": "0-0", "wDam": "0-0", "aDam": "30-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "agiReq": 25, "defReq": 40, "agi": 10, "spd": 25, "hprRaw": -150, "mdRaw": 45, "fDamPct": 30, "fDefPct": 8, "aDefPct": 8, "id": 703}, {"name": "Cyclops' Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "intReq": 10, "hprPct": -8, "mr": 5, "sdPct": 6, "int": 7, "sdRaw": 15, "id": 704}, {"name": "Cypress", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "9-57", "aDam": "0-0", "tDam": "0-0", "eDam": "16-50", "atkSpd": "SLOW", "lvl": 35, "strReq": 18, "intReq": 18, "sdPct": 10, "mdPct": 10, "str": 4, "int": 4, "wDamPct": 8, "eDamPct": 8, "aDefPct": -19, "id": 706}, {"name": "Czytash's Compass", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 20, "lvl": 55, "lb": 6, "agi": 4, "spd": 4, "type": "bracelet", "id": 707}, {"name": "Butterfly", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 70, "lvl": 24, "agiReq": 10, "agi": 12, "spd": 6, "aDefPct": 10, "fixID": true, "id": 709}, {"name": "Widow", "tier": "Rare", "type": "relik", "poison": 2400, "thorns": 55, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "42-43", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "dexReq": 40, "defReq": 30, "ls": 220, "ref": 30, "str": 40, "fixID": true, "spPct1": 105, "id": 708}, {"name": "Brise", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 135, "lvl": 24, "intReq": 12, "mr": 5, "sdPct": 15, "int": 5, "fixID": true, "id": 710}, {"name": "Garoth's Hope", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 160, "fDef": 15, "wDef": -20, "lvl": 26, "spd": -5, "fDamPct": 30, "fDefPct": 20, "fixID": true, "id": 713}, {"name": "Field", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 8, "wDef": 10, "aDef": 4, "tDef": 2, "eDef": 6, "lvl": 30, "fDamPct": 6, "wDamPct": 5, "aDamPct": 7, "tDamPct": 8, "eDamPct": 9, "type": "ring", "fixID": true, "id": 712}, {"name": "Gold Digger", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 120, "lvl": 25, "xpb": 10, "lb": 30, "spd": 3, "fixID": true, "id": 714}, {"name": "Mud", "tier": "Legendary", "type": "boots", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 280, "eDef": 20, "lvl": 28, "strReq": 15, "mdPct": 38, "str": 6, "spd": -10, "fixID": true, "id": 711}, {"name": "Nauticals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "75-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-140", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 45, "intReq": 60, "mr": 15, "sdPct": -25, "mdPct": -25, "ms": 15, "dex": 15, "int": 15, "spd": -10, "wDamPct": 30, "fixID": true, "id": 715}, {"name": "Vitre", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 26, "int": 5, "def": -5, "type": "bracelet", "fixID": true, "id": 716}, {"name": "Black Amaranth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-250", "atkSpd": "SLOW", "lvl": 95, "strReq": 60, "str": 10, "hpBonus": 1500, "hprRaw": -150, "eDamPct": 30, "eDefPct": 30, "fixID": true, "spRaw1": -10, "id": 718}, {"name": "Dying Lobelia", "tier": "Legendary", "poison": 1150, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 97, "strReq": 65, "hprPct": -20, "mdPct": 13, "wDamPct": -25, "type": "bracelet", "fixID": true, "id": 719}, {"name": "Forest Aconite", "tier": "Rare", "type": "dagger", "poison": 3300, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "strReq": 70, "hpBonus": -1000, "aDefPct": -25, "fixID": true, "spPct4": 28, "rainbowRaw": 1275, "id": 720}, {"name": "Flashfire Gauntlet", "tier": "Set", "thorns": 6, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 40, "lvl": 94, "defReq": 40, "def": 4, "hprRaw": 90, "type": "bracelet", "fixID": true, "id": 722, "set": "Flashfire"}, {"name": "Yellow Rose", "tier": "Rare", "type": "wand", "thorns": 80, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-925", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 95, "dexReq": 60, "mdPct": 15, "ls": 400, "str": 30, "int": 30, "agi": -30, "def": -30, "fixID": true, "id": 723}, {"name": "Flashfire Knuckle", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 450, "fDef": 10, "wDef": -30, "lvl": 94, "defReq": 40, "ls": 90, "sdRaw": -50, "type": "ring", "fixID": true, "id": 724, "set": "Flashfire"}, {"name": "Royal Hydrangea", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "150-175", "aDam": "140-185", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 65, "ref": 50, "int": 15, "agi": 25, "wDamPct": -25, "aDamPct": -25, "fixID": true, "spPct1": -105, "id": 721}, {"name": "Salpinx", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "113-167", "fDam": "0-0", "wDam": "0-0", "aDam": "113-167", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "agiReq": 77, "mr": -35, "ls": -277, "ms": 35, "agi": 21, "aDamPct": 21, "fixID": true, "spPct2": -54, "spPct3": -34, "id": 726}, {"name": "Paranoia", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "81-81", "fDam": "80-80", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "agiReq": 35, "defReq": 35, "mr": -5, "ls": 200, "ms": 10, "spd": 15, "hprRaw": -100, "fixID": true, "spPct1": -28, "id": 730}, {"name": "Byte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 91, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "type": "ring", "fixID": true, "id": 727}, {"name": "Anti-Static", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "tDef": 200, "eDef": 300, "lvl": 91, "strReq": 80, "ref": 15, "str": 10, "def": 8, "eDamPct": 15, "fDefPct": 10, "wDefPct": 5, "aDefPct": 15, "tDefPct": 30, "eDefPct": 20, "fixID": true, "id": 725}, {"name": "Discharge", "tier": "Rare", "type": "chestplate", "thorns": 15, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2800, "wDef": -100, "tDef": -50, "eDef": -150, "lvl": 91, "dexReq": 80, "dex": 10, "mdRaw": 155, "wDamPct": 10, "tDamPct": 70, "fixID": true, "id": 728}, {"name": "Compiler", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "500-685", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 55, "mdPct": 20, "xpb": 20, "str": 20, "dex": 20, "int": 20, "agi": 20, "def": 20, "eDamPct": 20, "fixID": true, "id": 856}, {"name": "Hardcore", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-149", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 75, "ms": 5, "mdRaw": 90, "tDamPct": -20, "eDamPct": 30, "wDefPct": -20, "aDefPct": -35, "fixID": true, "spRaw3": -10, "id": 733}, {"name": "Heat Sink", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3750, "fDef": 160, "lvl": 92, "agiReq": 55, "defReq": 45, "hprPct": 25, "ls": 400, "agi": 10, "def": 5, "spd": 15, "fDamPct": 15, "aDefPct": 20, "fixID": true, "sprintReg": 10, "id": 732}, {"name": "Megabyte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 92, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "type": "bracelet", "fixID": true, "id": 737}, {"name": "Packet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "65-185", "fDam": "0-0", "wDam": "0-0", "aDam": "155-155", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "agiReq": 50, "sdPct": 10, "agi": 5, "expd": 100, "spd": 10, "sdRaw": 210, "aDamPct": 15, "fixID": true, "id": 735}, {"name": "Sawtooth", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "20-45", "fDam": "10-35", "wDam": "10-35", "aDam": "10-35", "tDam": "10-35", "eDam": "10-35", "atkSpd": "SUPER_FAST", "lvl": 91, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 20, "mdPct": 20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 736}, {"name": "Wick", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "58-90", "fDam": "0-0", "wDam": "0-0", "aDam": "30-55", "tDam": "20-65", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "dexReq": 55, "agiReq": 45, "ms": 10, "ref": 30, "agi": 7, "spd": 25, "aDamPct": 15, "eDamPct": -25, "tDefPct": 20, "fixID": true, "id": 741}, {"name": "Sine", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2550, "wDef": 60, "tDef": 75, "lvl": 93, "dexReq": 75, "intReq": 75, "ms": 15, "dex": 15, "int": 15, "wDamPct": 15, "tDamPct": 15, "aDefPct": -45, "fixID": true, "id": 734}, {"name": "Ensa's Faith", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "fDef": -30, "wDef": 60, "lvl": 73, "intReq": 25, "hprPct": 23, "mr": 5, "xpb": 10, "ref": 10, "spRegen": 15, "type": "necklace", "id": 2263}, {"name": "Gale's Sight", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 2000, "fDef": -140, "aDef": 210, "tDef": 140, "lvl": 80, "agiReq": 60, "xpb": 30, "ref": 30, "dex": 7, "agi": 10, "spd": 20, "aDamPct": 15, "aDefPct": 25, "spRaw2": -15, "jh": 2, "id": 2265}, {"name": "Cerid's Ingenuity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 630, "fDef": 50, "wDef": 50, "aDef": 30, "lvl": 45, "intReq": 15, "defReq": 20, "hprPct": 18, "mr": 5, "fDamPct": 23, "wDamPct": 23, "tDefPct": -18, "eDefPct": -23, "id": 2262}, {"name": "Remikas' Authority", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "hp": 350, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 66, "defReq": 60, "str": 3, "dex": 2, "int": 3, "agi": 2, "def": 6, "type": "bracelet", "id": 2267}, {"name": "Rycar's Elation", "tier": "Legendary", "poison": 340, "category": "accessory", "drop": "DUNGEON", "hp": -140, "lvl": 59, "str": 7, "hprRaw": -25, "type": "ring", "id": 2266}, {"name": "Ohms' Rage", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 440, "aDef": 20, "tDef": 50, "lvl": 52, "dexReq": 40, "mr": -5, "mdPct": 30, "ms": -5, "tDamPct": 30, "wDefPct": -45, "eDefPct": -55, "spPct2": -14, "spPct3": -10, "id": 2264}, {"name": "Kindled Orchid", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": -80, "eDef": -80, "lvl": 96, "dexReq": 50, "defReq": 45, "hprPct": -30, "mr": -5, "mdPct": 10, "ls": 265, "def": 10, "atkTier": 1, "sdRaw": -75, "fixID": true, "id": 740}, {"name": "Ra", "tier": "Legendary", "category": "accessory", "drop": "dungeon", "wDef": -20, "lvl": 36, "hprPct": 12, "hprRaw": 12, "fDamPct": 6, "type": "bracelet", "id": 739}, {"name": "Tisaun's Valor", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 3075, "lvl": 87, "strReq": 50, "defReq": 60, "mdPct": 15, "xpb": 20, "str": 15, "def": 10, "atkTier": 1, "id": 2268}, {"name": "Rat Skull", "tier": "Unique", "type": "helmet", "poison": 4, "category": "armor", "slots": 1, "drop": "dungeon", "hp": 40, "aDef": 3, "lvl": 10, "spd": 8, "id": 744}, {"name": "Scorpion Tail", "tier": "Rare", "type": "leggings", "poison": 135, "category": "armor", "slots": 1, "drop": "dungeon", "restrict": "Untradable", "hp": 250, "lvl": 36, "spd": 5, "id": 738}, {"name": "Witherhead's Bow", "tier": "Legendary", "type": "bow", "poison": 40, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "3-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-17", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 12, "ms": 5, "agi": -3, "sdRaw": 8, "id": 742}, {"name": "Vertebra", "tier": "Unique", "category": "accessory", "drop": "dungeon", "lvl": 8, "def": 4, "hpBonus": 8, "type": "bracelet", "id": 743}, {"name": "Arakadicus' Body", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "dungeon", "hp": 145, "aDef": -10, "eDef": 15, "lvl": 21, "xpb": 10, "lb": 10, "str": 5, "dex": 5, "agi": 10, "spd": 10, "tDamPct": 15, "eDamPct": 15, "id": 745}, {"name": "Silkwrap", "tier": "Rare", "category": "accessory", "drop": "dungeon", "hp": 15, "lvl": 17, "defReq": 5, "mdPct": -3, "spd": -3, "hprRaw": 4, "type": "ring", "id": 747}, {"name": "Spider's Eye Pendant", "tier": "Rare", "category": "accessory", "drop": "dungeon", "lvl": 20, "mdPct": 8, "dex": 4, "type": "necklace", "id": 746}, {"name": "Spider Bracelet", "tier": "Unique", "poison": 18, "category": "accessory", "drop": "dungeon", "eDef": 5, "lvl": 19, "agi": 4, "type": "bracelet", "id": 748}, {"name": "Spiderweb String", "tier": "Unique", "type": "bow", "poison": 57, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "40-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 17, "ls": 15, "spd": -6, "id": 752}, {"name": "Webstring", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "16-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "14-16", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "dexReq": 5, "ms": 5, "dex": 7, "spd": -6, "eSteal": 3, "id": 749}, {"name": "Blasphemy", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "wDef": 30, "lvl": 50, "intReq": 40, "ls": 55, "ms": 30, "xpb": 10, "fixID": true, "id": 751}, {"name": "Brainfreeze", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 550, "wDef": 20, "aDef": 20, "lvl": 46, "sdPct": 18, "mdPct": 18, "int": -10, "spRegen": 10, "fixID": true, "id": 756}, {"name": "Criistal", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 49, "xpb": 15, "lb": 10, "spd": 5, "type": "necklace", "fixID": true, "id": 757}, {"name": "Heartbreak", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 550, "tDef": 30, "lvl": 49, "dexReq": 50, "dex": 5, "atkTier": 1, "tDamPct": 10, "fixID": true, "id": 753}, {"name": "Iron Foot", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "lvl": 49, "strReq": 35, "mdPct": 25, "str": 8, "spd": -10, "eDamPct": 15, "fDefPct": -10, "eDefPct": 20, "fixID": true, "id": 758}, {"name": "Hearthfire", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 48, "defReq": 30, "ls": 50, "def": 7, "fDefPct": 45, "fixID": true, "id": 754}, {"name": "Shade", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 450, "aDef": 40, "lvl": 48, "agiReq": 30, "agi": 10, "spd": 20, "fDamPct": -10, "wDamPct": -10, "aDamPct": 25, "tDamPct": -10, "eDamPct": -10, "fixID": true, "id": 755}, {"name": "Vapor", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 45, "intReq": 35, "fDamPct": 15, "wDamPct": -10, "fDefPct": 15, "type": "ring", "fixID": true, "id": 760}, {"name": "Barbed", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "dexReq": 50, "mdPct": 10, "ref": 20, "def": 5, "tDamPct": 15, "tDefPct": 10, "fixID": true, "id": 759}, {"name": "Cuthroat", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-65", "fDam": "65-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "defReq": 40, "ls": 75, "def": 5, "hpBonus": 980, "fixID": true, "id": 761}, {"name": "Jungle Spirit", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 45, "agi": 10, "spd": 10, "aDamPct": 22, "fixID": true, "id": 764}, {"name": "Granite Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 800, "lvl": 55, "strReq": 40, "sdPct": -30, "mdPct": 40, "spd": -15, "eDamPct": 10, "fixID": true, "id": 763}, {"name": "Fetish", "tier": "Rare", "type": "leggings", "poison": 250, "thorns": 10, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 30, "lvl": 55, "dexReq": 35, "dex": 5, "spd": 5, "mdRaw": 90, "tDamPct": 10, "fixID": true, "id": 762}, {"name": "Lobotomy", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 640, "aDef": 40, "lvl": 54, "agiReq": 35, "int": -20, "agi": 5, "spd": 10, "aDamPct": 25, "fixID": true, "id": 768}, {"name": "Molten Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 80, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 56, "defReq": 30, "hprPct": 10, "str": 4, "fDamPct": 15, "eDamPct": 15, "fixID": true, "id": 765}, {"name": "Sacrificial", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "79-95", "eDam": "80-85", "atkSpd": "NORMAL", "lvl": 55, "strReq": 30, "dexReq": 30, "ls": 85, "ms": 5, "tDamPct": 10, "eDamPct": 10, "fixID": true, "spRaw1": -5, "id": 770}, {"name": "Admiral", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 45, "wDef": 45, "aDef": 45, "tDef": 45, "eDef": 45, "lvl": 67, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "xpb": 15, "lb": 20, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "fixID": true, "id": 771}, {"name": "Whirlwind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "55-80", "fDam": "0-0", "wDam": "0-0", "aDam": "50-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "agiReq": 40, "sdPct": 7, "ref": 40, "spd": 10, "aDamPct": 6, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 767}, {"name": "Piranha", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "dungeon", "restrict": "Untradable", "hp": 470, "wDef": 20, "lvl": 56, "intReq": 35, "ms": 10, "dex": 5, "agi": 5, "wDamPct": 25, "fixID": true, "id": 766}, {"name": "Algaa", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-330", "atkSpd": "VERY_SLOW", "lvl": 64, "strReq": 40, "lb": 10, "str": 5, "int": 5, "wDamPct": 16, "fixID": true, "id": 774}, {"name": "Grounder", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "SLOW", "lvl": 64, "strReq": 40, "sdPct": -5, "mdPct": 10, "xpb": 18, "tDamPct": 10, "fixID": true, "id": 769}, {"name": "Ouragan", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "35-50", "fDam": "0-0", "wDam": "40-80", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 35, "mr": 10, "sdPct": 15, "agi": 4, "spd": 5, "aDamPct": 10, "fixID": true, "id": 772}, {"name": "Redbeard's Hand Cannon", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "960-1223", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 66, "strReq": 10, "lb": 30, "expd": 40, "spd": -20, "eSteal": 10, "fixID": true, "id": 776}, {"name": "The Evolved", "tier": "Legendary", "type": "bow", "poison": 3500, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 75, "hprPct": -80, "str": 25, "hpBonus": 2250, "mdRaw": 550, "fixID": true, "spRaw1": -20, "id": 777}, {"name": "Gaping Cavity", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "fDef": -80, "lvl": 100, "dexReq": 10, "ls": 1200, "ms": 20, "fixID": true, "id": 775}, {"name": "Rumble", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "6-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 64, "dexReq": 40, "mdPct": 10, "ls": 105, "eSteal": 5, "fDamPct": -10, "wDamPct": -10, "tDamPct": 15, "fixID": true, "id": 778}, {"name": "The Exploited", "tier": "Legendary", "type": "dagger", "majorIds": ["GREED"], "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "45-65", "wDam": "0-0", "aDam": "25-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "agiReq": 40, "defReq": 65, "sdPct": -30, "spd": 12, "eSteal": 10, "mdRaw": 135, "fixID": true, "spRaw4": -15, "id": 779}, {"name": "The Forsaken", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-100", "fDam": "0-0", "wDam": "28-65", "aDam": "28-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "intReq": 60, "agiReq": 60, "mr": -15, "ms": 15, "int": 10, "spd": 15, "sdRaw": 210, "tDamPct": 30, "fDefPct": -50, "eDefPct": -50, "fixID": true, "id": 780}, {"name": "The Watched", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "57-63", "wDam": "45-50", "aDam": "57-63", "tDam": "57-63", "eDam": "57-63", "atkSpd": "FAST", "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "sdPct": -25, "hpBonus": 5000, "wDamPct": 35, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "spRaw1": -5, "id": 783}, {"name": "Sprout", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-130", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 30, "sdPct": -25, "mdPct": 25, "spd": -25, "eDamPct": 12, "fixID": true, "id": 786}, {"name": "Clunderthap", "tier": "Rare", "type": "wand", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 20, "xpb": 20, "dex": 5, "hpBonus": -50, "tDamPct": 20, "fixID": true, "id": 784}, {"name": "Writhing Growth", "tier": "Legendary", "type": "leggings", "poison": 998, "thorns": 51, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4204, "fDef": 129, "tDef": 97, "eDef": 106, "lvl": 100, "strReq": 49, "dexReq": 31, "defReq": 37, "agi": -43, "atkTier": -6, "mdRaw": 1997, "fixID": true, "spPct1": 23, "spPct2": 15, "spPct3": 32, "spPct4": 23, "id": 782}, {"name": "Chaser", "tier": "Legendary", "type": "bow", "poison": 150, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-24", "fDam": "0-0", "wDam": "0-0", "aDam": "39-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "agiReq": 30, "agi": 10, "spd": 30, "fixID": true, "id": 785}, {"name": "Hashr Claw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-50", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 39, "dexReq": 30, "xpb": 10, "spd": 10, "sdRaw": 40, "wDamPct": 10, "fixID": true, "id": 790}, {"name": "Dune Beast Jaw", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 400, "lvl": 36, "strReq": 15, "mdPct": 10, "str": 10, "spd": 5, "fixID": true, "id": 787}, {"name": "Miasma", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-40", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 35, "ls": 39, "ms": 15, "agi": 3, "spd": 10, "fixID": true, "id": 802}, {"name": "Jaw Breaker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-135", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "mdPct": 10, "xpb": 10, "str": 8, "expd": 15, "spd": -5, "fixID": true, "id": 788}, {"name": "Springtrap", "tier": "Legendary", "type": "chestplate", "thorns": 65, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "eDef": 50, "lvl": 39, "hprPct": -25, "ref": 50, "expd": 40, "fixID": true, "id": 791}, {"name": "Tremolo", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "35-36", "tDam": "34-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 13, "agiReq": 13, "xpb": 11, "lb": 11, "str": -11, "dex": 11, "agi": 11, "fixID": true, "jh": 1, "id": 750}, {"name": "Sol", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-30", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 15, "hprPct": 12, "ref": 10, "hpBonus": 360, "hprRaw": 21, "eDamPct": 10, "fixID": true, "id": 794}, {"name": "Corpse", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-9", "atkSpd": "SLOW", "lvl": 8, "mdPct": 6, "lb": 6, "str": 1, "fixID": true, "id": 793}, {"name": "Defibrillator", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "4-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-15", "eDam": "0-0", "atkSpd": "FAST", "lvl": 9, "dex": 4, "mdRaw": 9, "tDamPct": 7, "fixID": true, "id": 792}, {"name": "Knee", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 38, "lvl": 9, "xpb": 5, "agi": 5, "fixID": true, "id": 797}, {"name": "Macabre", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "untradable", "nDam": "10-12", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "ls": 6, "def": 3, "fDamPct": 6, "fixID": true, "id": 798}, {"name": "Serpent's Kiss", "tier": "Rare", "type": "wand", "poison": 40, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "agi": 3, "fixID": true, "id": 795}, {"name": "Ribcage", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 58, "wDef": -3, "aDef": -3, "eDef": 5, "lvl": 12, "hprRaw": 5, "eDamPct": 6, "fixID": true, "id": 796}, {"name": "Sketiq", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "1-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "agi": 3, "spd": 5, "aDamPct": 6, "fixID": true, "id": 800}, {"name": "Skull Breaker", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "40-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 10, "sdPct": -6, "mdPct": 8, "spd": -3, "fixID": true, "id": 801}, {"name": "Fangs", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "sdPct": 7, "ms": 5, "xpb": 6, "int": 2, "fixID": true, "id": 799}, {"name": "Stale", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "sdPct": 10, "int": 3, "wDamPct": 6, "fixID": true, "id": 803}, {"name": "Witherhead's Talisman", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 12, "sdPct": 5, "xpb": 8, "lb": 5, "type": "necklace", "fixID": true, "id": 804}, {"name": "Hourglass", "tier": "Rare", "type": "relik", "poison": 135, "thorns": 18, "category": "weapon", "drop": "never", "restrict": "untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "agi": 4, "fixID": true, "spPct1": 105, "id": 805}, {"name": "Iklaj", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "9-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "agiReq": 5, "str": -3, "dex": 2, "agi": 4, "spd": 10, "tDamPct": 8, "fixID": true, "id": 812}, {"name": "Abdomen", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 20, "agi": 4, "spd": 7, "fixID": true, "id": 806, "set": "Spider"}, {"name": "Maul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "86-114", "atkSpd": "SUPER_SLOW", "lvl": 21, "strReq": 10, "mr": -5, "mdPct": 10, "spd": -6, "fixID": true, "id": 807}, {"name": "Cephalothorax", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 75, "lvl": 16, "dex": 4, "spd": 7, "fixID": true, "id": 809, "set": "Spider"}, {"name": "Spinneret", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 95, "lvl": 19, "dex": 3, "agi": 3, "spd": 7, "fixID": true, "id": 808, "set": "Spider"}, {"name": "Stingy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "wDef": -5, "lvl": 20, "wDamPct": -8, "tDamPct": 17, "fixID": true, "id": 813}, {"name": "Spider Ring", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 3, "lvl": 18, "ls": 3, "spd": 3, "type": "ring", "fixID": true, "id": 811}, {"name": "Sting", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "10-18", "fDam": "14-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "defReq": 5, "ls": 10, "fixID": true, "id": 814}, {"name": "Web Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 50, "fDef": -10, "eDef": 5, "lvl": 22, "ls": 16, "ms": 10, "spd": -10, "eDamPct": 5, "fixID": true, "id": 810}, {"name": "Abolition", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "50-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "defReq": 15, "ls": 38, "xpb": 22, "lb": 22, "fDamPct": 10, "fixID": true, "id": 816}, {"name": "Black Ripper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 250, "wDef": -10, "lvl": 30, "dexReq": 15, "mdRaw": 43, "tDamPct": 20, "fixID": true, "id": 820}, {"name": "Cathedral", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "14-24", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "agiReq": 20, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "aDefPct": 10, "fixID": true, "id": 817}, {"name": "Damnation", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "defReq": 20, "xpb": 10, "def": 4, "mdRaw": 70, "fDamPct": 32, "fixID": true, "id": 818}, {"name": "Dead Samurai's Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": 10, "wDef": 10, "aDef": 12, "lvl": 27, "agiReq": 10, "xpb": 8, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fixID": true, "id": 819}, {"name": "Hymn of the Dead", "tier": "Legendary", "type": "wand", "poison": 220, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "spd": 10, "aDamPct": 20, "fixID": true, "id": 823}, {"name": "Death's Reach", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "42-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "44-55", "atkSpd": "SLOW", "lvl": 29, "strReq": 10, "sdPct": -20, "mdPct": 20, "str": 4, "spd": -50, "eDamPct": 35, "fixID": true, "id": 822}, {"name": "Sanies", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-42", "fDam": "0-0", "wDam": "20-42", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 15, "sdPct": 40, "ms": -10, "wDamPct": 5, "eDamPct": 10, "fixID": true, "id": 821}, {"name": "Putrid", "tier": "Rare", "type": "wand", "poison": 60, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "14-18", "aDam": "0-0", "tDam": "0-0", "eDam": "16-22", "atkSpd": "NORMAL", "lvl": 28, "spd": -3, "hpBonus": 150, "fixID": true, "id": 825}, {"name": "Thriller", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "6-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 28, "dexReq": 20, "ms": 5, "spd": 8, "hpBonus": -100, "sdRaw": 40, "tDamPct": 13, "tDefPct": 13, "fixID": true, "id": 824}, {"name": "Styx's Grab", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "0-0", "wDam": "20-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "intReq": 12, "sdPct": 20, "ls": 24, "ms": 10, "fixID": true, "id": 826}, {"name": "Dalaam", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1480, "fDef": -75, "aDef": 75, "tDef": -75, "eDef": 75, "lvl": 67, "strReq": 30, "agiReq": 30, "mdPct": 10, "str": 10, "agi": 10, "spd": 10, "eDamPct": 10, "aDefPct": 10, "id": 828}, {"name": "Damasse", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 2, "lb": 6, "int": 3, "hpBonus": 3, "id": 827}, {"name": "Dance Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "fDef": -10, "aDef": 15, "eDef": -10, "lvl": 46, "agiReq": 20, "agi": 5, "spd": 11, "fDamPct": -5, "aDamPct": 5, "eDamPct": -5, "id": 829}, {"name": "Web Spitter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "13-26", "fDam": "0-0", "wDam": "14-20", "aDam": "10-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "agi": 3, "spd": 10, "aDamPct": 6, "fixID": true, "id": 815}, {"name": "Dancing Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-55", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "agiReq": 45, "ref": 15, "agi": 10, "spd": 15, "aDamPct": 15, "fDefPct": -15, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 832}, {"name": "Dancer's Rhythm", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-75", "fDam": "0-0", "wDam": "0-0", "aDam": "20-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "agiReq": 20, "agi": 7, "def": -5, "spd": 15, "id": 830}, {"name": "Dandelion", "tier": "Unique", "type": "chestplate", "thorns": 12, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "wDef": 5, "aDef": -6, "eDef": 5, "lvl": 22, "hprPct": 15, "sdRaw": 10, "id": 831}, {"name": "Dapper Trilby", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "lvl": 9, "xpb": 5, "lb": 4, "int": 3, "id": 833}, {"name": "Dark Ambience", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "ls": 5, "lb": 7, "id": 835}, {"name": "Dark Channeler", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "wDef": 90, "aDef": -100, "tDef": 90, "eDef": -100, "lvl": 93, "dexReq": 45, "intReq": 45, "mr": 5, "sdPct": 7, "ms": 5, "spRegen": -5, "sdRaw": 148, "wDamPct": 16, "tDamPct": 16, "aDefPct": -40, "eDefPct": -40, "id": 834}, {"name": "Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-14", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 6, "ms": 5, "eDefPct": -5, "id": 839}, {"name": "Dark Mage Robes", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "wDef": 30, "tDef": 30, "lvl": 52, "dexReq": 15, "intReq": 15, "mr": 5, "sdPct": 10, "mdPct": -10, "ms": 5, "wDamPct": 12, "tDamPct": 12, "fDefPct": -10, "aDefPct": -10, "eDefPct": -10, "id": 841}, {"name": "Dark Shroud", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "aDef": 50, "tDef": 70, "lvl": 82, "dexReq": 15, "agiReq": 50, "sdPct": -15, "mdPct": -20, "ms": 5, "ref": 30, "dex": 15, "agi": 35, "spd": 25, "aDefPct": 40, "id": 836}, {"name": "Karma", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "intReq": 25, "mr": 10, "sdPct": 108, "int": 6, "wDamPct": 10, "aDamPct": 20, "fixID": true, "id": 789}, {"name": "Darkiron Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "defReq": 5, "def": 4, "spd": -3, "hprRaw": 5, "type": "ring", "id": 837}, {"name": "Darkiron Scrap", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 25, "lvl": 3, "def": 7, "spd": -4, "hprRaw": 3, "id": 838}, {"name": "Darksteel Full Helm", "tier": "Rare", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "fDef": 100, "wDef": -120, "tDef": 100, "eDef": -80, "lvl": 90, "dexReq": 45, "defReq": 45, "ref": 15, "str": 10, "dex": 10, "def": 10, "spd": 15, "atkTier": -15, "mdRaw": 1050, "fDamPct": 15, "wDamPct": -15, "tDamPct": 15, "id": 840}, {"name": "Darksteel Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 450, "fDef": 40, "wDef": -30, "tDef": 40, "eDef": -30, "lvl": 96, "dexReq": 20, "defReq": 40, "dex": 5, "def": 4, "spd": -7, "hpBonus": 200, "type": "ring", "id": 862}, {"name": "Darkiron Zweihander", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-125", "fDam": "50-125", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 36, "agiReq": 15, "defReq": 25, "mdPct": 10, "ls": 39, "def": 7, "wDamPct": -15, "fDefPct": 20, "aDefPct": 20, "id": 843}, {"name": "Daybreak", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-50", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 40, "dexReq": 10, "defReq": 15, "hprPct": 10, "sdPct": 15, "lb": 10, "spd": -15, "atkTier": -1, "hpBonus": 125, "wDamPct": -15, "id": 881}, {"name": "Dart Frog's Skin", "tier": "Unique", "type": "boots", "poison": 3000, "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "fDef": 60, "aDef": -130, "eDef": 70, "lvl": 85, "strReq": 40, "defReq": 35, "sdPct": -10, "mdPct": -50, "ref": 20, "str": 4, "agi": 7, "spd": 12, "atkTier": -1, "tDefPct": -20, "id": 874}, {"name": "Darkweaver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "250-380", "aDam": "0-0", "tDam": "250-380", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 89, "dexReq": 40, "intReq": 40, "mr": -15, "sdPct": 19, "ms": 10, "ref": 17, "spd": -10, "wDamPct": 17, "tDamPct": 17, "eDefPct": -17, "id": 842}, {"name": "Dart Sling", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "sdPct": 6, "dex": 4, "id": 844}, {"name": "Dead Man's Flats", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "fDef": 40, "wDef": -75, "aDef": 30, "lvl": 55, "agiReq": 25, "defReq": 25, "hprPct": -10, "mdPct": 9, "spd": -9, "fDamPct": 12, "aDefPct": 11, "id": 845}, {"name": "Death Growl", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "str": 6, "id": 851}, {"name": "Deathbringer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-120", "eDam": "82-100", "atkSpd": "SLOW", "lvl": 83, "strReq": 35, "dexReq": 35, "mr": -5, "sdPct": 16, "mdPct": 22, "ls": 205, "ms": 5, "spd": -7, "hprRaw": -95, "id": 849}, {"name": "Dead Sands", "tier": "Legendary", "type": "leggings", "poison": 145, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 32, "hprPct": -35, "mdPct": 12, "ls": 26, "hpBonus": -100, "fDefPct": 15, "wDefPct": -20, "id": 847}, {"name": "Death's Toe", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "eDef": -35, "lvl": 49, "dexReq": 10, "ls": 28, "ms": 10, "id": 846}, {"name": "Decoder Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "intReq": 8, "sdPct": 6, "xpb": 9, "lb": 6, "type": "ring", "id": 855}, {"name": "Deathsplinter", "tier": "Unique", "type": "wand", "poison": 1420, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-170", "eDam": "0-170", "atkSpd": "SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "ls": 725, "ms": 5, "str": 25, "dex": 25, "hprRaw": -500, "aDefPct": -30, "id": 850}, {"name": "Deepwood Root", "tier": "Unique", "type": "wand", "thorns": 6, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "50-75", "atkSpd": "SLOW", "lvl": 86, "strReq": 30, "intReq": 35, "mr": 5, "sdPct": 10, "wDamPct": 8, "fDefPct": -20, "eDefPct": 12, "id": 848}, {"name": "Defiance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "aDef": 50, "lvl": 60, "agiReq": 40, "defReq": 40, "sdPct": -8, "mdPct": -8, "agi": 8, "def": 8, "spd": -12, "wDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 854}, {"name": "Deja Vu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "82-94", "wDam": "82-94", "aDam": "82-94", "tDam": "7-7", "eDam": "7-7", "atkSpd": "NORMAL", "lvl": 86, "strReq": 32, "dexReq": 32, "ls": 100, "lb": 25, "spd": 15, "hprRaw": -100, "fDamPct": -21, "wDamPct": -21, "aDamPct": -21, "tDamPct": 51, "eDamPct": 51, "id": 853}, {"name": "Delirium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "aDef": -200, "tDef": 125, "eDef": 70, "lvl": 87, "strReq": 50, "dexReq": 60, "mdPct": 14, "ls": -275, "ms": 5, "str": 13, "spd": 50, "tDamPct": 22, "eDamPct": 22, "id": 857}, {"name": "Demeter", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -90, "aDef": 50, "eDef": 40, "lvl": 68, "strReq": 35, "agiReq": 35, "agi": 7, "def": -8, "spd": 8, "mdRaw": 165, "fDamPct": -40, "eDamPct": 16, "aDefPct": 12, "id": 859}, {"name": "Deluge", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 700, "lvl": 56, "strReq": 45, "dexReq": 15, "mdPct": 12, "dex": 4, "mdRaw": 100, "tDamPct": 12, "eDamPct": 6, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 852}, {"name": "Dematerialized", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-61", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "intReq": 15, "agiReq": 40, "mr": 5, "ms": 5, "agi": 8, "spd": 16, "hpBonus": -180, "fDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 861}, {"name": "Demon Seeker", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "sdPct": 20, "xpb": 20, "lb": 20, "ref": 10, "id": 858}, {"name": "Demon Tide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2625, "fDef": 65, "wDef": -200, "tDef": 65, "lvl": 87, "dexReq": 65, "defReq": 45, "sdPct": -45, "mdPct": -40, "int": 10, "fDamPct": 10, "wDamPct": 20, "tDamPct": 10, "spPct1": -21, "spPct2": -14, "spPct3": -17, "spPct4": -21, "id": 860}, {"name": "Demon's Will", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-145", "fDam": "90-170", "wDam": "0-0", "aDam": "0-0", "tDam": "90-170", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "dexReq": 35, "defReq": 35, "ls": 440, "ms": 10, "expd": 5, "spRegen": -5, "sdRaw": 135, "fDamPct": 12, "tDamPct": 15, "wDefPct": -12, "aDefPct": -12, "id": 863}, {"name": "Depressing Shears", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 865}, {"name": "Depressing Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 864}, {"name": "Depressing Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 867}, {"name": "Deracine", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "mdPct": -20, "int": 5, "hpBonus": -50, "wDamPct": 12, "wDefPct": 10, "id": 869}, {"name": "Depressing Stick", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 866}, {"name": "Derecho", "tier": "Rare", "sprint": 9, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -60, "lvl": 85, "agiReq": 65, "agi": 13, "aDamPct": -7, "type": "necklace", "id": 3603}, {"name": "Dern's Desolation", "tier": "Rare", "type": "spear", "poison": 100, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-24", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "dexReq": 15, "mr": 5, "ms": 5, "aDamPct": -15, "id": 868}, {"name": "Dern's Shadow", "tier": "Rare", "type": "spear", "poison": 24, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "id": 873}, {"name": "Despair", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-80", "fDam": "0-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "dexReq": 25, "defReq": 25, "hprPct": -13, "sdPct": 13, "ls": 75, "ms": 5, "spRegen": -7, "wDamPct": -13, "id": 872}, {"name": "Deserter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "55-105", "tDam": "0-0", "eDam": "65-95", "atkSpd": "NORMAL", "lvl": 90, "strReq": 35, "agiReq": 35, "xpb": 8, "str": 16, "agi": 16, "spd": 8, "wDamPct": -20, "aDamPct": 12, "eDefPct": 12, "id": 870}, {"name": "Requiem", "displayName": "Desperado", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "12-40", "fDam": "13-91", "wDam": "0-0", "aDam": "0-0", "tDam": "22-30", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 40, "defReq": 50, "ms": 10, "agi": -10, "hpBonus": -1250, "sdRaw": 115, "fDamPct": 23, "wDamPct": -25, "tDamPct": 12, "eDefPct": -20, "id": 871}, {"name": "Detlas' Legacy", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "10-15", "aDam": "0-0", "tDam": "5-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 12, "mdPct": -5, "xpb": 8, "dex": 5, "int": 5, "wDamPct": 7, "id": 875}, {"name": "Determination", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 78, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 30, "sdPct": -30, "mdPct": -30, "spRegen": 10, "hprRaw": 120, "id": 877}, {"name": "Detlas' Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 172, "wDef": 20, "tDef": -15, "lvl": 29, "intReq": 5, "defReq": 5, "xpb": 15, "lb": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": -5, "id": 879}, {"name": "Detlas' Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-5", "fDam": "0-0", "wDam": "1-3", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 7, "mr": 5, "xpb": 6, "int": 4, "id": 876}, {"name": "Deux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "fDef": -80, "wDef": 150, "aDef": -80, "tDef": 150, "eDef": -80, "lvl": 81, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 5, "mdPct": -20, "ms": 10, "str": -4, "dex": 6, "int": 6, "agi": -4, "def": -4, "spRegen": 5, "id": 913}, {"name": "Devilish", "tier": "Rare", "poison": 192, "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": -15, "lvl": 52, "dexReq": 5, "defReq": 10, "ls": 29, "expd": 5, "hpBonus": -90, "spRegen": -5, "type": "bracelet", "id": 884}, {"name": "Devil's Scissor", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-24", "fDam": "16-24", "wDam": "0-0", "aDam": "0-0", "tDam": "16-24", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "dexReq": 10, "defReq": 10, "mdPct": 5, "ls": 25, "str": 7, "id": 878}, {"name": "Devotion", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 15, "lvl": 58, "hprPct": 5, "sdPct": 5, "spRegen": 5, "mdRaw": -16, "type": "necklace", "id": 883}, {"name": "Dhoruba", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "dexReq": 40, "ms": 10, "xpb": 15, "lb": 15, "str": -8, "dex": 8, "aDefPct": -30, "tDefPct": 15, "eDefPct": 15, "id": 882}, {"name": "Diablo", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-80", "fDam": "60-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "strReq": 10, "defReq": 30, "sdPct": -24, "mdPct": 36, "def": 7, "expd": 33, "spd": -10, "fDamPct": 25, "wDamPct": -50, "wDefPct": -30, "id": 888}, {"name": "Devoreuse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "hprPct": 10, "mr": 5, "ls": 41, "ms": 5, "int": -3, "wDamPct": -15, "id": 880}, {"name": "Diaminar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-70", "fDam": "320-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "defReq": 50, "ls": 315, "def": 8, "spd": -5, "hpBonus": 1500, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 886}, {"name": "Diamond Sky", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "xpb": 8, "lb": 18, "id": 885}, {"name": "Diamond Dust", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2375, "lvl": 93, "xpb": 19, "lb": 34, "ref": 19, "fDefPct": -11, "wDefPct": -11, "aDefPct": -11, "tDefPct": -11, "eDefPct": -11, "id": 887}, {"name": "Digested Dagger", "tier": "Unique", "type": "dagger", "poison": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "str": 3, "dex": 3, "id": 892}, {"name": "Diet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 17, "agiReq": 5, "str": -2, "agi": 4, "spd": 6, "type": "ring", "id": 890}, {"name": "Diode", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "lvl": 24, "dexReq": 10, "ref": 6, "dex": 5, "spd": 4, "tDamPct": 10, "id": 891}, {"name": "Dionaea", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3850, "fDef": 80, "eDef": 110, "lvl": 96, "strReq": 40, "defReq": 40, "sdPct": -8, "mdPct": 12, "ls": 225, "mdRaw": 195, "wDefPct": 25, "aDefPct": -15, "tDefPct": -10, "id": 889}, {"name": "Diorite Boots", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "fDef": 20, "wDef": -40, "eDef": 15, "lvl": 40, "strReq": 25, "defReq": 15, "mdPct": 12, "def": 8, "expd": 6, "fDamPct": 12, "eDamPct": 12, "wDefPct": -24, "id": 894}, {"name": "Disappeared", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -50, "aDef": 10, "lvl": 26, "agiReq": 8, "agi": 7, "type": "necklace", "id": 895}, {"name": "Dirge", "tier": "Unique", "type": "wand", "poison": 485, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "55-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "strReq": 20, "agiReq": 10, "ls": 110, "str": 7, "agi": -2, "aDamPct": -10, "eDamPct": 20, "id": 893}, {"name": "Disco", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 27, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spd": 11, "id": 896}, {"name": "Discordant", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 92, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 897}, {"name": "Discord", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 370, "fDef": -15, "wDef": -15, "aDef": -15, "eDef": -30, "lvl": 40, "dexReq": 40, "sdPct": 6, "mdPct": 6, "dex": 7, "expd": 10, "spd": 6, "tDamPct": 20, "id": 899}, {"name": "Dislocater", "tier": "Legendary", "type": "dagger", "thorns": 7, "category": "weapon", "drop": "NORMAL", "nDam": "31-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "sdPct": -10, "mdPct": 12, "str": 7, "id": 900}, {"name": "Discotek", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-33", "wDam": "23-33", "aDam": "23-33", "tDam": "23-33", "eDam": "23-33", "atkSpd": "FAST", "lvl": 49, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "sdPct": 15, "mdPct": 15, "spd": 10, "hpBonus": -300, "spPct1": 25, "spPct3": -24, "jh": 1, "id": 898}, {"name": "Dissector", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "ls": 55, "xpb": 5, "lb": 5, "spd": 5, "id": 902}, {"name": "Djinni", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "140-170", "wDam": "0-0", "aDam": "160-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "agiReq": 35, "defReq": 40, "hprPct": 20, "sdPct": 16, "mdPct": -30, "lb": 15, "hprRaw": 160, "fDamPct": 25, "id": 904}, {"name": "Dizzy Spell", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 120, "tDef": -120, "eDef": 120, "lvl": 88, "strReq": 50, "agiReq": 50, "mr": -10, "ls": 215, "ms": 10, "str": 9, "agi": 9, "spd": 16, "mdRaw": 215, "id": 901}, {"name": "Dofotri", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 1, "spd": 5, "type": "ring", "id": 905}, {"name": "Dolomite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "aDef": -50, "eDef": 50, "lvl": 57, "strReq": 35, "sdPct": -10, "mdPct": 12, "lb": 7, "expd": 15, "spd": -10, "eDamPct": 8, "id": 903}, {"name": "Doppler", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": -45, "aDef": 30, "tDef": 30, "eDef": -45, "lvl": 50, "dexReq": 25, "agiReq": 25, "sdPct": 4, "def": -5, "spd": 15, "aDamPct": 12, "tDamPct": 12, "fDefPct": -13, "id": 907}, {"name": "Doomsday", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "strReq": 40, "dexReq": 15, "mr": -5, "mdPct": 10, "ms": 5, "dex": 8, "wDamPct": -20, "eDamPct": 20, "id": 906}, {"name": "Double Vision", "tier": "Fabled", "quest": "Realm of Light V - The Realm of Light", "majorIds": ["LIGHTWEIGHT"], "sprint": 11, "category": "accessory", "drop": "never", "hp": -750, "aDef": -50, "lvl": 79, "xpb": 17, "agi": 3, "spd": 11, "type": "bracelet", "sprintReg": 11, "jh": 3, "id": 3581}, {"name": "Dorian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-106", "fDam": "100-106", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "defReq": 45, "hprPct": 15, "sdPct": 12, "mdPct": -10, "ls": -105, "def": 8, "hprRaw": 45, "wDamPct": -19, "id": 909}, {"name": "Doubt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "530-600", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "560-670", "atkSpd": "SUPER_SLOW", "lvl": 93, "strReq": 35, "defReq": 50, "mdPct": 15, "fDamPct": 35, "wDamPct": -55, "aDamPct": -55, "tDamPct": -25, "fDefPct": 25, "wDefPct": 15, "tDefPct": 15, "eDefPct": 20, "id": 935}, {"name": "Downfall", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -600, "wDef": -35, "aDef": -35, "lvl": 98, "strReq": 60, "defReq": 55, "str": 6, "spd": 12, "mdRaw": 70, "fDamPct": 8, "eDamPct": 8, "type": "ring", "id": 910}, {"name": "Paradox", "displayName": "Dragon Dance", "tier": "Rare", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "fDef": 30, "wDef": 30, "aDef": 150, "tDef": 30, "eDef": -150, "lvl": 98, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 15, "sdPct": 21, "mdPct": -50, "ls": -235, "ms": 5, "str": -99, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 20, "hprRaw": -195, "sdRaw": 145, "eDefPct": -20, "jh": 1, "id": 2092}, {"name": "Dragon Hide Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 510, "fDef": 50, "wDef": -50, "lvl": 47, "defReq": 25, "sdPct": 5, "lb": 5, "str": 7, "def": 7, "expd": 3, "fDamPct": 10, "wDamPct": -50, "fDefPct": 10, "wDefPct": -20, "id": 912}, {"name": "Dragon Fang", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "4-18", "fDam": "22-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "defReq": 15, "xpb": 5, "def": 7, "expd": 10, "fDamPct": 10, "wDamPct": -20, "fDefPct": 10, "id": 908}, {"name": "Dragon Hide Plate", "tier": "Rare", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2000, "fDef": 100, "lvl": 82, "hprPct": 20, "mr": 5, "xpb": 20, "def": 10, "expd": 20, "fDamPct": 20, "fDefPct": 20, "id": 911}, {"name": "Dragon Slayer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-80", "fDam": "60-70", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 79, "defReq": 40, "xpb": 7, "hpBonus": 500, "fDamPct": 5, "aDamPct": 10, "id": 914}, {"name": "Dragon Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": 30, "wDef": -20, "lvl": 57, "defReq": 10, "sdPct": 5, "lb": 15, "fDamPct": 7, "wDamPct": -10, "id": 915}, {"name": "Dragon's Tongue", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-110", "wDam": "70-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 55, "defReq": 55, "hprPct": 46, "mr": 10, "sdPct": -24, "mdPct": -24, "int": 10, "def": 10, "hprRaw": 131, "tDamPct": -45, "eDamPct": -45, "id": 918}, {"name": "Draken", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "tDef": 70, "eDef": -100, "lvl": 70, "dexReq": 65, "ms": 10, "str": -7, "dex": 9, "tDamPct": 18, "eDamPct": -12, "tDefPct": 10, "eDefPct": -12, "id": 919}, {"name": "Drale's Hide", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "eDef": 5, "lvl": 9, "mdPct": 4, "str": 4, "spd": 6, "id": 917}, {"name": "Dread", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "sdPct": 4, "dex": 3, "spd": 4, "hpBonus": -18, "id": 921}, {"name": "Dravarden", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 950, "fDef": 30, "wDef": 30, "tDef": 30, "lvl": 56, "dexReq": 15, "intReq": 15, "defReq": 15, "hprPct": 20, "mr": 5, "sdPct": 15, "dex": 7, "int": 7, "def": 7, "aDamPct": -40, "eDamPct": -40, "aDefPct": -25, "eDefPct": -25, "id": 916}, {"name": "Dreamcloud", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 70, "wDef": 70, "aDef": 70, "tDef": 70, "eDef": 70, "lvl": 88, "intReq": 30, "agiReq": 30, "hprPct": 20, "mr": 10, "hprRaw": 160, "fDamPct": -8, "wDamPct": -2, "aDamPct": -2, "tDamPct": -8, "eDamPct": -5, "id": 922}, {"name": "Drifter", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-62", "fDam": "0-0", "wDam": "36-88", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 62, "intReq": 30, "dex": -4, "int": 8, "agi": 4, "spd": 13, "sdRaw": 70, "wDamPct": 12, "wDefPct": 17, "tDefPct": -20, "id": 925}, {"name": "Drizzling Doublet", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 375, "tDef": -30, "lvl": 56, "intReq": 40, "mr": 10, "mdPct": -10, "ms": 10, "xpb": 15, "int": 5, "wDamPct": 7, "wDefPct": 7, "tDefPct": -20, "id": 923}, {"name": "Druid's Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "wDef": 20, "eDef": 20, "lvl": 65, "strReq": 5, "intReq": 5, "wDamPct": 5, "eDamPct": 5, "wDefPct": 10, "eDefPct": 10, "type": "ring", "id": 924}, {"name": "Droplets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-95", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 40, "mr": 10, "xpb": 8, "ref": 15, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 926}, {"name": "Dune Sandals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -15, "wDef": -15, "aDef": 20, "eDef": 15, "lvl": 33, "agiReq": 10, "str": 4, "spd": 7, "wDamPct": -10, "aDamPct": 9, "eDamPct": 12, "id": 928}, {"name": "Dunesweeper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "110-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 92, "strReq": 25, "agiReq": 35, "lb": 12, "spd": 15, "mdRaw": 155, "tDamPct": -6, "eDamPct": 19, "aDefPct": 19, "id": 930}, {"name": "Drumstick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "34-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "agiReq": 30, "dex": 13, "mdRaw": 41, "aDamPct": 25, "id": 927}, {"name": "Drifting Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "50-100", "aDam": "15-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "intReq": 25, "agiReq": 25, "xpb": 9, "int": 4, "agi": 5, "spd": 11, "fDamPct": -20, "aDamPct": 15, "wDefPct": 15, "aDefPct": 18, "id": 920}, {"name": "DuskHelm", "displayName": "Duskhelm", "tier": "Unique", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "fDef": 10, "wDef": -7, "lvl": 26, "ref": 5, "fDamPct": -15, "wDamPct": 15, "fDefPct": 5, "wDefPct": -5, "id": 929}, {"name": "Durum's Journey", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 550, "fDef": -20, "wDef": 15, "tDef": -25, "eDef": 30, "lvl": 48, "mr": 5, "sdPct": -15, "xpb": 15, "int": 7, "spd": 10, "hpBonus": 70, "hprRaw": 25, "aDefPct": -15, "id": 932}, {"name": "Dusk Painter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": -5, "sdPct": 7, "mdPct": 7, "ls": 12, "ms": 10, "hprRaw": -8, "id": 931}, {"name": "Dust Bowl", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 500, "aDef": 20, "eDef": 15, "lvl": 51, "strReq": 20, "agiReq": 15, "str": 7, "spd": 10, "sdRaw": -30, "aDamPct": 10, "eDamPct": 12, "id": 939}, {"name": "Dust Devil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -10, "lvl": 88, "agiReq": 30, "spd": 8, "aDamPct": 9, "eDamPct": 9, "type": "ring", "id": 937}, {"name": "DuskShield", "displayName": "Duskshield", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "wDef": 15, "tDef": 15, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -5, "ref": 8, "fDamPct": -8, "eDamPct": -8, "wDefPct": 6, "tDefPct": 6, "id": 934}, {"name": "Dust", "tier": "Rare", "type": "chestplate", "poison": 105, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "aDef": -15, "lvl": 32, "hprPct": -9, "agi": 5, "aDamPct": 8, "eDamPct": 4, "wDefPct": -6, "id": 933}, {"name": "Dusty Staff", "tier": "Unique", "type": "wand", "poison": 80, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "12-16", "atkSpd": "SLOW", "lvl": 26, "strReq": 8, "lb": 12, "aDefPct": -4, "eDefPct": 7, "id": 938}, {"name": "Dying Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "131-141", "aDam": "121-151", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 38, "agiReq": 38, "sdPct": 20, "ls": -217, "int": 10, "agi": 10, "spd": 10, "wDamPct": 15, "aDamPct": 15, "id": 941}, {"name": "Dynamic", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 7, "eDef": -7, "lvl": 28, "dexReq": 10, "dex": 4, "mdRaw": 5, "tDamPct": 6, "type": "bracelet", "id": 940}, {"name": "Dysnomia", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": -40, "aDef": -40, "lvl": 52, "strReq": 25, "dexReq": 40, "hprPct": -40, "ms": 10, "spd": 10, "wDamPct": -20, "eDamPct": 10, "id": 944}, {"name": "Earth Breaker", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "fDef": 90, "aDef": -150, "eDef": 90, "lvl": 90, "strReq": 50, "defReq": 40, "ls": 220, "str": 9, "def": 8, "expd": 25, "atkTier": -10, "mdRaw": 1150, "fDamPct": 31, "eDamPct": 15, "id": 942}, {"name": "Earth Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-200", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 943}, {"name": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 945}, {"name": "Earthquake", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-114", "fDam": "80-149", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-149", "atkSpd": "SUPER_SLOW", "lvl": 60, "strReq": 25, "defReq": 25, "sdPct": -10, "mdPct": 10, "expd": 25, "spd": -15, "fDamPct": 10, "eDamPct": 10, "wDefPct": -15, "id": 948}, {"name": "Earth Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-190", "atkSpd": "VERY_SLOW", "lvl": 60, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 949}, {"name": "Earth Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-70", "atkSpd": "SLOW", "lvl": 55, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 946}, {"name": "Earthsky Equinox", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "100-165", "tDam": "0-0", "eDam": "120-145", "atkSpd": "FAST", "lvl": 98, "strReq": 50, "agiReq": 50, "mdPct": 15, "str": 16, "agi": 16, "spd": 15, "atkTier": 1, "tDefPct": -30, "id": 947}, {"name": "Dusty Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "agi": 3, "type": "ring", "id": 936}, {"name": "Eater", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "ls": 3, "type": "ring", "id": 952}, {"name": "Ebrithil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "intReq": 40, "sdPct": 4, "int": 5, "spRegen": 8, "type": "necklace", "id": 950}, {"name": "Ebb and Flow", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-24", "fDam": "0-0", "wDam": "46-54", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 37, "intReq": 20, "mr": 5, "sdPct": 11, "str": -5, "dex": -5, "int": 14, "agi": -5, "def": -5, "spRegen": 16, "wDamPct": 11, "id": 951}, {"name": "Echolocation", "tier": "Unique", "type": "relik", "poison": 111, "thorns": -10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "39-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 35, "ls": 18, "ref": -10, "id": 954}, {"name": "Eclipse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "10-30", "wDam": "10-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "intReq": 22, "defReq": 22, "hprPct": 15, "hprRaw": 20, "sdRaw": -10, "mdRaw": -13, "fDefPct": 10, "wDefPct": 10, "id": 956}, {"name": "Ectoplasm", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "wDef": 55, "aDef": 55, "tDef": -100, "lvl": 63, "intReq": 40, "mr": 5, "sdPct": 10, "mdPct": -15, "ms": 10, "spd": -15, "wDefPct": 10, "aDefPct": -10, "id": 957}, {"name": "Echo", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 22, "agiReq": 8, "agi": 3, "aDamPct": 7, "type": "ring", "id": 955}, {"name": "Edgy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 12, "mdPct": 6, "dex": 3, "type": "bracelet", "id": 953}, {"name": "Effervescence", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "0-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 24, "mr": 5, "sdPct": 22, "int": 8, "hprRaw": -14, "id": 958}, {"name": "Efilim Sage Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 60, "eDef": 60, "lvl": 77, "strReq": 30, "intReq": 40, "mr": 5, "sdPct": 7, "mdPct": -10, "xpb": 10, "str": 7, "int": 7, "spRegen": 10, "hprRaw": 60, "id": 961}, {"name": "Efteling", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "wDef": 50, "aDef": 50, "tDef": -200, "lvl": 94, "intReq": 60, "agiReq": 60, "mr": -25, "sdPct": 30, "ls": 175, "ms": 10, "spd": 16, "sdRaw": 150, "wDamPct": 20, "aDamPct": 20, "id": 959}, {"name": "Egression", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 100, "eDef": -100, "lvl": 73, "agiReq": 60, "sdPct": -45, "mdPct": -45, "xpb": 15, "agi": 13, "spd": 23, "aDamPct": 70, "id": 960}, {"name": "Ehwaz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 39, "agiReq": 10, "agi": 3, "spd": 10, "type": "ring", "id": 962}, {"name": "Eil", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": 13, "hpBonus": 500, "id": 963}, {"name": "Ekeloch", "tier": "Unique", "type": "boots", "poison": 455, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1310, "aDef": -150, "tDef": 150, "lvl": 69, "tDamPct": 5, "id": 966}, {"name": "Electric Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 140, "tDef": 30, "eDef": -30, "lvl": 54, "dexReq": 20, "mdPct": 5, "dex": 4, "tDamPct": 8, "type": "necklace", "id": 965}, {"name": "Ein", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 1, "sdPct": 1, "mdPct": 1, "sdRaw": 1, "mdRaw": 1, "type": "ring", "id": 973}, {"name": "Electrolytic", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-47", "fDam": "0-0", "wDam": "14-58", "aDam": "0-0", "tDam": "3-69", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 33, "intReq": 33, "sdPct": 10, "mdPct": -10, "ms": 5, "sdRaw": 70, "fDamPct": -20, "aDamPct": -20, "eDamPct": -20, "id": 968}, {"name": "Electrocharge Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "tDef": 60, "eDef": -60, "lvl": 61, "dexReq": 50, "ms": -5, "dex": 7, "spd": 10, "atkTier": 1, "hprRaw": -60, "mdRaw": 90, "tDamPct": 10, "eDefPct": -30, "id": 967}, {"name": "Electrophorus", "tier": "Unique", "type": "helmet", "poison": 300, "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 60, "eDef": -60, "lvl": 64, "intReq": 40, "sdRaw": 74, "tDamPct": 12, "id": 971}, {"name": "Eitr", "tier": "Rare", "type": "leggings", "poison": 415, "category": "armor", "drop": "NORMAL", "hp": 1430, "fDef": 65, "wDef": -50, "tDef": 55, "eDef": -70, "lvl": 66, "dexReq": 15, "defReq": 30, "mr": -5, "def": 4, "fDamPct": 16, "wDamPct": -18, "tDamPct": 13, "id": 964}, {"name": "Eleven", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "hprPct": 11, "mdPct": 11, "sdRaw": 11, "id": 996}, {"name": "Eliminere", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-83", "eDam": "0-213", "atkSpd": "SUPER_FAST", "lvl": 87, "strReq": 35, "dexReq": 35, "hprPct": -140, "sdPct": 20, "mdPct": 20, "expd": 25, "hpBonus": -1370, "hprRaw": -135, "id": 991}, {"name": "Electrum", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "tDef": 45, "eDef": -90, "lvl": 58, "dexReq": 35, "intReq": 25, "sdPct": 6, "sdRaw": 75, "fDamPct": -20, "wDamPct": 8, "aDamPct": -20, "tDamPct": 8, "eDamPct": -30, "id": 969}, {"name": "Embers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-30", "fDam": "11-19", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "defReq": 10, "hprPct": 13, "ls": 17, "fDamPct": 7, "wDamPct": -9, "id": 974}, {"name": "Emerald Chopper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "150-250", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "agiReq": 25, "defReq": 35, "lb": 25, "expd": 25, "eSteal": 7, "fDamPct": 40, "id": 970}, {"name": "Emerald Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-80", "atkSpd": "SLOW", "lvl": 72, "lb": 25, "eSteal": 10, "sdRaw": -50, "mdRaw": -65, "id": 975}, {"name": "Elven Moccasins", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 8, "lvl": 3, "hprPct": 8, "id": 972}, {"name": "Emotion", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-30", "fDam": "24-28", "wDam": "23-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "intReq": 12, "defReq": 10, "mr": 5, "sdPct": -5, "mdPct": -5, "ls": -8, "int": 12, "agi": -5, "def": 10, "hprRaw": 8, "id": 977}, {"name": "Empire Builder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 8, "drop": "NORMAL", "nDam": "50-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 978}, {"name": "Enchanter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "3-5", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "str": -3, "int": 4, "id": 976}, {"name": "End of Limits", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-150", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "strReq": 60, "dexReq": 40, "mr": -5, "sdPct": 11, "mdPct": 16, "ls": -205, "xpb": 10, "sdRaw": 75, "mdRaw": 100, "eDamPct": 16, "id": 979}, {"name": "Enderman's Feet", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": -30, "aDef": -60, "tDef": 80, "lvl": 62, "dexReq": 30, "sdPct": 6, "ref": 12, "dex": 8, "wDamPct": -5, "tDamPct": 6, "tDefPct": 10, "id": 981}, {"name": "Endurance", "tier": "Rare", "type": "chestplate", "thorns": 65, "category": "armor", "drop": "NORMAL", "hp": 2050, "wDef": -150, "lvl": 79, "def": 7, "hprRaw": 65, "fDamPct": 15, "wDamPct": -10, "id": 980}, {"name": "Enduzskam", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "wDef": 50, "tDef": 80, "eDef": -90, "lvl": 83, "dexReq": 35, "intReq": 35, "mr": 5, "sdPct": 14, "dex": 9, "wDamPct": 12, "tDamPct": 16, "eDamPct": -14, "eDefPct": -10, "id": 986}, {"name": "Endotherm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "fDef": 80, "aDef": 80, "lvl": 71, "agiReq": 40, "defReq": 40, "hprPct": 25, "sdPct": -20, "mdPct": -20, "hpBonus": 300, "hprRaw": 75, "fDefPct": 14, "aDefPct": 14, "id": 982}, {"name": "Enmity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -80, "eDef": -40, "lvl": 100, "strReq": 60, "ms": 10, "dex": 4, "spd": 8, "sdRaw": 53, "mdRaw": 55, "fDefPct": -18, "wDefPct": -18, "aDefPct": -18, "type": "bracelet", "id": 983}, {"name": "Ensa's Failure", "tier": "Rare", "poison": 450, "thorns": 11, "category": "accessory", "drop": "lootchest", "hp": -250, "lvl": 98, "strReq": 40, "dexReq": 40, "spRegen": -15, "tDamPct": 11, "eDamPct": 11, "wDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 984}, {"name": "Ensa's Resolve", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "0-0", "wDam": "120-155", "aDam": "100-175", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "intReq": 40, "agiReq": 35, "hprPct": 30, "mr": 10, "xpb": 19, "ref": 15, "agi": 7, "spRegen": 11, "mdRaw": -95, "fDefPct": 12, "wDefPct": 20, "id": 990}, {"name": "Enzan's Lucky Charm", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 3, "xpb": 3, "eSteal": 1, "type": "bracelet", "id": 988}, {"name": "Ensa's Ideals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "wDef": 100, "aDef": 100, "lvl": 84, "intReq": 45, "agiReq": 40, "hprPct": 15, "mr": 5, "xpb": 15, "ref": 15, "int": 7, "hpBonus": 962, "spRegen": 25, "hprRaw": 115, "wDefPct": 15, "aDefPct": 15, "id": 985}, {"name": "Entanglement", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": 70, "aDef": -100, "tDef": 70, "lvl": 89, "dexReq": 50, "intReq": 45, "mr": -5, "sdPct": 25, "ms": -5, "dex": 10, "int": 10, "wDamPct": 9, "tDamPct": 9, "wDefPct": 9, "tDefPct": 9, "id": 3612}, {"name": "Equalizer", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1555, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 86, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "mr": 5, "sdPct": 18, "mdPct": 18, "ls": 155, "ms": 5, "ref": 18, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "hprRaw": 105, "id": 989}, {"name": "Equilibrium", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 24, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 987}, {"name": "Erhu", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "60-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "agiReq": 15, "mr": 5, "xpb": 15, "ref": 10, "agi": 7, "spRegen": 10, "fDamPct": -10, "wDamPct": 10, "tDamPct": -10, "id": 995}, {"name": "Equinox", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -22, "lvl": 88, "intReq": 33, "defReq": 33, "expd": 6, "spRegen": 6, "fDamPct": 9, "wDamPct": 9, "type": "ring", "id": 994}, {"name": "Erratio", "tier": "Legendary", "type": "chestplate", "poison": 61, "thorns": 11, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 413, "lvl": 35, "dexReq": 6, "agiReq": 12, "ls": 55, "ref": 3, "spRegen": -2, "hprRaw": -6, "mdRaw": 16, "aDamPct": 4, "aDefPct": 13, "id": 993}, {"name": "Errant", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "fDef": -60, "aDef": 60, "lvl": 95, "agiReq": 45, "sdPct": 7, "spd": 8, "fDamPct": -5, "aDamPct": 5, "fDefPct": -10, "type": "necklace", "id": 992}, {"name": "Eruption", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-160", "atkSpd": "VERY_SLOW", "lvl": 49, "strReq": 30, "defReq": 10, "sdPct": -15, "mdPct": 25, "str": 7, "def": 9, "expd": 25, "spd": -15, "hpBonus": 550, "fDamPct": 20, "id": 997}, {"name": "Esclavage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 93, "strReq": 15, "defReq": 45, "xpb": 7, "lb": 5, "str": 5, "dex": -1, "def": 5, "spd": -4, "type": "bracelet", "id": 999}, {"name": "Espoir", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 7, "lb": 7, "spRegen": 3, "type": "ring", "id": 1000}, {"name": "Esper's Focus", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "400-505", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 84, "intReq": 40, "mr": 5, "mdPct": -40, "xpb": 15, "hpBonus": -700, "wDamPct": 30, "id": 998}, {"name": "Estuarine", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "71-85", "aDam": "0-0", "tDam": "0-0", "eDam": "100-110", "atkSpd": "NORMAL", "lvl": 71, "strReq": 28, "intReq": 32, "mr": 5, "mdPct": -20, "int": 8, "spd": -12, "mdRaw": 130, "wDamPct": 35, "eDefPct": 30, "id": 1002}, {"name": "Essence Bastion", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-165", "fDam": "110-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 40, "spd": -10, "hpBonus": 1385, "spRegen": 10, "hprRaw": 125, "id": 1001}, {"name": "Eternity's Edge", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "340-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "340-340", "eDam": "340-340", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 35, "dexReq": 35, "ms": 10, "str": 16, "dex": 16, "spd": -16, "sdRaw": 140, "spRaw2": -10, "id": 1004}, {"name": "Ethereal", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-22", "fDam": "0-0", "wDam": "44-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "intReq": 60, "mr": 10, "sdPct": 25, "mdPct": -20, "int": 7, "agi": 7, "spRegen": 10, "wDamPct": 7, "aDamPct": 19, "eDamPct": -30, "tDefPct": -20, "id": 1003}, {"name": "Etikal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "8-12", "wDam": "8-12", "aDam": "8-12", "tDam": "8-12", "eDam": "8-12", "atkSpd": "SLOW", "lvl": 35, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 5, "lb": 5, "id": 1005}, {"name": "Euthanasia", "tier": "Rare", "type": "dagger", "poison": 100, "category": "weapon", "drop": "NORMAL", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "spRegen": -10, "hprRaw": -8, "sdRaw": 32, "id": 1008}, {"name": "Evalach", "tier": "Rare", "type": "leggings", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "lvl": 27, "defReq": 12, "hprPct": 18, "ref": 4, "def": 8, "spd": -7, "wDamPct": -6, "wDefPct": -6, "id": 1010}, {"name": "Evanescent", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-150", "fDam": "0-0", "wDam": "55-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 52, "intReq": 30, "agiReq": 20, "mr": 5, "mdPct": -40, "ms": 5, "agi": 10, "spd": 15, "wDamPct": 15, "aDamPct": 20, "id": 1006}, {"name": "Evening Primrose", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": 60, "wDef": -40, "aDef": -40, "tDef": 60, "eDef": -40, "lvl": 67, "dexReq": 30, "defReq": 30, "hprPct": 12, "def": 13, "spd": -15, "hpBonus": -500, "hprRaw": 70, "fDamPct": 15, "tDamPct": 15, "id": 1015}, {"name": "Evaporator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 60, "intReq": 20, "defReq": 35, "spd": -8, "aDamPct": -18, "aDefPct": -13, "id": 1009}, {"name": "Euouae", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -75, "lvl": 75, "dexReq": 30, "agiReq": 60, "dex": 5, "agi": 9, "spd": 6, "fDamPct": -15, "tDamPct": 5, "type": "bracelet", "id": 1007}, {"name": "Event Horizon", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-140", "eDam": "0-140", "atkSpd": "VERY_FAST", "lvl": 99, "strReq": 55, "dexReq": 55, "hpBonus": 5000, "wDamPct": -35, "fDefPct": -76, "wDefPct": -76, "aDefPct": -76, "tDefPct": -76, "eDefPct": -76, "id": 1012}, {"name": "Example", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "int": 8, "type": "bracelet", "id": 3626}, {"name": "Executioner Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "lvl": 75, "mdPct": 27, "ls": 265, "ms": 10, "hpBonus": 115, "sdRaw": 150, "id": 1013}, {"name": "Exhaustion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": 140, "wDef": -65, "lvl": 90, "defReq": 70, "hprPct": 35, "mr": -5, "ls": 345, "def": 7, "spd": -20, "atkTier": -1, "hpBonus": 500, "hprRaw": 150, "fDefPct": 18, "id": 1014}, {"name": "Exion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 21, "tDef": 3, "eDef": -6, "lvl": 5, "mr": 5, "spd": 6, "sdRaw": 4, "id": 1018}, {"name": "Facedown", "tier": "Unique", "type": "helmet", "thorns": -15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 89, "dexReq": 55, "sdPct": 20, "mdPct": 20, "xpb": 15, "ref": -15, "dex": 10, "agi": -5, "tDamPct": 15, "id": 1017}, {"name": "Exosphere", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 81, "dexReq": 24, "agiReq": 24, "mr": 5, "sdPct": 18, "ref": 18, "spRegen": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": 6, "tDefPct": 6, "id": 1016}, {"name": "Facile", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 99, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 8, "sdPct": 6, "mdPct": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "ring", "id": 1019}, {"name": "Facetious", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 40, "tDef": -20, "lvl": 98, "strReq": 50, "sdPct": 7, "mdPct": -6, "spd": 5, "wDamPct": 5, "type": "bracelet", "id": 1020}, {"name": "Faith Healer", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "wDef": 65, "aDef": 65, "lvl": 78, "intReq": 40, "agiReq": 40, "hprPct": 15, "sdPct": -15, "mdPct": -15, "spRegen": 20, "hprRaw": 75, "wDefPct": 10, "aDefPct": 10, "id": 1021}, {"name": "Faith of the Bovemist", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 45, "int": 4, "spRegen": 15, "tDefPct": 7, "type": "ring", "id": 1023}, {"name": "Faded", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 190, "lvl": 39, "xpb": 15, "ref": 5, "spRegen": 3, "id": 1024}, {"name": "Fatigue", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "spd": -6, "mdRaw": 26, "id": 1029}, {"name": "Fate's Shear", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "45-50", "aDam": "0-0", "tDam": "0-0", "eDam": "65-105", "atkSpd": "SUPER_FAST", "lvl": 97, "strReq": 45, "intReq": 50, "ms": 5, "spRegen": 10, "hprRaw": -300, "sdRaw": 180, "mdRaw": 85, "wDamPct": 15, "eDamPct": 15, "fDefPct": -35, "id": 1026}, {"name": "Fault Lines", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-130", "atkSpd": "VERY_SLOW", "lvl": 32, "strReq": 15, "defReq": 15, "mdPct": 18, "str": 8, "agi": -10, "def": 8, "spd": -15, "fDamPct": 18, "aDamPct": -20, "eDamPct": 18, "aDefPct": -20, "id": 1025}, {"name": "Faustian Contract", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "0-0", "tDam": "175-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "dexReq": 50, "defReq": 40, "hprPct": -25, "mr": -10, "sdPct": 30, "ms": 10, "expd": 20, "spd": -20, "atkTier": -1, "mdRaw": 550, "id": 1027}, {"name": "Ex Nihilo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "fDef": -100, "wDef": -100, "lvl": 98, "strReq": 50, "agiReq": 50, "sdPct": 25, "ls": 280, "int": 15, "def": -15, "spd": 15, "mdRaw": 235, "fDamPct": -40, "id": 1011}, {"name": "Featherweight", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 8, "agi": 4, "spd": 11, "id": 1031}, {"name": "Feedback", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 45, "ref": 25, "dex": 17, "hprRaw": -90, "tDamPct": 16, "eDamPct": -16, "wDefPct": -8, "id": 1028}, {"name": "Fehu", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 97, "xpb": 7, "lb": 13, "type": "ring", "id": 1033}, {"name": "Feithid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "fDef": -5, "lvl": 40, "agiReq": 20, "ls": 20, "agi": 7, "spd": 7, "aDamPct": 7, "id": 1032}, {"name": "Female Pirate Wig", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "hp": 3075, "lvl": 98, "xpb": 10, "lb": 15, "spd": 5, "eSteal": 3, "fixID": true, "id": 1037}, {"name": "Favian's Wing", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": -10, "tDef": -15, "lvl": 36, "agiReq": 20, "spd": 12, "aDamPct": 5, "type": "bracelet", "id": 1030}, {"name": "Fenmask", "tier": "Legendary", "type": "helmet", "thorns": 80, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": 105, "eDef": 140, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 30, "mr": 5, "ref": -40, "wDamPct": 18, "eDamPct": 18, "id": 1035}, {"name": "Fermion", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "sdPct": -7, "mdPct": -7, "ref": 15, "spRegen": 15, "id": 1034}, {"name": "Fern", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "2-6", "atkSpd": "VERY_FAST", "lvl": 16, "hprPct": 8, "ls": 11, "hpBonus": 40, "id": 1036}, {"name": "Fever Dream", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "39-39", "fDam": "39-39", "wDam": "0-0", "aDam": "39-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 35, "defReq": 35, "mr": -5, "sdPct": 28, "mdPct": 28, "str": 10, "dex": 10, "fDefPct": -26, "wDefPct": -33, "aDefPct": -26, "id": 1041}, {"name": "Fibreglass", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-50", "tDam": "0-0", "eDam": "10-40", "atkSpd": "FAST", "lvl": 51, "strReq": 17, "agiReq": 17, "sdPct": -10, "mdPct": 10, "mdRaw": 46, "fDefPct": -30, "id": 1039}, {"name": "Fierte", "tier": "Legendary", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "55-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "defReq": 35, "ref": 8, "def": 8, "hpBonus": 700, "fDamPct": 13, "wDefPct": -20, "id": 1040}, {"name": "Fierce Thunder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 39, "dexReq": 20, "sdPct": 7, "mdPct": 7, "xpb": 8, "spd": 15, "wDamPct": 20, "tDefPct": 10, "eDefPct": -25, "id": 1038}, {"name": "Fiery Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1043}, {"name": "Fiery Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1045}, {"name": "Fiery Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1042}, {"name": "Fiery Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1044}, {"name": "Fiery Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1048}, {"name": "Fiery Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": -40, "lvl": 69, "defReq": 25, "hprPct": 12, "def": 4, "fDamPct": 7, "type": "necklace", "id": 1047}, {"name": "Fighting Spirit", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": 15, "sdPct": 12, "mdPct": 12, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1046}, {"name": "Fingertrap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 55, "dex": -1, "hprRaw": -5, "mdRaw": 26, "type": "ring", "id": 1049}, {"name": "Finesse", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 89, "dexReq": 25, "intReq": 25, "dex": 5, "int": 4, "sdRaw": 35, "type": "ring", "id": 1050}, {"name": "Fire Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-100", "fDam": "70-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 440, "hprRaw": 40, "fDamPct": 10, "fDefPct": 20, "id": 1055}, {"name": "Fire Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-90", "fDam": "70-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 770, "hprRaw": 65, "fDamPct": 10, "fDefPct": 20, "id": 1053}, {"name": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1052}, {"name": "Fireball", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "lvl": 86, "defReq": 30, "sdPct": 5, "expd": 4, "fDamPct": 8, "wDamPct": -10, "type": "ring", "id": 1051}, {"name": "Fire Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 590, "hprRaw": 50, "fDamPct": 10, "fDefPct": 20, "id": 1068}, {"name": "Firecloud", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 38, "def": 3, "mdRaw": 13, "fDamPct": 4, "type": "ring", "id": 1057}, {"name": "Firesworn", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "61-82", "fDam": "61-82", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "defReq": 25, "sdPct": 61, "mdPct": 15, "hprRaw": -36, "fDamPct": 20, "fDefPct": -25, "id": 1060}, {"name": "Firequake", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 70, "wDef": -85, "aDef": -85, "eDef": 70, "lvl": 63, "strReq": 40, "defReq": 30, "xpb": 6, "str": 5, "expd": 26, "hprRaw": -65, "fDamPct": 21, "eDamPct": 21, "id": 1058}, {"name": "Firefly", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 65, "wDef": -70, "aDef": 50, "lvl": 66, "agiReq": 20, "defReq": 20, "hprPct": 20, "ls": 105, "agi": 5, "spd": 6, "fDamPct": 8, "aDefPct": 8, "id": 1054}, {"name": "Fishscale", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2525, "fDef": 80, "wDef": 80, "tDef": -180, "lvl": 93, "intReq": 40, "defReq": 40, "ms": 10, "spd": 7, "sdRaw": 175, "fDamPct": 15, "wDamPct": 15, "aDefPct": -15, "tDefPct": -30, "id": 1059}, {"name": "Fission Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-74", "fDam": "0-74", "wDam": "0-0", "aDam": "0-0", "tDam": "0-74", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "defReq": 25, "sdPct": 5, "mdPct": 5, "ls": 150, "expd": 33, "hprRaw": -70, "fDamPct": 5, "wDamPct": -143, "tDamPct": 5, "id": 1063}, {"name": "Flameshot Hilt", "tier": "Legendary", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "1100-1300", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "defReq": 60, "mdPct": 15, "def": 20, "expd": 45, "fDamPct": 25, "wDamPct": -150, "fDefPct": 35, "spRaw3": -15, "id": 1062}, {"name": "Firestorm Bellows", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-95", "fDam": "45-135", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "agiReq": 50, "defReq": 50, "mdPct": 15, "int": -8, "expd": 30, "spd": 20, "hpBonus": 750, "hprRaw": -125, "fDamPct": 15, "wDefPct": -33, "id": 1056}, {"name": "Fissure", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-170", "atkSpd": "VERY_SLOW", "lvl": 48, "strReq": 40, "sdPct": -9, "mdPct": 18, "str": 10, "expd": 26, "spd": -10, "fDamPct": 25, "aDamPct": -10, "eDamPct": 11, "aDefPct": -12, "id": 1061}, {"name": "Flamiche", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-24", "fDam": "18-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "defReq": 25, "hprPct": 16, "def": 7, "hpBonus": 250, "fDefPct": 10, "wDefPct": -5, "id": 1064}, {"name": "Flaming Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "6-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "hpBonus": 16, "id": 1065}, {"name": "Flaming Fangs", "tier": "Unique", "type": "dagger", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-68", "fDam": "32-42", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -3, "def": 10, "expd": 5, "sdRaw": 50, "id": 1066}, {"name": "Flash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "36-100", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "dexReq": 50, "agiReq": 20, "ms": 5, "dex": 4, "agi": 8, "spd": 20, "hpBonus": -400, "id": 1069}, {"name": "Flare Blitz", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "73-87", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "defReq": 24, "mdPct": 10, "ls": 40, "def": 8, "hpBonus": -100, "hprRaw": -15, "fDamPct": 8, "id": 1067}, {"name": "Flashing Boots", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "aDef": 60, "tDef": 100, "eDef": -200, "lvl": 87, "dexReq": 30, "agiReq": 15, "ref": 20, "int": -40, "spd": 8, "spPct1": -17, "spPct2": -10, "spPct3": -17, "spPct4": -10, "id": 1070}, {"name": "Flawed Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 58, "lvl": 17, "id": 1074}, {"name": "Flawed Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 44, "lvl": 15, "id": 1071}, {"name": "Flawless Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "77-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1075}, {"name": "Flawless Andesite Shears", "displayName": "Flawless Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "id": 1076}, {"name": "Flawed Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 35, "lvl": 13, "id": 1073}, {"name": "Flawless Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "130-154", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1077}, {"name": "Flawless Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "80-109", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1078}, {"name": "Flawed Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 31, "lvl": 11, "id": 1072}, {"name": "Flawless Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "49-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1080}, {"name": "Flawless Andesite Stick", "displayName": "Flawless Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1083}, {"name": "Flawless Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "63-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1079}, {"name": "Flawless Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1085}, {"name": "Flawless Birch Stick", "displayName": "Flawless Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1082}, {"name": "Flawless Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 155, "lvl": 33, "id": 1084}, {"name": "Flawless Birch Shears", "displayName": "Flawless Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "29-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "id": 1081}, {"name": "Flawless Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "lvl": 31, "id": 1089}, {"name": "Flawless Chain Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 192, "lvl": 37, "id": 1086}, {"name": "Flawless Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 176, "lvl": 35, "id": 1087}, {"name": "Flawless Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "178-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1092}, {"name": "Flawless Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "104-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1088}, {"name": "Flawless Diorite Shears", "displayName": "Flawless Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "id": 1090}, {"name": "Flawless Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "112-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1091}, {"name": "Flawless Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "213-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1097}, {"name": "Flawless Diorite Stick", "displayName": "Flawless Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "47-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1095}, {"name": "Flawless Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1093}, {"name": "Flawless Granite Shears", "displayName": "Flawless Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "id": 1094}, {"name": "Flawless Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "150-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1096}, {"name": "Flawless Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1098}, {"name": "Flawless Granite Stick", "displayName": "Flawless Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1099}, {"name": "Flawless Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1101}, {"name": "Flawless Jungle Shears", "displayName": "Flawless Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "id": 1122}, {"name": "Flawless Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1100}, {"name": "Flawless Jungle Stick", "displayName": "Flawless Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1103}, {"name": "Flawless Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "56-72", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1104}, {"name": "Flawless Light Birch Shears", "displayName": "Flawless Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "id": 1107}, {"name": "Flawless Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1102}, {"name": "Flawless Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "37-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1108}, {"name": "Flawless Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1110}, {"name": "Flawless Light Birch Stick", "displayName": "Flawless Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1106}, {"name": "Flawless Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1105}, {"name": "Flawless Light Jungle Shears", "displayName": "Flawless Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "id": 1111}, {"name": "Flawless Light Jungle Stick", "displayName": "Flawless Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1109}, {"name": "Flawless Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1112}, {"name": "Flawless Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1113}, {"name": "Flawless Light Oak Shears", "displayName": "Flawless Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "id": 1118}, {"name": "Flawless Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1114}, {"name": "Flawless Light Oak Stick", "displayName": "Flawless Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1117}, {"name": "Flawless Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1115}, {"name": "Flawless Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1119}, {"name": "Flawless Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "67-69", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1125}, {"name": "Flawless Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1123}, {"name": "Flawless Light Spruce Stick", "displayName": "Flawless Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1120}, {"name": "Flawless Light Spruce Shears", "displayName": "Flawless Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "id": 1116}, {"name": "Flawless Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1121}, {"name": "Flawless Oak Shears", "displayName": "Flawless Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "id": 1126}, {"name": "Flawless Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1127}, {"name": "Flawless Oak Stick", "displayName": "Flawless Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1129}, {"name": "Flawless Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1130}, {"name": "Flawless Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1128}, {"name": "Flawless Spruce Shears", "displayName": "Flawless Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "42-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "id": 1132}, {"name": "Flawless Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "63-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1131}, {"name": "Flawless Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "90-106", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1137}, {"name": "Flawless Spruce Stick", "displayName": "Flawless Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1134}, {"name": "Flawless Stone Shears", "displayName": "Flawless Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "id": 1135}, {"name": "Flawless Stone Stick", "displayName": "Flawless Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1133}, {"name": "Flawless Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "55-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1136}, {"name": "Fleet", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "wDef": 15, "aDef": 15, "tDef": -20, "lvl": 43, "intReq": 10, "agiReq": 20, "mdPct": -8, "xpb": 9, "int": 5, "spd": 14, "mdRaw": -45, "aDamPct": 7, "wDefPct": 11, "aDefPct": 10, "id": 1140}, {"name": "Flex", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -95, "aDef": 40, "eDef": 50, "lvl": 72, "strReq": 70, "mr": -5, "mdPct": 12, "str": 8, "int": -6, "agi": 5, "hpBonus": 400, "mdRaw": 130, "id": 1139}, {"name": "Flood Bath", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-156", "wDam": "147-159", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "intReq": 30, "defReq": 30, "sdPct": -11, "mdPct": -11, "hpBonus": 661, "fDamPct": 33, "wDamPct": 33, "aDamPct": -33, "tDamPct": -33, "eDamPct": -33, "spPct3": -23, "id": 1143}, {"name": "Flintlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-150", "fDam": "40-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-170", "atkSpd": "SLOW", "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 7, "str": 25, "def": 25, "expd": 40, "spd": -7, "wDefPct": -14, "id": 1142}, {"name": "Floodgate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "intReq": 55, "sdPct": 10, "int": 13, "fDamPct": -40, "wDamPct": 10, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 1141}, {"name": "Fluffster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-95", "fDam": "0-0", "wDam": "0-0", "aDam": "85-140", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "agiReq": 15, "hprPct": 19, "xpb": 5, "ref": 10, "spd": 15, "hpBonus": 300, "id": 1144}, {"name": "Hero's End", "displayName": "Flummox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 115, "wDef": -130, "tDef": 115, "eDef": -100, "lvl": 94, "dexReq": 40, "defReq": 40, "hprPct": 25, "mdPct": -15, "ls": 245, "def": 9, "sdRaw": 175, "fDamPct": 14, "tDamPct": 14, "eDamPct": -35, "id": 1354}, {"name": "Flawless Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "51-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1138}, {"name": "Fluffy Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 10, "mdPct": -15, "def": 8, "hpBonus": 125, "fDefPct": 8, "aDefPct": 8, "id": 1148}, {"name": "Fluorescence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "lvl": 82, "hprPct": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spd": 20, "eSteal": 6, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 88}, {"name": "Flux and Flow", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "dexReq": 10, "sdPct": 5, "sdRaw": 27, "wDamPct": 13, "tDamPct": 5, "spPct1": 14, "id": 1145}, {"name": "Fluorine", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -1, "lvl": 9, "mdPct": 7, "expd": 2, "type": "necklace", "id": 1146}, {"name": "Foam Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "aDef": 10, "tDef": -45, "lvl": 66, "intReq": 15, "sdPct": 6, "xpb": 6, "wDamPct": 4, "type": "bracelet", "id": 1149}, {"name": "Flush", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 30, "spd": 8, "wDamPct": 20, "tDefPct": -20, "id": 1147}, {"name": "Fog", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 30, "tDef": -25, "eDef": -40, "lvl": 68, "intReq": 10, "agiReq": 25, "wDamPct": 4, "aDamPct": 7, "wDefPct": 4, "aDefPct": 7, "type": "bracelet", "id": 1151}, {"name": "Follow The Wind", "displayName": "Follow the Wind", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 50, "eDef": 40, "lvl": 90, "agiReq": 60, "mdPct": -10, "xpb": 10, "ref": 10, "spd": 18, "eDamPct": -10, "type": "bracelet", "id": 1153}, {"name": "Fog of Creation", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "165-200", "fDam": "55-60", "wDam": "55-60", "aDam": "55-60", "tDam": "55-60", "eDam": "55-60", "atkSpd": "SLOW", "lvl": 100, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprRaw": 200, "sdRaw": 140, "mdRaw": 180, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1182}, {"name": "Foot Warmers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 30, "lvl": 48, "defReq": 10, "hprPct": 15, "xpb": 6, "def": 5, "spd": -5, "fDamPct": 7, "wDefPct": 6, "aDefPct": 6, "id": 1150}, {"name": "Foreboding", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 93, "dexReq": 50, "mdPct": 5, "xpb": 5, "dex": 7, "eDamPct": -20, "type": "bracelet", "id": 1154}, {"name": "Fortitude", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 40, "fDef": 5, "wDef": -8, "lvl": 28, "defReq": 12, "mdPct": -6, "def": 5, "spd": -6, "hpBonus": 25, "hprRaw": 6, "type": "bracelet", "id": 1156}, {"name": "Forgotten", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 36, "lvl": 12, "lb": 7, "str": 2, "dex": 3, "int": 2, "agi": 1, "def": 3, "id": 1152}, {"name": "Fractured", "tier": "Legendary", "thorns": 6, "category": "accessory", "drop": "lootchest", "hp": 300, "fDef": 30, "wDef": -60, "tDef": 20, "lvl": 95, "dexReq": 40, "defReq": 40, "ls": 165, "int": -4, "hpBonus": 150, "type": "ring", "id": 1161}, {"name": "Fragment", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "30-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 94, "dexReq": 40, "agiReq": 40, "mdPct": 18, "ms": -5, "aDamPct": 14, "tDamPct": 14, "fDefPct": -30, "wDefPct": -25, "eDefPct": -15, "id": 1159}, {"name": "Fourchette", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 5, "hprPct": 11, "id": 1157}, {"name": "Frenzy", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "39-109", "fDam": "0-0", "wDam": "0-0", "aDam": "29-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 50, "spd": 23, "atkTier": 1, "mdRaw": 50, "fDefPct": -10, "wDefPct": -10, "aDefPct": -5, "tDefPct": -10, "eDefPct": -10, "id": 1164}, {"name": "Frenzied Mockery", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2727, "fDef": 95, "wDef": -135, "aDef": -75, "tDef": 115, "lvl": 90, "dexReq": 50, "defReq": 40, "sdPct": 20, "ms": 5, "hpBonus": -400, "sdRaw": 144, "fDamPct": 14, "tDamPct": 14, "fDefPct": -50, "tDefPct": -50, "id": 1158}, {"name": "Founder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "aDef": -50, "eDef": 50, "lvl": 97, "strReq": 25, "defReq": 35, "hprPct": 12, "str": 5, "def": 4, "spd": -6, "hpBonus": 270, "type": "necklace", "id": 1155}, {"name": "Frigid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1270, "fDef": -75, "wDef": 75, "aDef": 75, "tDef": -75, "lvl": 74, "intReq": 35, "agiReq": 35, "mr": 5, "int": 4, "agi": 4, "wDamPct": 12, "aDamPct": 12, "fDefPct": -11, "tDefPct": -11, "id": 1160}, {"name": "Frontier", "tier": "Unique", "type": "relik", "thorns": 10, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "363-369", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "182-184", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 45, "hprPct": 20, "hpBonus": 800, "aDefPct": 15, "eDefPct": 20, "id": 1163}, {"name": "Frontliner", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 50, "aDef": 50, "lvl": 82, "agiReq": 60, "defReq": 60, "ls": 190, "ms": 5, "agi": 9, "def": 15, "wDamPct": -25, "fDefPct": 30, "wDefPct": -30, "aDefPct": 30, "id": 1162}, {"name": "Frostbite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 60, "aDef": 60, "lvl": 63, "intReq": 40, "agiReq": 30, "hprPct": -35, "ms": 10, "wDamPct": 15, "aDamPct": 15, "fDefPct": -20, "id": 1166}, {"name": "Frozen Brook", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-80", "fDam": "0-0", "wDam": "30-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "intReq": 20, "mr": 5, "sdPct": 12, "ref": 10, "int": 10, "agi": -5, "spd": -20, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 1168}, {"name": "Flawless Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1124}, {"name": "Frustration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-77", "fDam": "39-39", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "defReq": 35, "expd": 15, "hpBonus": 300, "hprRaw": -90, "fDamPct": 10, "eDamPct": 17, "wDefPct": -12, "id": 1167}, {"name": "Frosted Leggings", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "wDef": 60, "lvl": 57, "intReq": 30, "ms": 5, "int": 7, "spd": -5, "fDamPct": -15, "wDamPct": 20, "fDefPct": -35, "wDefPct": 30, "id": 1165}, {"name": "Full Charge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "490-605", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "mr": 5, "sdPct": 13, "ls": 305, "ms": -15, "spd": -15, "id": 1172}, {"name": "Fulmine Belt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "aDef": -50, "tDef": 100, "eDef": -50, "lvl": 83, "dexReq": 40, "sdPct": 14, "mdPct": 14, "dex": 6, "expd": 14, "aDamPct": -10, "tDamPct": 10, "tDefPct": 10, "id": 1169}, {"name": "Fyrespit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "115-160", "fDam": "120-180", "wDam": "45-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "intReq": 35, "defReq": 30, "mr": 5, "xpb": 8, "hpBonus": 1500, "hprRaw": 100, "fDamPct": 10, "wDamPct": 15, "id": 1173}, {"name": "Funnel", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 7, "ls": 2, "xpb": 5, "id": 1171}, {"name": "Fuse", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 50, "lvl": 75, "hprRaw": 30, "type": "ring", "id": 1170}, {"name": "Gert Bow", "displayName": "Gert Shootstick Tossflinger", "tier": "Legendary", "type": "bow", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1350-1750", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 79, "strReq": 70, "sdPct": -60, "mdPct": 30, "atkTier": -1, "mdRaw": 710, "fixID": true, "id": 1219}, {"name": "Gert Boots", "displayName": "Gert Shakestomper Toefeet", "tier": "Rare", "type": "boots", "quest": "The Hunger of Gerts Part 1", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1800, "aDef": -80, "eDef": 70, "lvl": 78, "strReq": 60, "mdPct": 50, "expd": 40, "spd": -15, "atkTier": -1, "mdRaw": 300, "fixID": true, "id": 1174}, {"name": "Gert Knife", "displayName": "Gert Swingpoke Cuttyrock", "tier": "Legendary", "type": "dagger", "quest": "The Hunger of Gerts Part 2", "poison": 800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "22-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "strReq": 30, "dexReq": 40, "mr": -10, "atkTier": 1, "tDamPct": 20, "fixID": true, "id": 1176}, {"name": "Gert Hammer", "displayName": "Gert Rock Smashbanger", "tier": "Legendary", "type": "spear", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "450-550", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "strReq": 40, "hprPct": -30, "str": 5, "eDamPct": 65, "fixID": true, "id": 1175}, {"name": "Gert Relik", "displayName": "Gert Bangswing Manypointystick", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NEVER", "restrict": "Untradable", "nDam": "650-880", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 55, "agiReq": 35, "sdPct": -300, "ms": 10, "xpb": 6, "atkTier": -1, "mdRaw": 410, "eDamPct": 20, "fixID": true, "id": 421}, {"name": "Gert Leggings", "displayName": "Gert Bumpstump Legcovercloth", "tier": "Rare", "type": "leggings", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 70, "eDef": 70, "lvl": 78, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 8, "str": 4, "agi": 4, "fixID": true, "id": 1191}, {"name": "Gert Super Special Magic Ultistick", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "sdPct": -1, "id": 1177}, {"name": "Gert Wand", "displayName": "Gert Whooshy Bonkpole", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "140-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 40, "agiReq": 40, "sdPct": -45, "mdPct": 30, "spd": 7, "wDamPct": -20, "aDamPct": 30, "fixID": true, "id": 1179}, {"name": "Reinforced Gert Chestplate", "displayName": "Gert Veryhard Chestclothes", "tier": "Rare", "type": "chestplate", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2425, "fDef": 110, "wDef": -70, "lvl": 78, "defReq": 40, "sdPct": -15, "mdPct": 12, "def": 6, "eDamPct": 15, "fixID": true, "id": 1178}, {"name": "Gale's Force", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-123", "fDam": "0-0", "wDam": "0-0", "aDam": "100-123", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "agiReq": 55, "xpb": 15, "ref": 15, "dex": 7, "agi": 13, "spd": 30, "spRegen": 15, "aDamPct": 25, "eDamPct": -50, "id": 1180}, {"name": "Gale Rider", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "14-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "agiReq": 15, "lb": 12, "agi": 8, "def": -5, "spd": 20, "hpBonus": -60, "aDefPct": 11, "id": 1186}, {"name": "Galloping Spurs", "tier": "Fabled", "type": "boots", "majorIds": ["CAVALRYMAN"], "thorns": 10, "category": "armor", "drop": "NORMAL", "hp": 560, "eDef": 20, "lvl": 40, "strReq": 25, "mdPct": 8, "xpb": 15, "spd": 10, "eDamPct": 15, "id": 1187}, {"name": "Galaxy Piercer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "hprPct": 5, "sdPct": 5, "dex": 3, "id": 1183}, {"name": "Galena", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": 60, "wDef": -80, "lvl": 59, "defReq": 45, "mdPct": -15, "ls": 60, "def": 5, "spd": -20, "hpBonus": 200, "hprRaw": 50, "fDamPct": 8, "id": 1181}, {"name": "Galvanization", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": -80, "wDef": 60, "tDef": 60, "eDef": -80, "lvl": 83, "dexReq": 30, "intReq": 30, "hprPct": -12, "mr": 5, "sdPct": 12, "ms": 5, "fDamPct": -15, "wDamPct": 15, "tDamPct": 15, "eDamPct": -15, "fDefPct": -14, "id": 1185}, {"name": "Gargantuan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 15, "sdPct": -10, "mdPct": 20, "str": 7, "spd": -10, "hpBonus": 50, "id": 1188}, {"name": "Garnet", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "20-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 54, "intReq": 20, "defReq": 35, "sdPct": 10, "mdPct": -10, "def": 7, "hprRaw": -48, "fDamPct": 18, "id": 1184}, {"name": "Garnet Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": 20, "lvl": 67, "defReq": 20, "def": 4, "hprRaw": 18, "fDefPct": 6, "type": "ring", "id": 1189}, {"name": "Gavel's Memory", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-30", "fDam": "0-0", "wDam": "0-0", "aDam": "14-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "agi": 4, "spd": 15, "wDamPct": 15, "eDefPct": -15, "id": 1190}, {"name": "Geis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 850, "wDef": -90, "lvl": 54, "strReq": 40, "dexReq": 40, "ms": 10, "xpb": 25, "int": -15, "agi": -10, "def": -10, "hprRaw": 40, "tDamPct": 15, "eDamPct": 15, "id": 1192}, {"name": "Gemini", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 4550, "lvl": 95, "dexReq": 55, "agiReq": 55, "sdPct": -10, "mdPct": -10, "ls": 310, "ms": 10, "dex": 10, "agi": 10, "spd": 15, "eSteal": 8, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "id": 1194}, {"name": "Gearbox Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "xpb": 20, "lb": 10, "id": 1193}, {"name": "Genoxyde", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-310", "fDam": "0-0", "wDam": "0-0", "aDam": "290-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "agiReq": 30, "defReq": 40, "ls": 290, "expd": 15, "spd": 12, "hpBonus": -1000, "fDamPct": 20, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1196}, {"name": "Geothermal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -10, "eDef": 10, "lvl": 38, "strReq": 10, "defReq": 5, "hprPct": 10, "mdPct": 6, "fDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 1200}, {"name": "Gert Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MzY1MTUwOTY5NzcsInByb2ZpbGVJZCI6IjA3NmVjZDVhMzEzMzRjMzRiOTEyNDBhNTQ5MGY0YzgwIiwicHJvZmlsZU5hbWUiOiJibWFucnVsZXMiLCJpc1B1YmxpYyI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhZWUyZjMwMTE2MzhjOTllNDI4NTk2NjRhZWIxM2RlYWRhOGRmZDZiM2ZkYmQ2YmNhNTEzNWE3ZTBlNiJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1300, "fDef": -40, "eDef": 40, "lvl": 75, "id": 1198}, {"name": "Genesis", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 78, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": 35, "spRegen": 10, "hprRaw": 140, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1195}, {"name": "Gestation", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "21-33", "atkSpd": "SLOW", "lvl": 23, "strReq": 10, "xpb": 15, "str": 5, "spd": -8, "hpBonus": 60, "hprRaw": 25, "spPct1": 14, "spRaw3": -5, "id": 1197}, {"name": "Geyser", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "fDef": 65, "wDef": 65, "aDef": 65, "lvl": 74, "intReq": 35, "agiReq": 35, "defReq": 35, "mr": 10, "mdPct": -20, "agi": 7, "expd": 19, "spd": 15, "hprRaw": 100, "tDamPct": -100, "aDefPct": 15, "id": 1203}, {"name": "Ghostly Blades", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-17", "aDam": "13-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 40, "intReq": 15, "agiReq": 15, "mdPct": -10, "ms": 10, "str": -5, "int": 7, "agi": 7, "spd": 10, "spRegen": 5, "sdRaw": 30, "id": 1206}, {"name": "Giant's Bracer", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "lvl": 42, "strReq": 20, "mdPct": 19, "str": 12, "dex": -2, "agi": -2, "spd": -7, "sdRaw": -70, "mdRaw": 90, "id": 1199}, {"name": "Ghost", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 25, "lvl": 77, "intReq": 5, "agiReq": 15, "sdPct": 5, "agi": 5, "spd": 6, "spRegen": 5, "type": "ring", "id": 1201}, {"name": "Giant Step", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "lvl": 37, "hprPct": 25, "mr": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 10, "id": 1207}, {"name": "Giant Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 68, "mdPct": 15, "xpb": 9, "id": 1204}, {"name": "Gibyeong", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "75-115", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "intReq": 40, "defReq": 50, "mr": 5, "sdPct": 7, "ref": 13, "int": 8, "def": 9, "hprRaw": 140, "fDamPct": 25, "eDamPct": -15, "id": 1202}, {"name": "Ginto", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 28, "sdPct": 9, "lb": 18, "int": 4, "fDefPct": -6, "id": 1210}, {"name": "Gilded Cuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 24, "lb": 8, "type": "bracelet", "id": 1205}, {"name": "Gilded Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 24, "xpb": 8, "lb": 12, "id": 1211}, {"name": "Glare", "tier": "Legendary", "type": "wand", "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-40", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "dexReq": 15, "xpb": 10, "ref": 40, "sdRaw": 50, "fDamPct": 10, "eDamPct": -15, "id": 1209}, {"name": "Glitchtean", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-117", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "sdPct": -18, "mdPct": -16, "xpb": 6, "lb": 10, "ref": 13, "sdRaw": 115, "mdRaw": 70, "id": 1215}, {"name": "Glissando", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "drop": "NORMAL", "nDam": "0-7", "fDam": "0-7", "wDam": "0-7", "aDam": "0-7", "tDam": "0-7", "eDam": "0-7", "atkSpd": "FAST", "lvl": 92, "spd": 10, "eSteal": 10, "sdRaw": 1170, "mdRaw": 750, "sprintReg": 10, "jh": 1, "id": 1214}, {"name": "Glacial Crest", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "20-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 20, "mr": 5, "sdPct": 8, "mdPct": 15, "ls": 36, "hpBonus": -75, "hprRaw": -15, "fDamPct": -30, "aDamPct": 15, "id": 1208}, {"name": "Glitz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 34, "lb": 8, "type": "ring", "id": 1212}, {"name": "Glowing Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-6", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 15, "hprPct": 12, "hpBonus": 15, "spRegen": 1, "id": 1218}, {"name": "Gnarl", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 20, "sdPct": 12, "mdPct": 12, "ms": -10, "str": 7, "spd": -5, "aDefPct": -12, "eDefPct": 12, "id": 1216}, {"name": "Glowstone Killer", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-47", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "56-73", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "xpb": 17, "str": -3, "dex": 7, "tDamPct": 12, "id": 1221}, {"name": "Gloomstone", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -25, "aDef": -15, "eDef": -10, "lvl": 85, "dexReq": 60, "sdPct": 6, "spd": 4, "spRegen": -5, "sdRaw": 25, "tDamPct": 6, "type": "ring", "id": 1213}, {"name": "Gnir", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "hp": 220, "wDef": 25, "lvl": 85, "strReq": 30, "intReq": 20, "str": 4, "spd": -7, "hprRaw": 25, "type": "ring", "id": 1217}, {"name": "Gnocchi", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 74, "lvl": 17, "mr": 5, "sdPct": 8, "mdPct": -5, "xpb": 8, "spRegen": 3, "id": 1234}, {"name": "Goliath", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": 4, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 19, "defReq": 12, "hprRaw": 5, "id": 1225}, {"name": "Golden Pants of Fortune", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 19, "xpb": 5, "lb": 15, "dex": 3, "agi": 3, "id": 1220}, {"name": "Golden Embrace", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 116, "lvl": 19, "sdPct": -6, "mdPct": -6, "ref": 4, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1222}, {"name": "Gospel", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "agiReq": 20, "xpb": 10, "spRegen": 10, "aDamPct": 5, "type": "necklace", "id": 1223}, {"name": "Goswhit", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 50, "lvl": 48, "defReq": 40, "hprPct": 10, "def": 5, "spd": -12, "hprRaw": 23, "fDamPct": 8, "wDamPct": -10, "id": 1224}, {"name": "Grandfather", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 20, "mr": 5, "ms": 5, "hpBonus": -24, "id": 1230}, {"name": "Gouttes", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 8, "tDef": -4, "lvl": 38, "intReq": 20, "sdPct": 6, "int": 4, "type": "ring", "id": 1226}, {"name": "Grateful Dead", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "835-835", "fDam": "0-0", "wDam": "3-3", "aDam": "3-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 83, "intReq": 35, "agiReq": 35, "mr": 5, "ms": 5, "def": -10, "wDefPct": 15, "aDefPct": 15, "tDefPct": 20, "id": 1228}, {"name": "Granite Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 20, "aDef": 60, "eDef": 20, "lvl": 63, "strReq": 45, "defReq": 5, "def": 9, "expd": 26, "spd": -9, "hpBonus": 400, "mdRaw": 130, "wDefPct": -25, "aDefPct": 20, "eDefPct": 20, "id": 1227}, {"name": "Graviton Lance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "355-355", "aDam": "0-0", "tDam": "255-455", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "dexReq": 36, "intReq": 36, "ms": -5, "str": -20, "dex": 55, "int": 55, "agi": -20, "def": -20, "id": 1232}, {"name": "Great Brace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 150, "fDef": 20, "wDef": -20, "lvl": 51, "defReq": 25, "hprPct": 5, "hprRaw": 18, "wDamPct": -7, "fDefPct": 7, "type": "bracelet", "id": 1233}, {"name": "Gravity", "tier": "Legendary", "type": "chestplate", "majorIds": ["MAGNET"], "thorns": 30, "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 5500, "fDef": 250, "wDef": 250, "aDef": 250, "tDef": 250, "eDef": 250, "lvl": 100, "strReq": 55, "dexReq": 55, "intReq": 55, "agiReq": 55, "defReq": 55, "ls": 295, "ms": 5, "ref": 30, "spd": -25, "atkTier": -1, "hprRaw": 200, "sdRaw": -105, "id": 1231}, {"name": "Great Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 40, "xpb": 5, "hpBonus": 125, "type": "necklace", "id": 1236}, {"name": "Greaves of the Veneer", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4000, "fDef": 200, "wDef": 65, "aDef": 65, "eDef": 200, "lvl": 89, "strReq": 30, "defReq": 60, "mr": 5, "def": 20, "spd": -10, "hpBonus": 1500, "hprRaw": 200, "wDamPct": -5, "aDamPct": -15, "tDamPct": -15, "wDefPct": 50, "aDefPct": 40, "tDefPct": 40, "id": 1237}, {"name": "Grenouille", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-75", "fDam": "0-0", "wDam": "20-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "intReq": 30, "sdPct": 8, "mdPct": -8, "agi": 5, "spd": 5, "aDamPct": 8, "id": 1241}, {"name": "Green Helmet", "tier": "Unique", "type": "helmet", "poison": 200, "category": "armor", "drop": "NORMAL", "hp": 1850, "eDef": 60, "lvl": 80, "xpb": 20, "eSteal": 2, "eDamPct": 20, "eDefPct": 20, "id": 1235}, {"name": "Gridlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "dexReq": 25, "intReq": 25, "ms": 10, "spd": -15, "wDamPct": 10, "tDamPct": 10, "eDefPct": -25, "id": 1242}, {"name": "Griffin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "40-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "intReq": 60, "agiReq": 30, "mr": 10, "sdPct": 8, "mdPct": -15, "int": 10, "spd": 15, "fDamPct": -20, "wDamPct": 19, "id": 1240}, {"name": "Green Perfection", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-25", "fDam": "11-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "lb": 6, "str": 5, "eSteal": 5, "eDamPct": 10, "id": 1238}, {"name": "Grillface", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3400, "fDef": 175, "aDef": 150, "eDef": -150, "lvl": 87, "agiReq": 55, "defReq": 70, "int": -20, "agi": 15, "expd": 25, "hprRaw": 192, "mdRaw": 240, "fDamPct": 20, "aDamPct": 20, "wDefPct": -40, "id": 1239}, {"name": "Griswold's Edge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "mr": 5, "mdPct": 7, "xpb": 7, "lb": 7, "dex": 7, "spd": 7, "tDamPct": 7, "id": 1255}, {"name": "Grip of the Land", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2350, "fDef": 140, "wDef": -120, "eDef": 140, "lvl": 88, "strReq": 55, "defReq": 45, "hprPct": 65, "str": 7, "def": 7, "spd": -15, "hprRaw": -65, "fDamPct": 12, "eDamPct": 12, "fDefPct": 12, "eDefPct": 12, "id": 1244}, {"name": "Groundshakers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "aDef": -80, "eDef": 80, "lvl": 72, "strReq": 35, "mr": -5, "mdPct": 7, "lb": 10, "str": 5, "sdRaw": -55, "mdRaw": 165, "eDamPct": 10, "eDefPct": 10, "id": 1245}, {"name": "Guacamole", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "128-131", "aDam": "0-0", "tDam": "0-0", "eDam": "128-131", "atkSpd": "NORMAL", "lvl": 88, "strReq": 30, "intReq": 30, "mr": 5, "str": 17, "int": 17, "hpBonus": 940, "hprRaw": 110, "spRaw4": -5, "id": 1243}, {"name": "Gust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -5, "aDef": 5, "lvl": 20, "agiReq": 5, "spd": 5, "aDamPct": 5, "type": "bracelet", "id": 1246}, {"name": "Gungnir", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "xpb": 25, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1247}, {"name": "Gwydion", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "NORMAL", "lvl": 69, "strReq": 20, "intReq": 45, "sdPct": 12, "mdPct": -12, "int": 7, "eSteal": 5, "wDamPct": 20, "aDamPct": -12, "aDefPct": -12, "id": 1248}, {"name": "Gypsum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "aDef": -20, "eDef": 20, "lvl": 37, "strReq": 25, "sdPct": -12, "expd": 5, "spd": -10, "mdRaw": 70, "eDamPct": 8, "id": 1250}, {"name": "Abyss-Imbued Leggings", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3400, "wDef": 175, "aDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "intReq": 40, "agiReq": 40, "ls": 425, "ms": 20, "dex": -30, "def": -30, "sdRaw": 265, "mdRaw": 320, "wDamPct": 20, "aDamPct": 20, "eDamPct": 20, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1252}, {"name": "Ambertoise Shell", "set": "Earth Hive", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3000, "fDef": 100, "wDef": 150, "tDef": 150, "eDef": 100, "lvl": 88, "strReq": 30, "defReq": 30, "hprPct": 25, "mdPct": 20, "ms": 5, "str": 5, "agi": 10, "def": 5, "fDefPct": 20, "wDefPct": 25, "tDefPct": 25, "eDefPct": 20, "fixID": true, "id": 1251}, {"name": "Boreal-Patterned Aegis", "displayName": "Anima-Infused Cuirass", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 200, "wDef": 200, "tDef": 200, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "mr": 10, "str": -30, "agi": -30, "fDamPct": 20, "wDamPct": 20, "tDamPct": 20, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "fixID": true, "spRaw1": -5, "spRaw3": -5, "spRaw4": -5, "id": 1249}, {"name": "Beetle Aegis", "set": "Earth Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": -60, "aDef": -60, "tDef": 120, "eDef": 120, "lvl": 91, "strReq": 55, "dexReq": 45, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 9, "dex": 9, "agi": -6, "def": -6, "tDamPct": 30, "eDamPct": 30, "fixID": true, "id": 1253}, {"name": "Bottled Thunderstorm", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 81, "dexReq": 20, "agiReq": 20, "dex": 6, "agi": 6, "aDamPct": 10, "tDamPct": 10, "type": "necklace", "fixID": true, "id": 1254}, {"name": "Breezehands", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 85, "dexReq": 55, "agiReq": 55, "spd": 5, "atkTier": 1, "type": "ring", "fixID": true, "id": 1257}, {"name": "Chaos-Woven Greaves", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "poison": 2250, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "wDef": 100, "tDef": 100, "eDef": 100, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "sdPct": 50, "mdPct": 50, "ms": 15, "agi": -30, "def": -30, "wDamPct": 30, "tDamPct": 30, "eDamPct": 30, "wDefPct": 5, "tDefPct": 5, "eDefPct": 5, "fixID": true, "id": 1256}, {"name": "Grindcore", "tier": "Rare", "type": "relik", "poison": 100, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "24-28", "eDam": "20-28", "atkSpd": "SLOW", "lvl": 25, "strReq": 10, "dexReq": 10, "ls": -15, "str": 4, "dex": 4, "mdRaw": 52, "spPct1": 18, "id": 1261}, {"name": "Cinderchain", "set": "Fire Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2875, "fDef": 150, "wDef": -150, "tDef": 150, "eDef": -150, "lvl": 98, "dexReq": 30, "defReq": 60, "sdPct": 10, "dex": 10, "def": 7, "expd": 25, "atkTier": -1, "mdRaw": 420, "fDamPct": 45, "aDamPct": -65, "tDamPct": 40, "eDamPct": -65, "fixID": true, "id": 1259}, {"name": "Clockwork", "set": "Fire Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 60, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 97, "defReq": 60, "hprPct": 20, "ref": 20, "type": "bracelet", "fixID": true, "id": 1258}, {"name": "Coral Ring", "set": "Water Hive", "tier": "Rare", "poison": -365, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 800, "wDef": 50, "lvl": 93, "hprPct": 10, "mr": 5, "dex": -4, "type": "ring", "fixID": true, "id": 1262}, {"name": "Contrast", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "poison": 750, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "lvl": 100, "mr": 10, "ls": 200, "spd": 15, "hprRaw": 150, "type": "necklace", "fixID": true, "id": 1260}, {"name": "Dupliblaze", "set": "Fire Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 40, "wDef": -80, "lvl": 98, "defReq": 60, "def": 6, "expd": 18, "fDamPct": 24, "wDefPct": -12, "type": "bracelet", "fixID": true, "id": 1265}, {"name": "Hephaestus-Forged Greaves", "displayName": "Eden-Blessed Guards", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4600, "fDef": 300, "wDef": 300, "aDef": 300, "lvl": 100, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 50, "mr": 20, "str": -30, "dex": -30, "spRegen": 25, "hprRaw": 325, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "fixID": true, "id": 1263}, {"name": "Elder Oak Roots", "set": "Earth Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": 120, "eDef": 120, "lvl": 90, "strReq": 40, "intReq": 30, "hprPct": 20, "mr": 10, "sdPct": 15, "spd": -12, "hprRaw": 200, "wDamPct": 20, "eDamPct": 20, "aDefPct": -25, "fixID": true, "id": 1266}, {"name": "Elysium-Engraved Aegis", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "fDef": 200, "aDef": 200, "eDef": 200, "lvl": 100, "strReq": 40, "agiReq": 40, "defReq": 40, "mdPct": 15, "dex": -30, "int": -30, "spd": 20, "hprRaw": 275, "mdRaw": 500, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1264}, {"name": "Flashstep", "set": "Air Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "aDef": 100, "lvl": 85, "agiReq": 50, "agi": 12, "spd": 40, "aDamPct": 15, "fDefPct": -20, "fixID": true, "id": 1270}, {"name": "Gaea-Hewn Boots", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5000, "fDef": 225, "wDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "intReq": 40, "defReq": 40, "mr": 15, "sdPct": 15, "dex": -30, "agi": -30, "expd": 20, "hprRaw": 300, "fDamPct": 10, "wDamPct": 10, "eDamPct": 10, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 1268}, {"name": "Golemlus Core", "set": "Earth Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1225, "fDef": 50, "wDef": -30, "aDef": 50, "tDef": -30, "eDef": 50, "lvl": 90, "strReq": 25, "defReq": 25, "spd": -6, "hprRaw": 110, "tDamPct": -10, "eDamPct": 8, "type": "necklace", "fixID": true, "id": 1271}, {"name": "Gale's Freedom", "set": "Air Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2225, "aDef": 120, "tDef": 120, "lvl": 87, "dexReq": 30, "agiReq": 30, "sdPct": 20, "xpb": 20, "ref": 20, "dex": 7, "int": 12, "agi": 7, "spd": 20, "fixID": true, "id": 1269}, {"name": "Hephaestus-Forged Sabatons", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 250, "aDef": 250, "tDef": 250, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "ls": 500, "ms": 20, "str": -30, "int": -30, "spd": 25, "fDamPct": 10, "aDamPct": 10, "tDamPct": 10, "fDefPct": 25, "aDefPct": 25, "tDefPct": 25, "fixID": true, "spPct3": -28, "id": 1272}, {"name": "Humbark Moccasins", "set": "Earth Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "aDef": -100, "tDef": 80, "eDef": 80, "lvl": 89, "strReq": 50, "dexReq": 50, "sdPct": -20, "mdPct": 15, "ls": 210, "agi": 10, "spd": 15, "atkTier": 1, "fixID": true, "id": 1273}, {"name": "Infused Hive Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1274}, {"name": "Infused Hive Bow", "tier": "Legendary", "type": "bow", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "250-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1276}, {"name": "Infused Hive Relik", "tier": "Legendary", "type": "relik", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "260-290", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1277}, {"name": "Insulated Plate Mail", "set": "Thunder Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 150, "wDef": 100, "aDef": 100, "tDef": 150, "eDef": 150, "lvl": 83, "dexReq": 55, "defReq": 55, "ls": 270, "def": 10, "spd": -15, "atkTier": -1, "tDamPct": -15, "wDefPct": 30, "tDefPct": 40, "eDefPct": 40, "fixID": true, "spPct3": -17, "spPct4": -17, "id": 1279}, {"name": "Infused Hive Spear", "tier": "Legendary", "type": "spear", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "160-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1275}, {"name": "Infused Hive Wand", "tier": "Legendary", "type": "wand", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "125-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1278}, {"name": "Lightning Flash", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 82, "sdPct": 10, "dex": 5, "spd": 12, "eDamPct": -5, "type": "necklace", "fixID": true, "id": 1296}, {"name": "Intensity", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 425, "lvl": 100, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "type": "ring", "fixID": true, "id": 1280}, {"name": "Mantlewalkers", "set": "Fire Hive", "tier": "Rare", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "fDef": 125, "eDef": 150, "lvl": 97, "strReq": 25, "defReq": 50, "str": 7, "def": 7, "expd": 50, "fDamPct": 40, "wDamPct": -20, "eDamPct": 40, "fixID": true, "id": 1281}, {"name": "Moon Pool Circlet", "set": "Water Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 35, "lvl": 94, "intReq": 65, "mr": 10, "int": 3, "spRegen": 10, "type": "ring", "fixID": true, "id": 1282}, {"name": "Obsidian-Framed Helmet", "tier": "Legendary", "type": "helmet", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 225, "tDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "dexReq": 40, "defReq": 40, "ls": 450, "ms": 15, "int": -30, "agi": -30, "atkTier": -14, "mdRaw": 2000, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 20, "tDefPct": 20, "eDefPct": 20, "fixID": true, "id": 1283}, {"name": "Pride of the Aerie", "set": "Air Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2450, "fDef": -70, "aDef": 140, "eDef": 140, "lvl": 84, "strReq": 40, "agiReq": 50, "hprPct": 28, "str": 14, "agi": 7, "spd": 21, "atkTier": 1, "tDefPct": -35, "eDefPct": 21, "fixID": true, "id": 1286}, {"name": "Silt of the Seafloor", "set": "Water Hive", "tier": "Rare", "type": "boots", "thorns": 35, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3250, "wDef": 240, "aDef": -70, "tDef": -70, "eDef": 200, "lvl": 93, "strReq": 30, "intReq": 40, "mr": 10, "ms": 10, "ref": 30, "str": 8, "int": 15, "spd": -12, "fDefPct": 40, "wDefPct": 30, "eDefPct": 40, "fixID": true, "id": 1285}, {"name": "Soulflare", "set": "Fire Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 150, "wDef": 125, "tDef": -125, "lvl": 99, "intReq": 40, "defReq": 50, "mr": 10, "ls": 440, "ms": 10, "int": 10, "def": 10, "spRegen": 33, "wDefPct": 20, "tDefPct": -25, "fixID": true, "id": 1287}, {"name": "Sparkling Visor", "set": "Thunder Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2000, "tDef": 125, "lvl": 80, "dexReq": 45, "sdPct": 20, "ms": 15, "xpb": 20, "ref": 20, "tDamPct": 20, "tDefPct": 15, "eDefPct": -25, "fixID": true, "id": 1288}, {"name": "Sparkweaver", "set": "Fire Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3850, "fDef": 150, "tDef": 200, "lvl": 96, "defReq": 50, "ms": 15, "dex": 20, "def": 10, "wDamPct": -15, "fDefPct": 20, "tDefPct": 30, "fixID": true, "id": 1289}, {"name": "Stillwater Blue", "set": "Water Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2500, "wDef": 180, "tDef": -100, "lvl": 95, "intReq": 60, "mr": 20, "ref": 30, "int": 10, "spRegen": 15, "wDamPct": 25, "tDamPct": -20, "wDefPct": 20, "fixID": true, "id": 1290}, {"name": "Static-charged Leggings", "displayName": "Static-Charged Leggings", "set": "Thunder Hive", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2050, "tDef": 100, "eDef": -100, "lvl": 82, "dexReq": 55, "hprPct": -40, "ls": 175, "ref": 20, "atkTier": 1, "tDamPct": 40, "wDefPct": -25, "eDefPct": -15, "fixID": true, "id": 1293}, {"name": "Subur Clip", "set": "Earth Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 89, "strReq": 30, "def": -2, "spd": 10, "mdRaw": 105, "eDamPct": 12, "type": "bracelet", "fixID": true, "id": 1291}, {"name": "Trench Scourer", "set": "Water Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2450, "wDef": 130, "tDef": 100, "lvl": 94, "dexReq": 35, "intReq": 50, "ms": 20, "xpb": 40, "lb": 40, "eSteal": 5, "wDamPct": 25, "tDamPct": 25, "fixID": true, "id": 1294}, {"name": "Thunderous Step", "set": "Thunder Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": -80, "tDef": 125, "lvl": 81, "dexReq": 45, "agiReq": 30, "agi": 15, "def": -5, "spd": 16, "sdRaw": 235, "mdRaw": 400, "eDamPct": -25, "fixID": true, "id": 1297}, {"name": "Twilight-Gilded Cloak", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "aDef": 175, "tDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "dexReq": 40, "agiReq": 40, "sdPct": -40, "int": -30, "def": -30, "spd": 20, "atkTier": 2, "mdRaw": 90, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "fixID": true, "id": 1295}, {"name": "Vortex Bracer", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 400, "fDef": -40, "aDef": 40, "lvl": 86, "agiReq": 30, "spd": 10, "sdRaw": 65, "mdRaw": 85, "aDamPct": 12, "type": "bracelet", "fixID": true, "id": 1298}, {"name": "Whitecap Crown", "set": "Water Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2300, "wDef": 150, "tDef": -120, "lvl": 92, "intReq": 75, "int": 10, "sdRaw": 250, "fDamPct": -10, "wDamPct": 20, "tDefPct": -20, "fixID": true, "id": 1299}, {"name": "Turbine Greaves", "set": "Air Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 100, "aDef": 100, "lvl": 86, "ref": 25, "agi": 7, "def": 7, "spd": 20, "mdRaw": 275, "fDefPct": 20, "aDefPct": 20, "fixID": true, "sprintReg": 16, "id": 1292}, {"name": "Hailstone", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "wDef": 40, "aDef": 40, "tDef": -80, "lvl": 56, "intReq": 30, "agiReq": 30, "sdPct": 10, "mdPct": -10, "spd": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": -10, "id": 1300}, {"name": "Hairy Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4, "lvl": 1, "dex": 3, "id": 1302}, {"name": "Halbert", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "36-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "sdPct": -6, "mdPct": 6, "lb": 6, "str": 8, "spd": -6, "id": 1303}, {"name": "Hammer of the Forge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-180", "fDam": "190-390", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-390", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 25, "defReq": 25, "str": 7, "def": 7, "spd": -15, "hpBonus": 750, "fDamPct": 15, "wDamPct": -15, "eDamPct": 15, "wDefPct": -15, "id": 1304}, {"name": "Hammer of the Blacksmith", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "23-46", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "126-183", "atkSpd": "SUPER_SLOW", "lvl": 30, "strReq": 25, "sdPct": -15, "mdPct": 22, "spd": -7, "mdRaw": 105, "eDamPct": 15, "aDefPct": -12, "id": 1306}, {"name": "Hamsey's Brilliance", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 720, "fDef": 30, "wDef": 30, "lvl": 96, "intReq": 30, "defReq": 30, "mdPct": -7, "ms": 5, "int": 4, "spd": -10, "hprRaw": 60, "tDefPct": -10, "type": "bracelet", "id": 1308}, {"name": "Hallfred's Greed", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "spRegen": -3, "eSteal": 6, "type": "bracelet", "id": 1301}, {"name": "Handcuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 33, "strReq": 5, "defReq": 5, "mdPct": 7, "str": 4, "dex": -2, "def": 4, "spd": -4, "type": "bracelet", "id": 1305}, {"name": "Handmade Bucie Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-58", "fDam": "34-56", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "xpb": 7, "lb": 7, "str": 5, "hpBonus": 200, "eDamPct": 10, "wDefPct": -6, "id": 1310}, {"name": "Harbinger of Fate", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "130-130", "wDam": "0-0", "aDam": "0-0", "tDam": "100-160", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "dexReq": 40, "defReq": 40, "dex": 13, "def": 13, "expd": 40, "spRegen": -20, "hprRaw": -100, "fDamPct": 20, "tDamPct": 20, "id": 1313}, {"name": "Haqherphix", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-32", "eDam": "11-21", "atkSpd": "SUPER_FAST", "lvl": 42, "strReq": 30, "dexReq": 30, "mr": -10, "ms": 20, "xpb": 9, "expd": 17, "mdRaw": 20, "id": 1309}, {"name": "Hard Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "51-57", "wDam": "51-57", "aDam": "51-57", "tDam": "51-57", "eDam": "51-57", "atkSpd": "FAST", "lvl": 96, "strReq": 23, "dexReq": 23, "intReq": 23, "agiReq": 23, "defReq": 23, "mr": 5, "sdPct": 15, "mdPct": 15, "ms": 5, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "fDefPct": -25, "wDefPct": -25, "aDefPct": -25, "tDefPct": -25, "eDefPct": -25, "id": 1311}, {"name": "Hard Hat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 180, "lvl": 31, "defReq": 10, "ref": 4, "def": 7, "hpBonus": 50, "id": 1307}, {"name": "Hardline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 20, "wDef": -20, "aDef": -20, "eDef": 35, "lvl": 51, "strReq": 25, "defReq": 25, "sdPct": -8, "mdPct": 8, "str": 4, "spd": -8, "hpBonus": 325, "fDamPct": 6, "id": 1316}, {"name": "Harsh Noise", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 6, "expd": 15, "eSteal": 2, "sdRaw": 15, "id": 1312}, {"name": "Harwrol", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-50", "fDam": "0-0", "wDam": "0-0", "aDam": "60-85", "tDam": "0-0", "eDam": "60-85", "atkSpd": "FAST", "lvl": 97, "strReq": 55, "agiReq": 55, "mdPct": 19, "str": 13, "agi": 13, "spd": 23, "hpBonus": 2500, "wDamPct": -25, "tDamPct": -25, "fDefPct": 25, "tDefPct": 25, "id": 1315}, {"name": "Haze", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "20-50", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 20, "defReq": 20, "agi": 10, "def": 10, "hpBonus": 350, "wDefPct": -15, "id": 1320}, {"name": "Head Knocker", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 18, "sdPct": -12, "mdPct": 4, "int": -3, "spd": -4, "mdRaw": 36, "eDamPct": 4, "id": 1319}, {"name": "Heart of Fire", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 35, "wDef": -35, "lvl": 52, "defReq": 30, "hpBonus": 150, "hprRaw": 35, "fDamPct": 5, "wDamPct": -15, "fDefPct": 10, "id": 1317}, {"name": "Heartache", "tier": "Unique", "type": "spear", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-80", "fDam": "0-0", "wDam": "140-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "intReq": 40, "ls": -175, "ref": 12, "int": 10, "sdRaw": 115, "wDamPct": 20, "tDamPct": -20, "id": 1321}, {"name": "Hearts Club", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-32", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hprPct": 10, "sdPct": -5, "hpBonus": 20, "hprRaw": 5, "id": 1318}, {"name": "Heat Death", "tier": "Fabled", "type": "wand", "majorIds": ["FLASHFREEZE"], "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "36-38", "aDam": "26-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "intReq": 55, "agiReq": 35, "mr": 5, "ls": 110, "hpBonus": -500, "sdRaw": 110, "spPct4": -28, "id": 3557}, {"name": "Heartstrings", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "62-90", "fDam": "30-50", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "agiReq": 20, "defReq": 30, "hprPct": 20, "ls": 140, "xpb": 10, "def": 7, "hprRaw": 60, "fDefPct": 10, "aDefPct": 15, "id": 1322}, {"name": "Heat Burst", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-54", "fDam": "76-80", "wDam": "0-0", "aDam": "76-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "agiReq": 20, "defReq": 20, "sdPct": -15, "ls": 95, "fDamPct": 32, "wDamPct": -35, "aDamPct": 32, "id": 1323}, {"name": "Heatwave", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "400-750", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "defReq": 55, "def": 15, "fDamPct": 30, "wDamPct": -20, "fDefPct": 15, "wDefPct": -20, "id": 1324}, {"name": "Heatwind", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-26", "fDam": "23-31", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "agiReq": 20, "defReq": 30, "hprPct": 20, "agi": 5, "spd": 10, "aDamPct": 6, "fDefPct": 10, "id": 1326}, {"name": "Heavenly Wisp", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 25, "agiReq": 25, "mr": 10, "xpb": 10, "spd": 10, "spRegen": 10, "tDamPct": -20, "tDefPct": -20, "id": 1327}, {"name": "Heaven's Gate", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "20-66", "aDam": "20-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "agiReq": 30, "sdPct": 15, "mdPct": -10, "spd": 13, "spRegen": 25, "wDamPct": 12, "aDamPct": 12, "id": 1325}, {"name": "Heliophilia", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": 6, "lvl": 8, "hprPct": 20, "xpb": 12, "hpBonus": 30, "hprRaw": 10, "id": 1329}, {"name": "Heliophobia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 80, "tDef": -65, "lvl": 60, "intReq": 25, "ms": 10, "lb": 15, "ref": 12, "spRegen": 5, "sdRaw": 75, "tDamPct": -18, "tDefPct": -8, "id": 1332}, {"name": "HellRaiser", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "30-35", "fDam": "26-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "defReq": 10, "expd": 5, "fDamPct": 10, "wDamPct": -30, "id": 1328}, {"name": "Hell's Scream", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "120-200", "wDam": "0-0", "aDam": "80-240", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "agiReq": 35, "defReq": 35, "ls": 255, "str": -8, "agi": 10, "expd": 20, "spd": 18, "eDamPct": -100, "fDefPct": 30, "aDefPct": 30, "id": 1330}, {"name": "Hell Walk", "tier": "Unique", "type": "boots", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 140, "wDef": -160, "lvl": 67, "spd": -8, "fDefPct": 22, "id": 1333}, {"name": "Hellion", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 380, "fDef": 40, "wDef": -40, "lvl": 91, "defReq": 45, "ls": 85, "def": 4, "fDamPct": 6, "wDamPct": -8, "type": "ring", "id": 1334}, {"name": "Heavensent", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "54-66", "aDam": "54-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "intReq": 17, "agiReq": 17, "mr": 5, "xpb": 10, "int": 15, "agi": 15, "def": -8, "spd": 10, "id": 1331}, {"name": "Hellkite's Beak", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-130", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 25, "defReq": 25, "sdPct": 11, "mdPct": 11, "int": -6, "expd": 8, "spRegen": -6, "fDamPct": 8, "wDamPct": -8, "tDamPct": 8, "wDefPct": -20, "id": 1336}, {"name": "Hellbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-110", "fDam": "120-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "SLOW", "lvl": 76, "strReq": 10, "defReq": 40, "mdPct": 4, "spd": -3, "hpBonus": 300, "fDamPct": 3, "eDamPct": 7, "id": 1335}, {"name": "Hellkite's Wing", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-48", "wDam": "0-0", "aDam": "0-0", "tDam": "32-72", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "dexReq": 10, "defReq": 20, "sdPct": 9, "mdPct": 9, "ms": 5, "int": -5, "spRegen": -5, "fDamPct": 7, "wDamPct": -10, "tDamPct": 10, "wDefPct": -15, "id": 1337}, {"name": "Helm of Andesite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": 20, "wDef": -40, "eDef": 20, "lvl": 49, "strReq": 20, "agiReq": 10, "mdPct": 12, "str": 8, "expd": 6, "fDamPct": 12, "eDamPct": 10, "fDefPct": -5, "wDefPct": -15, "eDefPct": -5, "id": 1338}, {"name": "Hellstrand", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "230-290", "fDam": "150-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "defReq": 55, "hprPct": 25, "mr": 5, "sdPct": 15, "ls": 655, "dex": 13, "spRegen": -25, "wDamPct": -40, "aDefPct": 30, "id": 1341}, {"name": "Helm of Darkness", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "tDef": 15, "lvl": 35, "sdPct": 12, "ref": 30, "spd": 5, "tDamPct": 10, "id": 1339}, {"name": "Helm of the Dead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 390, "aDef": -30, "tDef": 20, "eDef": 15, "lvl": 44, "strReq": 5, "dexReq": 5, "hprPct": 15, "ls": 27, "str": 7, "agi": -5, "aDamPct": -10, "tDefPct": 5, "eDefPct": 5, "id": 1340}, {"name": "Helmet of Blue Stone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1050, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 62, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 7, "fDamPct": -5, "wDamPct": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": -5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1346}, {"name": "Helmet of Intelligence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 13, "lvl": 6, "int": 4, "id": 1344}, {"name": "Helter Skelter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "19-29", "tDam": "19-29", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "dexReq": 10, "agiReq": 5, "atkTier": 1, "hpBonus": -40, "sdRaw": -45, "aDamPct": 11, "tDamPct": 11, "spRaw2": -5, "jh": 1, "id": 1342}, {"name": "Heracul", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "580-840", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-225", "atkSpd": "VERY_SLOW", "lvl": 77, "strReq": 90, "mdPct": 30, "str": 20, "def": -10, "expd": 30, "spd": -20, "fDefPct": -8, "wDefPct": -6, "aDefPct": -10, "tDefPct": -4, "eDefPct": -2, "id": 1345}, {"name": "Helmet of Wisdom", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 12, "xpb": 3, "int": 5, "id": 1343}, {"name": "Hero's Beginning", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": 3, "wDef": 3, "aDef": 3, "tDef": 3, "eDef": 3, "lvl": 27, "strReq": 15, "sdPct": 5, "mdPct": 7, "str": 3, "spRegen": 3, "mdRaw": 33, "id": 1375}, {"name": "Hertz", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "tDef": 8, "eDef": -10, "lvl": 23, "dexReq": 10, "mdPct": 6, "tDamPct": 14, "id": 1349}, {"name": "Heroism", "tier": "Rare", "type": "helmet", "thorns": 31, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 120, "wDef": 50, "aDef": 120, "tDef": 50, "eDef": 50, "lvl": 96, "agiReq": 60, "defReq": 60, "hprPct": -143, "ls": 300, "ref": 31, "agi": 10, "def": 10, "spd": 23, "hpBonus": 1000, "hprRaw": -10, "id": 1348}, {"name": "Hesperium", "tier": "Fabled", "type": "bow", "majorIds": ["FISSION"], "poison": 600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "239-239", "fDam": "94-239", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "94-239", "atkSpd": "VERY_SLOW", "lvl": 65, "strReq": 50, "defReq": 40, "hprPct": 30, "dex": -20, "expd": 12, "atkTier": 1, "sdRaw": -165, "tDefPct": -60, "id": 3642}, {"name": "Heura", "tier": "Unique", "type": "chestplate", "thorns": 34, "category": "armor", "drop": "NORMAL", "hp": 3025, "fDef": -110, "wDef": 80, "eDef": 110, "lvl": 96, "strReq": 50, "mdPct": 8, "str": 8, "spd": -7, "mdRaw": 180, "eDamPct": 15, "fDefPct": -20, "wDefPct": 10, "id": 1350}, {"name": "Hetusol", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4200, "fDef": 180, "wDef": 80, "tDef": -160, "eDef": -100, "lvl": 98, "defReq": 55, "hprPct": 60, "mr": 10, "def": 10, "spd": -10, "spRegen": 15, "hprRaw": 100, "tDamPct": -30, "eDamPct": -20, "id": 1347}, {"name": "Hewa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-140", "fDam": "0-0", "wDam": "0-0", "aDam": "172-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "agiReq": 40, "ms": 10, "xpb": 15, "lb": 15, "agi": 8, "def": -8, "fDefPct": 15, "wDefPct": -30, "aDefPct": 15, "id": 1351}, {"name": "Hickory Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-80", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "defReq": 35, "sdPct": 6, "mdPct": 10, "def": 7, "hprRaw": 80, "fDefPct": 10, "wDefPct": -8, "aDefPct": 10, "id": 1355}, {"name": "Hiker's Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "aDef": -5, "eDef": 7, "lvl": 20, "strReq": 7, "mdPct": 7, "str": 4, "sdRaw": -8, "id": 1358}, {"name": "Hidden", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 7, "type": "ring", "id": 1353}, {"name": "Hilltop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "aDef": -7, "eDef": 15, "lvl": 33, "mdPct": 6, "spd": -4, "mdRaw": 46, "eDefPct": 6, "id": 1356}, {"name": "Hilt", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "8-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "xpb": 6, "sdRaw": -6, "mdRaw": -8, "id": 1357}, {"name": "Hirudo", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "74-120", "aDam": "0-0", "tDam": "0-0", "eDam": "84-110", "atkSpd": "NORMAL", "lvl": 82, "strReq": 30, "intReq": 25, "hprPct": 30, "ms": 5, "xpb": 13, "mdRaw": 130, "tDamPct": -17, "tDefPct": -17, "id": 1359}, {"name": "Holiday Spirit", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-22", "fDam": "30-36", "wDam": "30-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "intReq": 15, "defReq": 20, "mr": 15, "mdPct": -10, "lb": 20, "hprRaw": 45, "fixID": true, "id": 1362}, {"name": "Hollow", "tier": "Unique", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1500, "lvl": 75, "strReq": 40, "agiReq": 40, "ls": 110, "agi": 7, "spd": 8, "mdRaw": 140, "eDamPct": 10, "id": 1363}, {"name": "Hollow Branch", "tier": "Unique", "type": "wand", "poison": 560, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "ms": 5, "hpBonus": -250, "sdRaw": 65, "wDamPct": 12, "aDamPct": -12, "eDamPct": 12, "id": 1360}, {"name": "Holocene", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-110", "atkSpd": "SLOW", "lvl": 49, "strReq": 25, "fDamPct": -8, "wDamPct": -8, "aDamPct": -8, "tDamPct": -8, "eDamPct": 15, "spRaw4": -5, "id": 1361}, {"name": "Holy Greaves", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "wDef": 25, "tDef": 25, "eDef": -30, "lvl": 40, "hprPct": 20, "mr": 5, "ref": 15, "int": 9, "hpBonus": 75, "spRegen": 5, "eDefPct": -8, "id": 1365}, {"name": "Hope", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "mr": 5, "xpb": 18, "lb": 16, "id": 1364}, {"name": "Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "13-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "agiReq": 10, "xpb": 7, "dex": 4, "spd": 7, "aDamPct": 4, "tDamPct": 6, "id": 1367}, {"name": "Horizon", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": -100, "aDef": 100, "eDef": 120, "lvl": 90, "strReq": 60, "agiReq": 45, "mdPct": -10, "ref": 15, "dex": 5, "agi": 10, "spd": 14, "atkTier": 1, "hprRaw": 150, "sdRaw": -160, "id": 1366}, {"name": "Hornblende", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 340, "aDef": -15, "eDef": 20, "lvl": 40, "strReq": 5, "mdPct": 8, "str": 5, "fDamPct": 10, "eDefPct": 12, "id": 1369}, {"name": "Hostage", "tier": "Unique", "type": "spear", "quest": "Prison Story", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "str": 3, "spd": -3, "hpBonus": 10, "id": 1371}, {"name": "Hunter", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 23, "dexReq": 12, "xpb": 4, "lb": 5, "spd": 4, "eDamPct": -6, "id": 1373}, {"name": "Hothead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": 5, "lvl": 15, "mdPct": 8, "expd": 8, "hprRaw": 5, "id": 1368}, {"name": "Hunger", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 110, "lvl": 17, "mdPct": 10, "ls": 9, "ms": 5, "hprRaw": -7, "id": 1370}, {"name": "Hexed Amulet", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 51, "xpb": 16, "lb": 16, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": 5, "eSteal": 5, "type": "necklace", "id": 1352}, {"name": "Hydra", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-66", "fDam": "77-99", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "defReq": 55, "hprPct": 33, "ls": 160, "hpBonus": 777, "hprRaw": 99, "id": 1376}, {"name": "Hypercane", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-44", "wDam": "11-33", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "intReq": 25, "defReq": 25, "sdPct": 10, "fDamPct": 12, "wDamPct": 12, "tDefPct": -20, "eDefPct": -20, "id": 1372}, {"name": "Icarus", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -20, "aDef": 20, "lvl": 36, "agiReq": 15, "ref": 10, "agi": 5, "spd": 12, "fDamPct": -12, "aDamPct": 6, "fDefPct": -10, "id": 1378}, {"name": "Hysteria", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "fDef": 70, "wDef": -100, "tDef": 80, "eDef": -100, "lvl": 86, "dexReq": 55, "defReq": 20, "hprPct": 40, "mr": -5, "mdPct": 7, "ms": 10, "dex": 4, "def": 8, "spd": 10, "atkTier": -1, "fDamPct": 18, "tDamPct": 20, "id": 1374}, {"name": "Ice Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "0-0", "wDam": "12-42", "aDam": "2-52", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "intReq": 30, "agiReq": 30, "dex": -10, "int": 8, "agi": 8, "spd": 9, "wDamPct": 10, "aDamPct": 10, "tDamPct": -20, "tDefPct": -20, "id": 1380}, {"name": "Ice Band", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": 25, "lvl": 56, "intReq": 15, "ref": 9, "spd": -3, "wDamPct": 5, "type": "bracelet", "id": 1377}, {"name": "Ife", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": 25, "lvl": 59, "intReq": 10, "agiReq": 25, "mdPct": -9, "xpb": 6, "spd": 10, "hpBonus": 150, "spRegen": 10, "fDamPct": -14, "fDefPct": -10, "id": 1387}, {"name": "Ice Climbing Boots", "tier": "Rare", "type": "boots", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 440, "wDef": 30, "tDef": -40, "eDef": 10, "lvl": 43, "strReq": 5, "intReq": 10, "xpb": 8, "spd": -3, "sdRaw": 35, "fDamPct": -10, "wDamPct": 12, "eDamPct": 10, "id": 1379}, {"name": "Ignition", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-55", "fDam": "85-135", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "defReq": 65, "sdPct": -10, "mdPct": 10, "ls": 435, "def": 15, "expd": 40, "fDamPct": 20, "wDamPct": -30, "wDefPct": -30, "id": 1382}, {"name": "Ignatius", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "70-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "defReq": 25, "hprPct": 5, "def": 5, "hpBonus": 150, "hprRaw": 25, "fDamPct": 10, "fDefPct": 10, "id": 1381}, {"name": "Ik-El-Van", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "48-75", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 35, "hprPct": 16, "mr": 5, "sdPct": 10, "mdPct": -15, "ls": -120, "ms": 10, "tDamPct": -25, "tDefPct": -25, "id": 1383}, {"name": "Electro Mage's Boots", "tier": "Rare", "type": "boots", "quest": "The Envoy Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2400, "tDef": 80, "lvl": 89, "dexReq": 90, "xpb": 10, "dex": 10, "spd": 15, "tDamPct": 17, "eDefPct": -30, "spRaw1": -5, "spRaw2": 5, "spRaw3": -5, "id": 1386}, {"name": "Impact Winter", "tier": "Fabled", "type": "leggings", "majorIds": ["FLASHFREEZE"], "poison": 270, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "fDef": -90, "aDef": -90, "lvl": 66, "strReq": 40, "intReq": 25, "sdPct": 14, "ms": 10, "hprRaw": -75, "wDamPct": 15, "eDamPct": 24, "fDefPct": -20, "id": 3558}, {"name": "Impeccable Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "450-517", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1384}, {"name": "Impeccable Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "258-271", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1390}, {"name": "Impeccable Andesite Shears", "displayName": "Impeccable Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "id": 1388}, {"name": "Impeccable Andesite Stick", "displayName": "Impeccable Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "115-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1389}, {"name": "Impeccable Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "292-345", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1391}, {"name": "Impeccable Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "250-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1394}, {"name": "Impeccable Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "184-196", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1392}, {"name": "Impeccable Birch Shears", "displayName": "Impeccable Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "id": 1393}, {"name": "Impeccable Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "146-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1397}, {"name": "Impeccable Birch Stick", "displayName": "Impeccable Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1398}, {"name": "Impeccable Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "310-367", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1404}, {"name": "Impeccable Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "485-543", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1395}, {"name": "Impeccable Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "275-287", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1399}, {"name": "Impeccable Diorite Shears", "displayName": "Impeccable Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "158-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "id": 1396}, {"name": "Impeccable Diorite Stick", "displayName": "Impeccable Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1400}, {"name": "Impeccable Granite Shears", "displayName": "Impeccable Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "162-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1492}, {"name": "Impeccable Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "500-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1403}, {"name": "Impeccable Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1401}, {"name": "Impeccable Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "320-375", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1402}, {"name": "Impeccable Granite Stick", "displayName": "Impeccable Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1405}, {"name": "Impeccable Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-305", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1406}, {"name": "Impeccable Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "204-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1407}, {"name": "Impeccable Jungle Shears", "displayName": "Impeccable Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "id": 1423}, {"name": "Impeccable Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "163-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1409}, {"name": "Impeccable Jungle Stick", "displayName": "Impeccable Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1411}, {"name": "Impeccable Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-219", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1410}, {"name": "Impeccable Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1408}, {"name": "Impeccable Light Birch Shears", "displayName": "Impeccable Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "id": 1414}, {"name": "Illuminite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 725, "tDef": 60, "lvl": 55, "dexReq": 15, "intReq": 20, "sdPct": 15, "ms": 5, "xpb": 15, "ref": 5, "wDamPct": 10, "tDamPct": 5, "tDefPct": -10, "eDefPct": -10, "id": 1385}, {"name": "Impeccable Light Birch Stick", "displayName": "Impeccable Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "76-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1413}, {"name": "Impeccable Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1412}, {"name": "Impeccable Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "198-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1415}, {"name": "Impeccable Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1417}, {"name": "Impeccable Light Jungle Shears", "displayName": "Impeccable Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 98, "id": 1416}, {"name": "Impeccable Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-184", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1422}, {"name": "Impeccable Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "131-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1418}, {"name": "Impeccable Light Jungle Stick", "displayName": "Impeccable Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1420}, {"name": "Impeccable Light Oak Shears", "displayName": "Impeccable Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "id": 1421}, {"name": "Impeccable Light Oak Stick", "displayName": "Impeccable Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-81", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1427}, {"name": "Impeccable Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1419}, {"name": "Impeccable Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-226", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1425}, {"name": "Impeccable Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "116-132", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1424}, {"name": "Impeccable Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "168-174", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1426}, {"name": "Impeccable Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "132-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1431}, {"name": "Impeccable Light Spruce Shears", "displayName": "Impeccable Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "id": 1430}, {"name": "Impeccable Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "175-181", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1432}, {"name": "Impeccable Light Spruce Stick", "displayName": "Impeccable Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1429}, {"name": "Impeccable Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "235-263", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1428}, {"name": "Impeccable Oak Shears", "displayName": "Impeccable Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "107-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "id": 1433}, {"name": "Impeccable Oak Stick", "displayName": "Impeccable Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1434}, {"name": "Impeccable Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "149-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1435}, {"name": "Impeccable Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "270-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1437}, {"name": "Impeccable Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "197-208", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1439}, {"name": "Impeccable Spruce Shears", "displayName": "Impeccable Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "id": 1436}, {"name": "Impeccable Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "154-215", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1438}, {"name": "Impeccable Spruce Stick", "displayName": "Impeccable Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1440}, {"name": "Impeccable Stone Shears", "displayName": "Impeccable Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-163", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "id": 1441}, {"name": "Impeccable Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-491", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1444}, {"name": "Impeccable Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "243-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1443}, {"name": "Impeccable Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1449}, {"name": "Imperious", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "385-385", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "agiReq": 55, "int": 30, "agi": 15, "spd": 25, "eSteal": 8, "aDamPct": 15, "aDefPct": 15, "id": 1442}, {"name": "Impeccable Stone Stick", "displayName": "Impeccable Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1450}, {"name": "Impudent", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "agiReq": 25, "str": 5, "agi": 4, "mdRaw": 37, "type": "ring", "id": 1445}, {"name": "Incandescent", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "fDef": 30, "wDef": 30, "eDef": -50, "lvl": 50, "intReq": 20, "defReq": 20, "hprPct": 13, "xpb": 11, "ref": 17, "fDefPct": 8, "wDefPct": 8, "id": 1452}, {"name": "Impure Morph-Gold", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 125, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1447}, {"name": "Incendiary", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 255, "fDef": 40, "wDef": -30, "lvl": 71, "dexReq": 20, "defReq": 30, "xpb": 6, "expd": 8, "mdRaw": 39, "fDamPct": 6, "wDefPct": -12, "type": "necklace", "id": 1448}, {"name": "Impulse", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-229", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "126-371", "eDam": "126-371", "atkSpd": "SUPER_SLOW", "lvl": 53, "strReq": 25, "dexReq": 25, "mr": -35, "mdPct": 12, "ls": 110, "ms": 30, "int": -5, "hprRaw": -75, "tDamPct": 14, "eDamPct": 14, "id": 1446}, {"name": "Incense Burner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-46", "fDam": "31-51", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "defReq": 15, "xpb": 10, "def": 5, "spd": -5, "hpBonus": 70, "spRegen": 10, "hprRaw": 10, "id": 1453}, {"name": "Incinerator", "tier": "Unique", "type": "bow", "poison": 500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "121-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "defReq": 30, "def": 7, "fDamPct": 18, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 1451}, {"name": "Infatuation", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "27-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "agiReq": 5, "defReq": 25, "hprPct": 15, "ls": 48, "int": -5, "hpBonus": 450, "spRegen": 5, "sdRaw": -60, "aDamPct": 18, "id": 1456}, {"name": "Infected Band", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "lootchest", "hp": -60, "lvl": 65, "hprPct": -8, "ls": 30, "type": "bracelet", "id": 1454}, {"name": "Inferna Flamewreath", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "330-350", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 80, "sdPct": 10, "hprRaw": -200, "fDamPct": 20, "wDamPct": -50, "wDefPct": -30, "spRaw1": -5, "spRaw3": -5, "id": 1457}, {"name": "Infernal Impulse", "tier": "Fabled", "type": "leggings", "majorIds": ["RALLY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": 95, "wDef": -80, "aDef": -80, "tDef": 65, "lvl": 73, "dexReq": 20, "defReq": 55, "mr": -5, "sdPct": 16, "wDamPct": -30, "fDefPct": -14, "tDefPct": 18, "jh": 1, "id": 3599}, {"name": "Infilak", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-77", "fDam": "55-77", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "defReq": 50, "expd": 99, "spd": 10, "mdRaw": 188, "id": 1455}, {"name": "Ingrainment", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 230, "fDef": -40, "wDef": 90, "eDef": 90, "lvl": 59, "strReq": 30, "intReq": 40, "hprPct": 30, "ls": 46, "spd": -25, "hprRaw": 55, "fDamPct": -50, "tDamPct": -50, "eDefPct": 10, "id": 1460}, {"name": "Iniquity", "tier": "Rare", "poison": 395, "category": "accessory", "drop": "lootchest", "wDef": -40, "aDef": -60, "tDef": 60, "eDef": 40, "lvl": 74, "strReq": 30, "dexReq": 25, "dex": 4, "spRegen": -8, "wDamPct": -10, "tDamPct": 6, "eDamPct": 6, "type": "bracelet", "id": 1461}, {"name": "Inmate Outfit", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1550, "lvl": 72, "id": 773}, {"name": "Influence", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "54-66", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "hprPct": 14, "mdPct": 15, "ls": 46, "xpb": 19, "spRegen": -19, "tDamPct": 15, "id": 1458}, {"name": "Insulation", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 240, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 60, "fDamPct": -4, "tDamPct": -4, "type": "bracelet", "id": 1463}, {"name": "Interference", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-158", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "dexReq": 28, "ls": -38, "dex": 7, "sdRaw": 56, "tDamPct": 9, "eDefPct": -21, "spRaw3": -5, "id": 1462}, {"name": "Ionian", "tier": "Unique", "type": "dagger", "poison": 488, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 69, "strReq": 25, "sdPct": -5, "str": 5, "wDamPct": -15, "eDamPct": 12, "wDefPct": -10, "id": 1467}, {"name": "Inundatio", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 35, "tDef": 30, "eDef": -65, "lvl": 88, "dexReq": 15, "intReq": 65, "sdPct": 5, "mdPct": -10, "sdRaw": 35, "wDamPct": 6, "eDefPct": -10, "type": "necklace", "id": 1464}, {"name": "Iodide", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1180, "tDef": 70, "eDef": -60, "lvl": 73, "dexReq": 20, "intReq": 15, "sdPct": 12, "int": 4, "wDamPct": 7, "tDamPct": 10, "id": 1465}, {"name": "Iris", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-32", "fDam": "28-32", "wDam": "28-32", "aDam": "28-32", "tDam": "28-32", "eDam": "28-32", "atkSpd": "SLOW", "lvl": 85, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "sdPct": -10, "mdPct": -10, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "id": 1468}, {"name": "Iron Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 10, "def": 4, "spd": -3, "type": "bracelet", "id": 1471}, {"name": "Iron Grippers", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "20-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "200-400", "eDam": "250-350", "atkSpd": "VERY_SLOW", "lvl": 84, "strReq": 35, "dexReq": 35, "ms": 5, "str": 10, "spd": -10, "mdRaw": 390, "tDamPct": 25, "eDamPct": 20, "id": 1469}, {"name": "Iron Knuckle", "tier": "Legendary", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-9", "atkSpd": "SUPER_FAST", "lvl": 15, "strReq": 5, "xpb": 8, "str": 5, "def": 5, "eDamPct": 10, "id": 1470}, {"name": "Iron Incrusted Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 42, "wDef": -2, "eDef": 5, "lvl": 9, "def": 3, "spd": -7, "hpBonus": 10, "aDefPct": -5, "eDefPct": 10, "id": 1472}, {"name": "Iron Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "aDef": -2, "eDef": 5, "lvl": 12, "spd": -5, "hpBonus": 12, "eDamPct": 5, "id": 1476}, {"name": "Iron String", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "47-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 5, "sdPct": -3, "mdPct": 8, "str": 5, "agi": -2, "id": 1473}, {"name": "Iron Scrap", "tier": "Unique", "type": "chestplate", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": 30, "aDef": -40, "eDef": 30, "lvl": 48, "strReq": 10, "defReq": 15, "mdPct": 8, "spd": -5, "id": 1475}, {"name": "Irradiation", "tier": "Unique", "type": "wand", "poison": 487, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-41", "aDam": "0-0", "tDam": "17-72", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 28, "intReq": 28, "hprPct": -23, "dex": 8, "int": 5, "wDamPct": 20, "eDamPct": -30, "eDefPct": -15, "id": 1474}, {"name": "Ironclad", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 30, "eDef": 30, "lvl": 66, "strReq": 25, "defReq": 40, "mdPct": 14, "def": 9, "expd": 10, "wDamPct": -10, "wDefPct": -18, "id": 1478}, {"name": "Isaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-3", "fDam": "0-0", "wDam": "6-9", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "wDamPct": 10, "id": 1480}, {"name": "Island Chain", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-132", "fDam": "0-0", "wDam": "140-155", "aDam": "0-0", "tDam": "0-0", "eDam": "140-155", "atkSpd": "SLOW", "lvl": 83, "strReq": 40, "intReq": 40, "mr": 10, "mdPct": -20, "int": 10, "spd": -20, "hpBonus": 2500, "hprRaw": 165, "spRaw1": -5, "id": 1477}, {"name": "Ivory", "tier": "Legendary", "type": "dagger", "poison": -1000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-130", "fDam": "0-0", "wDam": "0-0", "aDam": "55-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 35, "ms": 10, "ref": 30, "agi": 13, "spRegen": 25, "hprRaw": 225, "tDamPct": -40, "fDefPct": 30, "tDefPct": 30, "id": 1479}, {"name": "Ivy", "tier": "Unique", "type": "bow", "poison": 50, "thorns": 6, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-16", "atkSpd": "SLOW", "lvl": 17, "id": 1481}, {"name": "Ivory Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "155-185", "fDam": "15-20", "wDam": "15-20", "aDam": "15-20", "tDam": "15-20", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 75, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1483}, {"name": "Infinity", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "FAST", "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1459}, {"name": "Jackal Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 24, "hprPct": 9, "hprRaw": 4, "type": "necklace", "id": 1482}, {"name": "Jackpot", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 77, "lvl": 77, "xpb": 7, "lb": 7, "eSteal": 7, "type": "necklace", "id": 1484}, {"name": "Jade Talon", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "108-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "mdPct": 19, "ms": 5, "str": 3, "dex": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1487}, {"name": "Jate", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 17, "sdPct": 8, "xpb": 4, "ref": 5, "id": 1486}, {"name": "Jag", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "lootchest", "lvl": 4, "mdRaw": 3, "type": "ring", "id": 1485}, {"name": "Javelin", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "dex": 4, "mdRaw": 8, "id": 1491}, {"name": "Jera", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 55, "xpb": 10, "lb": 40, "id": 1488}, {"name": "Jiandan Handwraps", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 83, "strReq": 40, "defReq": 40, "mdPct": 10, "xpb": 10, "hpBonus": 827, "mdRaw": 45, "type": "bracelet", "id": 1489}, {"name": "Jewel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1645, "fDef": 100, "wDef": -80, "lvl": 76, "sdPct": 7, "xpb": 10, "ref": 5, "fDamPct": -20, "wDamPct": 10, "id": 1490}, {"name": "Jike", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 16, "lb": 4, "spd": 5, "mdRaw": 14, "id": 1495}, {"name": "Jilted", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 45, "defReq": 30, "def": 5, "hpBonus": 100, "spRegen": -5, "fDamPct": 4, "fDefPct": 6, "id": 1497}, {"name": "Jingu Headband", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "wDef": 6, "tDef": 6, "eDef": -12, "lvl": 33, "dexReq": 10, "intReq": 10, "ms": 5, "xpb": 11, "wDamPct": 8, "tDamPct": 8, "eDefPct": -10, "id": 1494}, {"name": "Joker", "tier": "Rare", "type": "spear", "poison": 120, "thorns": 1, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-40", "wDam": "0-0", "aDam": "0-40", "tDam": "0-0", "eDam": "0-40", "atkSpd": "NORMAL", "lvl": 45, "strReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "ref": 1, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "expd": 1, "spRegen": 1, "eSteal": 1, "id": 1493}, {"name": "Jolt of Inspiration", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "11-14", "aDam": "0-0", "tDam": "13-22", "eDam": "0-0", "atkSpd": "FAST", "lvl": 40, "dexReq": 10, "intReq": 15, "mr": 5, "sdPct": 8, "ms": 5, "xpb": 10, "int": 4, "tDefPct": -15, "eDefPct": -18, "id": 1498}, {"name": "Juneberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "65-90", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 30, "agiReq": 30, "mr": 5, "sdPct": 10, "int": 8, "agi": 7, "spd": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": -14, "id": 1500}, {"name": "Jungle Sludge", "tier": "Unique", "type": "helmet", "poison": 265, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "eDef": 50, "lvl": 60, "hprPct": -15, "hpBonus": -275, "wDamPct": 11, "tDefPct": -7, "id": 1499}, {"name": "Jungle Artifact", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "140-210", "fDam": "70-210", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-280", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 21, "defReq": 21, "mdPct": 14, "str": 9, "agi": -7, "expd": 14, "spd": -21, "sdRaw": -77, "fDamPct": 14, "id": 1496}, {"name": "Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1505}, {"name": "Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1502}, {"name": "Jungle Wood Shears", "displayName": "Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "id": 1501}, {"name": "Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1511}, {"name": "Jungle Wood Stick", "displayName": "Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1504}, {"name": "Juniper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 26, "strReq": 8, "hprRaw": 4, "eDamPct": 4, "type": "ring", "id": 1503}, {"name": "Justice", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": 50, "wDef": -30, "tDef": -30, "lvl": 96, "defReq": 40, "hprPct": 12, "def": 5, "fDamPct": 8, "type": "bracelet", "id": 1507}, {"name": "Kaas' Fur", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 40, "lvl": 40, "intReq": 15, "mr": 10, "sdPct": -12, "ms": 5, "tDefPct": -10, "id": 1506}, {"name": "Kanata", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-32", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 20, "spd": 6, "eSteal": 3, "aDamPct": 6, "id": 1509}, {"name": "Kamikaze", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "20-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 27, "defReq": 18, "sdPct": 10, "mdPct": 12, "ls": -8, "agi": 7, "def": -3, "expd": 10, "fDamPct": 5, "wDamPct": -10, "id": 1517}, {"name": "Kapok", "tier": "Rare", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": -60, "wDef": 60, "tDef": -60, "eDef": 60, "lvl": 64, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "wDamPct": 8, "eDamPct": 8, "tDefPct": -15, "id": 1510}, {"name": "Kaleidoscope", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 47, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 10, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "id": 1508}, {"name": "Karabiner", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-48", "fDam": "23-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 5, "defReq": 25, "hprPct": 18, "lb": 8, "agi": 5, "def": 4, "spd": 6, "aDamPct": 10, "aDefPct": 10, "id": 1512}, {"name": "Karraska", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "aDef": -7, "lvl": 24, "strReq": 8, "sdPct": -5, "mdPct": 12, "str": 8, "agi": -2, "spd": -4, "hpBonus": 35, "eDamPct": 10, "aDefPct": -5, "eDefPct": 5, "id": 1513}, {"name": "Katana", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "74-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "dex": 7, "spd": 10, "sdRaw": -20, "mdRaw": 46, "id": 1514}, {"name": "Katoa's Warmth", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 185, "fDef": 15, "lvl": 23, "hprPct": 45, "hpBonus": 75, "spRegen": 10, "sdRaw": -25, "mdRaw": -26, "id": 1515}, {"name": "Kayde", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 10, "spRegen": 7, "type": "bracelet", "id": 1516}, {"name": "Kaze", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 91, "agiReq": 75, "agi": 5, "spd": 15, "aDefPct": 11, "type": "ring", "id": 1520}, {"name": "Keen Measure", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-18", "fDam": "0-0", "wDam": "11-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "intReq": 5, "mr": 5, "dex": 3, "int": 3, "spd": -4, "spPct2": -14, "id": 1519}, {"name": "Keeper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 4, "type": "bracelet", "id": 1518}, {"name": "Kekkai", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 66, "agiReq": 30, "ref": 11, "spd": -10, "fDamPct": -30, "wDefPct": 10, "aDefPct": 25, "tDefPct": 10, "eDefPct": 10, "id": 1521}, {"name": "Kelight's Gauntlet", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 435, "wDef": -15, "aDef": -15, "lvl": 69, "strReq": 40, "mdPct": 7, "str": 4, "mdRaw": 18, "wDefPct": -7, "aDefPct": -7, "type": "bracelet", "id": 1522}, {"name": "Kelight's Shield", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 75, "wDef": -60, "aDef": -45, "tDef": 75, "eDef": 60, "lvl": 64, "defReq": 40, "hprPct": 25, "xpb": 10, "def": 9, "hpBonus": 550, "fDefPct": 22, "wDefPct": -8, "tDefPct": 22, "id": 1535}, {"name": "Kelvik", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "fDef": 15, "lvl": 40, "defReq": 15, "def": 5, "spd": -6, "hpBonus": 80, "fDamPct": 8, "wDamPct": -7, "fDefPct": 10, "aDefPct": 5, "id": 1523}, {"name": "Kenaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-71", "fDam": "28-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 20, "ref": 13, "hpBonus": 150, "spRegen": 3, "fDamPct": 8, "wDamPct": -5, "wDefPct": -10, "id": 1526}, {"name": "Kelight's Toothbrush", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-9", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "mdPct": 5, "xpb": 4, "lb": 9, "eDamPct": -5, "eDefPct": -5, "id": 1538}, {"name": "Kernel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -150, "wDef": -60, "lvl": 94, "dexReq": 55, "intReq": 10, "int": 4, "sdRaw": 55, "wDamPct": -8, "tDamPct": 4, "type": "necklace", "id": 1524}, {"name": "Kickback", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -75, "aDef": 140, "eDef": -75, "lvl": 99, "agiReq": 80, "mdPct": 13, "str": 5, "agi": 5, "def": 5, "spd": 12, "mdRaw": 260, "aDamPct": 22, "wDefPct": -13, "tDefPct": -13, "jh": 1, "id": 1525}, {"name": "Kickers", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 10, "mdPct": 6, "hpBonus": -6, "id": 1529}, {"name": "Kilauea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "FAST", "lvl": 68, "strReq": 30, "defReq": 25, "sdPct": 7, "str": 5, "expd": 15, "spd": 12, "hpBonus": -750, "mdRaw": 115, "id": 1528}, {"name": "Kilij", "tier": "Legendary", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-5", "tDam": "0-0", "eDam": "2-4", "atkSpd": "FAST", "lvl": 40, "strReq": 20, "agiReq": 20, "sdPct": -30, "spd": 20, "mdRaw": 90, "aDamPct": 20, "tDamPct": -80, "eDamPct": 20, "id": 1531}, {"name": "Kilpkonn", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "wDef": 25, "tDef": -15, "lvl": 37, "defReq": 12, "ref": 6, "def": 10, "spd": -12, "hpBonus": 40, "hprRaw": 16, "id": 1527}, {"name": "King of Hearts", "tier": "Rare", "type": "wand", "poison": -25000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 75, "defReq": 65, "mr": 15, "hpBonus": 3692, "hprRaw": 200, "sdRaw": -25000, "mdRaw": -25000, "wDamPct": 81, "spRaw1": -5, "id": 1533}, {"name": "Kindle", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "lvl": 62, "defReq": 60, "hprPct": 7, "sdPct": -20, "mdPct": -20, "def": 9, "spRegen": 8, "hprRaw": 60, "fDefPct": 8, "id": 1532}, {"name": "King of Blocks", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "SLOW", "lvl": 73, "strReq": 20, "xpb": 15, "lb": 10, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "id": 1534}, {"name": "Kitten Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-75", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "sdPct": -6, "mdPct": -4, "dex": 13, "spd": 8, "mdRaw": 52, "id": 1530}, {"name": "Kivilu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-690", "wDam": "0-690", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "intReq": 45, "defReq": 45, "hprPct": 15, "mr": 10, "int": 20, "def": -20, "hpBonus": -3900, "hprRaw": 465, "fDamPct": 31, "wDamPct": 31, "id": 1537}, {"name": "Kizuato", "tier": "Unique", "type": "chestplate", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 80, "wDef": -70, "aDef": -70, "tDef": 80, "lvl": 74, "dexReq": 20, "defReq": 20, "ls": 140, "def": 3, "expd": 11, "id": 1536}, {"name": "Knight Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": 10, "wDef": -5, "aDef": -5, "eDef": 10, "lvl": 33, "strReq": 12, "defReq": 12, "hprPct": 20, "sdPct": -5, "mdPct": 10, "fDamPct": 10, "eDamPct": 10, "id": 1540}, {"name": "Knucklebones", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 99, "ls": -1835, "ms": -200, "xpb": 25, "lb": 25, "expd": 20, "atkTier": 2, "spRegen": -50, "eSteal": 5, "type": "bracelet", "id": 1539}, {"name": "Kolkhaar", "tier": "Unique", "type": "spear", "poison": 245, "category": "weapon", "drop": "NORMAL", "nDam": "21-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "13-33", "eDam": "17-29", "atkSpd": "SLOW", "lvl": 43, "strReq": 25, "dexReq": 25, "mdPct": -60, "spd": -7, "atkTier": 2, "spRegen": -10, "id": 1543}, {"name": "Kratke", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 58, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 1542}, {"name": "Krakem", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "343-503", "fDam": "0-0", "wDam": "137-229", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 55, "intReq": 25, "mdPct": 9, "str": 5, "int": 9, "sdRaw": 80, "fDamPct": -16, "eDamPct": 20, "id": 1541}, {"name": "Krolton's Cruelty", "tier": "Rare", "poison": 500, "category": "accessory", "drop": "lootchest", "fDef": 40, "wDef": -80, "tDef": 60, "lvl": 88, "strReq": 40, "dexReq": 70, "str": 5, "dex": 5, "hprRaw": -70, "mdRaw": 55, "type": "bracelet", "id": 1544}, {"name": "Kuuichi", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 6, "tDef": -2, "lvl": 11, "xpb": 6, "int": 5, "sdRaw": 10, "id": 1563}, {"name": "Kuiper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-5", "fDam": "9-17", "wDam": "9-17", "aDam": "9-17", "tDam": "9-17", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "hpBonus": -39, "id": 1545}, {"name": "Bronze Basic Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "eSteal": 5, "type": "bracelet", "fixID": true, "id": 1546}, {"name": "Bronze Basic Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "spRegen": 10, "type": "necklace", "fixID": true, "id": 1547}, {"name": "Diamond Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 65, "lvl": 95, "strReq": 100, "mdPct": 16, "str": 6, "eDamPct": 16, "eDefPct": 5, "type": "bracelet", "fixID": true, "id": 1548}, {"name": "Bronze Basic Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 12, "lb": 12, "type": "ring", "fixID": true, "id": 1549}, {"name": "Diamond Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 80, "lvl": 95, "strReq": 100, "str": 12, "eDamPct": 10, "eDefPct": 16, "type": "necklace", "fixID": true, "id": 1550}, {"name": "Diamond Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 100, "mdPct": 14, "str": 7, "expd": 12, "spd": -5, "mdRaw": 95, "type": "ring", "fixID": true, "id": 1552}, {"name": "Diamond Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "type": "bracelet", "fixID": true, "id": 1554}, {"name": "Diamond Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "type": "necklace", "fixID": true, "id": 1553}, {"name": "Diamond Fusion Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 7, "mdPct": 7, "ref": 10, "hpBonus": 500, "type": "ring", "fixID": true, "id": 1551}, {"name": "Diamond Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "mr": 5, "ms": 5, "int": 5, "wDamPct": 10, "wDefPct": 10, "type": "ring", "fixID": true, "id": 1556}, {"name": "Diamond Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 80, "lvl": 95, "intReq": 100, "mr": 10, "ref": 15, "int": 7, "sdRaw": 55, "type": "necklace", "fixID": true, "id": 1558}, {"name": "Diamond Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "sdPct": 8, "ms": 15, "int": 7, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 1555}, {"name": "Diamond Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 80, "lvl": 95, "defReq": 100, "def": 8, "expd": 15, "fDamPct": 14, "fDefPct": 7, "type": "bracelet", "fixID": true, "id": 1557}, {"name": "Diamond Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 120, "lvl": 95, "defReq": 100, "hprPct": 20, "def": 12, "fDamPct": 8, "fDefPct": 20, "type": "necklace", "fixID": true, "id": 1561}, {"name": "Diamond Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -450, "tDef": 100, "lvl": 95, "dexReq": 100, "sdPct": 8, "dex": 7, "sdRaw": 60, "tDamPct": 16, "tDefPct": 10, "type": "bracelet", "fixID": true, "id": 1559}, {"name": "Diamond Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": 60, "lvl": 95, "defReq": 100, "hprPct": 16, "sdPct": -5, "mdPct": -2, "def": 3, "hprRaw": 110, "fDefPct": 7, "type": "ring", "fixID": true, "id": 1562}, {"name": "Diamond Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 95, "dexReq": 100, "spd": 5, "atkTier": 1, "mdRaw": 29, "tDamPct": 6, "type": "necklace", "fixID": true, "id": 1560}, {"name": "Diamond Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 135, "lvl": 95, "agiReq": 100, "agi": 7, "spd": 18, "aDamPct": 8, "aDefPct": 12, "type": "bracelet", "fixID": true, "id": 1566}, {"name": "Diamond Static Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 70, "lvl": 95, "dexReq": 100, "hprPct": -10, "dex": 10, "tDamPct": 16, "type": "ring", "fixID": true, "id": 1564}, {"name": "Diamond Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 100, "lvl": 95, "agiReq": 100, "ref": 16, "agi": 12, "spd": 16, "aDamPct": 8, "aDefPct": 16, "type": "necklace", "fixID": true, "id": 1565}, {"name": "Gold Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 75, "mdPct": 12, "str": 4, "eDamPct": 11, "type": "bracelet", "fixID": true, "id": 1569}, {"name": "Diamond Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 50, "lvl": 95, "agiReq": 100, "agi": 5, "spd": 12, "aDamPct": 18, "aDefPct": 7, "type": "ring", "fixID": true, "id": 1568}, {"name": "Gold Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 75, "str": 9, "eDamPct": 7, "eDefPct": 12, "type": "necklace", "fixID": true, "id": 1567}, {"name": "Gold Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 35, "aDef": 35, "tDef": 35, "eDef": 35, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "lb": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "type": "bracelet", "fixID": true, "id": 1572}, {"name": "Gold Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 75, "mdPct": 11, "str": 5, "expd": 8, "spd": -4, "mdRaw": 80, "type": "ring", "fixID": true, "id": 1570}, {"name": "Gold Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "sdPct": 6, "ms": 10, "int": 5, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 1577}, {"name": "Gold Fusion Ring", "tier": "Legendary", "thorns": 7, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 4, "mdPct": 4, "ref": 7, "hpBonus": 375, "type": "ring", "fixID": true, "id": 1571}, {"name": "Gold Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "type": "necklace", "fixID": true, "id": 1573}, {"name": "Gold Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 65, "lvl": 95, "intReq": 75, "mr": 5, "ref": 5, "int": 5, "sdRaw": 40, "type": "necklace", "fixID": true, "id": 1583}, {"name": "Gold Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 775, "fDef": 50, "lvl": 95, "defReq": 75, "hprPct": 12, "sdPct": -3, "def": 2, "hprRaw": 70, "fDefPct": 4, "type": "ring", "fixID": true, "id": 1578}, {"name": "Gold Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 65, "lvl": 95, "defReq": 75, "def": 5, "expd": 5, "fDamPct": 9, "fDefPct": 4, "type": "bracelet", "fixID": true, "id": 1576}, {"name": "Gold Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 825, "fDef": 90, "lvl": 95, "defReq": 75, "hprPct": 10, "def": 9, "fDamPct": 5, "fDefPct": 15, "type": "necklace", "fixID": true, "id": 1575}, {"name": "Gold Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 40, "lvl": 95, "dexReq": 75, "spd": 2, "mdRaw": 25, "tDamPct": 4, "type": "necklace", "fixID": true, "id": 1580}, {"name": "Gold Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 75, "lvl": 95, "dexReq": 75, "sdPct": 5, "dex": 5, "sdRaw": 40, "tDamPct": 12, "tDefPct": 7, "type": "bracelet", "fixID": true, "id": 1581}, {"name": "Gold Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 105, "lvl": 95, "agiReq": 75, "agi": 4, "spd": 14, "aDamPct": 6, "aDefPct": 10, "type": "bracelet", "fixID": true, "id": 1585}, {"name": "Gold Static Ring", "tier": "Legendary", "thorns": 4, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 75, "hprPct": -7, "dex": 8, "tDamPct": 12, "type": "ring", "fixID": true, "id": 1579}, {"name": "Gold Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 35, "lvl": 95, "agiReq": 75, "agi": 3, "spd": 9, "aDamPct": 14, "aDefPct": 5, "type": "ring", "fixID": true, "id": 1582}, {"name": "Legendary Medallion", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 100, "type": "necklace", "id": 1587}, {"name": "Gold Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 75, "lvl": 95, "agiReq": 75, "ref": 8, "agi": 8, "spd": 12, "aDamPct": 4, "aDefPct": 10, "type": "necklace", "fixID": true, "id": 1626}, {"name": "Silver Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 2, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 1589}, {"name": "Silver Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 50, "str": 6, "eDamPct": 5, "eDefPct": 8, "type": "necklace", "fixID": true, "id": 1586}, {"name": "Silver Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 20, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 3, "spd": -3, "mdRaw": 65, "type": "ring", "fixID": true, "id": 1588}, {"name": "Silver Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "lb": 6, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 1584}, {"name": "Silver Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "type": "necklace", "fixID": true, "id": 1590}, {"name": "Silver Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "sdPct": 3, "ms": 5, "int": 4, "wDamPct": 5, "type": "bracelet", "fixID": true, "id": 1593}, {"name": "Silver Fusion Ring", "tier": "Legendary", "thorns": 5, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 3, "mdPct": 3, "ref": 5, "hpBonus": 250, "type": "ring", "fixID": true, "id": 1591}, {"name": "Silver Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "ms": 5, "int": 3, "wDamPct": 5, "wDefPct": 5, "type": "ring", "fixID": true, "id": 1594}, {"name": "Silver Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 50, "int": 3, "sdRaw": 35, "type": "necklace", "fixID": true, "id": 1592}, {"name": "Gold Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "mr": 5, "int": 4, "wDamPct": 7, "wDefPct": 7, "type": "ring", "fixID": true, "id": 1574}, {"name": "Silver Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 95, "defReq": 50, "def": 3, "fDamPct": 6, "fDefPct": 2, "type": "bracelet", "fixID": true, "id": 1595}, {"name": "Silver Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 750, "fDef": 70, "lvl": 95, "defReq": 50, "def": 6, "fDefPct": 10, "type": "necklace", "fixID": true, "id": 1599}, {"name": "Silver Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 40, "lvl": 95, "defReq": 50, "hprPct": 8, "def": 1, "hprRaw": 40, "type": "ring", "fixID": true, "id": 1596}, {"name": "Silver Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 90, "lvl": 95, "agiReq": 50, "agi": 2, "spd": 10, "aDamPct": 4, "aDefPct": 8, "type": "bracelet", "fixID": true, "id": 1600}, {"name": "Silver Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 95, "dexReq": 50, "mdRaw": 20, "tDamPct": 2, "type": "necklace", "fixID": true, "id": 1598}, {"name": "Silver Static Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -210, "tDef": 30, "lvl": 95, "dexReq": 50, "dex": 6, "tDamPct": 8, "type": "ring", "fixID": true, "id": 1602}, {"name": "Silver Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 60, "lvl": 95, "agiReq": 50, "ref": 4, "agi": 4, "spd": 10, "aDefPct": 5, "type": "necklace", "fixID": true, "id": 1603}, {"name": "Silver Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 20, "lvl": 95, "agiReq": 50, "agi": 1, "spd": 6, "aDamPct": 10, "aDefPct": 3, "type": "ring", "fixID": true, "id": 1601}, {"name": "Lacerator", "tier": "Unique", "type": "dagger", "poison": 195, "category": "weapon", "drop": "NORMAL", "nDam": "17-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "ls": 23, "dex": 7, "id": 1604}, {"name": "Laen's Curiosity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 6, "lvl": 25, "intReq": 12, "xpb": 8, "int": 5, "type": "bracelet", "id": 1605}, {"name": "Lake", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 23, "int": 3, "sdRaw": 5, "wDamPct": 2, "wDefPct": 5, "type": "ring", "id": 1606}, {"name": "Laoc Alcher", "tier": "Unique", "type": "bow", "poison": 665, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "114-800", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-343", "eDam": "0-343", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 35, "dexReq": 35, "hprPct": 25, "mr": -10, "ls": 220, "hpBonus": -1350, "hprRaw": 50, "mdRaw": 455, "id": 1608}, {"name": "Lapis Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 59, "intReq": 35, "mr": 5, "sdRaw": -25, "type": "necklace", "id": 1607}, {"name": "Largo", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 36, "strReq": 25, "mdPct": 10, "str": 8, "dex": -12, "expd": 20, "spd": -15, "mdRaw": 175, "id": 1609}, {"name": "Silver Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 50, "sdPct": 3, "dex": 3, "sdRaw": 25, "tDamPct": 8, "tDefPct": 5, "type": "bracelet", "fixID": true, "id": 1597}, {"name": "Last Perdition", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "320-330", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 30, "defReq": 30, "mr": -5, "dex": 10, "hpBonus": -500, "fDamPct": 15, "tDamPct": 15, "wDefPct": -10, "id": 1610}, {"name": "Lasting", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 63, "spd": -5, "spRegen": 5, "hprRaw": 33, "type": "bracelet", "id": 1611}, {"name": "Latchkey", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 77, "def": 8, "type": "bracelet", "id": 1612}, {"name": "Layton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "65-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "intReq": 40, "xpb": 10, "int": 15, "sdRaw": 120, "id": 1613}, {"name": "Lazybones", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "265-335", "fDam": "0-0", "wDam": "110-145", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "hprPct": 12, "mr": 5, "xpb": 15, "spd": -12, "id": 1617}, {"name": "Lead", "tier": "Unique", "poison": 235, "category": "accessory", "drop": "lootchest", "hp": -75, "eDef": 20, "lvl": 62, "strReq": 15, "str": 4, "int": -1, "spd": -4, "type": "ring", "id": 1615}, {"name": "Leaning Log", "tier": "Unique", "type": "wand", "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "135-180", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 35, "mdPct": 8, "str": 7, "int": 7, "hpBonus": 1200, "aDamPct": -20, "tDamPct": -20, "id": 1616}, {"name": "Leadlights", "tier": "Rare", "type": "boots", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3125, "lvl": 95, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "spRegen": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "fDefPct": 11, "wDefPct": 11, "aDefPct": 11, "tDefPct": 11, "eDefPct": 11, "id": 1614}, {"name": "Leather Face", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "lvl": 13, "xpb": 3, "lb": 4, "def": 3, "tDefPct": 5, "id": 1621}, {"name": "Leech Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "ls": 7, "def": 3, "id": 1620}, {"name": "Lecade's Rank", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 79, "mdPct": 8, "xpb": 8, "type": "bracelet", "id": 1618}, {"name": "Led Balloon", "tier": "Unique", "type": "relik", "sprint": -12, "category": "weapon", "drop": "NORMAL", "nDam": "97-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "51-57", "atkSpd": "SUPER_SLOW", "lvl": 23, "strReq": 10, "mdPct": 6, "spd": 5, "aDamPct": 10, "eDefPct": 8, "id": 1622}, {"name": "Leech Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "lvl": 20, "ls": 8, "id": 1623}, {"name": "Leg of the Scared", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": 80, "eDef": -60, "lvl": 66, "agiReq": 25, "agi": 5, "spd": 15, "aDamPct": 10, "id": 1619}, {"name": "Leggings of Desolation", "tier": "Rare", "type": "leggings", "poison": 800, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2400, "fDef": 50, "wDef": -200, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 89, "dexReq": 40, "defReq": 40, "hprPct": -20, "sdPct": 20, "mdPct": 20, "ls": 240, "ms": 10, "spRegen": -50, "wDamPct": -20, "id": 1627}, {"name": "Legendary Smasher", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-125", "fDam": "25-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "def": 4, "expd": 65, "wDamPct": -15, "wDefPct": -5, "id": 1624}, {"name": "Leggings of Haste", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "aDef": 60, "lvl": 79, "agiReq": 80, "sdPct": -20, "spd": 15, "atkTier": 1, "mdRaw": 120, "aDamPct": 15, "fDefPct": -50, "id": 1625}, {"name": "Leggings of Restoration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 60, "wDef": 60, "aDef": -60, "tDef": -60, "lvl": 74, "intReq": 20, "defReq": 20, "hprPct": 25, "mr": 5, "sdPct": -7, "mdPct": -7, "spRegen": 5, "hprRaw": 80, "id": 1629}, {"name": "Leictreach Makani", "tier": "Rare", "type": "leggings", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 150, "tDef": 150, "lvl": 95, "dexReq": 60, "agiReq": 60, "sdPct": 19, "ms": 5, "ref": 35, "dex": 15, "agi": 15, "spd": 27, "atkTier": 1, "aDamPct": 32, "tDamPct": 32, "eDefPct": -60, "id": 1632}, {"name": "Leggings of the Halt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 300, "lvl": 36, "defReq": 20, "spd": -19, "fDefPct": 10, "wDefPct": 10, "aDefPct": -5, "tDefPct": 10, "eDefPct": 10, "id": 1628}, {"name": "Leikkuri", "tier": "Rare", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-83", "fDam": "25-33", "wDam": "0-0", "aDam": "30-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "agiReq": 30, "defReq": 10, "agi": 7, "def": 7, "spd": 11, "fDefPct": 12, "wDefPct": -10, "aDefPct": 8, "id": 1630}, {"name": "Lemon Legs", "tier": "Legendary", "type": "leggings", "poison": 35, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "tDef": 15, "eDef": -5, "lvl": 18, "mdPct": 15, "xpb": 7, "dex": 7, "sdRaw": 15, "tDamPct": 10, "eDamPct": -12, "eDefPct": -10, "id": 1633}, {"name": "Lethality", "tier": "Unique", "type": "relik", "poison": 575, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-32", "fDam": "30-32", "wDam": "0-0", "aDam": "0-0", "tDam": "30-32", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 110, "ms": -10, "expd": 15, "id": 1635}, {"name": "Leo", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4200, "fDef": 200, "wDef": -200, "lvl": 93, "sdPct": -30, "mdPct": -30, "hpBonus": 1400, "hprRaw": 200, "fDamPct": 30, "id": 1631}, {"name": "Lerteco", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "eDef": -50, "lvl": 78, "dexReq": 50, "mdPct": 5, "str": -10, "dex": 13, "mdRaw": 135, "tDamPct": 5, "tDefPct": 5, "id": 1637}, {"name": "Ley Lines", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1975, "wDef": 90, "tDef": 90, "eDef": -175, "lvl": 82, "intReq": 50, "mr": 10, "xpb": 8, "hpBonus": -550, "spRegen": 8, "sdRaw": 120, "id": 1636}, {"name": "Lichcall", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 20, "sdPct": 15, "mdPct": 11, "ms": 5, "wDamPct": -30, "aDamPct": -15, "id": 1638}, {"name": "Libella", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 32, "agi": 4, "spd": 4, "aDamPct": 4, "type": "ring", "id": 1639}, {"name": "Libra", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3150, "lvl": 91, "strReq": 33, "dexReq": 33, "intReq": 33, "agiReq": 33, "defReq": 33, "mr": 5, "str": 7, "dex": 7, "int": 7, "agi": 7, "def": 7, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 1641}, {"name": "Lichclaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 20, "sdPct": 11, "mdPct": 15, "ls": 135, "wDefPct": -20, "aDefPct": -10, "id": 1640}, {"name": "Lichenwal", "tier": "Unique", "type": "boots", "poison": 245, "thorns": 7, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "aDef": -80, "eDef": 120, "lvl": 84, "strReq": 40, "str": 10, "expd": 15, "hprRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 1644}, {"name": "Ligfamblawende", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-111", "fDam": "200-244", "wDam": "0-0", "aDam": "167-277", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "agiReq": 40, "defReq": 35, "ls": 260, "agi": 8, "def": 8, "hpBonus": 800, "fDamPct": 10, "wDamPct": -25, "fDefPct": 20, "aDefPct": 20, "id": 1643}, {"name": "Life Extractor", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "32-46", "fDam": "32-46", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "ls": 35, "lb": 5, "hpBonus": 46, "fDefPct": 5, "wDefPct": -10, "id": 1642}, {"name": "Light Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 1647}, {"name": "Light Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 1646}, {"name": "Light Kaekell", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "aDef": 15, "tDef": 15, "lvl": 55, "dexReq": 25, "agiReq": 25, "sdPct": 10, "mdPct": 10, "dex": 4, "agi": 4, "spd": 10, "aDamPct": 10, "tDamPct": 10, "eDefPct": -30, "id": 1648}, {"name": "Light Oak Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 1645}, {"name": "Lightning Edge", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "72-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-145", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 94, "dexReq": 50, "ls": 245, "ms": 5, "dex": 9, "hprRaw": -120, "tDamPct": 12, "tDefPct": 10, "eDefPct": -15, "id": 1686}, {"name": "Light Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 1651}, {"name": "Limbo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-275", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1200", "eDam": "385-385", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 45, "dexReq": 45, "mr": -20, "mdPct": 25, "str": 9, "dex": 13, "hprRaw": -250, "aDamPct": 50, "tDamPct": 15, "eDamPct": 20, "id": 1655}, {"name": "Lightningrod", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-67", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 30, "intReq": 35, "sdPct": 8, "dex": 8, "wDamPct": 23, "fDefPct": -20, "tDefPct": 30, "id": 1649}, {"name": "Lightshow", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "19-23", "wDam": "18-25", "aDam": "17-26", "tDam": "16-27", "eDam": "20-22", "atkSpd": "SUPER_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 70, "spRegen": 20, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 1650}, {"name": "Liquified Sun", "displayName": "Liquefied Sun", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-90", "fDam": "80-85", "wDam": "0-0", "aDam": "0-0", "tDam": "45-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "dexReq": 45, "defReq": 35, "ref": 20, "def": 10, "hpBonus": 1731, "wDamPct": -20, "eDamPct": -20, "fDefPct": 25, "tDefPct": 25, "id": 1654}, {"name": "Lithium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 14, "xpb": 5, "hprRaw": 2, "type": "necklace", "id": 1652}, {"name": "Little Inferno", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "wDef": -20, "lvl": 27, "defReq": 15, "sdPct": 20, "mdPct": 10, "expd": 25, "fDamPct": 15, "wDefPct": -25, "id": 1653}, {"name": "Little Machine", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "13-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-8", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "dex": 4, "sdRaw": 13, "mdRaw": 13, "spPct1": 18, "id": 1658}, {"name": "Lizard", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 18, "lvl": 18, "fDamPct": 5, "type": "ring", "id": 1656}, {"name": "Loaded Question", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "140-165", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 70, "ms": 10, "int": -10, "def": -15, "sdRaw": 240, "mdRaw": 140, "tDamPct": 30, "fDefPct": -30, "wDefPct": -30, "id": 1660}, {"name": "Loam", "tier": "Unique", "type": "wand", "poison": 180, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-15", "atkSpd": "NORMAL", "lvl": 39, "strReq": 10, "intReq": 5, "int": 5, "wDamPct": 10, "tDamPct": -5, "eDefPct": 7, "id": 1657}, {"name": "Lockpick\u058e", "displayName": "Lockpick", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "14-21", "tDam": "14-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "agiReq": 15, "dex": 7, "spd": 10, "eSteal": 5, "eDamPct": -12, "eDefPct": -12, "id": 1659}, {"name": "Lodestone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "wDef": 10, "eDef": -15, "lvl": 56, "intReq": 25, "mr": -5, "sdPct": 11, "xpb": 10, "sdRaw": 30, "tDamPct": 6, "type": "ring", "id": 1665}, {"name": "Log Suit", "tier": "Unique", "type": "chestplate", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 21, "fDef": -3, "eDef": 5, "lvl": 6, "spd": -2, "id": 1662}, {"name": "Locrian", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "28-33", "aDam": "22-33", "tDam": "17-55", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 15, "intReq": 20, "agiReq": 15, "ls": 115, "ms": 15, "dex": 7, "int": 9, "agi": 7, "sdRaw": 125, "fDefPct": -40, "eDefPct": -40, "id": 1661}, {"name": "Logistics", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "wDef": 90, "tDef": 90, "eDef": -120, "lvl": 81, "dexReq": 50, "intReq": 40, "mdPct": -55, "dex": 8, "int": 8, "wDamPct": 40, "tDamPct": 40, "spRaw1": 5, "spRaw3": 5, "spRaw4": -5, "id": 1663}, {"name": "Lost Soul", "tier": "Rare", "type": "spear", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "70-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "agiReq": 50, "ls": 260, "spd": 7, "mdRaw": 110, "aDamPct": 8, "aDefPct": 9, "id": 1668}, {"name": "Long Bow", "tier": "Unique", "type": "bow", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "SLOW", "lvl": 38, "strReq": 25, "hprPct": 15, "lb": 5, "str": 7, "agi": -5, "spd": -10, "aDefPct": -15, "eDefPct": 10, "id": 1664}, {"name": "Topaz Staff", "displayName": "Lonesome", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "190-270", "tDam": "0-0", "eDam": "240-320", "atkSpd": "SUPER_SLOW", "lvl": 91, "strReq": 35, "agiReq": 30, "sdPct": -25, "mdPct": 19, "ms": -5, "spd": 12, "spRegen": -10, "aDefPct": 15, "id": 1667}, {"name": "Luas", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 3, "spd": 5, "type": "bracelet", "id": 1666}, {"name": "Lucky Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "lvl": 28, "lb": 10, "spRegen": 3, "eSteal": 3, "id": 1670}, {"name": "Lumina", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "285-350", "fDam": "0-0", "wDam": "0-0", "aDam": "300-335", "tDam": "640-680", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 80, "dexReq": 45, "agiReq": 35, "spd": 25, "atkTier": -1, "hpBonus": -1250, "mdRaw": 875, "aDamPct": 20, "tDamPct": 30, "wDefPct": -30, "id": 1671}, {"name": "Lullaby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 34, "intReq": 10, "hprPct": 10, "mr": 5, "mdPct": -6, "spd": -5, "wDamPct": 7, "id": 1669}, {"name": "Luminiferous Aether", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "tDef": 110, "eDef": -110, "lvl": 92, "dexReq": 60, "mdPct": -15, "dex": 10, "atkTier": 1, "hprRaw": 125, "mdRaw": 130, "tDamPct": 10, "id": 3627}, {"name": "Lucky Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 30, "lvl": 31, "lb": 5, "eSteal": 2, "type": "necklace", "id": 1672}, {"name": "Luminis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 52, "intReq": 30, "ms": 5, "sdRaw": 15, "tDamPct": 6, "type": "necklace", "id": 1673}, {"name": "Lurrun", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 100, "aDef": 80, "tDef": -70, "eDef": -70, "lvl": 77, "agiReq": 40, "defReq": 40, "hprPct": 14, "mdPct": -8, "ref": 9, "spd": 16, "fDamPct": 6, "aDamPct": 6, "wDefPct": -10, "id": 1676}, {"name": "Luster Purge", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-18", "fDam": "0-0", "wDam": "40-48", "aDam": "35-53", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "intReq": 25, "agiReq": 25, "sdPct": 15, "ref": -20, "hpBonus": 400, "mdRaw": -58, "wDamPct": 15, "aDamPct": 15, "spRaw3": -5, "id": 1677}, {"name": "Lunar Spine", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "616-616", "fDam": "0-0", "wDam": "0-210", "aDam": "0-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "intReq": 50, "agiReq": 50, "mr": -330, "sdPct": 66, "mdPct": 66, "ls": -370, "ms": 110, "atkTier": -66, "hprRaw": -333, "wDamPct": 33, "aDamPct": 33, "id": 1674}, {"name": "Lustrous", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "50-150", "fDam": "140-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "170-240", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 40, "defReq": 30, "mdPct": 10, "str": 7, "int": -12, "hpBonus": -2400, "mdRaw": 280, "fDamPct": 12, "eDamPct": 12, "wDefPct": -30, "id": 1678}, {"name": "Luto Aquarum", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "5-5", "aDam": "0-0", "tDam": "0-0", "eDam": "190-220", "atkSpd": "SLOW", "lvl": 98, "strReq": 50, "intReq": 40, "ls": 269, "ms": 15, "spd": -25, "hpBonus": 3000, "mdRaw": 169, "wDamPct": 40, "eDefPct": 20, "spPct3": -22, "id": 1680}, {"name": "Lycoris", "tier": "Legendary", "type": "boots", "poison": 155, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 15, "tDef": 15, "eDef": -40, "lvl": 39, "dexReq": 15, "intReq": 15, "sdPct": 12, "ls": -33, "hpBonus": -150, "wDamPct": 10, "tDamPct": 10, "id": 1679}, {"name": "Lydian", "tier": "Rare", "type": "spear", "poison": 450, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-70", "atkSpd": "SLOW", "lvl": 39, "strReq": 25, "spd": -12, "aDamPct": -10, "eDamPct": 10, "id": 1681}, {"name": "Lust", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "15-65", "wDam": "10-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 10, "mr": 5, "hprRaw": 15, "fDefPct": 10, "wDefPct": 10, "id": 1675}, {"name": "Cracked Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3560}, {"name": "Cracked Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3559}, {"name": "Cracked Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3563}, {"name": "Cracked Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3562}, {"name": "Cracked Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3561}, {"name": "Aftershock", "tier": "Mythic", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1245-1430", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 80, "sdPct": -20, "str": 20, "def": 20, "hpBonus": 1850, "eDamPct": 20, "eDefPct": 20, "spPct4": -28, "id": 1684}, {"name": "Alkatraz", "tier": "Mythic", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1350-1500", "atkSpd": "SUPER_SLOW", "lvl": 94, "strReq": 110, "mdPct": 40, "str": 40, "dex": -10, "int": -10, "agi": -10, "def": -10, "expd": 40, "eDamPct": 40, "id": 1683}, {"name": "Apocalypse", "tier": "Mythic", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-680", "fDam": "255-475", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "defReq": 95, "hprPct": -125, "ls": 666, "int": -20, "def": 35, "expd": 150, "spRegen": -20, "wDamPct": -50, "fDefPct": 20, "wDefPct": -50, "id": 1685}, {"name": "Az", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "110-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-250", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "dexReq": 80, "xpb": 15, "int": 15, "def": 15, "fDamPct": 40, "wDamPct": 40, "spPct1": -23, "id": 1689}, {"name": "Crusade Sabatons", "tier": "Mythic", "type": "boots", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5050, "fDef": 200, "eDef": 125, "lvl": 90, "strReq": 60, "defReq": 70, "hprPct": 31, "str": 20, "def": 30, "spd": -15, "hpBonus": 2500, "fDefPct": 20, "eDefPct": 30, "id": 1696}, {"name": "Discoverer", "tier": "Mythic", "type": "chestplate", "category": "armor", "drop": "lootchest", "lvl": 89, "xpb": 15, "lb": 154, "id": 1694}, {"name": "Grandmother", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-595", "atkSpd": "SLOW", "lvl": 95, "strReq": 110, "hprPct": -35, "sdPct": 21, "mdPct": 21, "xpb": 15, "lb": 25, "str": 15, "agi": 55, "spd": -6, "hprRaw": -605, "id": 1704}, {"name": "Hero", "tier": "Mythic", "type": "spear", "majorIds": ["HERO"], "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "120-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "agiReq": 110, "hprPct": 40, "mdPct": 40, "str": 20, "agi": 30, "spd": 40, "id": 1708}, {"name": "Archangel", "tier": "Mythic", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "165-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 69, "agiReq": 70, "hprPct": 30, "agi": 15, "def": 10, "spd": 41, "hpBonus": 1900, "hprRaw": 120, "id": 1688}, {"name": "Ignis", "tier": "Mythic", "type": "bow", "majorIds": ["ALTRUISM"], "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-210", "fDam": "160-235", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "defReq": 105, "hprPct": 40, "def": 20, "hpBonus": 4000, "hprRaw": 345, "fDamPct": 10, "fDefPct": 100, "aDefPct": 50, "spPct4": -35, "id": 1706}, {"name": "Moontower", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4150, "fDef": 75, "wDef": 125, "aDef": 125, "tDef": 225, "eDef": 75, "lvl": 95, "intReq": 70, "agiReq": 80, "str": -10, "dex": -10, "int": 35, "agi": 60, "def": -40, "spd": 25, "wDefPct": 40, "aDefPct": 40, "id": 1709}, {"name": "Quetzalcoatl", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "25-45", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "50-70", "atkSpd": "VERY_FAST", "lvl": 103, "strReq": 70, "agiReq": 70, "ls": 1423, "spd": 28, "sdRaw": 270, "mdRaw": 95, "wDamPct": -80, "jh": 2, "id": 3644}, {"name": "Singularity", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 15, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-275", "wDam": "150-250", "aDam": "100-300", "tDam": "75-325", "eDam": "175-225", "atkSpd": "SUPER_SLOW", "lvl": 99, "strReq": 42, "dexReq": 42, "intReq": 42, "agiReq": 42, "defReq": 42, "sdPct": 10, "mdPct": 15, "dex": 35, "spd": -40, "hprRaw": 250, "sdRaw": 222, "mdRaw": 444, "id": 1715}, {"name": "Stratiformis", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-175", "fDam": "0-0", "wDam": "0-0", "aDam": "170-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "agiReq": 115, "sdPct": 12, "mdPct": 12, "ref": 12, "agi": 25, "spd": 76, "hpBonus": -2000, "id": 1765}, {"name": "Sunstar", "tier": "Mythic", "type": "relik", "thorns": 30, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "375-545", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 115, "ls": 625, "ref": 90, "mdRaw": 577, "wDamPct": -30, "tDamPct": 20, "id": 1720}, {"name": "Mach", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-46", "fDam": "0-0", "wDam": "0-0", "aDam": "12-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 56, "agiReq": 25, "defReq": 10, "agi": 8, "expd": 12, "spd": 15, "atkTier": 1, "hprRaw": 30, "fDamPct": 20, "id": 1728}, {"name": "Warchief", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5225, "fDef": -100, "wDef": -100, "aDef": -100, "tDef": -150, "eDef": -150, "lvl": 98, "strReq": 80, "dexReq": 80, "mdPct": 40, "str": 20, "dex": 10, "expd": 35, "spd": -15, "mdRaw": 315, "tDamPct": 50, "eDamPct": 40, "id": 1725}, {"name": "Macht", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 5, "mdPct": 5, "str": 3, "type": "bracelet", "id": 1731}, {"name": "Maelstrom", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-90", "aDam": "40-100", "tDam": "60-110", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 15, "mdPct": 15, "dex": 8, "int": 8, "agi": 8, "spd": 20, "hpBonus": -550, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "id": 1727}, {"name": "Magic Bounce", "tier": "Unique", "type": "relik", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-37", "fDam": "30-37", "wDam": "30-37", "aDam": "30-37", "tDam": "30-37", "eDam": "30-37", "atkSpd": "FAST", "lvl": 78, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": 10, "xpb": 10, "lb": 10, "ref": 35, "expd": 35, "spRaw2": -5, "id": 1732}, {"name": "Magellan's Sail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "wDef": 70, "aDef": 60, "eDef": -80, "lvl": 75, "intReq": 45, "agiReq": 40, "mr": 5, "spd": 16, "hprRaw": -90, "wDamPct": 14, "aDamPct": 9, "id": 1730}, {"name": "Magicant", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "5-15", "wDam": "5-15", "aDam": "5-15", "tDam": "5-15", "eDam": "5-15", "atkSpd": "NORMAL", "lvl": 41, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 1735}, {"name": "Magma Rod", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "74-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "defReq": 40, "str": 5, "expd": 25, "hprRaw": -35, "fDamPct": 20, "wDamPct": -30, "fDefPct": 20, "wDefPct": -30, "eDefPct": 10, "id": 1739}, {"name": "Magma Chalice", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "110-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "strReq": 40, "defReq": 30, "hprPct": 31, "expd": 15, "hpBonus": 2335, "eDamPct": 20, "fDefPct": 20, "aDefPct": -15, "eDefPct": 20, "id": 1734}, {"name": "Magmarizer", "tier": "Unique", "type": "dagger", "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-110", "fDam": "60-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-70", "atkSpd": "NORMAL", "lvl": 93, "strReq": 30, "defReq": 35, "sdPct": -15, "hpBonus": 3200, "hprRaw": 120, "fDefPct": 15, "eDefPct": 15, "id": 1736}, {"name": "Magmawalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 775, "fDef": 15, "eDef": 40, "lvl": 56, "strReq": 15, "defReq": 15, "hprPct": 20, "str": 4, "def": 7, "expd": 8, "spd": -8, "aDamPct": -8, "fDefPct": 25, "eDefPct": 25, "id": 1738}, {"name": "Magmatic Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "wDef": -130, "lvl": 72, "strReq": 40, "defReq": 50, "mdPct": 22, "str": 9, "def": 10, "expd": 19, "fDamPct": 28, "eDamPct": 28, "wDefPct": -34, "id": 1733}, {"name": "Magnet Repulsor", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3225, "fDef": -100, "wDef": 100, "tDef": -175, "eDef": -100, "lvl": 96, "dexReq": 55, "intReq": 60, "mdPct": -20, "ms": 10, "int": 5, "expd": 12, "sdRaw": 205, "tDefPct": -20, "id": 3597}, {"name": "Magnus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "355-535", "fDam": "445-600", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "intReq": 40, "defReq": 30, "sdPct": 15, "expd": 33, "wDamPct": 20, "aDamPct": -20, "fDefPct": 10, "wDefPct": 10, "id": 1737}, {"name": "Magnitude", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 50, "mdPct": 10, "ms": 5, "str": 7, "expd": 5, "fDamPct": -20, "aDamPct": -20, "eDamPct": 15, "id": 1740}, {"name": "Mail of the Sweltering", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": -120, "aDef": 30, "lvl": 60, "agiReq": 20, "defReq": 20, "ls": 75, "def": 5, "expd": 3, "hprRaw": 40, "aDamPct": 10, "fDefPct": 12, "id": 1741}, {"name": "Maji", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-95", "fDam": "0-0", "wDam": "110-138", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 83, "intReq": 40, "ls": 200, "xpb": 15, "lb": 15, "dex": -8, "int": 8, "hprRaw": 100, "wDefPct": 15, "tDefPct": 15, "eDefPct": -30, "id": 1742}, {"name": "Major", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "mdRaw": 9, "type": "ring", "id": 1743}, {"name": "Malachite", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 20, "eDef": 20, "lvl": 75, "strReq": 10, "dexReq": 10, "str": 3, "dex": 3, "sdRaw": 35, "mdRaw": 31, "type": "ring", "id": 1744}, {"name": "Maltic's Old Spear", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "xpb": 10, "str": 7, "dex": 7, "id": 1749}, {"name": "Malfunction", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-50", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "dexReq": 20, "intReq": 20, "hprPct": -20, "sdPct": 14, "ms": 5, "xpb": 10, "hpBonus": -150, "tDamPct": 12, "wDefPct": -20, "tDefPct": -20, "id": 1745}, {"name": "Maltic's Aid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 1746}, {"name": "Manablast", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "180-215", "aDam": "0-0", "tDam": "180-215", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 20, "mdPct": -20, "ms": -15, "expd": 20, "sdRaw": 231, "mdRaw": -235, "id": 1748}, {"name": "Mama Zomble's Memory", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1747}, {"name": "Manaflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 80, "eDef": -80, "lvl": 78, "intReq": 50, "mr": 5, "sdPct": 10, "mdPct": -13, "ls": -75, "str": -5, "int": 7, "wDamPct": 10, "eDamPct": -10, "id": 1751}, {"name": "Mangrove", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": -65, "wDef": 50, "eDef": 50, "lvl": 52, "strReq": 30, "intReq": 30, "hprPct": 10, "mr": 5, "spd": -11, "hprRaw": 30, "wDefPct": 8, "eDefPct": 8, "id": 1750}, {"name": "Maple", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "43-57", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "NORMAL", "lvl": 58, "str": 7, "hprRaw": 40, "eDamPct": 8, "fDefPct": -5, "id": 1752}, {"name": "Marble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 90, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 48, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "sdPct": 5, "sdRaw": 12, "type": "ring", "id": 1754}, {"name": "Marble Forest", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "133-136", "tDam": "0-0", "eDam": "133-136", "atkSpd": "NORMAL", "lvl": 87, "strReq": 30, "agiReq": 30, "str": 15, "dex": -15, "agi": 15, "def": -15, "fDamPct": -25, "aDamPct": 25, "tDamPct": -25, "eDamPct": 25, "fDefPct": -20, "aDefPct": 20, "tDefPct": -20, "eDefPct": 20, "id": 1753}, {"name": "Marrow", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "lvl": 65, "hprPct": 24, "mdPct": -4, "hprRaw": 60, "fDamPct": 7, "id": 1757}, {"name": "Marius' Lament", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -25, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": -25, "lvl": 49, "dexReq": 5, "intReq": 5, "agiReq": 5, "ls": 29, "agi": 5, "spRegen": 10, "type": "bracelet", "id": 1756}, {"name": "Marsh Runner", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": 75, "tDef": -60, "lvl": 58, "intReq": 20, "xpb": 8, "ref": 12, "int": 5, "wDamPct": 7, "tDamPct": -4, "id": 1755}, {"name": "Marsh Waders", "tier": "Rare", "type": "leggings", "poison": 788, "thorns": 22, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 100, "aDef": -100, "tDef": -60, "eDef": 60, "lvl": 86, "strReq": 20, "intReq": 20, "mr": 5, "str": 8, "spd": -7, "wDamPct": 15, "id": 1758}, {"name": "Marvel", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -100, "wDef": 15, "aDef": 15, "eDef": -25, "lvl": 72, "intReq": 50, "agiReq": 10, "sdPct": 11, "mdPct": -8, "ref": 14, "spd": 8, "type": "ring", "id": 1761}, {"name": "Martyr", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 15, "aDef": 15, "lvl": 77, "agiReq": 30, "defReq": 30, "hprPct": -12, "sdPct": 8, "mdPct": 12, "hprRaw": -36, "type": "ring", "id": 1829}, {"name": "Mask of the Spirits", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjdlODQ5MGMwZjk3ZTU5ZTJjNjA5MzI3MjVmMTAyMzVlOTdiNzQ0YmRhYjU5ODcwMmEwYjJlNzk5MGRlMzA0YyJ9fX0= ", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 3649}, {"name": "Masochist", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -40, "eDef": 30, "lvl": 59, "strReq": 30, "hprPct": 40, "sdPct": -45, "mdPct": 35, "ls": -230, "ms": -5, "xpb": 15, "str": 7, "eDamPct": 12, "id": 1759}, {"name": "Master", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 11, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "necklace", "id": 1760}, {"name": "Matchbook", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -60, "lvl": 83, "defReq": 65, "def": 13, "expd": 12, "fDamPct": -7, "type": "necklace", "id": 3622}, {"name": "Mazurka", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "1-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 73, "dexReq": 35, "dex": 5, "hpBonus": -750, "sdRaw": 101, "mdRaw": 54, "tDamPct": 15, "id": 1762}, {"name": "Meanderthal", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "eDef": 20, "lvl": 29, "strReq": 12, "mdPct": 10, "xpb": 10, "str": 9, "def": 9, "spd": -10, "id": 1766}, {"name": "Mech Core", "tier": "Rare", "quest": "Desperate Metal", "category": "accessory", "drop": "never", "fDef": 50, "wDef": -25, "lvl": 86, "defReq": 35, "hprPct": 10, "mr": -5, "int": -5, "def": 8, "hpBonus": 630, "hprRaw": 75, "type": "necklace", "id": 1861}, {"name": "Medico", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 17, "hprPct": 14, "hpBonus": 22, "hprRaw": 6, "id": 1768}, {"name": "Meep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "lvl": 59, "sdPct": -6, "mdPct": -6, "agi": 5, "spd": 11, "type": "ring", "id": 1767}, {"name": "Meditation Robe", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 10, "tDef": -25, "lvl": 35, "intReq": 25, "mr": 5, "mdPct": -10, "ms": 5, "xpb": 10, "wDamPct": 12, "tDefPct": -10, "id": 1769}, {"name": "Meikyo Shisui", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1500, "wDef": 60, "lvl": 66, "intReq": 60, "mr": 10, "ref": 10, "int": 7, "spd": -15, "spRegen": 10, "hprRaw": 40, "id": 1770}, {"name": "Melody", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 6, "lvl": 48, "agiReq": 24, "mdPct": 4, "agi": 3, "spd": 2, "sdRaw": 14, "type": "ring", "id": 1774}, {"name": "Melange", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-11", "fDam": "10-12", "wDam": "9-13", "aDam": "7-15", "tDam": "6-16", "eDam": "8-14", "atkSpd": "NORMAL", "lvl": 31, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "sdPct": 7, "mdPct": 7, "xpb": 7, "lb": 7, "spd": 7, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 1771}, {"name": "Melon Cutter", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-160", "atkSpd": "NORMAL", "lvl": 58, "strReq": 30, "mdPct": 20, "str": 10, "hpBonus": -350, "eDamPct": 10, "id": 1772}, {"name": "Melted Ruby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 10, "mr": 5, "sdPct": 9, "hpBonus": 25, "wDamPct": -5, "id": 1773}, {"name": "Meltok", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "3-5", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "hprPct": 10, "xpb": 4, "id": 1778}, {"name": "Meltsteel Greaves", "tier": "Unique", "type": "leggings", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 90, "wDef": -50, "aDef": -50, "lvl": 77, "strReq": 30, "defReq": 30, "mdPct": 11, "str": 5, "expd": 8, "spd": -8, "id": 1777}, {"name": "Memento", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "wDef": 150, "tDef": -150, "lvl": 92, "intReq": 80, "mr": 10, "sdPct": 15, "ls": -600, "xpb": 20, "spRegen": 15, "sdRaw": 120, "id": 1775}, {"name": "Mercury Bomb", "tier": "Legendary", "type": "relik", "poison": 1530, "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "42-48", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "dexReq": 35, "defReq": 35, "hprPct": -100, "ls": 30, "ms": -5, "def": 12, "expd": 39, "tDamPct": 20, "id": 1781}, {"name": "Mender", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "fDef": 60, "wDef": 60, "tDef": -80, "lvl": 61, "intReq": 30, "defReq": 20, "hprPct": 30, "int": 5, "def": 4, "tDamPct": -20, "fDefPct": 10, "wDefPct": 12, "id": 1776}, {"name": "Meridian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-32", "fDam": "0-0", "wDam": "14-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 5, "mr": 5, "xpb": 12, "int": 7, "wDamPct": 5, "id": 1784}, {"name": "Mercy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 71, "hprPct": 15, "sdPct": -2, "mdPct": -2, "xpb": 8, "type": "ring", "id": 1780}, {"name": "Mesosphere", "tier": "Rare", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": -70, "aDef": 70, "tDef": 90, "eDef": -90, "lvl": 91, "dexReq": 50, "agiReq": 25, "mr": 5, "ms": 5, "ref": 15, "agi": 5, "spd": 11, "sdRaw": 145, "mdRaw": 190, "tDamPct": 13, "id": 1785}, {"name": "Mesarock Arch", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 10, "xpb": 10, "lb": 10, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "id": 1782}, {"name": "Meteoric Aegis", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "mr": 10, "xpb": 10, "ref": 15, "id": 1783}, {"name": "Meteoric Arch", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 3, "hprRaw": 35, "sdRaw": 60, "id": 1786}, {"name": "Meteorite", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "10-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-25", "atkSpd": "FAST", "lvl": 40, "strReq": 10, "defReq": 10, "mdPct": 15, "expd": 10, "wDefPct": -10, "aDefPct": -10, "id": 1800}, {"name": "Midnight Bell", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "6-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "agi": 7, "spd": 5, "fDefPct": -5, "id": 1788}, {"name": "Mighty Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 15, "id": 1787}, {"name": "Mind Rot", "tier": "Rare", "type": "helmet", "poison": 420, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1700, "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 70, "hprPct": -12, "mr": -5, "ls": 115, "ms": 10, "int": -6, "hpBonus": -150, "mdRaw": 130, "id": 1792}, {"name": "Millennium", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 63, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 3, "hprRaw": 60, "sdRaw": 120, "id": 1789}, {"name": "Mind Cracker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "sdPct": 3, "int": 1, "type": "ring", "id": 1790}, {"name": "Minor", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "sdRaw": 7, "type": "ring", "id": 1791}, {"name": "Minus", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "75-99", "eDam": "84-90", "atkSpd": "SLOW", "lvl": 42, "strReq": 18, "dexReq": 18, "spd": -10, "hpBonus": -185, "spRegen": -15, "spRaw1": -5, "spRaw3": -5, "id": 1794}, {"name": "Mirror", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 56, "ref": 14, "type": "ring", "id": 1793}, {"name": "Mirror's Edge", "tier": "Fabled", "type": "leggings", "sprint": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 63, "agiReq": 60, "ref": 30, "agi": 20, "spd": 25, "spPct2": -42, "sprintReg": 100, "jh": 1, "id": 1795}, {"name": "Misericorde", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-25", "fDam": "14-15", "wDam": "14-15", "aDam": "14-15", "tDam": "14-15", "eDam": "14-15", "atkSpd": "NORMAL", "lvl": 42, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "mr": -10, "sdPct": -12, "mdPct": 10, "ls": 55, "ms": 15, "hprRaw": -28, "id": 1797}, {"name": "Mirror Shard", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-55", "aDam": "0-0", "tDam": "61-85", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "intReq": 30, "sdPct": 22, "ms": 5, "lb": 12, "ref": 30, "hprRaw": -71, "eDefPct": -25, "id": 1796}, {"name": "Misconduct", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "46-100", "aDam": "0-0", "tDam": "20-126", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "intReq": 40, "hprPct": -30, "sdPct": 20, "ms": 10, "spd": 12, "hpBonus": -1100, "hprRaw": -140, "id": 1799}, {"name": "Hornet", "displayName": "Missile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "43-55", "fDam": "0-0", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "agiReq": 25, "defReq": 35, "mdPct": 15, "ls": -260, "expd": 50, "spd": 20, "mdRaw": 80, "fDamPct": 40, "tDamPct": -20, "eDamPct": 19, "id": 1809}, {"name": "Misfit", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "81-83", "eDam": "81-83", "atkSpd": "SUPER_FAST", "lvl": 96, "strReq": 60, "dexReq": 60, "mr": -5, "mdPct": 20, "ms": -15, "lb": 15, "expd": 25, "tDamPct": 15, "eDamPct": 15, "spRaw4": -10, "id": 1798}, {"name": "Mist", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 56, "intReq": 20, "agiReq": 30, "sdPct": -10, "mdPct": -10, "xpb": 8, "ref": 8, "agi": 7, "spd": 4, "id": 1802}, {"name": "Mist Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-24", "fDam": "0-0", "wDam": "0-0", "aDam": "7-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "agiReq": 10, "ms": 5, "agi": 4, "wDamPct": 5, "aDamPct": 5, "id": 1801}, {"name": "Mistral", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "fDef": -80, "aDef": 80, "lvl": 85, "intReq": 30, "agiReq": 50, "mr": 5, "sdPct": 20, "mdPct": -20, "ref": 16, "spd": 16, "aDamPct": 20, "id": 1806}, {"name": "Mistweaver", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "69-75", "fDam": "0-0", "wDam": "69-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 20, "agiReq": 25, "agi": 5, "aDamPct": 20, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": -15, "id": 1807}, {"name": "Mistpuff", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": 20, "aDef": 30, "tDef": -60, "lvl": 53, "intReq": 15, "agiReq": 20, "ref": 9, "int": 4, "agi": 5, "def": -3, "spd": 9, "eDamPct": -12, "id": 1804}, {"name": "Mithril Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "fDef": -5, "wDef": -5, "aDef": -5, "tDef": -5, "lvl": 39, "strReq": 20, "mdPct": 5, "xpb": 5, "def": 10, "id": 1805}, {"name": "Mitten", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "hpBonus": 5, "hprRaw": 1, "id": 1811}, {"name": "Missing", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2500, "lvl": 80, "dexReq": 40, "defReq": 40, "ls": 195, "ms": 10, "int": -23, "eSteal": 10, "spPct1": -14, "spPct3": -7, "id": 1803}, {"name": "Mixolydian", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "agiReq": 25, "agi": 7, "spd": 15, "aDamPct": 10, "id": 1812}, {"name": "Moisture", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 15, "aDef": 20, "tDef": -50, "lvl": 51, "intReq": 30, "agiReq": 30, "mdPct": -20, "xpb": 15, "ref": 10, "spd": 10, "sdRaw": 40, "wDamPct": 8, "aDamPct": 10, "id": 1808}, {"name": "Molten Flow", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2425, "fDef": 120, "wDef": -130, "eDef": 50, "lvl": 84, "defReq": 50, "hprPct": 30, "str": 6, "def": 6, "spd": -8, "hprRaw": 110, "fDamPct": 16, "eDamPct": 14, "fDefPct": 6, "aDefPct": 20, "eDefPct": 18, "id": 1816}, {"name": "Molotov", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "35-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 21, "defReq": 20, "hprPct": -15, "mdPct": 12, "def": 5, "expd": 20, "fDamPct": 8, "id": 1810}, {"name": "Mercenary Hood", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "fDef": 4, "tDef": 6, "eDef": -8, "lvl": 19, "dexReq": 5, "hprPct": 15, "dex": 3, "mdRaw": 20, "id": 1779}, {"name": "Monk's Cowl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 2, "tDef": 2, "lvl": 12, "hprPct": 10, "xpb": 6, "spRegen": 10, "id": 1814}, {"name": "Momentum", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 79, "strReq": 50, "ms": 5, "str": 5, "dex": 4, "spd": -8, "atkTier": -1, "mdRaw": 275, "type": "bracelet", "id": 1813}, {"name": "Monk's Battle Staff", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "110-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-75", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 29, "sdPct": -10, "mdPct": 10, "spd": 3, "sdRaw": -45, "mdRaw": 130, "aDefPct": -12, "id": 1815}, {"name": "Montefiore", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1340, "lvl": 64, "hprPct": 25, "ms": -5, "spRegen": 5, "hprRaw": 65, "id": 1821}, {"name": "Moonsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-75", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 73, "dexReq": 10, "defReq": 20, "hprPct": 12, "xpb": 8, "int": -3, "expd": 5, "wDamPct": -15, "tDamPct": 10, "wDefPct": -5, "aDefPct": 5, "id": 1820}, {"name": "Morning Star", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-140", "fDam": "80-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "mdPct": 10, "ref": 15, "spRegen": 5, "wDamPct": -5, "aDamPct": 10, "fDefPct": 10, "aDefPct": 5, "id": 1822}, {"name": "Moonbeam", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": 80, "tDef": -80, "lvl": 89, "intReq": 60, "mr": 10, "sdPct": 8, "xpb": 12, "int": 8, "spRegen": 12, "wDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 1817}, {"name": "Mortar", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "aDef": -5, "eDef": 10, "lvl": 28, "strReq": 10, "mdPct": 10, "str": 4, "expd": 2, "aDamPct": -10, "eDamPct": 7, "id": 1819}, {"name": "Mosaic", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-60", "wDam": "40-60", "aDam": "40-60", "tDam": "40-60", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 76, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -9, "mdPct": -9, "hprRaw": 80, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1826}, {"name": "Moulded Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": -80, "eDef": 100, "lvl": 67, "strReq": 35, "sdPct": 7, "mdPct": 11, "expd": 12, "spd": -8, "atkTier": -1, "eDamPct": 40, "aDefPct": -20, "eDefPct": 20, "id": 1823}, {"name": "Moss", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "wDef": 65, "eDef": 65, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 25, "sdPct": -5, "mdPct": -5, "hprRaw": 100, "wDefPct": 15, "tDefPct": 25, "eDefPct": 15, "id": 1824}, {"name": "Mountain Spirit", "tier": "Rare", "type": "dagger", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "dexReq": 35, "agiReq": 35, "sdPct": 4, "xpb": 8, "dex": 5, "agi": 5, "mdRaw": 120, "aDamPct": 8, "tDamPct": 8, "id": 1825}, {"name": "Mouth of Fate", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "86-100", "tDam": "76-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 92, "dexReq": 38, "agiReq": 38, "sdPct": 9, "mdPct": 9, "dex": 9, "agi": 9, "spd": 9, "sdRaw": 135, "mdRaw": 110, "eDefPct": -30, "id": 1827}, {"name": "Mountaintop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": -70, "aDef": 70, "tDef": -150, "eDef": 150, "lvl": 92, "strReq": 35, "agiReq": 15, "mdPct": 12, "dex": 10, "spd": 8, "mdRaw": 175, "fDamPct": -12, "aDamPct": 5, "eDamPct": 5, "eDefPct": 12, "id": 1830}, {"name": "Msitu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "mr": 10, "xpb": 15, "lb": 15, "str": 8, "agi": -8, "fDefPct": -30, "aDefPct": 15, "eDefPct": 15, "id": 1828}, {"name": "Mud Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 46, "wDef": 5, "aDef": -7, "eDef": 5, "lvl": 13, "mdPct": 7, "spd": -4, "wDamPct": 4, "id": 1831}, {"name": "Muddy Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 410, "wDef": 10, "aDef": -20, "eDef": 15, "lvl": 45, "strReq": 15, "intReq": 5, "str": 7, "spd": -7, "aDamPct": -6, "fDefPct": 10, "wDefPct": 8, "tDefPct": 10, "eDefPct": 8, "id": 1833}, {"name": "Mullberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-10", "atkSpd": "NORMAL", "lvl": 11, "hprPct": 10, "xpb": 6, "hpBonus": 15, "id": 1835}, {"name": "Multitool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 76, "dex": 8, "type": "bracelet", "id": 3578}, {"name": "Murk", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 970, "wDef": 55, "tDef": -65, "lvl": 63, "intReq": 45, "sdPct": 5, "ms": 5, "spd": -6, "sdRaw": 85, "wDamPct": 5, "tDamPct": 8, "eDamPct": -6, "tDefPct": -8, "id": 1837}, {"name": "Mudskipper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "wDef": 60, "aDef": 60, "tDef": -100, "eDef": 60, "lvl": 70, "strReq": 25, "intReq": 25, "agiReq": 25, "sdPct": 7, "mdPct": 7, "str": 4, "agi": 4, "spd": 8, "wDamPct": 8, "tDefPct": -10, "id": 1832}, {"name": "Muskeg", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "aDef": -55, "eDef": 45, "lvl": 53, "strReq": 30, "intReq": 30, "mr": 5, "agi": -4, "spd": -8, "wDamPct": 12, "eDamPct": 12, "aDefPct": -10, "id": 1836}, {"name": "Muscle Shirt", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "lvl": 25, "strReq": 15, "str": 8, "id": 1834}, {"name": "Mustard Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 90, "fDef": -10, "wDef": 5, "eDef": 5, "lvl": 22, "strReq": 3, "intReq": 3, "expd": 3, "wDamPct": 5, "eDefPct": 5, "id": 1838}, {"name": "Mycelium Plating", "tier": "Unique", "type": "leggings", "poison": 720, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3025, "wDef": -60, "aDef": -80, "eDef": 130, "lvl": 96, "strReq": 50, "ls": -100, "ms": -5, "str": 7, "hprRaw": 150, "aDamPct": -15, "eDamPct": 20, "eDefPct": 12, "id": 1839}, {"name": "Mystic Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "wDef": 10, "tDef": -10, "lvl": 22, "intReq": 10, "mr": 5, "int": 4, "sdRaw": 15, "tDamPct": -6, "id": 1841}, {"name": "Myelin", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "wDef": 120, "tDef": 50, "lvl": 87, "dexReq": 20, "intReq": 50, "sdPct": 10, "mdPct": -25, "ms": 10, "int": 7, "sdRaw": 165, "tDamPct": 8, "tDefPct": 12, "id": 1842}, {"name": "Mythical Trousers", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 500, "lvl": 42, "defReq": 25, "hprPct": 20, "mr": -5, "ls": 37, "hpBonus": 150, "hprRaw": 27, "wDamPct": -7, "aDamPct": -7, "tDamPct": -7, "eDamPct": -7, "fDefPct": 20, "id": 1843}, {"name": "Mystical Lance", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-95", "fDam": "0-0", "wDam": "0-0", "aDam": "45-45", "tDam": "45-45", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "agiReq": 40, "sdPct": 7, "mdPct": 7, "dex": 18, "agi": 18, "def": -22, "fDamPct": -96, "fDefPct": -41, "id": 1844}, {"name": "Abyssal Amulet", "tier": "Legendary", "quest": "Eye of the Storm", "poison": 450, "category": "accessory", "drop": "never", "fDef": 30, "tDef": 30, "lvl": 72, "hprPct": -15, "ls": 75, "spRegen": -10, "type": "necklace", "id": 1847}, {"name": "Abysso Galoshes", "tier": "Legendary", "type": "boots", "quest": "Beneath the Depths", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": 80, "lvl": 60, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 100, "wDamPct": 10, "tDamPct": 10, "eDefPct": -35, "id": 1845}, {"name": "Aerolia Boots", "tier": "Unique", "type": "boots", "quest": "Suspended Flowers", "category": "armor", "slots": 1, "drop": "never", "hp": 55, "lvl": 14, "hprPct": 15, "mr": 5, "id": 1848}, {"name": "Air Relic Dagger", "displayName": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "39-66", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 30, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 1846}, {"name": "Air Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-65", "fDam": "0-0", "wDam": "0-0", "aDam": "25-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 15, "xpb": 15, "lb": 15, "agi": 5, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 1852}, {"name": "Amulet of Rejuvenation", "tier": "Rare", "quest": "Aldorei^s Secret Part II", "poison": -20000, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 15, "sdPct": -500, "mdPct": -500, "spd": -300, "hprRaw": 750, "sdRaw": -10000, "mdRaw": -10000, "type": "necklace", "fixID": true, "id": 1850}, {"name": "Altum Spatium", "tier": "Legendary", "quest": "???\u058e", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 251, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 80, "xpb": 19, "ref": 19, "type": "necklace", "id": 1849}, {"name": "Anya's Penumbra", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 30, "tDef": 30, "lvl": 100, "int": 15, "spRegen": -14, "type": "bracelet", "spRaw2": 5, "id": 1860}, {"name": "Ancient Runic Relik", "tier": "Legendary", "type": "relik", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "290-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1851}, {"name": "Mvuke", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-72", "fDam": "90-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "defReq": 40, "mr": 10, "xpb": 15, "lb": 15, "int": -8, "def": 8, "fDefPct": 15, "wDefPct": 15, "tDefPct": -30, "id": 1840}, {"name": "Avalanche", "tier": "Rare", "type": "helmet", "quest": "Fate of the Fallen", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 225, "fDef": -20, "lvl": 43, "intReq": 20, "mr": 10, "xpb": 10, "int": 7, "fDamPct": -10, "wDamPct": 10, "aDamPct": 5, "fDefPct": -12, "id": 1853}, {"name": "Blood Moon", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "hp": 2125, "wDef": -75, "eDef": 75, "lvl": 70, "sdPct": -50, "mdPct": 50, "sdRaw": -165, "mdRaw": 215, "id": 1856}, {"name": "Bear Head", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "id": 2393, "set": "Bear"}, {"name": "Bob's Battle Chestplate", "tier": "Unique", "type": "chestplate", "quest": "Bob's Lost Soul", "category": "armor", "slots": 3, "drop": "never", "hp": 450, "lvl": 45, "sdPct": 8, "mdPct": 8, "xpb": 8, "lb": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "id": 1855}, {"name": "Black Veil", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "poison": 105, "category": "armor", "drop": "never", "hp": 570, "tDef": 30, "eDef": -30, "lvl": 51, "sdPct": 15, "ls": 49, "ms": 5, "xpb": -8, "lb": -8, "spRegen": -8, "id": 1866}, {"name": "Bob's Mythic Bow", "tier": "Legendary", "type": "bow", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "380-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1857}, {"name": "Bob's Mythic Daggers", "tier": "Legendary", "type": "dagger", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "185-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1858}, {"name": "Bob's Mythic Spear", "tier": "Legendary", "type": "spear", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "250-310", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1918}, {"name": "Bob's Mythic Wand", "tier": "Legendary", "type": "wand", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1859}, {"name": "Bovine Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 50, "eDef": 20, "lvl": 55, "mdPct": 5, "str": 7, "type": "bracelet", "id": 1862}, {"name": "Calamaro's Bow", "tier": "Rare", "type": "bow", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-27", "fDam": "0-0", "wDam": "20-31", "aDam": "11-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1863}, {"name": "Calamaro's Spear", "tier": "Rare", "type": "spear", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-22", "fDam": "0-0", "wDam": "17-25", "aDam": "7-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1870}, {"name": "Breathing Helmet II", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 300, "wDef": 40, "tDef": -40, "lvl": 40, "ref": 20, "spd": 5, "wDamPct": 15, "fixID": true, "id": 1867}, {"name": "Calamaro's Relik", "tier": "Rare", "type": "relik", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-23", "fDam": "0-0", "wDam": "25-26", "aDam": "13-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1865}, {"name": "Calamaro's Staff", "tier": "Rare", "type": "wand", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "16-22", "aDam": "6-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1871}, {"name": "Calamaro's Sword", "tier": "Rare", "type": "dagger", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "18-28", "aDam": "9-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1868}, {"name": "Clearsight Spectacles", "tier": "Legendary", "type": "helmet", "quest": "Realm of Light IV - Finding the Light", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 71, "xpb": 20, "lb": 15, "ref": 50, "int": 5, "spRegen": 25, "hprRaw": 85, "id": 1873}, {"name": "Changeling's Chestplate", "tier": "Rare", "type": "chestplate", "quest": "General's Orders", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 55, "wDef": 55, "aDef": 55, "tDef": 55, "eDef": 55, "lvl": 80, "xpb": 15, "lb": 15, "str": -1, "dex": -1, "int": -1, "agi": -1, "def": -1, "spd": 15, "hprRaw": 100, "sdRaw": 135, "mdRaw": 175, "jh": 1, "id": 1869}, {"name": "Climbing Helmet", "tier": "Unique", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 350, "aDef": 30, "eDef": 30, "lvl": 42, "xpb": 10, "lb": 10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 56, "id": 1872}, {"name": "Confusing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 99, "lvl": 18, "int": -20, "id": 1874}, {"name": "Contest Wynner Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1875}, {"name": "Dark Diadem", "tier": "Rare", "quest": "The Dark Descent", "category": "accessory", "drop": "never", "wDef": -20, "lvl": 24, "sdPct": 4, "ms": 5, "xpb": 6, "spRegen": -10, "type": "necklace", "id": 1876}, {"name": "Detective's Ring", "tier": "Rare", "quest": "Murder Mystery", "category": "accessory", "drop": "never", "lvl": 74, "sdPct": 7, "xpb": 6, "int": 7, "type": "ring", "id": 1926}, {"name": "Breathing Helmet I", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 20, "wDef": 5, "tDef": -3, "lvl": 8, "id": 1864}, {"name": "Digested Corpse", "tier": "Unique", "type": "chestplate", "poison": 480, "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": -60, "lvl": 71, "strReq": 25, "dexReq": 25, "hprPct": -140, "mdPct": 7, "hprRaw": -9, "mdRaw": 125, "id": 1878}, {"name": "Cloak of Luminosity", "tier": "Rare", "type": "chestplate", "quest": "Realm of Light III - A Headless History", "category": "armor", "drop": "never", "hp": 1280, "fDef": 40, "wDef": 75, "aDef": 40, "tDef": 75, "eDef": 40, "lvl": 64, "mr": 5, "sdPct": 15, "ms": 5, "xpb": 15, "lb": 15, "ref": 15, "spRegen": 15, "wDamPct": 5, "tDamPct": 5, "id": 1877}, {"name": "Earth Relic Dagger", "displayName": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 30, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1880}, {"name": "Dull Ancient Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1350, "lvl": 77, "id": 1881}, {"name": "Earth Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-100", "atkSpd": "SLOW", "lvl": 45, "strReq": 15, "mdPct": 15, "xpb": 15, "lb": 15, "str": 5, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1884}, {"name": "Emerald Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "42-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "xpb": 7, "lb": 23, "eSteal": 7, "id": 1883}, {"name": "Empowered Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": -50, "lvl": 77, "id": 1888}, {"name": "Fire Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "defReq": 15, "xpb": 15, "lb": 15, "def": 5, "hpBonus": 335, "hprRaw": 30, "fDamPct": 10, "fDefPct": 20, "id": 1889}, {"name": "Fire Relic Dagger", "displayName": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 30, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1887}, {"name": "Factory Helmet", "tier": "Unique", "type": "helmet", "quest": "An Iron Heart Part I", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 500, "lvl": 50, "hprPct": 15, "mr": -5, "xpb": 10, "lb": 15, "ref": 10, "def": 7, "hpBonus": 200, "id": 1886}, {"name": "Fire Wire", "tier": "Rare", "type": "leggings", "quest": "From The Mountains", "thorns": 15, "category": "armor", "slots": 1, "drop": "never", "hp": 1600, "fDef": 120, "wDef": -90, "lvl": 67, "hprPct": 35, "def": 7, "spd": -15, "hprRaw": 50, "wDamPct": -15, "fDefPct": 12, "id": 1891}, {"name": "First Steps", "tier": "Unique", "quest": "Cook Assistant", "category": "accessory", "drop": "never", "hp": 4, "lvl": 5, "xpb": 3, "spd": 5, "type": "ring", "id": 3545}, {"name": "Generator Amulet", "tier": "Rare", "quest": "Heart of Llevigar", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": -10, "tDef": 10, "eDef": -20, "lvl": 41, "sdPct": 8, "expd": 5, "sdRaw": 20, "type": "necklace", "id": 1890}, {"name": "Gernald's Amulet", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 70, "fDef": 7, "wDef": 7, "aDef": 7, "tDef": 7, "eDef": 7, "lvl": 43, "xpb": -4, "lb": 11, "type": "necklace", "id": 1893}, {"name": "Gerten Ritual Mask", "tier": "Rare", "type": "helmet", "quest": "The Hunger of Gerts Part 2", "skin": "eyJ0aW1lc3RhbXAiOjE0Mzc5NTUxMDU1MjAsInByb2ZpbGVJZCI6ImRlZDdhMmFmMTVlNjRjOWVhYjIzZWFlOTkyMzUzMDY4IiwicHJvZmlsZU5hbWUiOiJFbmVyZ3l4eGVyIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzczYzIxYjNjYWY4YTZlYWI3ZDE4MTczNGE0MzBkYjUyMWIxZGI4MzNjODk4N2RkZTI0MTE4MDIzMWU0NzgyNiJ9fX0=", "category": "armor", "slots": 1, "drop": "never", "hp": 1800, "aDef": -60, "eDef": 100, "lvl": 78, "sdPct": -10, "str": 7, "spd": -10, "mdRaw": 180, "eDamPct": 20, "aDefPct": -10, "id": 1892}, {"name": "Essren's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 50, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 15, "int": 4, "sdRaw": 20, "wDamPct": 10, "id": 1885}, {"name": "Gnome's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": -250, "aDef": 30, "eDef": -10, "lvl": 76, "agiReq": 25, "mdPct": -8, "str": -3, "agi": 5, "spd": 8, "aDamPct": 7, "eDamPct": -8, "type": "ring", "id": 1895}, {"name": "Glaciate", "tier": "Rare", "type": "leggings", "quest": "Frost Bite", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "wDef": 30, "eDef": -30, "lvl": 48, "dexReq": 20, "intReq": 25, "ms": 5, "lb": 10, "ref": 20, "dex": 7, "spd": 10, "wDamPct": 6, "tDamPct": 8, "eDefPct": -15, "id": 1897}, {"name": "Giant's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": 250, "aDef": -10, "eDef": 30, "lvl": 76, "strReq": 25, "mdPct": 7, "str": 5, "agi": -3, "spd": -8, "aDamPct": -8, "eDamPct": 7, "type": "ring", "id": 1894}, {"name": "Gnomish Topper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "eDef": 50, "lvl": 75, "agiReq": 35, "sdPct": -10, "mdPct": 5, "xpb": 10, "str": 7, "agi": 4, "spd": 15, "id": 1896}, {"name": "Guard's Uniform", "tier": "Normal", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1150, "lvl": 72, "id": 1898}, {"name": "Greaves of Honor", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "hprPct": 20, "xpb": 30, "ref": 10, "spRegen": 3, "id": 1900}, {"name": "Hallowynn Mask", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "hp": 115, "tDef": 5, "lvl": 22, "xpb": 5, "sdRaw": 15, "mdRaw": 16, "id": 1899}, {"name": "Helmet of Legends", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1000, "lvl": 68, "id": 1901}, {"name": "Helmet of Shimmering Light", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Quest Item", "hp": 1850, "lvl": 74, "id": 1902}, {"name": "Hide of Gregg'r", "tier": "Rare", "type": "chestplate", "quest": "Green Skinned Trouble", "category": "armor", "slots": 1, "drop": "never", "hp": 600, "fDef": 40, "wDef": -50, "aDef": 20, "lvl": 44, "agiReq": 10, "defReq": 15, "sdPct": -10, "mdPct": 10, "expd": 8, "spd": 8, "fDamPct": 12, "id": 1903}, {"name": "Howler Hide", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 430, "fDef": -20, "eDef": 25, "lvl": 41, "strReq": 25, "mdPct": 20, "str": 10, "expd": 8, "spd": -5, "aDamPct": 16, "id": 1908}, {"name": "Inhibitor", "tier": "Fabled", "type": "chestplate", "category": "armor", "drop": "NEVER", "lvl": 100, "mr": -15, "sdPct": -300, "mdPct": -300, "spRegen": -150, "sdRaw": -800, "mdRaw": -1000, "id": 3650}, {"name": "Lazarus' Brace", "tier": "Rare", "quest": "Lazarus Pit", "category": "accessory", "drop": "never", "hp": -250, "lvl": 69, "hprPct": 10, "xpb": 5, "hprRaw": 40, "type": "bracelet", "id": 1904}, {"name": "Mask of the Dark Curse", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 70, "wDef": -5, "tDef": 10, "lvl": 15, "mr": -5, "sdPct": 6, "ls": 7, "ms": 5, "xpb": 10, "spRegen": -5, "id": 1906}, {"name": "Mummy's Rag", "tier": "Legendary", "type": "chestplate", "quest": "Wrath of the Mummy", "thorns": 5, "category": "armor", "drop": "never", "hp": 400, "aDef": 20, "eDef": 20, "lvl": 38, "ref": 5, "spd": -20, "atkTier": 1, "spRegen": -3, "id": 1907}, {"name": "Olux's Prized Bow", "tier": "Legendary", "type": "bow", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-100", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1905}, {"name": "Olux's Prized Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "55-60", "atkSpd": "FAST", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1911}, {"name": "Olux's Prized Spear", "tier": "Legendary", "type": "spear", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "65-90", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1910}, {"name": "Olux's Prized Relik", "tier": "Legendary", "type": "relik", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-64", "fDam": "0-0", "wDam": "40-48", "aDam": "0-0", "tDam": "0-0", "eDam": "70-72", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1909}, {"name": "Olux's Prized Wand", "tier": "Legendary", "type": "wand", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-40", "fDam": "0-0", "wDam": "15-30", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1915}, {"name": "Ominous Wind", "tier": "Rare", "quest": "One Thousand Meters Under", "thorns": 10, "category": "accessory", "drop": "never", "hp": -400, "aDef": 55, "eDef": 55, "lvl": 95, "sdPct": 6, "mdPct": -4, "xpb": 10, "spd": 11, "type": "necklace", "id": 1912}, {"name": "Orc Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 900, "lvl": 64, "id": 1913}, {"name": "Upgraded Orc Mask", "tier": "Unique", "type": "helmet", "quest": "A Fighting Species", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "slots": 3, "drop": "never", "hp": 1100, "lvl": 64, "mdPct": 10, "xpb": 20, "str": 5, "def": 4, "spd": -8, "hprRaw": 65, "id": 1914}, {"name": "Ornate Shadow Cloud", "set": "Ornate Shadow", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1916}, {"name": "Ornate Shadow Cowl", "set": "Ornate Shadow", "tier": "Fabled", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1917}, {"name": "Ornate Shadow Cover", "set": "Ornate Shadow", "tier": "Fabled", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1919}, {"name": "Ornate Shadow Garb", "set": "Ornate Shadow", "tier": "Fabled", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1922}, {"name": "Pendant of Prosperity", "tier": "Rare", "quest": "Fantastic Voyage", "category": "accessory", "drop": "never", "lvl": 90, "lb": 16, "hpBonus": -100, "eSteal": 5, "type": "necklace", "id": 1923}, {"name": "Paw", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "lvl": 70, "agi": 16, "spd": 30, "fDamPct": -6, "wDamPct": -6, "aDamPct": 24, "eDamPct": -18, "id": 1920}, {"name": "Phoenix Prince's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3900, "fDef": 125, "wDef": -125, "aDef": 125, "lvl": 90, "agiReq": 35, "defReq": 35, "hprPct": 27, "agi": 9, "def": 7, "spd": 15, "spRegen": 20, "hprRaw": 205, "fDefPct": 20, "id": 1921}, {"name": "Psychomend Vest", "tier": "Rare", "type": "chestplate", "quest": "Shattered Minds", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "lvl": 70, "hprPct": 19, "sdPct": -15, "mdPct": -5, "int": -3, "hpBonus": 600, "hprRaw": 100, "id": 1925}, {"name": "Purified Helmet of the Legends", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1450, "lvl": 68, "hprPct": 20, "sdPct": 12, "mdPct": 12, "xpb": 10, "lb": 10, "spRegen": 5, "id": 1927}, {"name": "Quartron's Eye", "tier": "Rare", "quest": "Rise of the Quartron", "category": "accessory", "drop": "never", "hp": -60, "lvl": 49, "expd": 10, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "ring", "id": 1924}, {"name": "Quicksand Crossers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 235, "wDef": -20, "aDef": 10, "eDef": 10, "lvl": 34, "agiReq": 15, "lb": 10, "agi": 7, "spd": 9, "eDefPct": 12, "id": 1928}, {"name": "Raging Wind", "tier": "Rare", "quest": "Beyond the Grave", "category": "accessory", "drop": "never", "fDef": -20, "aDef": 20, "lvl": 87, "agiReq": 40, "agi": 5, "spd": 12, "aDamPct": 9, "type": "ring", "id": 1929}, {"name": "Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-22", "fDam": "20-22", "wDam": "20-22", "aDam": "20-22", "tDam": "20-22", "eDam": "20-22", "atkSpd": "NORMAL", "lvl": 45, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1932}, {"name": "Restored Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 2100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 77, "mr": 5, "xpb": 15, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 8, "id": 1934}, {"name": "Randall's Leg Plating", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 450, "lvl": 38, "defReq": 45, "sdPct": -15, "mdPct": -8, "lb": 15, "str": 4, "def": 15, "fDefPct": 17, "id": 1930}, {"name": "Ring of Generosity", "tier": "Rare", "quest": "Memory Paranoia", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 10, "hpBonus": 350, "spRegen": 5, "type": "ring", "id": 1933}, {"name": "Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -280, "lvl": 75, "xpb": 8, "lb": 12, "eSteal": 8, "type": "ring", "id": 1935}, {"name": "Pirate Queen's Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -50, "lvl": 75, "xpb": 6, "lb": 9, "eSteal": 2, "type": "ring", "id": 1936}, {"name": "Royal Blazing Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "def": 3, "hpBonus": 650, "fDamPct": 5, "type": "necklace", "fixID": true, "id": 1939}, {"name": "Royal Cyclone Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "agi": 3, "spd": 10, "aDamPct": 5, "type": "necklace", "fixID": true, "id": 1937}, {"name": "Royal Dusty Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mdPct": 8, "xpb": 5, "lb": 5, "str": 3, "eDamPct": 5, "type": "necklace", "fixID": true, "id": 1938}, {"name": "Royal Shocking Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "thorns": 5, "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "dex": 3, "mdRaw": 25, "tDamPct": 5, "type": "necklace", "fixID": true, "id": 1941}, {"name": "Royal Stormy Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mr": 5, "xpb": 5, "lb": 5, "int": 3, "wDamPct": 5, "type": "necklace", "fixID": true, "id": 1943}, {"name": "Bandit's Bangle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -15, "lvl": 36, "lb": 6, "eSteal": 4, "type": "bracelet", "id": 1942, "set": "Bandit's"}, {"name": "Bandit's Ring", "tier": "Set", "category": "accessory", "drop": "never", "hp": -20, "lvl": 32, "lb": 7, "eSteal": 3, "type": "ring", "id": 1946, "set": "Bandit's"}, {"name": "Builder's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1947, "set": "Builder's"}, {"name": "Bandit's Locket", "tier": "Set", "category": "accessory", "drop": "never", "hp": -10, "lvl": 38, "lb": 4, "eSteal": 5, "type": "necklace", "id": 1945, "set": "Bandit's"}, {"name": "Builder's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1951, "set": "Builder's"}, {"name": "Builder's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1944, "set": "Builder's"}, {"name": "Bandit's Knuckle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -25, "lvl": 34, "lb": 3, "eSteal": 6, "type": "ring", "id": 1940, "set": "Bandit's"}, {"name": "GM's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1949, "set": "GM's"}, {"name": "GM's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1953, "set": "GM's"}, {"name": "GM's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1954, "set": "GM's"}, {"name": "Builder's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1950, "set": "Builder's"}, {"name": "GM's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1948, "set": "GM's"}, {"name": "Sandshooter", "tier": "Rare", "type": "bow", "thorns": 10, "category": "weapon", "slots": 1, "drop": "never", "nDam": "25-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 15, "lb": 15, "str": 9, "wDamPct": -15, "aDamPct": 7, "id": 1952}, {"name": "Sandslasher", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "strReq": 10, "agiReq": 10, "sdPct": -5, "spd": 4, "sdRaw": -20, "mdRaw": 52, "aDamPct": 12, "eDamPct": 10, "id": 1957}, {"name": "Santa Boots", "tier": "Rare", "type": "boots", "quest": "Meaningful Holiday", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "fDef": 20, "lvl": 33, "hprPct": 20, "xpb": 15, "lb": 10, "hpBonus": 55, "aDefPct": 10, "id": 1955}, {"name": "Santa's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 260, "lvl": 32, "xpb": 15, "lb": 15, "hpBonus": 40, "hprRaw": 15, "id": 1958}, {"name": "Seekers Aid", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1959}, {"name": "Shameful Greaves", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "poison": 285, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "ls": 75, "lb": 30, "eSteal": 5, "id": 1961}, {"name": "Sodeta Boots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 3, "drop": "never", "hp": 1150, "lvl": 66, "hprPct": 14, "mr": 10, "sdPct": 22, "ls": 50, "xpb": 24, "id": 1965}, {"name": "Skeletal Legs", "tier": "Rare", "type": "leggings", "quest": "Pit of the Dead", "poison": 41, "category": "armor", "slots": 1, "drop": "never", "hp": 144, "lvl": 23, "ls": 11, "ms": 5, "def": -3, "hpBonus": -30, "id": 1962}, {"name": "Sound Proof Earmuff", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 1500, "tDef": 50, "eDef": -50, "lvl": 73, "id": 1964}, {"name": "Santa Hat", "tier": "Rare", "type": "helmet", "quest": "Craftmas Chaos", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "lvl": 30, "hprPct": 30, "xpb": 15, "lb": 15, "hpBonus": 25, "wDefPct": 10, "id": 1956}, {"name": "Shadow Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "1-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "dexReq": 10, "lb": 15, "dex": 10, "agi": 4, "spd": 10, "hpBonus": -60, "id": 1963}, {"name": "Spiketop", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NEVER", "restrict": "Untradable", "fDef": 3, "lvl": 9, "hpBonus": 92, "id": 3546}, {"name": "Sunblight Boots", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1650, "wDef": 80, "aDef": -90, "tDef": -90, "eDef": 100, "lvl": 76, "id": 1968}, {"name": "Santa's Pants", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 250, "wDef": 25, "tDef": -20, "lvl": 31, "hprPct": 20, "xpb": 10, "lb": 15, "hpBonus": 35, "fDefPct": 5, "id": 1960}, {"name": "Temporal Cage", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 20, "ms": 10, "spd": 10, "hprRaw": -7, "sdRaw": 20, "mdRaw": 26, "tDamPct": 10, "id": 1967}, {"name": "Spear of Testiness", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "90-90", "fDam": "1-10", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 3651}, {"name": "The Juggernaut", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "hp": 275, "fDef": 10, "wDef": -10, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 33, "defReq": 20, "lb": 10, "def": 9, "spd": -15, "hpBonus": 77, "id": 1969}, {"name": "The Queen's Headpiece", "tier": "Rare", "type": "helmet", "quest": "Royal Trials", "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "aDef": 100, "tDef": 75, "lvl": 98, "dexReq": 25, "agiReq": 50, "ms": 5, "agi": 9, "spd": 19, "eSteal": 7, "mdRaw": 260, "aDamPct": 12, "tDamPct": 12, "fDefPct": -25, "eDefPct": -25, "id": 1966}, {"name": "Thoracic", "tier": "Rare", "type": "chestplate", "quest": "The Sewers of Ragni", "category": "armor", "slots": 1, "drop": "never", "hp": 45, "aDef": -2, "tDef": 5, "lvl": 9, "xpb": 7, "lb": -2, "dex": 7, "mdRaw": 13, "tDamPct": 6, "id": 1971}, {"name": "Thunder Relic Dagger", "displayName": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "22-99", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "22-99", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 30, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 1972}, {"name": "Thunder Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "dexReq": 15, "ms": 5, "xpb": 15, "lb": 15, "dex": 5, "mdRaw": 59, "tDamPct": 20, "tDefPct": 10, "id": 1974}, {"name": "Treasure Boots", "tier": "Unique", "type": "boots", "quest": "Underwater", "category": "armor", "slots": 1, "drop": "never", "hp": 24, "lvl": 7, "xpb": 5, "lb": 20, "id": 1973}, {"name": "Trick", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": -10, "expd": 10, "type": "ring", "id": 1975, "set": "Hallowynn 2016"}, {"name": "Treat", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": 10, "expd": -10, "type": "ring", "id": 1970, "set": "Hallowynn 2016"}, {"name": "Vandalizer", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "50-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 10, "ls": 39, "lb": 15, "expd": 10, "eSteal": 15, "wDefPct": -15, "id": 1980}, {"name": "Troms Kid Badge", "tier": "Rare", "quest": "Out of my Mind\u058e", "category": "accessory", "drop": "never", "lvl": 63, "xpb": 4, "lb": 7, "spd": 7, "spRegen": 4, "hprRaw": 19, "type": "necklace", "id": 1976}, {"name": "Vindicator", "tier": "Fabled", "quest": "The Mercenary", "majorIds": ["MAGNET"], "category": "accessory", "drop": "never", "hp": 50, "lvl": 30, "xpb": 7, "lb": 7, "type": "bracelet", "id": 1979}, {"name": "Waist Apron", "tier": "Rare", "type": "leggings", "quest": "Infested Plants", "thorns": 8, "category": "armor", "drop": "NEVER", "hp": 30, "lvl": 7, "xpb": 5, "expd": 8, "id": 3547}, {"name": "Dodegar's Ultimate Weapon", "tier": "Legendary", "type": "dagger", "quest": "The Ultimate Weapon", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "id": 1978}, {"name": "Water Relic Dagger", "displayName": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 1977}, {"name": "Water Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-60", "fDam": "0-0", "wDam": "50-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "intReq": 15, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 5, "wDamPct": 10, "wDefPct": 20, "id": 1982}, {"name": "Wynnter Fair 2017 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1981}, {"name": "Wynnter Fair 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1983}, {"name": "Wynnterfest 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 2109}, {"name": "Nacreous", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 51, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "xpb": 9, "lb": 9, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1988}, {"name": "Yellow Content Cap of Fame", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1986}, {"name": "Necklace of a Thousand Storms", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -300, "aDef": 60, "lvl": 98, "agiReq": 50, "hprPct": -20, "str": -5, "agi": 10, "spd": 15, "fDamPct": -15, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "type": "necklace", "id": 1985}, {"name": "Naragath's Hoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "fDef": 60, "wDef": -100, "tDef": 60, "lvl": 58, "dexReq": 30, "defReq": 30, "dex": 8, "int": -6, "def": 8, "expd": 10, "spRegen": -20, "fDamPct": 15, "wDamPct": -20, "tDamPct": 15, "wDefPct": -20, "id": 1991}, {"name": "Naga Viper", "tier": "Rare", "type": "leggings", "poison": 275, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "lvl": 56, "strReq": 10, "agiReq": 10, "agi": 9, "spd": 9, "hpBonus": -125, "eSteal": 2, "eDamPct": 12, "aDefPct": -10, "id": 1984}, {"name": "Namazu", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "240-320", "fDam": "0-0", "wDam": "328-455", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 30, "intReq": 25, "str": 10, "spd": -7, "atkTier": -3, "mdRaw": 350, "eDamPct": 18, "tDefPct": -10, "id": 1989}, {"name": "Narcissist", "tier": "Fabled", "type": "relik", "majorIds": ["GEOCENTRISM"], "thorns": 50, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "225-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "600-600", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 70, "sdPct": -20, "mdPct": -20, "ref": 65, "int": -5, "spd": 30, "hprRaw": 175, "eDefPct": 25, "id": 3648}, {"name": "Narima Pasukan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 500, "lvl": 48, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 9, "wDamPct": 9, "aDamPct": 9, "tDamPct": 9, "eDamPct": 9, "id": 1994}, {"name": "Nature's Gift", "tier": "Legendary", "poison": 240, "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 20, "aDef": 20, "eDef": 20, "lvl": 61, "strReq": 30, "intReq": 20, "xpb": 5, "spRegen": 8, "hprRaw": 35, "fDefPct": -18, "type": "necklace", "id": 1987}, {"name": "Nebulous", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 99, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 9, "sdRaw": 45, "type": "bracelet", "id": 1995}, {"name": "Needle Cuff", "tier": "Unique", "thorns": 11, "category": "accessory", "drop": "lootchest", "lvl": 81, "dexReq": 20, "mdRaw": 13, "type": "bracelet", "id": 1993}, {"name": "Cancer", "displayName": "Necrosis", "tier": "Legendary", "type": "helmet", "poison": 4000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "aDef": -150, "tDef": 100, "lvl": 98, "dexReq": 120, "sdPct": -1000, "mdPct": -1000, "ls": 385, "ms": 10, "atkTier": 3, "mdRaw": -1000, "id": 1990}, {"name": "Neolithic", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "lvl": 20, "strReq": 5, "defReq": 10, "hprPct": 20, "sdPct": -10, "mdPct": 5, "str": 3, "def": 7, "hpBonus": 80, "eDamPct": 12, "id": 1997}, {"name": "Nemract's Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "lb": 5, "id": 1992}, {"name": "Neodymium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 25, "tDef": 6, "eDef": -2, "lvl": 6, "hprRaw": 4, "sdRaw": 4, "mdRaw": 5, "id": 1998}, {"name": "Nemract's Ruin", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 20, "aDef": -10, "tDef": -10, "eDef": 20, "lvl": 27, "strReq": 10, "intReq": 5, "sdPct": 12, "int": 7, "mdRaw": 52, "fDamPct": -6, "wDamPct": 10, "tDamPct": -6, "eDamPct": 12, "id": 1999}, {"name": "Nemract's Rage", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 25, "mr": 10, "sdPct": 23, "tDefPct": -25, "id": 1996}, {"name": "Neon", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "bracelet", "id": 2001}, {"name": "Nephilim", "tier": "Rare", "type": "helmet", "sprint": 16, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "lvl": 88, "dexReq": 45, "agiReq": 55, "ls": 180, "ms": 10, "ref": 20, "dex": 8, "agi": 7, "spd": 20, "atkTier": 1, "aDamPct": 15, "tDamPct": 15, "id": 2002}, {"name": "Nepta Floodbringer", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "70-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 80, "mr": 5, "sdPct": 20, "int": 13, "hpBonus": -1750, "wDamPct": 15, "tDamPct": -100, "tDefPct": -30, "id": 2000}, {"name": "Nerium Great Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "150-230", "tDam": "0-0", "eDam": "150-230", "atkSpd": "VERY_SLOW", "lvl": 85, "strReq": 35, "agiReq": 35, "mdPct": 15, "str": 10, "spd": -16, "mdRaw": 220, "aDefPct": 12, "eDefPct": 12, "id": 2014}, {"name": "Nesaak's Shadow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 730, "wDef": 50, "tDef": -30, "lvl": 54, "dexReq": 10, "agiReq": 10, "ls": 65, "lb": 8, "eSteal": 5, "aDamPct": 5, "tDamPct": 5, "id": 2003}, {"name": "Nesaak's Will", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "46-68", "fDam": "0-0", "wDam": "21-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "strReq": 10, "intReq": 10, "xpb": 11, "spd": -5, "spRegen": 3, "eDamPct": 10, "wDefPct": 10, "id": 2004}, {"name": "Nerium Long Spear", "tier": "Unique", "type": "spear", "poison": 360, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "77-97", "tDam": "0-0", "eDam": "77-97", "atkSpd": "VERY_SLOW", "lvl": 59, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 10, "str": 8, "spd": -12, "aDefPct": 10, "eDefPct": 10, "id": 2005}, {"name": "Nerium Old Spear", "tier": "Unique", "type": "spear", "poison": 180, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "24-30", "tDam": "0-0", "eDam": "24-30", "atkSpd": "VERY_SLOW", "lvl": 39, "strReq": 15, "agiReq": 15, "sdPct": -10, "mdPct": 5, "str": 5, "spd": -8, "aDefPct": 8, "eDefPct": 8, "id": 2006}, {"name": "Nether's Deep", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "40-50", "wDam": "0-0", "aDam": "0-0", "tDam": "20-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "dexReq": 25, "defReq": 35, "hprPct": 23, "ls": 225, "ms": -5, "hpBonus": 1154, "spRegen": -8, "wDamPct": -20, "tDamPct": 12, "fDefPct": 12, "wDefPct": -20, "id": 2010}, {"name": "Nether's Reach", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 100, "wDef": -80, "tDef": 100, "eDef": -120, "lvl": 95, "dexReq": 20, "defReq": 40, "hprPct": 20, "str": 8, "hpBonus": 450, "hprRaw": 140, "mdRaw": 175, "fDamPct": 7, "wDamPct": -15, "tDamPct": 7, "id": 2008}, {"name": "Nether's Scar", "tier": "Legendary", "type": "boots", "poison": 525, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 140, "aDef": -140, "tDef": 140, "eDef": -140, "lvl": 95, "dexReq": 50, "defReq": 50, "hprPct": 140, "mdPct": 10, "dex": 12, "def": 12, "expd": 15, "atkTier": 1, "hprRaw": -571, "fDamPct": 10, "tDamPct": 10, "id": 2007}, {"name": "Neuron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2150, "wDef": 100, "tDef": -150, "lvl": 95, "dexReq": 50, "intReq": 20, "mr": 10, "sdPct": 20, "dex": 7, "wDamPct": 11, "tDamPct": 11, "id": 2011}, {"name": "Neutrino", "tier": "Rare", "type": "leggings", "poison": -3000, "thorns": 23, "category": "armor", "slots": 6, "drop": "NORMAL", "hp": 3575, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 30, "ref": 23, "expd": -100, "fDefPct": 23, "wDefPct": 23, "aDefPct": 23, "tDefPct": 23, "eDefPct": 23, "id": 2015}, {"name": "Nettle", "tier": "Unique", "poison": 40, "category": "accessory", "drop": "lootchest", "lvl": 25, "strReq": 5, "hprPct": -4, "eDamPct": 4, "type": "necklace", "id": 2009}, {"name": "Nehza", "displayName": "Nezha", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": -70, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 83, "defReq": 90, "fDamPct": 7, "type": "ring", "id": 2013}, {"name": "Niflheim", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "110-120", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "intReq": 50, "mr": 10, "ms": -10, "ref": 20, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 2012}, {"name": "NightMail", "displayName": "Nightmail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": -3, "aDef": 3, "tDef": 3, "eDef": -3, "lvl": 16, "dexReq": 3, "agiReq": 3, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "aDamPct": 5, "tDamPct": 5, "id": 2016}, {"name": "Night Rush", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "182-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "agiReq": 50, "agi": 30, "spd": 25, "aDamPct": 35, "eDamPct": -20, "fDefPct": 20, "eDefPct": -20, "id": 2019}, {"name": "Nighthawk", "tier": "Fabled", "type": "helmet", "majorIds": ["HAWKEYE"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "tDef": -125, "lvl": 94, "classReq": "Archer", "mdPct": -20, "spd": 12, "hpBonus": -1000, "sdRaw": 175, "id": 2021}, {"name": "Nightlife", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-94", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 32, "defReq": 32, "hprPct": -20, "mdPct": 11, "ls": 240, "def": 11, "spd": 11, "spRegen": 11, "fDamPct": 35, "id": 2025}, {"name": "NightVest", "displayName": "Nightvest", "tier": "Unique", "type": "chestplate", "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2150, "fDef": -100, "aDef": 175, "lvl": 93, "agiReq": 50, "agi": 20, "def": -15, "spd": 15, "sprintReg": 10, "id": 2018}, {"name": "Nimble Fingers", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 41, "dexReq": 25, "mdPct": -4, "lb": 5, "dex": 4, "eSteal": 4, "type": "bracelet", "id": 2020}, {"name": "Nightshade", "tier": "Unique", "poison": 400, "category": "accessory", "drop": "lootchest", "fDef": -20, "lvl": 82, "hprRaw": -15, "type": "ring", "id": 2028}, {"name": "Nipun", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 27, "lvl": 7, "sdPct": 5, "mdPct": 5, "dex": 4, "id": 2029}, {"name": "Nightling", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "tDef": 80, "eDef": -100, "lvl": 76, "dexReq": 35, "mdPct": 5, "dex": 8, "agi": 3, "spd": 12, "mdRaw": 125, "tDamPct": 8, "eDamPct": -20, "id": 2022}, {"name": "Nimbus", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "33-88", "aDam": "55-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "intReq": 25, "agiReq": 30, "mr": 5, "xpb": 8, "int": 5, "agi": 8, "spd": 12, "fDamPct": -10, "aDamPct": 10, "id": 2024}, {"name": "Nivla's Arch", "tier": "Unique", "type": "bow", "poison": 250, "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-136", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-96", "atkSpd": "VERY_SLOW", "lvl": 45, "spd": -10, "eDamPct": 5, "id": 2026}, {"name": "Nitre", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "fDef": -20, "wDef": -30, "lvl": 55, "dexReq": 15, "defReq": 30, "hprPct": -15, "sdPct": 11, "mdPct": 5, "def": 5, "expd": 45, "wDamPct": -6, "id": 2023}, {"name": "Noble Phantasm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "85-145", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "defReq": 55, "def": 30, "hpBonus": 2700, "hprRaw": 153, "fDefPct": -60, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2027}, {"name": "Noise Stream", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-1", "wDam": "1-1", "aDam": "1-160", "tDam": "1-1", "eDam": "1-1", "atkSpd": "VERY_FAST", "lvl": 94, "agiReq": 55, "ls": 210, "ms": 5, "fDamPct": 10, "wDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fDefPct": -10, "wDefPct": -10, "tDefPct": -10, "eDefPct": -10, "id": 2030}, {"name": "Noisemaker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": -15, "aDef": 25, "eDef": -15, "lvl": 51, "agiReq": 35, "sdPct": 9, "mdPct": 9, "xpb": 12, "spd": 5, "hpBonus": -120, "aDamPct": 13, "id": 2031}, {"name": "Noctilucent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "15-25", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "intReq": 17, "agiReq": 17, "sdPct": 6, "mdPct": -8, "spd": 8, "wDamPct": 6, "aDamPct": 6, "id": 2033}, {"name": "Nordstrom", "tier": "Unique", "type": "wand", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-38", "atkSpd": "SLOW", "lvl": 49, "strReq": 15, "mdPct": 9, "agi": 5, "spd": 7, "aDamPct": 12, "wDefPct": -8, "id": 2045}, {"name": "Nightstar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 45, "mr": 5, "sdPct": 12, "xpb": 8, "spRegen": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "id": 2017}, {"name": "Nucleoken", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "sdPct": 5, "xpb": 8, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 2034}, {"name": "Nuance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -50, "eDef": -50, "lvl": 90, "dexReq": 55, "agiReq": 55, "mr": 5, "sdPct": 22, "ms": 5, "dex": 8, "agi": 8, "spd": 15, "mdRaw": 190, "aDefPct": -25, "tDefPct": -25, "sprintReg": 12, "id": 2032}, {"name": "Noun", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-360", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 64, "dexReq": 50, "ms": 5, "str": -7, "dex": 9, "tDamPct": 16, "eDamPct": -32, "id": 2037}, {"name": "Breakdown", "displayName": "Nychthemeron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2375, "wDef": -50, "tDef": -50, "eDef": -50, "lvl": 93, "strReq": 65, "dexReq": 65, "sdPct": 10, "mdPct": 70, "ls": 190, "ms": 10, "str": 10, "dex": 10, "atkTier": -10, "spRegen": -15, "tDamPct": 15, "eDamPct": 15, "id": 3595}, {"name": "Nutrition", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "necklace", "id": 2035}, {"name": "Nymeria", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "dexReq": 5, "agi": 3, "spd": 5, "id": 2040}, {"name": "Oak Wood Relik", "tier": "Normal", "type": "relik", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2038}, {"name": "Oak Wood Spear", "tier": "Normal", "type": "spear", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2041}, {"name": "Oak Wood Shears", "displayName": "Oak Wood Dagger", "tier": "Normal", "type": "dagger", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 2039}, {"name": "Oak Wood Bow", "tier": "Normal", "type": "bow", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2036}, {"name": "Oasis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-37", "fDam": "0-0", "wDam": "108-128", "aDam": "0-0", "tDam": "0-0", "eDam": "108-128", "atkSpd": "VERY_SLOW", "lvl": 51, "strReq": 18, "intReq": 18, "mr": 5, "mdPct": -12, "lb": 12, "spd": -12, "hprRaw": 24, "id": 2044}, {"name": "Oak Wood Stick", "displayName": "Oak Wood Wand", "tier": "Normal", "type": "wand", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2042}, {"name": "Obsidian", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "38-52", "atkSpd": "SLOW", "lvl": 41, "strReq": 30, "sdPct": -5, "mdPct": 8, "lb": 8, "str": 5, "spd": -6, "fDamPct": -20, "eDamPct": 8, "id": 2043}, {"name": "Ocean Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-20", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "intReq": 25, "mr": 5, "sdPct": 12, "def": -3, "sdRaw": 25, "wDamPct": 5, "tDamPct": -10, "id": 2048}, {"name": "Octahedron", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "10-40", "wDam": "15-35", "aDam": "5-45", "tDam": "0-50", "eDam": "20-30", "atkSpd": "FAST", "lvl": 91, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 16, "mdPct": -32, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "id": 2049}, {"name": "Obsidian Spire", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "105-115", "fDam": "140-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-135", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 20, "defReq": 25, "mdPct": 8, "spd": -8, "hpBonus": 500, "fDefPct": 36, "wDefPct": -24, "eDefPct": 18, "id": 2046}, {"name": "Ocelot Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 27, "mr": -5, "sdPct": 8, "mdPct": 8, "spd": 12, "id": 2047}, {"name": "October Fires", "tier": "Legendary", "type": "relik", "thorns": 55, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "730-740", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 70, "defReq": 65, "ls": 130, "ms": 5, "def": 12, "expd": 40, "hpBonus": -828, "hprRaw": 90, "wDamPct": -30, "id": 2050}, {"name": "Odyssey", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 15, "ls": -75, "ms": -5, "spd": 15, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "id": 2051}, {"name": "Ogre Faceplate", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "aDef": -110, "eDef": 75, "lvl": 83, "strReq": 30, "dexReq": 25, "mdPct": 15, "str": 9, "atkTier": -4, "mdRaw": 750, "tDamPct": 5, "eDamPct": 5, "id": 2053}, {"name": "Ohms' Wish", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 25, "agiReq": 25, "sdPct": 15, "ms": 5, "dex": 9, "agi": 7, "spd": 10, "spRegen": 10, "aDamPct": 20, "eDamPct": -20, "aDefPct": 30, "id": 2052}, {"name": "Oktavist", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "190-250", "fDam": "445-495", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 50, "mdPct": 10, "def": 16, "expd": 20, "spd": -8, "hprRaw": 150, "mdRaw": 560, "tDefPct": -15, "id": 2054}, {"name": "Okit", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 55, "fDef": 10, "wDef": -2, "lvl": 42, "fDamPct": 6, "type": "ring", "id": 2056}, {"name": "Omnitread Boots", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 90, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 15, "agiReq": 10, "spd": 20, "id": 2062}, {"name": "Old Keeper's Ring", "tier": "Legendary", "majorIds": ["GREED"], "category": "accessory", "drop": "lootchest", "hp": -109, "lvl": 82, "lb": 22, "hpBonus": -300, "hprRaw": -50, "type": "ring", "id": 2055}, {"name": "Old Maple Spear", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "57-80", "atkSpd": "SLOW", "lvl": 64, "strReq": 35, "mdPct": 10, "mdRaw": 105, "eDefPct": 15, "id": 2060}, {"name": "Olive", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": -30, "wDef": 40, "eDef": 40, "lvl": 98, "strReq": 40, "intReq": 30, "sdPct": 9, "int": 5, "eDamPct": 6, "type": "ring", "id": 2058}, {"name": "Oni Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 240, "wDef": -15, "tDef": 20, "lvl": 30, "hprPct": -15, "mdPct": 10, "ls": 19, "ms": 5, "mdRaw": 39, "tDamPct": 8, "wDefPct": -15, "id": 2059}, {"name": "Omega", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "32-116", "eDam": "32-116", "atkSpd": "SUPER_FAST", "lvl": 93, "strReq": 40, "dexReq": 40, "hprPct": -40, "sdPct": 15, "mdPct": 15, "int": -11, "agi": -11, "def": -11, "expd": -50, "sdRaw": 115, "mdRaw": 150, "id": 2057}, {"name": "One Thousand Voices", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-155", "fDam": "0-0", "wDam": "0-0", "aDam": "145-155", "tDam": "145-155", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 44, "agiReq": 44, "dex": 8, "agi": 8, "expd": 100, "hpBonus": -1250, "sdRaw": 150, "fDamPct": 45, "wDamPct": -25, "eDamPct": -25, "spPct3": -23, "id": 2063}, {"name": "Onion Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 12, "xpb": 7, "lb": 7, "type": "ring", "id": 2064}, {"name": "Opalite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "lvl": 62, "intReq": 45, "mr": 5, "sdPct": 10, "xpb": 10, "ref": 10, "spRegen": 10, "fDefPct": -5, "wDefPct": -2, "aDefPct": -5, "tDefPct": -5, "eDefPct": -5, "id": 2066}, {"name": "Ophiuchus", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "fDef": 100, "wDef": 100, "eDef": -200, "lvl": 98, "intReq": 70, "defReq": 70, "mr": 10, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "tDamPct": -20, "tDefPct": -40, "eDefPct": -15, "id": 2065}, {"name": "Onyx", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-70", "fDam": "10-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-35", "atkSpd": "SLOW", "lvl": 51, "strReq": 15, "defReq": 15, "mdPct": 8, "str": 5, "def": 5, "hpBonus": 300, "wDefPct": -12, "id": 2067}, {"name": "Orient", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-130", "wDam": "85-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "intReq": 30, "defReq": 35, "hprPct": 10, "mr": 10, "sdPct": -15, "mdPct": -15, "xpb": 15, "hprRaw": 70, "id": 2070}, {"name": "Opulenity", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 11, "xpb": 10, "lb": 25, "eSteal": 5, "id": 2068}, {"name": "Ormus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": -75, "aDef": 55, "tDef": 55, "eDef": -45, "lvl": 61, "dexReq": 45, "agiReq": 25, "sdPct": 6, "xpb": 8, "spd": 12, "sdRaw": 55, "aDamPct": 8, "tDamPct": 10, "id": 2086}, {"name": "Ormrod's Isolation", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": 5, "eDef": 10, "lvl": 33, "strReq": 5, "agiReq": 8, "mdPct": 6, "spd": 8, "hprRaw": -7, "aDamPct": 4, "type": "bracelet", "id": 2069}, {"name": "Orographine", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1350, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 73, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": -15, "mdPct": -15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": -12, "hpBonus": 400, "id": 2071}, {"name": "Ornithopter", "tier": "Fabled", "type": "helmet", "majorIds": ["FREERUNNER"], "sprint": -115, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "lvl": 86, "strReq": 35, "agiReq": 70, "str": 15, "spd": 20, "mdRaw": 330, "sprintReg": 320, "id": 3608}, {"name": "Ouroboros", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "lvl": 86, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "ls": 110, "ms": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2072}, {"name": "Outburst", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -55, "eDef": -55, "lvl": 72, "dexReq": 45, "agiReq": 45, "mr": -5, "sdPct": 13, "mdPct": 13, "dex": 9, "agi": 9, "aDamPct": 16, "tDamPct": 16, "id": 2108}, {"name": "Outrage", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": 100, "lvl": 86, "strReq": 70, "mdPct": 50, "ls": 210, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": 5, "id": 3619}, {"name": "Overcharger", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "325-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "dexReq": 70, "ls": -220, "ms": 20, "expd": 25, "spd": 10, "hpBonus": -700, "id": 2073}, {"name": "Overdrive", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "104-112", "aDam": "0-0", "tDam": "104-112", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 44, "intReq": 44, "sdPct": 1150, "mdPct": -35, "ms": 5, "atkTier": 7, "hprRaw": -100, "sdRaw": 940, "wDamPct": 10, "tDamPct": 10, "id": 2074}, {"name": "Overclocker", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "39-69", "aDam": "0-0", "tDam": "39-69", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 68, "dexReq": 45, "intReq": 45, "sdPct": 20, "ms": 10, "fDefPct": -21, "aDefPct": -21, "eDefPct": -21, "id": 2076}, {"name": "Overgrown", "tier": "Rare", "type": "wand", "poison": 650, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "NORMAL", "lvl": 96, "strReq": 55, "mr": 5, "str": 10, "spd": -25, "fDamPct": -40, "eDamPct": 19, "eDefPct": 15, "id": 2075}, {"name": "Oxalate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-0", "wDam": "20-44", "aDam": "0-0", "tDam": "0-0", "eDam": "20-44", "atkSpd": "SLOW", "lvl": 45, "strReq": 20, "intReq": 20, "hprPct": 16, "str": 5, "int": 5, "wDamPct": 9, "tDamPct": -2, "aDefPct": -15, "eDefPct": 9, "id": 2077}, {"name": "Oxford", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "hprPct": -15, "xpb": 12, "lb": 10, "ref": 10, "mdRaw": 39, "tDamPct": 10, "id": 2079}, {"name": "Overly Ironed Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 610, "lvl": 51, "lb": 10, "expd": 10, "id": 2078}, {"name": "Oxidation", "tier": "Unique", "type": "leggings", "poison": 45, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 27, "agiReq": 10, "hprPct": -10, "xpb": 3, "spd": 8, "aDamPct": 6, "id": 2080}, {"name": "Oyster", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 15, "lvl": 45, "intReq": 15, "lb": 6, "wDamPct": 5, "wDefPct": 4, "type": "necklace", "id": 2091}, {"name": "Ozoth's Breath", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 25, "lvl": 49, "defReq": 25, "dex": 5, "type": "ring", "id": 2083}, {"name": "Pacemaker", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": -10, "wDef": -10, "aDef": -10, "tDef": 50, "eDef": -20, "lvl": 51, "dexReq": 20, "xpb": 8, "spd": 6, "hpBonus": 155, "tDamPct": 15, "tDefPct": 12, "id": 2084}, {"name": "Pacifist", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 20, "eDef": 45, "lvl": 74, "intReq": 20, "agiReq": 25, "hprPct": 15, "mr": 10, "ls": -185, "ms": -10, "lb": 12, "spd": 21, "id": 2082}, {"name": "Paladin's Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-22", "fDam": "33-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-55", "atkSpd": "VERY_FAST", "lvl": 69, "strReq": 20, "defReq": 20, "str": 8, "def": 8, "mdRaw": 57, "wDefPct": -12, "id": 2085}, {"name": "Palette", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-90", "fDam": "15-15", "wDam": "15-15", "aDam": "15-15", "tDam": "15-15", "eDam": "15-15", "atkSpd": "NORMAL", "lvl": 59, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "spd": 10, "hprRaw": 50, "sdRaw": 50, "mdRaw": 65, "id": 2095}, {"name": "Pandemic", "tier": "Rare", "type": "leggings", "poison": 575, "category": "armor", "drop": "NORMAL", "hp": 1650, "lvl": 71, "hprPct": -25, "mr": -5, "ls": 135, "ms": 5, "expd": 10, "id": 2087}, {"name": "Pandemonium", "tier": "Legendary", "quest": "???\u058e", "majorIds": ["MADNESS"], "category": "accessory", "drop": "lootchest", "hp": -300, "fDef": -200, "wDef": -200, "aDef": -200, "tDef": -200, "eDef": -200, "lvl": 99, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 16, "mdPct": 16, "ls": -60, "spd": 7, "hpBonus": -1000, "spRegen": -120, "sdRaw": 55, "mdRaw": 35, "type": "bracelet", "id": 2089}, {"name": "Pangea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "80-110", "aDam": "0-0", "tDam": "0-0", "eDam": "80-110", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 18, "intReq": 18, "sdPct": 12, "mdPct": 12, "spd": -10, "wDamPct": 8, "eDamPct": 8, "id": 2090}, {"name": "Panic Attack", "tier": "Fabled", "majorIds": ["FREERUNNER"], "category": "accessory", "drop": "lootchest", "hp": -400, "lvl": 78, "strReq": 25, "dexReq": 30, "ls": 105, "str": 2, "dex": 3, "spd": 12, "spRegen": -12, "type": "bracelet", "id": 3582}, {"name": "Panorama", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 150, "lvl": 30, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 2088}, {"name": "Papyrus", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1000, "fDef": -50, "aDef": 90, "lvl": 77, "mr": 10, "xpb": 30, "sdRaw": 140, "id": 2094}, {"name": "Paradise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "xpb": 5, "lb": 5, "id": 2093}, {"name": "Ozone", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "21-43", "tDam": "0-64", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 51, "dexReq": 20, "agiReq": 20, "def": -10, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fDefPct": -20, "tDefPct": 20, "id": 2081}, {"name": "One For All", "displayName": "Paradox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2200, "fDef": -250, "aDef": 100, "tDef": -250, "eDef": 100, "lvl": 98, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "hprPct": -150, "sdPct": 24, "ls": 235, "ms": 20, "str": 5, "dex": 5, "int": -99, "agi": 5, "def": 5, "mdRaw": 260, "fDefPct": 50, "aDefPct": -50, "tDefPct": 50, "eDefPct": -50, "id": 2061}, {"name": "Paradigm Shift", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-17", "wDam": "11-17", "aDam": "11-17", "tDam": "11-17", "eDam": "11-17", "atkSpd": "FAST", "lvl": 54, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 2096}, {"name": "Parang", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "90-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "strReq": 30, "agiReq": 30, "str": 8, "spd": 9, "sdRaw": -100, "eDamPct": 15, "fDefPct": -20, "id": 2097}, {"name": "Paragon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-74", "fDam": "0-0", "wDam": "23-32", "aDam": "17-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 62, "intReq": 20, "agiReq": 20, "sdPct": 12, "mdPct": -26, "spd": 14, "tDefPct": -15, "id": 2101}, {"name": "Passus Lux", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": 120, "tDef": 120, "eDef": -110, "lvl": 73, "dexReq": 25, "intReq": 25, "mr": 10, "ms": 5, "ref": 20, "spd": -5, "spRegen": 8, "fDamPct": -10, "tDamPct": 15, "wDefPct": 30, "eDefPct": -10, "id": 2098}, {"name": "Particle Plating", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "wDef": 80, "aDef": -40, "tDef": 60, "eDef": -100, "lvl": 73, "dexReq": 40, "intReq": 45, "ms": 5, "dex": 7, "int": 7, "sdRaw": 85, "aDamPct": -12, "eDefPct": -12, "id": 2099}, {"name": "Pebble Mesh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 190, "aDef": -10, "eDef": 15, "lvl": 37, "strReq": 15, "mdPct": 10, "xpb": 11, "str": 5, "mdRaw": 49, "eDamPct": 7, "wDefPct": -5, "id": 2104}, {"name": "Pedometer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 75, "agi": 8, "type": "bracelet", "id": 3593}, {"name": "Pass Band", "tier": "Unique", "poison": 475, "thorns": 10, "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "ref": 10, "type": "bracelet", "id": 2100}, {"name": "Penance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1450, "fDef": 50, "wDef": 50, "lvl": 75, "hprPct": 12, "mr": 5, "sdPct": -15, "mdPct": -15, "xpb": 20, "spRegen": 12, "hprRaw": 50, "id": 2105}, {"name": "Pencuri", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "defReq": 35, "ls": 340, "def": 13, "hpBonus": 1400, "eSteal": 5, "fDamPct": 15, "id": 2103}, {"name": "Pelier", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "aDef": -40, "tDef": 20, "lvl": 42, "ls": 47, "lb": 25, "spRegen": 10, "mdRaw": 80, "eDefPct": 20, "id": 2102}, {"name": "Perfumed Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": -20, "lvl": 32, "intReq": 2, "wDamPct": 15, "id": 2111}, {"name": "Perun's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -75, "aDef": 50, "tDef": 50, "lvl": 59, "dexReq": 40, "agiReq": 50, "mr": -5, "sdPct": 8, "dex": 8, "agi": 8, "spd": 14, "fDamPct": -52, "aDamPct": 14, "tDamPct": 14, "fDefPct": -26, "id": 2106}, {"name": "Petrichor", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 98, "strReq": 30, "agiReq": 30, "sdPct": 12, "ms": 10, "str": 7, "agi": 7, "wDamPct": 10, "aDamPct": 10, "eDamPct": 10, "id": 2110}, {"name": "Petrified Horror", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "265-390", "eDam": "245-325", "atkSpd": "VERY_SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "mr": -20, "sdPct": 58, "mdPct": -480, "ms": 15, "str": 13, "expd": 60, "spd": -38, "mdRaw": 1050, "aDefPct": -35, "id": 2112}, {"name": "Phalanx", "tier": "Rare", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": 75, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 78, "defReq": 55, "agi": -4, "def": 13, "spd": -15, "id": 2115}, {"name": "Petrified Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 68, "defReq": 25, "hprPct": 9, "mdPct": -4, "def": 7, "spd": -5, "hpBonus": 500, "hprRaw": 65, "fDefPct": 25, "eDefPct": 25, "id": 2107}, {"name": "Phantasmagoria", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2100, "fDef": -150, "aDef": 70, "tDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "mr": 5, "sdPct": 31, "ls": -355, "ms": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": -99, "mdRaw": 200, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "fDefPct": -30, "id": 3584}, {"name": "Petrified Stick", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "str": 4, "spd": -5, "id": 2113}, {"name": "Philophilia", "tier": "Rare", "type": "leggings", "thorns": -30, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3400, "lvl": 99, "hprPct": 25, "sdPct": -15, "mdPct": -15, "ls": 245, "ref": -30, "int": -10, "hpBonus": 769, "hprRaw": 165, "id": 2117}, {"name": "Phantom Blade", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-18", "aDam": "13-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "intReq": 10, "agiReq": 10, "mr": 5, "sdPct": 8, "mdPct": -10, "ms": 5, "agi": 7, "def": -5, "sdRaw": 25, "id": 2151}, {"name": "Philosopher", "tier": "Fabled", "type": "leggings", "majorIds": ["PEACEFUL_EFFIGY"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": 15, "lvl": 36, "classReq": "Shaman", "intReq": 20, "hprPct": 15, "sdPct": -8, "mdPct": -12, "ref": 45, "def": 4, "spd": -10, "wDamPct": 15, "id": 3552}, {"name": "Phantom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-55", "tDam": "9-33", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 40, "dexReq": 19, "agiReq": 19, "str": -8, "dex": 8, "agi": 8, "def": -8, "mdRaw": 29, "id": 2114}, {"name": "Philophobia", "tier": "Rare", "type": "boots", "poison": 255, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 840, "lvl": 54, "mdPct": 10, "ref": 10, "spRegen": -3, "id": 2124}, {"name": "Phosphene", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 12, "mdPct": 12, "sdRaw": 30, "mdRaw": 39, "id": 2122}, {"name": "Phoenix", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-18", "fDam": "12-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "defReq": 30, "hprPct": 15, "sdPct": -4, "hpBonus": 100, "hprRaw": 15, "fDamPct": 7, "id": 2116}, {"name": "Phoenix Wing", "tier": "Legendary", "type": "wand", "poison": -2000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-45", "fDam": "20-50", "wDam": "0-0", "aDam": "60-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "agiReq": 40, "defReq": 55, "hprPct": 150, "agi": 15, "hpBonus": 3600, "spRegen": 20, "aDefPct": 30, "eDefPct": -20, "id": 2118}, {"name": "Phrygian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "dex": 4, "agi": 4, "spd": 5, "id": 2119}, {"name": "Photon Projector", "tier": "Unique", "type": "relik", "thorns": 25, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "150-177", "aDam": "150-177", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 25, "spd": 12, "hprRaw": 155, "wDefPct": 40, "aDefPct": 40, "id": 2120}, {"name": "Physalis", "tier": "Legendary", "type": "leggings", "poison": 577, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "aDef": -120, "tDef": 70, "eDef": 70, "lvl": 86, "strReq": 65, "dexReq": 40, "mdPct": -15, "str": 8, "dex": 8, "expd": 31, "atkTier": 1, "tDamPct": 13, "eDamPct": 13, "id": 2121}, {"name": "Pierced Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 260, "aDef": -10, "eDef": 20, "lvl": 37, "sdPct": 5, "mdPct": 5, "ref": -5, "dex": 7, "id": 2123}, {"name": "Pigman's Loincloth", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 16, "strReq": 5, "mdPct": 6, "str": 4, "mdRaw": 16, "id": 2129}, {"name": "Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 15, "dex": 7, "agi": 5, "def": -5, "eSteal": 5, "id": 2126}, {"name": "Pilot Light", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2575, "fDef": 90, "wDef": -40, "aDef": -40, "tDef": 70, "eDef": 70, "lvl": 86, "defReq": 35, "hprPct": 18, "ref": 8, "def": 5, "hpBonus": 425, "spRegen": 15, "hprRaw": 110, "aDamPct": -7, "wDefPct": -7, "id": 2128}, {"name": "Pigman's Ribbing", "tier": "Unique", "type": "chestplate", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 10, "aDef": -20, "eDef": 30, "lvl": 50, "strReq": 20, "sdPct": -15, "mdPct": 10, "eDefPct": 15, "id": 2125}, {"name": "Pin", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "xpb": 7, "dex": 4, "id": 2127}, {"name": "Pisces", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "wDef": 100, "eDef": 100, "lvl": 100, "strReq": 60, "intReq": 60, "mr": 10, "sdPct": 15, "mdPct": 15, "str": 10, "mdRaw": 235, "wDamPct": 12, "eDamPct": 12, "id": 2133}, {"name": "Pizzicato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "51-57", "fDam": "51-57", "wDam": "51-57", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 25, "defReq": 25, "mr": 10, "sdPct": -7, "mdPct": -7, "int": 7, "def": 7, "spd": 10, "hprRaw": 95, "jh": 1, "id": 2130}, {"name": "Planet Healer", "tier": "Legendary", "poison": 865, "category": "accessory", "drop": "lootchest", "lvl": 100, "hprPct": -15, "ms": 5, "hprRaw": -80, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 2134}, {"name": "Placid Step", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 40, "tDef": -30, "lvl": 52, "intReq": 45, "mr": 5, "sdPct": 10, "mdPct": -12, "int": 7, "spRegen": 10, "wDamPct": 10, "id": 2131}, {"name": "Piston String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-55", "fDam": "44-86", "wDam": "44-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "intReq": 20, "defReq": 20, "dex": -12, "hprRaw": 40, "fDamPct": 8, "wDamPct": 8, "id": 2132}, {"name": "Plankton", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 210, "wDef": 20, "tDef": -30, "lvl": 34, "intReq": 25, "sdPct": 10, "xpb": 6, "int": 4, "spd": 5, "wDamPct": 15, "tDefPct": -15, "id": 2135}, {"name": "Plasma Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "25-54", "wDam": "0-0", "aDam": "0-0", "tDam": "7-46", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 20, "defReq": 25, "hprPct": -17, "sdPct": 9, "mdPct": 9, "fDamPct": 9, "wDamPct": -10, "tDamPct": 9, "id": 2137}, {"name": "Planus Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 7, "mdPct": 5, "spd": 4, "id": 2136}, {"name": "Plasma Sabre", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "31-58", "wDam": "0-0", "aDam": "0-0", "tDam": "29-43", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "dexReq": 20, "defReq": 25, "mdPct": 12, "ls": 110, "int": -7, "hprRaw": -43, "fDamPct": 8, "tDamPct": 8, "id": 2138}, {"name": "Plasma Ray", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "99-143", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "dexReq": 25, "defReq": 20, "sdPct": 18, "mdPct": -15, "ms": 5, "dex": 7, "def": 7, "wDefPct": -12, "aDefPct": -12, "eDefPct": -12, "id": 2140}, {"name": "Plasma Shear", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "48-60", "wDam": "0-0", "aDam": "0-0", "tDam": "22-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "dexReq": 20, "defReq": 25, "dex": 9, "sdRaw": 122, "wDamPct": -15, "aDamPct": -15, "fDefPct": 12, "tDefPct": 12, "id": 2139}, {"name": "Photon", "tier": "Unique", "quest": "Realm of Light II - Taproot", "category": "accessory", "drop": "never", "lvl": 61, "mr": 5, "xpb": 8, "ref": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spd": 8, "tDamPct": 3, "type": "ring", "id": 3609}, {"name": "Plated Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "lvl": 8, "str": 4, "id": 2142}, {"name": "Poison Ivy", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 18, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "235-275", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 55, "hprPct": -20, "mdPct": 15, "str": 15, "spd": -15, "id": 2145}, {"name": "Poison Touch", "tier": "Unique", "type": "dagger", "poison": 2000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-630", "atkSpd": "VERY_SLOW", "lvl": 87, "hprRaw": -95, "wDefPct": -30, "id": 2141}, {"name": "Platinum", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 88, "xpb": -3, "lb": 12, "eSteal": 3, "type": "bracelet", "id": 2143}, {"name": "Post-Ultima", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 76, "strReq": 40, "dexReq": 25, "mdPct": 30, "str": 9, "dex": 7, "expd": 20, "mdRaw": 190, "tDamPct": 20, "eDamPct": 20, "id": 2146}, {"name": "Polaris", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "17-17", "wDam": "17-17", "aDam": "17-17", "tDam": "17-17", "eDam": "17-17", "atkSpd": "VERY_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -15, "mdPct": -15, "xpb": 15, "lb": 15, "fDamPct": 30, "wDamPct": 30, "aDamPct": 30, "tDamPct": 30, "eDamPct": 30, "id": 2144}, {"name": "Polyphemus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "wDef": 70, "aDef": -70, "tDef": -70, "eDef": 70, "lvl": 91, "strReq": 40, "intReq": 40, "sdPct": 13, "mdPct": 13, "ms": 10, "dex": 8, "sdRaw": 140, "aDamPct": -36, "aDefPct": -18, "id": 2149}, {"name": "Powder Snow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "wDef": 90, "aDef": 90, "tDef": -145, "lvl": 88, "intReq": 45, "agiReq": 45, "mr": 5, "ref": 23, "int": 8, "agi": 8, "sdRaw": 160, "wDamPct": 13, "aDamPct": 13, "wDefPct": 13, "aDefPct": 13, "id": 2148}, {"name": "Power Creep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 81, "strReq": 60, "sdPct": -12, "mdPct": 5, "eDamPct": 7, "type": "necklace", "id": 2147}, {"name": "Power Cell", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "tDef": -60, "lvl": 86, "dexReq": 65, "dex": 13, "mdRaw": 34, "tDamPct": -7, "type": "necklace", "id": 2150}, {"name": "Power Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 74, "str": 8, "type": "bracelet", "id": 2152}, {"name": "Praesidium", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "320-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 80, "sdPct": -400, "ms": -20, "ref": 50, "def": 50, "hpBonus": 4000, "fDefPct": 77, "wDefPct": 77, "aDefPct": 77, "tDefPct": 77, "eDefPct": 77, "id": 2153}, {"name": "Pragmatism", "tier": "Unique", "type": "leggings", "poison": 154, "thorns": 9, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 425, "lvl": 48, "dexReq": 10, "ms": -5, "expd": 1, "hpBonus": -70, "eSteal": 3, "mdRaw": 59, "tDamPct": 8, "id": 2154}, {"name": "Precedence", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-60", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 20, "defReq": 20, "mr": 5, "hprRaw": 65, "tDamPct": -7, "tDefPct": -7, "id": 2159}, {"name": "Precious", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -80, "lvl": 41, "xpb": 10, "int": 3, "agi": 4, "spd": 7, "spRegen": -12, "hprRaw": 12, "type": "ring", "id": 2157}, {"name": "Precision", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "160-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 32, "mdPct": 8, "expd": 5, "id": 2158}, {"name": "Presto", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "6-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 16, "agiReq": 8, "sdPct": 5, "ref": 8, "spd": 15, "fDamPct": -10, "aDefPct": 7, "id": 2160}, {"name": "Priest's Underwears", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 215, "fDef": -15, "aDef": 10, "tDef": 25, "eDef": -15, "lvl": 34, "ref": 10, "spRegen": 10, "aDamPct": 5, "id": 2163}, {"name": "Predposledni", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-60", "aDam": "40-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 40, "agiReq": 50, "mr": 5, "sdPct": 12, "mdPct": -25, "int": 10, "spd": 12, "wDamPct": 15, "tDefPct": -16, "eDefPct": -10, "id": 2161}, {"name": "Prestidigitation", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 60, "eDef": -70, "lvl": 68, "intReq": 40, "ms": 5, "str": -7, "expd": 15, "sdRaw": 65, "wDamPct": 8, "eDamPct": -17, "id": 2162}, {"name": "Prism", "tier": "Legendary", "quest": "The Realm of Light", "category": "accessory", "drop": "lootchest", "hp": -400, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 100, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "ref": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "ring", "id": 2165}, {"name": "Prismatic Pendulum", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-350", "fDam": "0-0", "wDam": "5-520", "aDam": "0-0", "tDam": "0-0", "eDam": "5-520", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 45, "mr": 5, "hpBonus": 1725, "hprRaw": 170, "aDamPct": -30, "tDamPct": -30, "wDefPct": 20, "eDefPct": 20, "id": 2166}, {"name": "Procrastination", "tier": "Legendary", "type": "relik", "majorIds": ["PEACEFUL_EFFIGY"], "category": "weapon", "drop": "NORMAL", "nDam": "1250-1875", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "sdPct": 20, "mdPct": 20, "xpb": -10, "lb": -10, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "spd": -25, "atkTier": -10, "id": 2164}, {"name": "Preipice", "displayName": "Precipice", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "63-93", "atkSpd": "FAST", "lvl": 69, "strReq": 30, "mdPct": 12, "fDefPct": -18, "wDefPct": -18, "aDefPct": 15, "tDefPct": 15, "eDefPct": 30, "id": 2156}, {"name": "Prosto Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "lvl": 42, "str": 5, "agi": -2, "def": 8, "id": 2167}, {"name": "Prosencephalon", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 80, "aDef": -120, "tDef": 80, "eDef": -120, "lvl": 94, "dexReq": 70, "intReq": 70, "hprPct": -20, "mr": 5, "ms": 5, "sdRaw": 100, "mdRaw": -350, "wDamPct": 31, "tDamPct": 31, "aDefPct": -20, "eDefPct": -20, "id": 3620}, {"name": "Prog", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "7-10", "wDam": "0-0", "aDam": "0-0", "tDam": "8-12", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 10, "defReq": 5, "ms": 10, "spRaw1": 10, "spRaw2": -5, "id": 2168}, {"name": "Proto-Shield", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 74, "defReq": 75, "def": 13, "hpBonus": 423, "fDefPct": 4, "wDefPct": 2, "aDefPct": 2, "tDefPct": 2, "eDefPct": -6, "id": 2171}, {"name": "Protolith", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 900, "eDef": 30, "lvl": 60, "strReq": 45, "mdPct": 15, "str": 4, "wDamPct": -25, "eDamPct": 15, "id": 2169}, {"name": "Prymari", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-90", "fDam": "17-33", "wDam": "17-33", "aDam": "0-0", "tDam": "17-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "dexReq": 25, "intReq": 25, "defReq": 25, "sdPct": 20, "ref": 30, "dex": 9, "int": 9, "def": 9, "hprRaw": 100, "aDamPct": -40, "eDamPct": -40, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "id": 2174}, {"name": "Prowl", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "355-455", "fDam": "0-0", "wDam": "0-0", "aDam": "210-285", "tDam": "0-0", "eDam": "355-455", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 25, "agiReq": 40, "mdPct": 12, "xpb": 10, "str": 16, "hpBonus": -750, "sdRaw": -90, "aDamPct": 15, "id": 2170}, {"name": "Psion Marker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-12", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 28, "dexReq": 20, "mr": -5, "mdPct": 20, "ms": 5, "dex": 5, "expd": 10, "tDamPct": 10, "id": 2176}, {"name": "Proxima", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "210-220", "fDam": "110-200", "wDam": "110-200", "aDam": "110-200", "tDam": "110-200", "eDam": "110-200", "atkSpd": "SUPER_SLOW", "lvl": 85, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 10, "ls": 290, "ms": -5, "xpb": 15, "hprRaw": -90, "id": 2172}, {"name": "Psychoruin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "1-22", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "dexReq": 6, "intReq": 6, "int": 5, "sdRaw": 15, "wDamPct": -3, "tDamPct": 6, "wDefPct": 6, "tDefPct": -9, "id": 2175}, {"name": "Psithurism", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": -80, "aDef": 75, "eDef": 55, "lvl": 65, "strReq": 25, "agiReq": 35, "agi": 8, "spd": 10, "tDamPct": -8, "aDefPct": 12, "eDefPct": 8, "id": 2173}, {"name": "Puff", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 50, "lvl": 79, "spd": 5, "type": "ring", "id": 2179}, {"name": "Pulsar", "tier": "Legendary", "type": "spear", "poison": -365, "thorns": 21, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-12", "fDam": "8-16", "wDam": "6-18", "aDam": "4-20", "tDam": "2-22", "eDam": "10-14", "atkSpd": "FAST", "lvl": 44, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 14, "xpb": 8, "ref": 21, "spd": -15, "mdRaw": 46, "id": 2178}, {"name": "Pulse Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "tDef": 100, "eDef": -110, "lvl": 75, "dexReq": 75, "hprPct": -40, "mdPct": 10, "ms": 15, "str": -10, "sdRaw": 95, "tDamPct": 15, "eDamPct": -77, "eDefPct": -20, "id": 2177}, {"name": "Puppet Master", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "103-137", "fDam": "0-0", "wDam": "46-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 13, "sdPct": 15, "mdPct": -33, "ms": 5, "lb": 10, "str": -5, "spPct1": -25, "id": 2182}, {"name": "Pumpkin Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 20, "id": 2180}, {"name": "Puppeteer", "tier": "Rare", "type": "chestplate", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "lvl": 74, "mdPct": 50, "ls": -130, "str": 7, "dex": -5, "agi": 7, "spd": 21, "atkTier": -1, "id": 2181}, {"name": "Pure Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "180-191", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2184}, {"name": "Pure Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "303-360", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2183}, {"name": "Pure Andesite Stick", "displayName": "Pure Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2188}, {"name": "Pure Andesite Shears", "displayName": "Pure Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "103-118", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "id": 2185}, {"name": "Pure Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "197-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2187}, {"name": "Pure Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-187", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2186}, {"name": "Pure Birch Shears", "displayName": "Pure Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "id": 2189}, {"name": "Pure Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2190}, {"name": "Pure Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-131", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2191}, {"name": "Pure Birch Stick", "displayName": "Pure Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2192}, {"name": "Pure Diorite Shears", "displayName": "Pure Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "id": 2196}, {"name": "Pure Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 700, "lvl": 57, "id": 2193}, {"name": "Pure Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "358-422", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2195}, {"name": "Pure Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "212-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2194}, {"name": "Pure Diorite Stick", "displayName": "Pure Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-119", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2197}, {"name": "Pure Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "243-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2198}, {"name": "Pure Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "225-236", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2199}, {"name": "Pure Granite Shears", "displayName": "Pure Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "id": 2204}, {"name": "Pure Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "388-455", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2201}, {"name": "Pure Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-295", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2200}, {"name": "Pure Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 520, "lvl": 53, "id": 2203}, {"name": "Pure Granite Stick", "displayName": "Pure Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2202}, {"name": "Pure Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 600, "lvl": 55, "id": 2206}, {"name": "Pure Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 440, "lvl": 51, "id": 2205}, {"name": "Pure Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "216-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2208}, {"name": "Pure Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2209}, {"name": "Pure Jungle Shears", "displayName": "Pure Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "id": 2210}, {"name": "Pure Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "133-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2213}, {"name": "Pure Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2214}, {"name": "Pure Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2207}, {"name": "Pure Jungle Stick", "displayName": "Pure Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-94", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2212}, {"name": "Pure Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2211}, {"name": "Pure Light Birch Shears", "displayName": "Pure Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "69-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "id": 2215}, {"name": "Pure Light Birch Stick", "displayName": "Pure Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "51-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2217}, {"name": "Pure Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-144", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2218}, {"name": "Pure Light Jungle Stick", "displayName": "Pure Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "66-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2222}, {"name": "Pure Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "158-188", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2216}, {"name": "Pure Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2223}, {"name": "Pure Light Jungle Shears", "displayName": "Pure Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 76, "id": 2219}, {"name": "Pure Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "98-133", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2221}, {"name": "Pure Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "106-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2220}, {"name": "Pure Light Oak Shears", "displayName": "Pure Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "id": 2226}, {"name": "Pure Light Oak Stick", "displayName": "Pure Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "44-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2227}, {"name": "Pure Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "128-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2228}, {"name": "Pure Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2224}, {"name": "Pure Light Spruce Stick", "displayName": "Pure Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "61-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2230}, {"name": "Pure Light Spruce Shears", "displayName": "Pure Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "79-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "id": 2229}, {"name": "Pure Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-86", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2225}, {"name": "Pure Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2231}, {"name": "Pure Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-108", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2235}, {"name": "Pure Oak Wood Shears", "displayName": "Pure Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "id": 2234}, {"name": "Pure Oak Wood Bow", "displayName": "Pure Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-159", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2233}, {"name": "Pure Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "194-221", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2238}, {"name": "Pure Oak Wood Spear", "displayName": "Pure Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "91-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2232}, {"name": "Pure Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2241}, {"name": "Pure Spruce Shears", "displayName": "Pure Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "88-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "id": 2236}, {"name": "Pure Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "129-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2239}, {"name": "Pure Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "249-296", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2244}, {"name": "Pure Spruce Stick", "displayName": "Pure Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "64-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2243}, {"name": "Pure Stone Shears", "displayName": "Pure Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "84-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "id": 2242}, {"name": "Pure Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "147-158", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2240}, {"name": "Pure Oak Wood Stick", "displayName": "Pure Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2237}, {"name": "Pure Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-201", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2246}, {"name": "Pyroclast", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "250-790", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "350-690", "atkSpd": "SUPER_SLOW", "lvl": 88, "strReq": 40, "defReq": 35, "expd": 15, "spd": -10, "hprRaw": -155, "mdRaw": 620, "fDamPct": 20, "eDamPct": 20, "wDefPct": -50, "aDefPct": -15, "id": 2247}, {"name": "Pure Stone Stick", "displayName": "Pure Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "71-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2248}, {"name": "Quartz Choker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "lvl": 52, "sdPct": 8, "xpb": 4, "type": "necklace", "id": 2309}, {"name": "Purgatory", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-185", "wDam": "0-0", "aDam": "0-0", "tDam": "100-235", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "defReq": 35, "hprPct": -23, "mr": -5, "sdPct": 18, "expd": 23, "fDamPct": 18, "tDamPct": 18, "id": 2245}, {"name": "Pyromaniac", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": -40, "wDef": -40, "lvl": 90, "defReq": 50, "sdPct": 11, "int": -3, "expd": 10, "spd": 7, "hprRaw": -60, "type": "necklace", "id": 2250}, {"name": "Quartz-laced Leggings", "displayName": "Quartz-Laced Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 53, "sdPct": 10, "xpb": 10, "ref": 10, "id": 2251}, {"name": "Qaxezine", "tier": "Unique", "type": "bow", "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-96", "eDam": "62-84", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "dexReq": 25, "lb": 11, "str": 14, "expd": 12, "spd": -21, "id": 2249}, {"name": "Quartzite Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "sdPct": 4, "type": "necklace", "id": 2252}, {"name": "Quartzite Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "lvl": 91, "sdPct": 20, "sdRaw": 135, "id": 2254}, {"name": "Quartzite Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-150", "fDam": "0-0", "wDam": "150-160", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "dexReq": 35, "intReq": 30, "lb": 12, "int": 8, "sdRaw": 90, "aDamPct": -23, "tDamPct": 25, "aDefPct": -16, "id": 2255}, {"name": "Quartzite Wand", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "xpb": 4, "id": 2253}, {"name": "Quasar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-40", "wDam": "0-40", "aDam": "0-40", "tDam": "0-40", "eDam": "0-40", "atkSpd": "SLOW", "lvl": 72, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 13, "wDefPct": 13, "aDefPct": 13, "tDefPct": 13, "eDefPct": 13, "id": 2257}, {"name": "Quickshot", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 20, "xpb": 11, "dex": 8, "id": 2259}, {"name": "Quickstep", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-93", "wDam": "0-0", "aDam": "84-96", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "agiReq": 30, "defReq": 25, "xpb": 7, "agi": 6, "spd": 14, "hpBonus": 600, "fDamPct": 12, "aDefPct": 10, "id": 2258}, {"name": "Quatrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 4, "lvl": 16, "hprPct": 4, "sdPct": 4, "mdPct": 4, "xpb": 4, "type": "ring", "id": 2256}, {"name": "Quill", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-80", "fDam": "0-0", "wDam": "0-0", "aDam": "75-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "agiReq": 20, "mr": 5, "sdPct": 10, "xpb": 15, "wDamPct": 16, "aDefPct": 15, "tDefPct": -20, "id": 2260}, {"name": "Quinque", "tier": "Legendary", "type": "spear", "poison": 2000, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-235", "eDam": "5-7", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "mr": -10, "spd": -20, "atkTier": 1, "sdRaw": 175, "mdRaw": 70, "eDamPct": 50, "id": 2261}, {"name": "Abrasion", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 40, "wDef": 40, "lvl": 100, "mr": 5, "sdPct": 8, "ms": 5, "spd": -37, "fDamPct": 10, "type": "necklace", "id": 3624}, {"name": "Recalcitrance", "tier": "Fabled", "category": "accessory", "drop": "never", "hp": -2600, "aDef": -45, "eDef": 65, "lvl": 100, "strReq": 45, "hprPct": 9, "str": 6, "atkTier": 1, "eDamPct": 11, "type": "necklace", "jh": 1, "id": 3601}, {"name": "Eyes on All", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": -60, "tDef": -60, "lvl": 60, "dexReq": 45, "intReq": 45, "sdPct": -11, "ms": 10, "atkTier": -6, "type": "necklace", "id": 3602}, {"name": "Homeorhesis", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": 35, "eDef": 35, "lvl": 60, "strReq": 40, "sdPct": -45, "mdPct": -45, "ms": 5, "xpb": 10, "sdRaw": 120, "mdRaw": 60, "type": "bracelet", "id": 3576}, {"name": "Cacophony", "tier": "Fabled", "thorns": 6, "category": "accessory", "drop": "never", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 80, "agiReq": 55, "ls": 115, "ref": 6, "spRegen": -8, "hprRaw": 50, "sdRaw": -45, "type": "ring", "id": 3585}, {"name": "Racer's Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 950, "lvl": 60, "agiReq": 40, "mdPct": -5, "agi": 7, "spd": 19, "sdRaw": -25, "id": 2270}, {"name": "Metamorphosis", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 20, "wDef": -100, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 80, "mr": -5, "sdPct": 20, "ms": -5, "type": "necklace", "id": 3575}, {"name": "Ragged", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": -8, "aDef": 10, "lvl": 19, "ls": 7, "def": -2, "spd": 4, "hpBonus": -8, "id": 2271}, {"name": "Raecard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 22, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "lb": 15, "hpBonus": 110, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "id": 2272}, {"name": "Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-49", "fDam": "15-19", "wDam": "12-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 15, "mr": 5, "spRegen": 5, "id": 2269}, {"name": "Ragni's Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": -30, "eDef": 60, "lvl": 50, "strReq": 20, "defReq": 5, "sdPct": -10, "mdPct": 10, "xpb": 10, "def": 7, "fDamPct": 10, "wDamPct": -25, "eDamPct": 10, "id": 2273}, {"name": "Ragni's Old Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "aDef": -10, "eDef": 20, "lvl": 39, "mdPct": 7, "xpb": 6, "id": 2275}, {"name": "Ragni's Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 3, "str": 3, "id": 2276}, {"name": "Ragon's Bracelet", "tier": "Rare", "quest": "Elemental Exercise", "category": "accessory", "drop": "never", "lvl": 10, "hpBonus": 13, "type": "bracelet", "id": 2277}, {"name": "Rainbow", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 80, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -3, "wDamPct": -3, "aDamPct": -3, "tDamPct": -3, "eDamPct": -3, "type": "ring", "id": 2274}, {"name": "Rainstorm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-95", "fDam": "0-0", "wDam": "40-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "dexReq": 35, "intReq": 30, "sdPct": 10, "ms": 5, "xpb": 7, "dex": 8, "int": 5, "tDamPct": 22, "aDefPct": -25, "id": 2280}, {"name": "Raindrop", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "wDef": 20, "lvl": 69, "intReq": 25, "mr": 5, "sdPct": -2, "mdPct": -2, "int": 5, "type": "ring", "id": 2279}, {"name": "Rapier", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "66-76", "fDam": "66-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 290, "ref": 15, "def": 12, "fDefPct": 15, "id": 2282}, {"name": "Raptor", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "44-77", "tDam": "0-0", "eDam": "66-77", "atkSpd": "VERY_FAST", "lvl": 62, "strReq": 30, "agiReq": 30, "mdPct": 12, "agi": 4, "def": -5, "spd": 15, "hpBonus": -200, "mdRaw": 65, "id": 2281}, {"name": "Rapids", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "wDef": 130, "tDef": -130, "lvl": 89, "intReq": 55, "mr": 5, "sdPct": 23, "spd": 9, "fDamPct": -15, "wDamPct": 11, "id": 2278}, {"name": "Ration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": -75, "eDef": -75, "lvl": 99, "intReq": 45, "defReq": 45, "mr": 15, "sdPct": -18, "mdPct": -18, "int": 9, "hprRaw": 150, "id": 2283}, {"name": "Rarity", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 12, "lb": 12, "spRegen": 8, "type": "ring", "id": 2284}, {"name": "Rayshyroth's Knowledge", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 66, "xpb": 12, "spRegen": 3, "type": "bracelet", "id": 2286}, {"name": "Reaction", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "tDef": 45, "eDef": -50, "lvl": 57, "dexReq": 30, "xpb": 6, "expd": 4, "sdRaw": 50, "tDamPct": 9, "wDefPct": -7, "id": 2290}, {"name": "Razor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 49, "sdPct": 5, "mdPct": 5, "str": 7, "dex": -5, "int": 7, "agi": 7, "def": 7, "spd": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": -40, "eDamPct": 20, "id": 2285}, {"name": "Reaper of Soul", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "ls": 100, "ms": 10, "agi": 7, "spRegen": 10, "eSteal": 10, "id": 2287}, {"name": "Rebellion", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "45-60", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "dexReq": 35, "defReq": 35, "sdPct": -6, "ls": 100, "int": -4, "expd": 19, "hpBonus": -230, "fDamPct": 17, "tDamPct": 17, "wDefPct": -12, "id": 2288}, {"name": "Reborn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -125, "lvl": 100, "strReq": 45, "dexReq": 45, "int": -4, "agi": -2, "def": -2, "mdRaw": 50, "tDamPct": 10, "eDamPct": 10, "type": "necklace", "id": 2289}, {"name": "Reason", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "60-85", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "intReq": 30, "defReq": 35, "mr": 5, "dex": -7, "int": 8, "def": 5, "hprRaw": 105, "tDamPct": -30, "fDefPct": 13, "wDefPct": 13, "id": 2291}, {"name": "Recharge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "lvl": 59, "mr": -45, "sdPct": 11, "mdPct": -9, "ms": 40, "sdRaw": 50, "id": 2292}, {"name": "Rectificator", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "hpBonus": 150, "fDamPct": 16, "wDamPct": 16, "aDamPct": 16, "tDamPct": 16, "eDamPct": 16, "id": 2294}, {"name": "Red Candle", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 15, "hprPct": 20, "ls": 31, "def": 7, "hpBonus": 100, "hprRaw": 15, "id": 2296}, {"name": "Red", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 25, "fDef": 4, "lvl": 30, "hpBonus": 5, "type": "ring", "id": 2293}, {"name": "Red Ko Rhu", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "fDef": -60, "aDef": 40, "eDef": 40, "lvl": 43, "str": 8, "expd": 10, "spd": -8, "eDefPct": 10, "id": 2295}, {"name": "Red String", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 12, "lvl": 16, "hprPct": 3, "xpb": 3, "spRegen": 2, "type": "ring", "id": 2297}, {"name": "Redirection", "tier": "Unique", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "tDef": 30, "eDef": -70, "lvl": 65, "dexReq": 25, "ref": 12, "dex": 4, "tDamPct": 12, "tDefPct": 12, "id": 2300}, {"name": "Refined Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "xpb": 4, "id": 2299}, {"name": "Redemption", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1475, "fDef": 50, "aDef": 50, "lvl": 71, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": -5, "ls": 120, "int": -6, "hprRaw": 40, "id": 2298}, {"name": "Refined Chainmail Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 245, "lvl": 41, "id": 2301}, {"name": "Reflection", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -17, "mdPct": -17, "ref": 25, "hprRaw": 65, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2304}, {"name": "Refined Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "lvl": 43, "id": 2302}, {"name": "Refined Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 340, "lvl": 45, "id": 2306}, {"name": "Refined Iron Chainmail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 380, "lvl": 47, "id": 2303}, {"name": "Reflex", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 14, "spd": 5, "type": "ring", "id": 2305}, {"name": "Regal Chaps", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 23, "xpb": 8, "lb": 8, "eSteal": 2, "id": 2308}, {"name": "Regulating Charge", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "57-97", "aDam": "0-0", "tDam": "57-97", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "dexReq": 35, "intReq": 35, "sdPct": 13, "ms": -10, "sdRaw": 75, "wDamPct": 9, "tDamPct": 9, "id": 2313}, {"name": "Regrets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 8, "sdPct": 12, "sdRaw": 21, "id": 2311}, {"name": "Relay", "tier": "Rare", "type": "leggings", "thorns": 8, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "tDef": 15, "eDef": -15, "lvl": 24, "dexReq": 15, "ref": 8, "str": -4, "dex": 5, "id": 2314}, {"name": "Rekkr", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4500, "fDef": 130, "eDef": 100, "lvl": 99, "strReq": 45, "defReq": 60, "mdPct": 40, "str": 13, "def": 13, "spd": -15, "fDefPct": 20, "aDefPct": 20, "eDefPct": 20, "id": 2310}, {"name": "Relend's Refrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 40, "tDef": -50, "eDef": -15, "lvl": 90, "agiReq": 50, "xpb": 7, "spd": 12, "wDamPct": 5, "type": "bracelet", "id": 2312}, {"name": "Relentless", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "58-70", "eDam": "58-70", "atkSpd": "FAST", "lvl": 70, "strReq": 35, "dexReq": 35, "agi": -10, "def": -10, "expd": 25, "atkTier": 1, "hprRaw": -69, "mdRaw": 60, "id": 2316}, {"name": "Relfect", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-100", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 10, "ms": 5, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "expd": 10, "spd": 10, "hpBonus": 1650, "id": 2315}, {"name": "Relic", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "4-10", "wDam": "2-8", "aDam": "6-8", "tDam": "1-12", "eDam": "8-10", "atkSpd": "NORMAL", "lvl": 14, "sdPct": 6, "xpb": 8, "id": 2318}, {"name": "Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "27-41", "fDam": "27-41", "wDam": "27-41", "aDam": "27-41", "tDam": "27-41", "eDam": "27-41", "atkSpd": "SLOW", "lvl": 50, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2317}, {"name": "Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "30-35", "wDam": "30-35", "aDam": "30-35", "tDam": "30-35", "eDam": "30-35", "atkSpd": "SLOW", "lvl": 60, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2319}, {"name": "Refraction", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 74, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "ls": 110, "ms": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "id": 2307}, {"name": "Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "12-17", "fDam": "12-17", "wDam": "12-17", "aDam": "12-17", "tDam": "12-17", "eDam": "12-17", "atkSpd": "NORMAL", "lvl": 55, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2320}, {"name": "Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "24-30", "fDam": "24-30", "wDam": "24-30", "aDam": "24-30", "tDam": "24-30", "eDam": "24-30", "atkSpd": "FAST", "lvl": 65, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2322}, {"name": "Remedy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1050, "fDef": 60, "wDef": 60, "tDef": -60, "eDef": -60, "lvl": 70, "intReq": 35, "defReq": 35, "hprPct": 18, "mr": 5, "sdPct": -11, "mdPct": -11, "spRegen": 18, "hprRaw": 70, "sdRaw": -40, "mdRaw": -39, "id": 2321}, {"name": "Remikas' Sanctuary", "tier": "Rare", "type": "chestplate", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "lvl": 68, "defReq": 50, "ref": 8, "def": 7, "spd": -10, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2323}, {"name": "Remikas' Righteousness", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "mr": 5, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 2325}, {"name": "Reminder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 96, "int": 8, "type": "ring", "id": 2324}, {"name": "Reminiscence", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 20, "wDef": 10, "eDef": -30, "lvl": 41, "intReq": 30, "defReq": 10, "hprPct": 8, "mr": 5, "spRegen": 8, "hprRaw": 10, "type": "bracelet", "id": 2326}, {"name": "Render", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 15, "eDef": -15, "lvl": 60, "defReq": 25, "expd": 12, "fDamPct": 10, "wDamPct": -7, "type": "ring", "id": 2328}, {"name": "Resolve", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3425, "fDef": 100, "aDef": 100, "tDef": -150, "lvl": 98, "agiReq": 40, "defReq": 40, "ms": 5, "int": -20, "agi": 7, "def": 7, "wDamPct": -15, "spPct1": -10, "spPct3": -10, "id": 2327}, {"name": "Resistance", "tier": "Unique", "type": "leggings", "thorns": 13, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "tDef": 100, "eDef": 175, "lvl": 97, "dexReq": 60, "ms": 15, "ref": 9, "tDamPct": -15, "tDefPct": 20, "eDefPct": 20, "id": 2333}, {"name": "Repulsion", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-22", "fDam": "0-0", "wDam": "33-42", "aDam": "0-0", "tDam": "33-42", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "dexReq": 30, "intReq": 30, "mr": 5, "ref": 20, "sdRaw": 55, "wDamPct": 9, "tDamPct": 9, "eDamPct": -18, "eDefPct": -23, "id": 2329}, {"name": "Reticence", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "xpb": 15, "str": 7, "sdRaw": -25, "mdRaw": 16, "id": 2331}, {"name": "Return", "tier": "Unique", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 53, "ref": 9, "type": "ring", "id": 2330}, {"name": "Retina Shooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "VERY_SLOW", "lvl": 22, "strReq": 5, "mdPct": 3, "dex": 7, "id": 2332}, {"name": "Return to Ether", "tier": "Legendary", "type": "bow", "poison": -4143, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-126", "fDam": "0-0", "wDam": "0-0", "aDam": "16-162", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 90, "intReq": 84, "agiReq": 49, "mr": 10, "mdPct": -27, "xpb": 26, "agi": 44, "spd": 22, "wDamPct": 34, "tDamPct": -149, "eDamPct": -13, "fDefPct": 45, "id": 2334}, {"name": "Reverie", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "108-144", "wDam": "108-144", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "intReq": 25, "defReq": 25, "sdPct": 24, "mdPct": -15, "int": 8, "spd": -15, "fDefPct": 24, "wDefPct": 24, "id": 2336}, {"name": "Reverb", "tier": "Unique", "type": "boots", "thorns": 19, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -90, "aDef": 50, "tDef": 50, "lvl": 64, "dexReq": 30, "agiReq": 30, "ref": 19, "mdRaw": 90, "fDefPct": -15, "aDefPct": 11, "tDefPct": 11, "id": 2335}, {"name": "Reversal", "tier": "Unique", "type": "relik", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "23-30", "tDam": "0-0", "eDam": "23-30", "atkSpd": "NORMAL", "lvl": 36, "strReq": 12, "agiReq": 12, "mdPct": 10, "ref": 30, "spd": 10, "mdRaw": 39, "id": 2340}, {"name": "Revolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "60-60", "wDam": "0-0", "aDam": "0-0", "tDam": "60-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 345, "ms": 10, "xpb": 10, "fDamPct": 9, "wDamPct": -25, "aDamPct": -25, "tDamPct": 9, "id": 2338}, {"name": "Revolutionine", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "315-327", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "defReq": 40, "mdPct": 15, "def": 15, "hpBonus": -815, "fDamPct": 20, "wDamPct": -20, "wDefPct": -20, "id": 2339}, {"name": "Rewind", "tier": "Legendary", "type": "dagger", "majorIds": ["SORCERY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-50", "fDam": "0-0", "wDam": "30-50", "aDam": "25-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "intReq": 50, "agiReq": 50, "mr": 10, "ls": 250, "ms": -15, "agi": 10, "spd": 15, "hprRaw": -200, "id": 2337}, {"name": "Rheingold", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "aDef": 70, "tDef": 50, "eDef": -60, "lvl": 66, "dexReq": 20, "agiReq": 25, "sdPct": 7, "mdPct": 12, "lb": 16, "dex": 5, "spd": 11, "fDamPct": -14, "id": 2342}, {"name": "Rhunaex", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-34", "eDam": "0-34", "atkSpd": "FAST", "lvl": 41, "strReq": 25, "dexReq": 25, "ls": 33, "dex": 5, "hprRaw": -15, "sdRaw": 25, "mdRaw": 33, "aDamPct": -19, "id": 2341}, {"name": "Ricin", "tier": "Rare", "type": "dagger", "poison": 1930, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 73, "mdPct": -50, "ms": 5, "sdRaw": 125, "id": 2343}, {"name": "Rime", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -30, "wDef": 10, "aDef": 15, "lvl": 43, "intReq": 15, "agiReq": 30, "sdPct": 7, "ms": 5, "agi": 4, "spd": -9, "aDamPct": 4, "fDefPct": -10, "type": "bracelet", "id": 2347}, {"name": "Ridge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 34, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 2345}, {"name": "Ring of Focus", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 20, "intReq": 5, "sdPct": 5, "xpb": 4, "type": "ring", "id": 2349}, {"name": "Ring of Fire", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -50, "lvl": 84, "expd": 8, "fDamPct": 11, "wDamPct": -7, "eDamPct": 8, "type": "ring", "id": 2346}, {"name": "Ringlets", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1875, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 80, "mr": 10, "xpb": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRaw4": -5, "id": 2348}, {"name": "Ringing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 265, "wDef": 20, "tDef": -20, "lvl": 41, "intReq": 20, "mr": 5, "spRegen": 5, "wDefPct": 10, "aDefPct": 5, "id": 2352}, {"name": "Ring of Strength", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "str": 3, "type": "ring", "id": 2350}, {"name": "Ripper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -6, "lvl": 46, "dexReq": 25, "xpb": 3, "dex": 3, "mdRaw": 17, "type": "ring", "id": 2351}, {"name": "Rinkaku", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": 80, "tDef": 80, "lvl": 79, "dexReq": 40, "defReq": 55, "hprPct": -20, "sdPct": 10, "ls": 110, "def": 8, "hpBonus": -400, "fDamPct": 8, "tDamPct": 8, "id": 2354}, {"name": "Rising Sun", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-150", "fDam": "60-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "defReq": 25, "xpb": 15, "spRegen": 6, "id": 2353}, {"name": "Rite Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-26", "fDam": "9-12", "wDam": "9-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 10, "defReq": 10, "sdPct": 8, "ls": 25, "lb": 8, "hpBonus": -150, "spRegen": -10, "eSteal": 4, "id": 2355}, {"name": "Riverflow", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 200, "tDef": -100, "lvl": 93, "intReq": 95, "mr": 20, "ref": 5, "spd": 7, "tDamPct": -15, "wDefPct": 20, "tDefPct": -15, "id": 2357}, {"name": "Roaming Thief", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "lvl": 28, "ls": 13, "lb": 8, "dex": 3, "eSteal": 4, "id": 2356}, {"name": "Rock Chisel", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "164-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "strReq": 25, "defReq": 35, "sdPct": -9, "lb": 19, "dex": 8, "eSteal": 3, "fDamPct": 24, "eDamPct": 7, "id": 2359}, {"name": "Robin", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-16", "fDam": "5-9", "wDam": "0-0", "aDam": "4-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 20, "sdPct": -12, "mdPct": -12, "spd": 16, "hprRaw": 30, "id": 2358}, {"name": "Rockworm", "tier": "Unique", "poison": 135, "category": "accessory", "drop": "lootchest", "lvl": 57, "mdPct": 3, "str": 4, "eDamPct": 4, "type": "ring", "id": 2361}, {"name": "Rodoroc's Pride", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3700, "fDef": 125, "wDef": -175, "eDef": 125, "lvl": 98, "strReq": 40, "defReq": 40, "mr": 10, "str": 8, "def": 8, "spd": -8, "hpBonus": 700, "fDamPct": 8, "wDamPct": 10, "aDamPct": -20, "tDamPct": -20, "eDamPct": 8, "id": 2360}, {"name": "Rollick", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 100, "tDef": -130, "lvl": 71, "intReq": 100, "sdPct": 15, "int": 7, "sdRaw": 75, "fDamPct": -30, "wDamPct": 20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "wDefPct": 20, "id": 2363}, {"name": "Ronin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "tDef": 175, "eDef": -100, "lvl": 91, "dexReq": 50, "str": -15, "dex": 20, "spd": 5, "mdRaw": 175, "tDamPct": 15, "id": 2364}, {"name": "Ronco", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-48", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 30, "sdPct": 12, "lb": 6, "dex": 5, "spd": 8, "hpBonus": -90, "eDefPct": -15, "id": 2362}, {"name": "Rosario", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-32", "atkSpd": "SLOW", "lvl": 43, "strReq": 20, "defReq": 20, "hprPct": 9, "sdPct": -20, "spd": -12, "hpBonus": 250, "hprRaw": 15, "id": 2365}, {"name": "Rot of Dernel", "tier": "Rare", "type": "wand", "poison": 2645, "thorns": 35, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-12", "eDam": "9-10", "atkSpd": "VERY_SLOW", "lvl": 83, "strReq": 15, "dexReq": 15, "ls": 300, "ms": 15, "int": -30, "hpBonus": -1850, "id": 2367}, {"name": "Rotten Wood", "tier": "Unique", "type": "wand", "poison": 1462, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "id": 2372}, {"name": "Rotary Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-100", "wDam": "50-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "intReq": 30, "defReq": 30, "ls": 225, "expd": 14, "hpBonus": 800, "tDefPct": -20, "eDefPct": -14, "id": 2366}, {"name": "Rotten", "tier": "Rare", "type": "chestplate", "poison": 160, "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 280, "fDef": -15, "eDef": 25, "lvl": 37, "id": 2369}, {"name": "Rikter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "312-670", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "330-570", "atkSpd": "SUPER_SLOW", "lvl": 84, "strReq": 55, "mdPct": 30, "expd": 25, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 2344}, {"name": "Roughcut", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 560, "aDef": -50, "tDef": 20, "eDef": 30, "lvl": 53, "strReq": 15, "mdPct": 10, "dex": 7, "mdRaw": 85, "tDamPct": 10, "eDefPct": 5, "id": 2370}, {"name": "Rounding Test", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 1, "xpb": 11, "atkTier": -1, "id": 2371}, {"name": "Runic Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 375, "lvl": 90, "sdPct": 8, "lb": 5, "type": "necklace", "id": 2375}, {"name": "Rubber", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 77, "mdRaw": 26, "type": "ring", "id": 2373}, {"name": "Rubber Rainboots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 225, "tDef": 10, "lvl": 34, "xpb": 5, "wDefPct": 20, "id": 2374}, {"name": "Rubber Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "ref": 10, "dex": -3, "agi": -3, "id": 2377}, {"name": "Running Water", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "50-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "intReq": 30, "int": 9, "spd": 15, "sprintReg": 10, "id": 2376}, {"name": "Runner's Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 24, "lvl": 9, "agi": 3, "spd": 4, "id": 2378}, {"name": "Rust", "tier": "Rare", "type": "helmet", "poison": 665, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2450, "wDef": -60, "aDef": -60, "lvl": 79, "defReq": 55, "ref": -23, "dex": 9, "tDamPct": 19, "eDamPct": 11, "id": 2399}, {"name": "Rusted Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 7, "xpb": 2, "lb": 3, "type": "bracelet", "id": 2379}, {"name": "Rusted Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 28, "wDef": 6, "tDef": -3, "lvl": 31, "wDefPct": 4, "tDefPct": -3, "type": "ring", "id": 2387}, {"name": "Rusted Root", "tier": "Legendary", "type": "relik", "poison": 900, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "190-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-200", "atkSpd": "SLOW", "lvl": 65, "strReq": 40, "dexReq": 45, "sdRaw": 130, "tDamPct": 35, "wDefPct": -40, "spRaw2": -10, "spPct3": 49, "spPct4": -42, "jh": -1, "id": 2381}, {"name": "Rycar's Bravado", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -35, "aDef": 20, "eDef": 20, "lvl": 58, "strReq": 20, "str": 7, "dex": 3, "int": -10, "agi": 3, "type": "bracelet", "id": 2380}, {"name": "Adventurer's Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 147, "lvl": 27, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2385, "set": "Adventurer's"}, {"name": "Rycar's Swagger", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 62, "strReq": 10, "agiReq": 10, "hprPct": -11, "str": 3, "agi": 5, "spd": -4, "eSteal": 2, "type": "necklace", "id": 2382}, {"name": "Adventurer's Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 135, "lvl": 26, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2383, "set": "Adventurer's"}, {"name": "Adventurer's Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 153, "lvl": 28, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2386, "set": "Adventurer's"}, {"name": "Air Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 145, "aDef": 5, "lvl": 25, "agiReq": 15, "agi": 4, "aDamPct": 7, "aDefPct": 7, "id": 2390, "set": "Air Relic"}, {"name": "Adventurer's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2384, "set": "Adventurer's"}, {"name": "Air Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 205, "aDef": 10, "lvl": 30, "agiReq": 21, "agi": 5, "aDamPct": 9, "aDefPct": 9, "id": 2391, "set": "Air Relic"}, {"name": "Beachside Conch", "tier": "Set", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "intReq": 8, "sdPct": -8, "mdPct": -12, "wDamPct": 12, "wDefPct": 8, "id": 2392, "set": "Beachside"}, {"name": "Beachside Headwrap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 75, "wDef": 6, "lvl": 17, "intReq": 5, "lb": 8, "int": 3, "wDefPct": 8, "id": 2394, "set": "Beachside"}, {"name": "Black Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 13, "ms": 5, "xpb": 5, "dex": 7, "id": 2398, "set": "Black"}, {"name": "Bear Mask", "tier": "Set", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MDkxOTUyODE1ODUsInByb2ZpbGVJZCI6IjVkYTgwMWMxNzkwYzQ3Mzc4YzhiMzk2MjM2ZDlhNzk2IiwicHJvZmlsZU5hbWUiOiJDaHVtYmxlZG9yZSIsImlzUHVibGljIjp0cnVlLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjk1YmJmOWYxNzViMWU3NmE2MWI0Y2QwYmExODNiMThjOTQ2NzAxN2Y0MWVkMTA0NmFiZjY1YTRhNjNjNGEwIn19fQ==", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "fixID": true, "id": 1854, "set": "Bear"}, {"name": "Bear Body", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "hp": 78, "lvl": 16, "mdPct": 6, "fixID": true, "id": 2396, "set": "Bear"}, {"name": "Black Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": 7, "lvl": 33, "dexReq": 10, "dex": 4, "mdRaw": 26, "id": 2395, "set": "Black"}, {"name": "Black Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 245, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 30, "lb": 10, "dex": 7, "sdRaw": 42, "id": 2397, "set": "Black"}, {"name": "Black Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 20, "dex": 5, "spd": 10, "mdRaw": 30, "id": 2400, "set": "Black"}, {"name": "Air Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 275, "aDef": 15, "lvl": 35, "agiReq": 27, "agi": 7, "aDamPct": 11, "aDefPct": 11, "id": 2389, "set": "Air Relic"}, {"name": "Bony Bow", "tier": "Set", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-36", "fDam": "0-0", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "mdPct": 8, "agi": 6, "id": 2401, "set": "Bony"}, {"name": "Champion Boots", "tier": "Set", "type": "boots", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 20, "id": 2403, "set": "Champion"}, {"name": "Bony Circlet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "aDef": 5, "lvl": 21, "agiReq": 6, "mdPct": 8, "mdRaw": 30, "id": 2402, "set": "Bony"}, {"name": "Champion Helmet", "tier": "Set", "type": "helmet", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2407, "set": "Champion"}, {"name": "Champion Chestplate", "tier": "Set", "type": "chestplate", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2405, "set": "Champion"}, {"name": "Champion Leggings", "tier": "Set", "type": "leggings", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "lb": 20, "id": 2404, "set": "Champion"}, {"name": "Clock Amulet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 86, "lb": 6, "fDefPct": 4, "wDefPct": 5, "aDefPct": 3, "tDefPct": 2, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2406, "set": "Clock"}, {"name": "Clock Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "lvl": 73, "mr": -5, "mdPct": 10, "ms": 5, "xpb": 6, "agi": 3, "spd": 6, "fixID": true, "id": 2408, "set": "Clock"}, {"name": "Clock Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 950, "lvl": 74, "sdPct": -40, "mdPct": -35, "xpb": 6, "str": -8, "dex": 3, "spd": 10, "atkTier": 1, "mdRaw": 26, "fixID": true, "id": 2410, "set": "Clock"}, {"name": "Clock Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1500, "lvl": 75, "sdPct": 25, "mdPct": 30, "xpb": 5, "str": 3, "spd": -4, "atkTier": -1, "mdRaw": 13, "fixID": true, "id": 2411, "set": "Clock"}, {"name": "Clock Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 76, "hprPct": 15, "mr": 10, "sdPct": 5, "ms": -5, "def": 3, "spd": -3, "hpBonus": 200, "fixID": true, "id": 2409, "set": "Clock"}, {"name": "Clockwork Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -25, "lvl": 80, "sdPct": 5, "lb": 6, "type": "ring", "fixID": true, "id": 2413, "set": "Clock"}, {"name": "Cosmic Vest", "tier": "Set", "type": "chestplate", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2200, "lvl": 80, "mr": 5, "xpb": 19, "spd": 15, "id": 2478, "set": "Cosmic"}, {"name": "Air Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 355, "aDef": 20, "lvl": 40, "agiReq": 42, "agi": 8, "aDamPct": 13, "aDefPct": 13, "id": 2388, "set": "Air Relic"}, {"name": "Cosmic Visor", "tier": "Set", "type": "helmet", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 80, "mr": 5, "xpb": 19, "spRegen": 19, "id": 2414, "set": "Cosmic"}, {"name": "Cosmic Walkers", "tier": "Set", "type": "boots", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1900, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2412, "set": "Cosmic"}, {"name": "Dodge Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "agiReq": 30, "hprPct": 12, "spd": 12, "type": "ring", "id": 3606, "set": "Synch Core"}, {"name": "Earth Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "eDef": 4, "lvl": 25, "strReq": 15, "str": 4, "eDamPct": 8, "eDefPct": 6, "id": 2428, "set": "Earth Relic"}, {"name": "Cosmic Ward", "tier": "Set", "type": "leggings", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2100, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2416, "set": "Cosmic"}, {"name": "Earth Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 212, "eDef": 8, "lvl": 30, "strReq": 21, "str": 5, "eDamPct": 10, "eDefPct": 8, "id": 2415, "set": "Earth Relic"}, {"name": "Earth Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "eDef": 12, "lvl": 35, "strReq": 27, "str": 7, "eDamPct": 12, "eDefPct": 10, "id": 2418, "set": "Earth Relic"}, {"name": "Earth Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "eDef": 16, "lvl": 40, "strReq": 42, "str": 8, "eDamPct": 14, "eDefPct": 12, "id": 2420, "set": "Earth Relic"}, {"name": "Fire Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "fDef": 10, "lvl": 30, "defReq": 21, "def": 5, "fDamPct": 8, "fDefPct": 10, "id": 2419, "set": "Fire Relic"}, {"name": "Fire Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 330, "fDef": 15, "lvl": 35, "defReq": 27, "def": 7, "fDamPct": 10, "fDefPct": 12, "id": 2421, "set": "Fire Relic"}, {"name": "Fire Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 170, "fDef": 5, "lvl": 25, "defReq": 15, "def": 4, "fDamPct": 6, "fDefPct": 8, "id": 2417, "set": "Fire Relic"}, {"name": "Ghostly Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 20, "eDef": -15, "lvl": 49, "intReq": 35, "mdPct": -18, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2423, "set": "Ghostly"}, {"name": "Fire Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 425, "fDef": 20, "lvl": 40, "defReq": 42, "def": 8, "fDamPct": 12, "fDefPct": 14, "id": 2422, "set": "Fire Relic"}, {"name": "Ghostly Cap", "tier": "Set", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 20, "eDef": -20, "lvl": 48, "mdPct": -6, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2424, "set": "Ghostly"}, {"name": "Ghostly Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 30, "eDef": -30, "lvl": 50, "dexReq": 45, "mdPct": -24, "ms": 5, "spRegen": 5, "tDamPct": 14, "id": 2425, "set": "Ghostly"}, {"name": "Ghostly Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 30, "eDef": -25, "lvl": 51, "intReq": 45, "mdPct": -12, "ms": 5, "spRegen": 5, "wDamPct": 14, "id": 2444, "set": "Ghostly"}, {"name": "Harden Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "hp": 888, "fDef": 20, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 84, "defReq": 30, "xpb": 5, "type": "ring", "id": 3616, "set": "Synch Core"}, {"name": "Hustle Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "strReq": 30, "sdPct": 10, "mdPct": 10, "ls": 70, "type": "ring", "id": 3623, "set": "Synch Core"}, {"name": "Horse Hoof", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 355, "fDef": -20, "aDef": 20, "lvl": 40, "agiReq": 25, "agi": 7, "spd": 10, "aDamPct": 8, "id": 2426, "set": "Horse"}, {"name": "Horse Mask", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "fDef": -20, "eDef": 20, "lvl": 42, "strReq": 25, "mdPct": 7, "str": 7, "eDamPct": 8, "id": 2427, "set": "Horse"}, {"name": "Jester Bracelet", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "lootchest", "lvl": 72, "xpb": -25, "lb": -25, "ref": 8, "type": "bracelet", "id": 2431, "set": "Jester"}, {"name": "Jester Necklace", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 54, "xpb": -25, "lb": -25, "eSteal": 4, "type": "necklace", "id": 2429, "set": "Jester"}, {"name": "Jester Ring", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 69, "ls": 50, "xpb": -25, "lb": -25, "type": "ring", "id": 2430, "set": "Jester"}, {"name": "Kaerynn's Body", "tier": "Set", "type": "chestplate", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "eDef": 120, "lvl": 78, "strReq": 45, "sdPct": 15, "mdPct": 15, "eDamPct": 20, "id": 2432, "set": "Kaerynn's"}, {"name": "Leaf Boots", "tier": "Set", "type": "boots", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 14, "eDef": 2, "lvl": 4, "hprPct": 10, "hprRaw": 1, "id": 2435}, {"name": "Leaf Cap", "tier": "Set", "type": "helmet", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "eDef": 2, "lvl": 2, "hprPct": 6, "hprRaw": 1, "id": 2438}, {"name": "Kaerynn's Mind", "tier": "Set", "type": "helmet", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "wDef": 120, "lvl": 78, "intReq": 45, "hprPct": 25, "mr": 5, "wDamPct": 20, "id": 2433, "set": "Kaerynn's"}, {"name": "Leaf Pants", "tier": "Set", "type": "leggings", "set": "Leaf", "thorns": 7, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 17, "eDef": 3, "lvl": 5, "hprPct": 8, "id": 2434}, {"name": "Mask of the Dark Vexations", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 90, "lvl": 20, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -15, "xpb": 10, "fDamPct": 7, "wDamPct": 7, "tDamPct": 7, "id": 2437, "set": "Vexing"}, {"name": "Leaf Tunic", "tier": "Set", "type": "chestplate", "set": "Leaf", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "str": 3, "hprRaw": 2, "id": 2450}, {"name": "Morph-Emerald", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 50, "lvl": 37, "strReq": 16, "dexReq": 16, "intReq": 16, "agiReq": 16, "defReq": 16, "lb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2439, "set": "Morph"}, {"name": "Morph-Iron", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 50, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 2442, "set": "Morph"}, {"name": "Morph-Gold", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 150, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spd": 10, "id": 2440, "set": "Morph"}, {"name": "Morph-Amethyst", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 87, "strReq": 41, "dexReq": 41, "intReq": 41, "agiReq": 41, "defReq": 41, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spRegen": 10, "type": "bracelet", "id": 2436, "set": "Morph"}, {"name": "Morph-Ruby", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 62, "strReq": 29, "dexReq": 29, "intReq": 29, "agiReq": 29, "defReq": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "eSteal": 5, "type": "necklace", "id": 2441, "set": "Morph"}, {"name": "Nether Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "wDef": -6, "lvl": 28, "defReq": 25, "lb": 6, "expd": 6, "fDamPct": 8, "id": 2449, "set": "Nether"}, {"name": "Morph-Steel", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 75, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2443, "set": "Morph"}, {"name": "Morph-Topaz", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 12, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2447, "set": "Morph"}, {"name": "Nether Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "fDef": 6, "wDef": -6, "lvl": 24, "defReq": 10, "lb": 9, "def": 4, "expd": 8, "id": 2446, "set": "Nether"}, {"name": "Nether Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "wDef": -6, "lvl": 25, "defReq": 15, "def": 5, "fDamPct": 6, "id": 2452, "set": "Nether"}, {"name": "Outlaw Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 370, "fDef": -30, "lvl": 39, "agiReq": 40, "ls": 31, "eSteal": 5, "mdRaw": 39, "id": 2454, "set": "Outlaw"}, {"name": "Nether Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "fDef": 10, "wDef": -6, "lvl": 27, "defReq": 20, "lb": 7, "def": 7, "expd": 6, "id": 2448, "set": "Nether"}, {"name": "Outlaw Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 325, "eDef": -20, "lvl": 36, "agiReq": 30, "ls": 29, "agi": 7, "eSteal": 5, "id": 2453, "set": "Outlaw"}, {"name": "Outlaw Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "tDef": -20, "lvl": 37, "agiReq": 35, "mdPct": 8, "ls": 29, "eSteal": 4, "id": 2451, "set": "Outlaw"}, {"name": "Outlaw Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 380, "wDef": -20, "lvl": 38, "agiReq": 35, "ls": 29, "eSteal": 4, "aDamPct": 8, "id": 2456, "set": "Outlaw"}, {"name": "Overload Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "necklace", "id": 3613, "set": "Synch Core"}, {"name": "Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2459, "set": "Relic"}, {"name": "Pigman Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "aDef": -5, "eDef": 5, "lvl": 15, "strReq": 5, "spd": -4, "eDamPct": 14, "id": 2455, "set": "Pigman"}, {"name": "Pigman Battle Hammer", "tier": "Set", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "28-36", "atkSpd": "VERY_SLOW", "lvl": 16, "strReq": 5, "str": 4, "spd": -6, "id": 2457, "set": "Pigman"}, {"name": "Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 215, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 30, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2461, "set": "Relic"}, {"name": "Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "fDef": 12, "wDef": 12, "aDef": 12, "tDef": 12, "eDef": 12, "lvl": 35, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDefPct": 9, "wDefPct": 9, "aDefPct": 9, "tDefPct": 9, "eDefPct": 9, "id": 2458, "set": "Relic"}, {"name": "Silverfish Boots", "tier": "Set", "type": "boots", "poison": 130, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 10, "aDef": 8, "eDef": 2, "lvl": 32, "agiReq": 30, "agi": 13, "id": 2462, "set": "Silverfish"}, {"name": "Silverfish Helm", "tier": "Set", "type": "helmet", "poison": 145, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 15, "aDef": 12, "eDef": 6, "lvl": 34, "agiReq": 35, "spd": 10, "id": 2463, "set": "Silverfish"}, {"name": "Skien Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 775, "lvl": 53, "sdPct": -12, "mdPct": 10, "str": 5, "spd": 5, "id": 2464, "set": "Skien's"}, {"name": "Skien Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "lvl": 55, "def": 5, "spd": 5, "sdRaw": -115, "mdRaw": 95, "id": 2465, "set": "Skien's"}, {"name": "Slime Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 715, "lvl": 51, "strReq": 15, "defReq": 35, "str": 7, "agi": -4, "def": 5, "spd": -6, "id": 2467, "set": "Slime"}, {"name": "Morph-Stardust", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 100, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 15, "hprRaw": 200, "sdRaw": 140, "mdRaw": 135, "id": 2445, "set": "Morph"}, {"name": "Skien's Fatigues", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "lvl": 57, "strReq": 35, "defReq": 35, "sdPct": -20, "mdPct": 17, "str": 8, "def": 8, "sdRaw": -140, "mdRaw": 115, "id": 2466, "set": "Skien's"}, {"name": "Slime Plate", "tier": "Set", "type": "chestplate", "poison": 290, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "eDef": 30, "lvl": 53, "strReq": 20, "defReq": 35, "spd": -6, "id": 2469, "set": "Slime"}, {"name": "Snail Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 75, "eDef": 55, "lvl": 94, "strReq": 55, "defReq": 70, "hprPct": 20, "def": 9, "spd": -7, "fDefPct": 10, "id": 2471, "set": "Snail"}, {"name": "Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "fDef": 14, "wDef": 14, "aDef": 14, "tDef": 14, "eDef": 14, "lvl": 40, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 2460, "set": "Relic"}, {"name": "Snail Leggings", "tier": "Set", "type": "leggings", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3575, "fDef": 90, "eDef": 65, "lvl": 95, "strReq": 60, "defReq": 80, "hprPct": 20, "def": 9, "spd": -7, "id": 2470, "set": "Snail"}, {"name": "Snail Mail", "tier": "Set", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3950, "fDef": 100, "eDef": 75, "lvl": 97, "strReq": 65, "defReq": 90, "hprPct": 20, "agi": -10, "fDefPct": 9, "eDefPct": 9, "id": 2473, "set": "Snail"}, {"name": "Snail Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": 60, "eDef": 45, "lvl": 93, "strReq": 50, "defReq": 60, "def": 9, "spd": -7, "hprRaw": 170, "eDefPct": 10, "id": 2468, "set": "Snail"}, {"name": "Snow Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "aDef": 15, "lvl": 42, "agiReq": 15, "hprPct": -15, "ref": 10, "aDefPct": 10, "id": 2480, "set": "Snow"}, {"name": "Snow Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 380, "wDef": 15, "lvl": 41, "intReq": 15, "hprPct": -15, "mr": 5, "wDefPct": 10, "id": 2472, "set": "Snow"}, {"name": "Spore Cap", "tier": "Set", "type": "helmet", "poison": 18, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "lvl": 13, "str": 4, "id": 2475, "set": "Spore"}, {"name": "Snow Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "wDef": 20, "aDef": 20, "lvl": 43, "intReq": 20, "agiReq": 20, "hprPct": -15, "ref": 10, "wDamPct": 8, "aDamPct": 8, "id": 2474, "set": "Snow"}, {"name": "Spore Shortsword", "tier": "Set", "type": "dagger", "poison": 36, "category": "weapon", "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 15, "expd": 10, "id": 2477, "set": "Spore"}, {"name": "Snow Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 25, "aDef": 25, "lvl": 44, "intReq": 25, "agiReq": 25, "hprPct": -15, "mr": 5, "wDefPct": 8, "aDefPct": 8, "id": 2476, "set": "Snow"}, {"name": "Synchro Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "bracelet", "id": 3604, "set": "Synch Core"}, {"name": "Thunder Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 135, "tDef": 3, "lvl": 25, "dexReq": 15, "dex": 4, "tDamPct": 10, "tDefPct": 4, "id": 2482, "set": "Thunder Relic"}, {"name": "Staff of the Dark Vexations", "tier": "Set", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "4-9", "wDam": "6-7", "aDam": "0-0", "tDam": "1-13", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -10, "dex": 4, "int": 4, "def": 4, "id": 2479, "set": "Vexing"}, {"name": "Thunder Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 260, "tDef": 9, "lvl": 35, "dexReq": 27, "dex": 7, "tDamPct": 14, "tDefPct": 8, "id": 2481, "set": "Thunder Relic"}, {"name": "Thunder Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 190, "tDef": 6, "lvl": 30, "dexReq": 21, "dex": 5, "tDamPct": 12, "tDefPct": 6, "id": 2483, "set": "Thunder Relic"}, {"name": "Thunder Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 335, "tDef": 12, "lvl": 40, "dexReq": 42, "dex": 8, "tDamPct": 16, "tDefPct": 10, "id": 2485, "set": "Thunder Relic"}, {"name": "Time Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 10, "type": "ring", "fixID": true, "id": 2488, "set": "Clock"}, {"name": "Tribal Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "lvl": 18, "lb": 8, "mdRaw": 20, "fixID": true, "id": 2491, "set": "Tribal"}, {"name": "Tribal Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 5, "agi": 3, "fixID": true, "id": 2484, "set": "Tribal"}, {"name": "Tribal Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 18, "mdPct": 10, "lb": 5, "fixID": true, "id": 2490, "set": "Tribal"}, {"name": "Tribal Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 18, "lb": 7, "agi": 2, "fixID": true, "id": 2487, "set": "Tribal"}, {"name": "Ultramarine Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 950, "wDef": 40, "tDef": -40, "lvl": 63, "intReq": 90, "mr": 5, "lb": 8, "int": 7, "wDefPct": 8, "id": 2486, "set": "Ultramarine"}, {"name": "Ultramarine Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 880, "wDef": 80, "tDef": -20, "lvl": 61, "intReq": 80, "sdPct": 7, "lb": 7, "wDefPct": 8, "id": 2489, "set": "Ultramarine"}, {"name": "Veekhat's Horns", "tier": "Set", "type": "helmet", "quest": "Cowfusion", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "eDef": 150, "lvl": 89, "mdRaw": 180, "eDamPct": 20, "id": 2492, "set": "Veekhat's"}, {"name": "Ultramarine Cape", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "tDef": -70, "lvl": 65, "intReq": 100, "mr": 10, "mdPct": -14, "lb": 9, "wDefPct": 8, "id": 2495, "set": "Ultramarine"}, {"name": "Ultramarine Crown", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 800, "wDef": 140, "lvl": 59, "intReq": 70, "lb": 6, "int": 7, "wDefPct": 8, "id": 2493, "set": "Ultramarine"}, {"name": "Villager Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "lvl": 26, "xpb": 5, "lb": 10, "id": 2498, "set": "Villager"}, {"name": "Veekhat's Udders", "tier": "Set", "type": "chestplate", "quest": "Cowfusion", "sprint": 18, "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "aDef": 150, "lvl": 89, "ms": 5, "aDamPct": 18, "id": 2494, "set": "Veekhat's"}, {"name": "Visceral Chest", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1545, "fDef": -25, "wDef": -25, "aDef": -25, "tDef": -25, "eDef": -25, "lvl": 71, "mdPct": 15, "hprRaw": 50, "mdRaw": 100, "id": 2497, "set": "Visceral"}, {"name": "Visceral Skullcap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "lvl": 68, "mdPct": 13, "ls": 80, "hprRaw": 39, "id": 2496, "set": "Visceral"}, {"name": "Villager Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 24, "xpb": 10, "lb": 5, "id": 2500, "set": "Villager"}, {"name": "Visceral Toe", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1445, "lvl": 69, "mdPct": 10, "ls": 60, "mdRaw": 75, "id": 2503, "set": "Visceral"}, {"name": "Water Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 130, "wDef": 6, "lvl": 25, "intReq": 15, "int": 4, "wDamPct": 4, "wDefPct": 10, "id": 2501, "set": "Water Relic"}, {"name": "Water Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "wDef": 18, "lvl": 35, "intReq": 27, "int": 7, "wDamPct": 8, "wDefPct": 14, "id": 2505, "set": "Water Relic"}, {"name": "Watch Bracelet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 86, "lb": 6, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2502, "set": "Clock"}, {"name": "Water Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 185, "wDef": 12, "lvl": 30, "intReq": 21, "int": 5, "wDamPct": 6, "wDefPct": 12, "id": 2504, "set": "Water Relic"}, {"name": "Water Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 320, "wDef": 24, "lvl": 40, "intReq": 42, "int": 8, "wDamPct": 10, "wDefPct": 16, "id": 2506, "set": "Water Relic"}, {"name": "Reciprocator", "tier": "Rare", "type": "relik", "thorns": 40, "category": "weapon", "slots": 1, "drop": "never", "nDam": "240-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "ref": 40, "agi": 10, "def": -10, "spd": -10, "wDamPct": 15, "fixID": true, "spRaw1": -5, "id": 2509}, {"name": "Ablution", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 12, "mr": 5, "int": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "tDefPct": -10, "fixID": true, "id": 2507}, {"name": "Ciel", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "28-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 50, "ms": 5, "xpb": 10, "dex": 5, "tDamPct": 22, "tDefPct": 8, "fixID": true, "id": 2508}, {"name": "Ahms' Remains", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "hp": 2550, "aDef": -120, "eDef": 90, "lvl": 97, "strReq": 65, "sdPct": 15, "mdPct": 12, "ms": 10, "str": 8, "sdRaw": 205, "eDamPct": 10, "aDefPct": -15, "fixID": true, "id": 2512}, {"name": "Earth Drift", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "70-101", "tDam": "0-0", "eDam": "32-50", "atkSpd": "VERY_FAST", "lvl": 95, "strReq": 50, "agiReq": 30, "mdPct": 12, "str": 4, "agi": 8, "spd": 12, "sdRaw": -45, "mdRaw": 50, "eDamPct": 20, "fixID": true, "id": 2511}, {"name": "Highrise", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "120-142", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "agiReq": 50, "ms": 5, "hpBonus": -1200, "aDamPct": 20, "fDefPct": -20, "fixID": true, "jh": 2, "id": 2513}, {"name": "Fallbreakers", "tier": "Rare", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 3600, "fDef": 120, "wDef": 110, "aDef": 80, "tDef": 100, "eDef": 90, "lvl": 95, "defReq": 40, "ref": 15, "def": 10, "hprRaw": 195, "fDefPct": 10, "wDefPct": 15, "aDefPct": 30, "tDefPct": 20, "eDefPct": 25, "fixID": true, "id": 2519}, {"name": "Island Sniper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "425-845", "fDam": "0-0", "wDam": "0-0", "aDam": "400-425", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 96, "agiReq": 55, "mdPct": 15, "ms": 5, "dex": 7, "hpBonus": -1750, "tDamPct": 10, "fixID": true, "id": 2514}, {"name": "Restorator", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-60", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "defReq": 55, "hprPct": 40, "str": 7, "def": 4, "hpBonus": 2500, "hprRaw": 230, "wDefPct": 20, "eDefPct": 15, "fixID": true, "id": 2515}, {"name": "Shard of Sky", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-160", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "agiReq": 55, "dex": 6, "agi": 10, "spd": 16, "aDamPct": 16, "aDefPct": 8, "fixID": true, "id": 2521}, {"name": "Stormcloud", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-60", "fDam": "0-0", "wDam": "145-170", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 55, "mr": 10, "mdPct": -30, "int": 10, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "fixID": true, "id": 2520}, {"name": "Skyfloat", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "never", "hp": 2750, "fDef": 50, "wDef": -150, "aDef": 150, "eDef": -50, "lvl": 94, "agiReq": 50, "mr": 10, "agi": 8, "def": 12, "spd": 15, "hprRaw": 230, "fixID": true, "jh": 1, "id": 2518}, {"name": "Vagabond's Disgrace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "200-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "300-340", "eDam": "300-340", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 65, "dexReq": 70, "mdPct": 30, "eSteal": 5, "wDamPct": -50, "tDamPct": 20, "eDamPct": 20, "wDefPct": -50, "fixID": true, "spPct4": 35, "id": 2522}, {"name": "Stalactite", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2875, "wDef": -70, "aDef": -100, "tDef": 140, "eDef": 140, "lvl": 96, "strReq": 60, "dexReq": 50, "ls": 285, "lb": 10, "tDamPct": 14, "eDamPct": 14, "aDefPct": -12, "fixID": true, "spPct1": -14, "spPct3": -14, "spPct4": 35, "id": 2516}, {"name": "Visceral Legs", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "lvl": 70, "ls": 110, "hprRaw": 65, "mdRaw": 60, "id": 2499, "set": "Visceral"}, {"name": "Clawctus", "tier": "Unique", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 31, "dex": 3, "mdRaw": 25, "eDamPct": 7, "fixID": true, "id": 2523}, {"name": "Drought Savior", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-24", "fDam": "0-0", "wDam": "14-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "intReq": 15, "hprPct": 5, "mr": 5, "hpBonus": 35, "hprRaw": 12, "fixID": true, "id": 2525}, {"name": "Crocodile", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 220, "wDef": 10, "lvl": 34, "intReq": 5, "int": 2, "spd": -6, "sdRaw": 30, "fixID": true, "id": 2524}, {"name": "Hood of the Resistance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 175, "aDef": -8, "tDef": 5, "eDef": 5, "lvl": 32, "strReq": 15, "lb": 4, "str": 4, "eSteal": 3, "fixID": true, "id": 2526}, {"name": "Drywind", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-14", "fDam": "0-0", "wDam": "0-0", "aDam": "16-26", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 15, "sdPct": 6, "ref": 5, "agi": 2, "spd": 5, "fixID": true, "id": 2530}, {"name": "Venom", "tier": "Unique", "type": "bow", "poison": 160, "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "nDam": "28-40", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "hprPct": -12, "def": 3, "hprRaw": 14, "fixID": true, "id": 2529}, {"name": "Spider Silk Carduroys", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 185, "lvl": 29, "hprPct": 10, "ls": 13, "agi": 3, "fixID": true, "id": 2532}, {"name": "Boundary", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-70", "atkSpd": "SLOW", "lvl": 26, "strReq": 15, "sdPct": -10, "str": 8, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2528}, {"name": "Vagabond", "tier": "Rare", "type": "chestplate", "poison": 90, "category": "armor", "slots": 1, "drop": "never", "hp": 160, "tDef": 10, "eDef": -12, "lvl": 33, "dexReq": 20, "agiReq": 10, "xpb": 7, "dex": 2, "agi": 2, "spd": 6, "fixID": true, "id": 2527}, {"name": "Horseshoe", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 44, "agiReq": 15, "agi": 2, "spd": 9, "mdRaw": 16, "type": "ring", "fixID": true, "id": 2535}, {"name": "Bountiful", "tier": "Unique", "type": "wand", "poison": -20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-8", "atkSpd": "NORMAL", "lvl": 19, "xpb": 10, "lb": 15, "hprRaw": 5, "fixID": true, "id": 2534}, {"name": "Savannah Wind", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "4-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 19, "agiReq": 8, "xpb": 5, "ref": 8, "agi": 4, "spd": 8, "hpBonus": -40, "fixID": true, "id": 2531}, {"name": "Pursuit", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-7", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "agiReq": 5, "ls": 7, "dex": 4, "spd": 12, "aDamPct": 8, "fixID": true, "id": 2536}, {"name": "Acevro", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "105-150", "fDam": "0-0", "wDam": "0-0", "aDam": "85-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "agiReq": 30, "mr": 5, "def": -10, "spd": 15, "wDamPct": 40, "aDamPct": 20, "fixID": true, "id": 2541}, {"name": "Smithy", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": -15, "eDef": 10, "lvl": 47, "fDamPct": 6, "eDamPct": 6, "fDefPct": 7, "eDefPct": 7, "type": "ring", "fixID": true, "id": 2543}, {"name": "Stainless Steel", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 48, "defReq": 30, "ref": 8, "type": "bracelet", "fixID": true, "id": 2538}, {"name": "Ascension", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-30", "fDam": "0-0", "wDam": "0-0", "aDam": "60-60", "tDam": "60-60", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "ms": 5, "str": -4, "dex": 8, "agi": 8, "def": -4, "spd": 12, "wDamPct": -15, "fixID": true, "id": 2540}, {"name": "Calor", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1875, "fDef": 100, "lvl": 74, "defReq": 45, "hprPct": 15, "def": 7, "hprRaw": 70, "fDamPct": 10, "fDefPct": 10, "wDefPct": -20, "fixID": true, "id": 2546}, {"name": "Golem Gauntlet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 45, "defReq": 20, "str": 1, "def": 5, "spd": -6, "type": "bracelet", "fixID": true, "id": 2533}, {"name": "Charger", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "aDef": 35, "tDef": 35, "lvl": 72, "dexReq": 15, "agiReq": 15, "sdPct": 8, "mdPct": 8, "dex": 3, "agi": 3, "spd": 16, "aDamPct": 12, "tDamPct": 12, "fixID": true, "id": 2542}, {"name": "Cinfras Souvenir T-Shirt", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NEVER", "hp": 10, "lvl": 1, "id": 3631}, {"name": "Cold Snap", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1450, "wDef": 50, "aDef": 50, "lvl": 71, "intReq": 10, "agiReq": 15, "ref": 15, "int": 3, "agi": 3, "fDamPct": -15, "wDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2544}, {"name": "Courser", "tier": "Unique", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 15, "dex": 5, "spd": 5, "tDamPct": 25, "fixID": true, "id": 2545}, {"name": "Crying Heart", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "ls": -145, "dex": 10, "tDamPct": 10, "eDamPct": 15, "fixID": true, "id": 2549}, {"name": "Diabloviento", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "90-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "agiReq": 25, "spd": 15, "fDamPct": 25, "aDamPct": 15, "fixID": true, "id": 2547}, {"name": "Blade of Instinct", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "defReq": 10, "ref": 20, "def": 2, "hpBonus": 30, "fixID": true, "id": 2537}, {"name": "Forge's Shock", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "95-105", "wDam": "0-0", "aDam": "0-0", "tDam": "100-125", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 28, "defReq": 28, "xpb": 15, "spd": -15, "mdRaw": 130, "fDamPct": 20, "fDefPct": 20, "fixID": true, "id": 2550}, {"name": "Enerxia", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 20, "mdPct": 10, "ms": 5, "dex": 5, "tDamPct": 20, "eDamPct": -15, "fixID": true, "id": 2548}, {"name": "Howler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1025, "aDef": 60, "lvl": 70, "agiReq": 20, "sdPct": 15, "agi": 5, "mdRaw": 100, "aDamPct": 15, "fixID": true, "id": 2559}, {"name": "Heart Piercer", "tier": "Unique", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "sdRaw": -50, "mdRaw": 85, "fixID": true, "id": 2552}, {"name": "Ivoire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "55-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 15, "int": 5, "hpBonus": 200, "wDamPct": 40, "fixID": true, "id": 2554}, {"name": "Pewter Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 70, "lvl": 46, "defReq": 10, "def": 3, "type": "ring", "fixID": true, "id": 2539}, {"name": "Letum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "tDef": 65, "lvl": 72, "dexReq": 35, "sdPct": 15, "mdPct": 15, "dex": 7, "def": -10, "expd": 10, "tDamPct": 25, "eDefPct": -15, "fixID": true, "id": 2556}, {"name": "Magic Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1350, "wDef": 90, "lvl": 73, "intReq": 35, "sdPct": 12, "mdPct": -15, "int": 5, "sdRaw": 30, "wDamPct": 20, "fixID": true, "id": 2553}, {"name": "Regar", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-125", "fDam": "0-0", "wDam": "25-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 73, "intReq": 25, "sdPct": 15, "sdRaw": 65, "mdRaw": -91, "wDamPct": 30, "fixID": true, "id": 2557}, {"name": "Miotal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "144-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "72-120", "atkSpd": "SLOW", "lvl": 74, "strReq": 25, "def": 5, "hpBonus": 300, "fDamPct": 25, "fDefPct": 10, "eDefPct": 10, "fixID": true, "id": 2555}, {"name": "Rocher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 70, "strReq": 30, "mdPct": 15, "str": 10, "spd": -10, "eDefPct": 15, "fixID": true, "id": 2560}, {"name": "Silencer", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 1700, "fDef": 90, "lvl": 70, "defReq": 20, "def": 5, "hprRaw": 75, "sdRaw": -100, "fDefPct": 15, "fixID": true, "id": 2562}, {"name": "Router", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "fDef": 50, "eDef": 50, "lvl": 72, "strReq": 15, "defReq": 15, "str": 3, "agi": -5, "def": 3, "spd": -12, "fDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2558}, {"name": "Searing Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 1450, "fDef": 65, "lvl": 71, "defReq": 25, "hprPct": 20, "def": 5, "expd": 5, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2563}, {"name": "Stone Crunch", "tier": "Rare", "type": "relik", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-113", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-175", "atkSpd": "NORMAL", "lvl": 74, "strReq": 40, "ms": -5, "mdRaw": 160, "eDamPct": 10, "wDefPct": -20, "fixID": true, "id": 2564}, {"name": "Sleek", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "19-28", "fDam": "0-0", "wDam": "0-0", "aDam": "45-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 25, "lb": 5, "ref": 15, "agi": 10, "spd": 15, "fixID": true, "id": 2561}, {"name": "Solum", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1700, "eDef": 110, "lvl": 73, "strReq": 40, "str": 7, "eDamPct": 15, "fDefPct": 10, "aDefPct": -10, "tDefPct": 10, "eDefPct": 15, "fixID": true, "id": 2566}, {"name": "Vis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "wDef": 75, "lvl": 71, "intReq": 30, "mr": 10, "int": 7, "wDamPct": 10, "tDefPct": -10, "fixID": true, "id": 2569}, {"name": "Torch", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "defReq": 30, "def": 5, "hpBonus": 400, "fDamPct": 70, "wDamPct": -60, "fixID": true, "id": 2565}, {"name": "Tragedy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 25, "mr": -5, "ms": -5, "str": -10, "hpBonus": -100, "wDamPct": 50, "fixID": true, "id": 2567}, {"name": "Composite Shooter", "displayName": "Pressure Blaster", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-140", "fDam": "0-0", "wDam": "100-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 50, "mr": 10, "int": 12, "sdRaw": 150, "fixID": true, "id": 2568}, {"name": "Carbon Weave", "tier": "Unique", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "fDef": 70, "aDef": -120, "eDef": 70, "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 10, "str": 8, "def": 8, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2570}, {"name": "Heavy Aegis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 1500, "eDef": 75, "lvl": 73, "strReq": 35, "sdPct": -12, "mdPct": 15, "str": 5, "eDamPct": 20, "eDefPct": 10, "fixID": true, "id": 2551}, {"name": "Corkian War Pick", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "115-140", "tDam": "115-140", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "dexReq": 35, "agiReq": 35, "mdPct": 10, "str": 8, "spd": 10, "mdRaw": 150, "aDamPct": 10, "tDamPct": 10, "fDefPct": -20, "wDefPct": -20, "fixID": true, "id": 2572}, {"name": "Genetor", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "65-125", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "dexReq": 50, "ms": 5, "ref": 12, "dex": 5, "sdRaw": 145, "tDefPct": 10, "fixID": true, "id": 2575}, {"name": "Gear Grinder", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-150", "fDam": "25-75", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "defReq": 40, "mr": 5, "sdPct": 8, "mdPct": 12, "xpb": 8, "expd": 20, "fixID": true, "id": 2574}, {"name": "Cranial Panel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 2150, "fDef": 60, "wDef": 60, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "intReq": 30, "defReq": 30, "mr": 10, "sdPct": -15, "mdPct": -25, "int": 14, "def": 14, "hprRaw": 100, "fDefPct": 10, "wDefPct": 10, "fixID": true, "id": 2573}, {"name": "Corkian Jet Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 2225, "wDef": 60, "tDef": 60, "lvl": 86, "agi": 5, "spd": 20, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "fixID": true, "jh": 2, "id": 2571}, {"name": "Info Visor", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1600, "wDef": 115, "eDef": -100, "lvl": 85, "dexReq": 30, "intReq": 40, "sdPct": 5, "xpb": 15, "int": 20, "sdRaw": 65, "fixID": true, "id": 2577}, {"name": "Latency", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2250, "aDef": -180, "tDef": 120, "eDef": 30, "lvl": 87, "strReq": 50, "dexReq": 50, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 5, "dex": 5, "spd": -15, "tDamPct": 18, "eDamPct": 18, "fixID": true, "id": 2580}, {"name": "Hydrocharger", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "32-40", "fDam": "0-0", "wDam": "24-48", "aDam": "0-0", "tDam": "24-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 30, "mdPct": -30, "dex": 5, "int": 5, "aDefPct": -40, "fixID": true, "id": 2576}, {"name": "Metal Body Suit", "tier": "Unique", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2575, "fDef": 80, "wDef": -80, "tDef": 80, "eDef": -80, "lvl": 88, "dexReq": 40, "defReq": 40, "ls": 165, "ref": 15, "dex": 4, "int": -21, "agi": 6, "def": 4, "spd": 10, "fixID": true, "spPct1": -17, "id": 2579}, {"name": "Siliquartz Blend", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2300, "lvl": 87, "sdPct": 20, "xpb": 5, "sdRaw": 130, "fixID": true, "id": 2583}, {"name": "Skyline Cries", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "57-63", "fDam": "110-130", "wDam": "110-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "intReq": 40, "defReq": 25, "int": 5, "def": 10, "spd": -10, "hpBonus": 2750, "fixID": true, "spRaw2": 15, "id": 2578}, {"name": "Shortout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-50", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "dexReq": 40, "ls": -145, "ref": 14, "expd": 22, "tDamPct": 26, "wDefPct": -12, "fixID": true, "id": 2581}, {"name": "Solar Sword", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "160-250", "fDam": "80-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "defReq": 50, "hprPct": 20, "ls": 260, "def": 7, "hpBonus": 1600, "fDefPct": 30, "eDefPct": -10, "fixID": true, "id": 2585}, {"name": "The Airway", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "63-69", "fDam": "0-0", "wDam": "0-0", "aDam": "56-66", "tDam": "41-81", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "dexReq": 35, "agiReq": 30, "dex": 8, "spd": 10, "aDamPct": 12, "tDamPct": 12, "eDefPct": -30, "fixID": true, "jh": 1, "id": 2582}, {"name": "Windmill", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "agiReq": 40, "ref": 30, "agi": 5, "spd": 7, "aDamPct": 30, "aDefPct": 20, "fixID": true, "id": 2587}, {"name": "Thermals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-105", "fDam": "98-102", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 45, "spd": 10, "hprRaw": 160, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw2": -10, "id": 2586}, {"name": "Candy Cane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-26", "fDam": "13-20", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 10, "defReq": 15, "hprPct": 25, "mdPct": -5, "ls": 90, "agi": 6, "spd": 12, "hprRaw": 15, "wDefPct": -8, "fixID": true, "id": 2589}, {"name": "Black Ice", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-95", "fDam": "0-0", "wDam": "22-35", "aDam": "0-0", "tDam": "18-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "dexReq": 20, "intReq": 20, "mr": 5, "sdPct": 12, "mdPct": -20, "dex": 5, "int": 5, "sdRaw": 75, "eDamPct": -20, "fixID": true, "id": 2588}, {"name": "The Modulator", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "never", "hp": 2500, "lvl": 88, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "spd": 15, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2584}, {"name": "Cornucopia", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "190-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "hprPct": 30, "mr": 5, "sdPct": -10, "mdPct": -10, "xpb": 10, "lb": 10, "hprRaw": 80, "fixID": true, "id": 2593}, {"name": "Evergreen", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "NORMAL", "lvl": 85, "strReq": 35, "intReq": 45, "sdPct": 14, "mdPct": 10, "str": 5, "int": 5, "fDamPct": -18, "wDamPct": 25, "aDefPct": -30, "fixID": true, "id": 2591}, {"name": "Douglas Fir", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1950, "eDef": 100, "lvl": 75, "strReq": 35, "hprPct": 20, "str": 5, "def": 7, "mdRaw": 205, "aDefPct": -10, "eDefPct": 15, "fixID": true, "id": 2595}, {"name": "Charity", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "hprPct": 12, "lb": 12, "spRegen": 15, "type": "ring", "fixID": true, "id": 2590}, {"name": "Fellowship", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 65, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 10, "type": "bracelet", "fixID": true, "id": 2592}, {"name": "Frankincense", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 200, "lvl": 55, "sdPct": -5, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2597}, {"name": "Firewood", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "95-155", "fDam": "55-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "strReq": 25, "sdPct": -6, "mdPct": 12, "str": 5, "expd": 15, "eDamPct": 15, "wDefPct": -10, "fixID": true, "id": 2594}, {"name": "Gift of the Magi", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "never", "nDam": "130-145", "fDam": "30-35", "wDam": "0-0", "aDam": "30-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 60, "defReq": 60, "mr": 5, "agi": 15, "def": 15, "hpBonus": 2500, "hprRaw": 135, "tDamPct": -50, "eDamPct": -50, "wDefPct": 30, "fixID": true, "id": 2599}, {"name": "Frost", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 20, "lvl": 70, "intReq": 25, "spd": -6, "sdRaw": 30, "wDamPct": 7, "aDamPct": 5, "type": "ring", "fixID": true, "id": 2596}, {"name": "Halation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "90-125", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "dexReq": 45, "sdPct": 10, "xpb": 15, "ref": 33, "dex": 6, "aDamPct": 15, "tDefPct": 10, "fixID": true, "id": 2598}, {"name": "Holly", "tier": "Rare", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-24", "fDam": "0-0", "wDam": "11-18", "aDam": "0-0", "tDam": "0-0", "eDam": "17-28", "atkSpd": "NORMAL", "lvl": 45, "strReq": 10, "intReq": 5, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 5, "wDefPct": 15, "fixID": true, "id": 2602}, {"name": "Icicle", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "77-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "intReq": 40, "ms": 5, "ref": 15, "int": 7, "sdRaw": 100, "wDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2601}, {"name": "Hillich", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "64-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "mr": 5, "xpb": 20, "spRegen": 25, "hprRaw": 30, "fixID": true, "id": 2600}, {"name": "Joyous", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "xpb": 33, "lb": 10, "spRegen": 10, "fixID": true, "id": 2605}, {"name": "Mistletoe", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 120, "wDef": 20, "eDef": 20, "lvl": 50, "strReq": 10, "intReq": 10, "wDamPct": 5, "eDamPct": 5, "wDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2606}, {"name": "Myrrh", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -100, "wDef": 10, "lvl": 65, "intReq": 50, "mr": 5, "sdPct": 4, "type": "ring", "fixID": true, "id": 2604}, {"name": "Nativitate", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "xpb": 10, "lb": 33, "eSteal": 5, "fixID": true, "id": 2603}, {"name": "Polar Star", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "107-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 45, "sdPct": 10, "mdPct": 10, "xpb": 10, "dex": 10, "spd": 10, "sdRaw": 100, "eDamPct": -10, "fixID": true, "id": 2609}, {"name": "Reindeer Paws", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 800, "fDef": -40, "lvl": 60, "strReq": 15, "agiReq": 15, "mdPct": 12, "str": 4, "agi": 4, "spd": 16, "aDamPct": 8, "eDamPct": 8, "fixID": true, "id": 2607}, {"name": "Roasted Chestnut", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "defReq": 25, "hprRaw": 50, "type": "necklace", "fixID": true, "id": 2610}, {"name": "Blue Ornament", "tier": "Set", "category": "accessory", "drop": "never", "wDef": 25, "lvl": 45, "xpb": 6, "wDamPct": 6, "type": "ring", "fixID": true, "id": 2611, "set": "Wynnterfest 2016"}, {"name": "North Pole", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-50", "fDam": "17-25", "wDam": "0-0", "aDam": "17-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "agiReq": 20, "defReq": 20, "lb": 15, "agi": 7, "def": 7, "spd": 10, "fDefPct": 20, "aDefPct": 20, "fixID": true, "id": 2608}, {"name": "Elf Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "fDef": 10, "aDef": 40, "lvl": 50, "agiReq": 35, "lb": 9, "agi": 5, "spd": 8, "fixID": true, "id": 2612, "set": "Elf"}, {"name": "Elf Robe", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 775, "fDef": 40, "aDef": 10, "lvl": 50, "defReq": 35, "lb": 8, "def": 5, "hprRaw": 35, "fixID": true, "id": 2613, "set": "Elf"}, {"name": "Elf Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 730, "fDef": 30, "aDef": 20, "lvl": 50, "agiReq": 10, "defReq": 25, "lb": 9, "spd": 6, "hprRaw": 30, "fixID": true, "id": 2614, "set": "Elf"}, {"name": "Elf Shoes", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 685, "fDef": 20, "aDef": 30, "lvl": 50, "agiReq": 25, "defReq": 10, "hprPct": 15, "lb": 9, "spd": 6, "fixID": true, "id": 2617, "set": "Elf"}, {"name": "Green Ornament", "tier": "Set", "category": "accessory", "drop": "never", "eDef": 25, "lvl": 55, "xpb": 6, "eDamPct": 6, "type": "necklace", "fixID": true, "id": 2615, "set": "Wynnterfest 2016"}, {"name": "Saint's Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 1650, "wDef": 30, "aDef": 40, "lvl": 70, "intReq": 60, "agiReq": 65, "xpb": 15, "int": 5, "spd": 15, "aDamPct": 15, "fixID": true, "id": 2620, "set": "Saint's"}, {"name": "Red Ornament", "tier": "Set", "category": "accessory", "drop": "never", "fDef": 25, "lvl": 50, "xpb": 6, "fDamPct": 6, "type": "bracelet", "fixID": true, "id": 2616, "set": "Wynnterfest 2016"}, {"name": "Saint's Shawl", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "wDef": 60, "lvl": 70, "intReq": 60, "xpb": 10, "ref": 15, "int": 8, "fixID": true, "id": 2619, "set": "Saint's"}, {"name": "Saint's Sandals", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "aDef": 60, "lvl": 70, "agiReq": 60, "xpb": 10, "agi": 8, "spd": 15, "fixID": true, "id": 2618, "set": "Saint's"}, {"name": "Saint's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "wDef": 40, "aDef": 30, "lvl": 70, "intReq": 65, "agiReq": 60, "xpb": 15, "ref": 15, "agi": 5, "wDamPct": 15, "fixID": true, "id": 2622, "set": "Saint's"}, {"name": "Sheet Ice", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-80", "fDam": "0-0", "wDam": "35-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 85, "intReq": 50, "sdPct": 15, "mdPct": -15, "ref": 25, "int": 7, "sdRaw": 100, "fDamPct": -15, "fixID": true, "id": 2623}, {"name": "Yellow Ornament", "tier": "Set", "category": "accessory", "drop": "never", "tDef": 25, "lvl": 50, "xpb": 6, "tDamPct": 6, "type": "ring", "fixID": true, "id": 2621, "set": "Wynnterfest 2016"}, {"name": "Sleigh Bell", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-70", "fDam": "0-0", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 45, "agi": 15, "spd": 15, "aDamPct": 15, "aDefPct": 15, "fixID": true, "id": 2627}, {"name": "Silent Night", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1050-1225", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 65, "ls": 250, "spd": -8, "tDamPct": 15, "tDefPct": 10, "fixID": true, "spRaw3": -15, "id": 2624}, {"name": "Snow Shovel", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "220-300", "aDam": "160-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 75, "intReq": 30, "agiReq": 30, "sdPct": 25, "ms": 5, "int": 10, "spd": -10, "wDamPct": 10, "aDamPct": 15, "fDefPct": -10, "fixID": true, "id": 2626}, {"name": "Sleet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-65", "fDam": "0-0", "wDam": "100-290", "aDam": "0-0", "tDam": "0-390", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 85, "dexReq": 35, "intReq": 35, "sdPct": 25, "ms": 5, "spd": -10, "hprRaw": -150, "sdRaw": 130, "fDamPct": -35, "wDamPct": 15, "aDamPct": -35, "tDamPct": 15, "eDamPct": -35, "fixID": true, "id": 2625}, {"name": "Snowdrift", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-135", "fDam": "0-0", "wDam": "155-195", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "intReq": 30, "mr": 5, "sdPct": 20, "int": 8, "spd": -8, "wDamPct": 10, "wDefPct": 20, "fixID": true, "id": 2630}, {"name": "Snowflake", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 20, "aDef": 20, "lvl": 75, "intReq": 50, "mr": 5, "ms": 5, "hprRaw": -55, "type": "necklace", "fixID": true, "id": 2629}, {"name": "Thaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "45-60", "fDam": "20-30", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "intReq": 25, "defReq": 25, "mr": 5, "sdPct": 12, "ref": 15, "int": 7, "def": 4, "expd": 20, "fDefPct": -12, "fixID": true, "id": 2631}, {"name": "Spearmint", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "60-110", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 35, "sdPct": 8, "mdPct": 8, "agi": 10, "spd": 20, "aDamPct": 10, "aDefPct": 10, "fixID": true, "id": 2628}, {"name": "Splinter", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "FAST", "lvl": 45, "xpb": 15, "expd": 15, "spRegen": 15, "mdRaw": 59, "fixID": true, "id": 2632}, {"name": "The Hearth", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "175-225", "fDam": "125-165", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "defReq": 50, "hprPct": 25, "sdPct": -15, "ls": 580, "def": 5, "spRegen": 10, "hprRaw": 180, "wDamPct": -12, "fixID": true, "id": 2633}, {"name": "Warming Heart", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3000, "fDef": 140, "wDef": -250, "aDef": 110, "lvl": 90, "agiReq": 40, "defReq": 50, "hprPct": 25, "sdPct": 17, "ls": 255, "agi": 5, "def": 5, "fDefPct": 25, "fixID": true, "id": 2635}, {"name": "Wooly Cap", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "never", "hp": 575, "wDef": 40, "aDef": 30, "lvl": 45, "def": 10, "wDefPct": 15, "aDefPct": 20, "fixID": true, "id": 2637}, {"name": "Wishing Star", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "strReq": 50, "dexReq": 35, "ms": 5, "lb": 30, "dex": 5, "int": -7, "mdRaw": 70, "eDamPct": 30, "fixID": true, "id": 2636}, {"name": "White Craftmas", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "44-48", "fDam": "0-0", "wDam": "125-140", "aDam": "0-0", "tDam": "0-0", "eDam": "125-140", "atkSpd": "SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "lb": 15, "spd": -10, "wDamPct": 10, "eDamPct": 10, "wDefPct": 15, "aDefPct": 30, "eDefPct": 15, "fixID": true, "id": 2634}, {"name": "Poinsettia", "tier": "Rare", "type": "relik", "poison": 1000, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "60-75", "atkSpd": "FAST", "lvl": 65, "strReq": 30, "intReq": 30, "ms": -5, "str": 5, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 2640}, {"name": "Yuletide", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-40", "atkSpd": "SLOW", "lvl": 55, "defReq": 20, "mdPct": 15, "str": 6, "hpBonus": 150, "fDamPct": 15, "wDamPct": -5, "wDefPct": -10, "fixID": true, "id": 2639}, {"name": "Fuunyet", "tier": "Rare", "type": "spear", "quest": "Troubled Tribesmen", "poison": 1150, "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-225", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "80-100", "eDam": "80-100", "atkSpd": "VERY_SLOW", "lvl": 75, "strReq": 30, "dexReq": 30, "defReq": 30, "ls": 240, "xpb": 15, "str": 6, "dex": 6, "def": 6, "expd": 20, "fixID": true, "id": 2641}, {"name": "Kal Hei", "tier": "Rare", "type": "wand", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "20-30", "aDam": "20-30", "tDam": "0-0", "eDam": "20-30", "atkSpd": "FAST", "lvl": 75, "strReq": 30, "intReq": 30, "agiReq": 30, "mdPct": 30, "ms": 10, "xpb": 15, "str": 6, "int": 6, "agi": 6, "spd": 15, "fixID": true, "id": 2644}, {"name": "Hembwal", "tier": "Rare", "type": "chestplate", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 150, "wDef": -100, "aDef": -100, "tDef": 150, "eDef": 150, "lvl": 76, "strReq": 50, "dexReq": 50, "defReq": 50, "ms": 15, "int": -20, "agi": -20, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2645}, {"name": "Olit Vaniek", "tier": "Rare", "type": "bow", "quest": "Troubled Tribesmen", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-175", "fDam": "70-85", "wDam": "0-0", "aDam": "70-85", "tDam": "0-0", "eDam": "70-85", "atkSpd": "SLOW", "lvl": 75, "strReq": 30, "agiReq": 30, "defReq": 30, "xpb": 15, "str": 6, "agi": 6, "def": 6, "expd": 30, "hpBonus": 1000, "fixID": true, "id": 2647}, {"name": "Vei Haon", "tier": "Rare", "type": "boots", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2000, "fDef": 175, "wDef": -75, "aDef": 175, "tDef": -75, "eDef": 175, "lvl": 74, "strReq": 50, "agiReq": 50, "defReq": 50, "hprPct": 25, "dex": -20, "int": -20, "fDamPct": 15, "aDamPct": 15, "eDamPct": 15, "fDefPct": 40, "aDefPct": 40, "eDefPct": 40, "fixID": true, "id": 2649}, {"name": "Zawah Jed", "tier": "Rare", "type": "dagger", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "36-50", "fDam": "20-25", "wDam": "20-25", "aDam": "20-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "intReq": 30, "agiReq": 30, "defReq": 30, "mr": 15, "xpb": 15, "ref": 15, "int": 6, "agi": 6, "def": 6, "hprRaw": 115, "fixID": true, "id": 2646}, {"name": "Fruma Imported Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 28, "aDef": 3, "lvl": 9, "hprPct": 6, "spd": 4, "hprRaw": 2, "fixID": true, "id": 2650}, {"name": "Armored Culottes", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "never", "hp": 28, "fDef": 3, "lvl": 8, "def": 4, "spd": -4, "fixID": true, "id": 2652}, {"name": "Black Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-7", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 5, "dex": 3, "fixID": true, "id": 2653}, {"name": "Gavel Imported Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "sdPct": 5, "int": 2, "wDamPct": 3, "fixID": true, "id": 2651}, {"name": "Guard Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hpBonus": 15, "hprRaw": 3, "fixID": true, "id": 2654}, {"name": "Merchant Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 18, "lvl": 7, "lb": 7, "spd": 3, "fixID": true, "id": 2658}, {"name": "Jeweled Vestments", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 18, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 6, "xpb": 3, "lb": 8, "fixID": true, "id": 2655}, {"name": "Mail of the Berserker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 34, "wDef": -3, "lvl": 12, "mdPct": 5, "mdRaw": 13, "fixID": true, "id": 2657}, {"name": "Messenger Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 24, "lvl": 8, "lb": 5, "agi": 3, "spd": 6, "fixID": true, "id": 2656}, {"name": "Almuj Turban", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 60, "tDef": 4, "eDef": -4, "lvl": 14, "lb": 5, "dex": 3, "mdRaw": 10, "tDamPct": 8, "eDefPct": -8, "fixID": true, "id": 2648}, {"name": "Nemract Waders", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "wDef": 6, "tDef": -3, "lvl": 16, "sdPct": 5, "lb": 5, "int": 3, "wDamPct": 6, "tDefPct": -6, "fixID": true, "id": 2659}, {"name": "Slush Rush", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-68", "fDam": "0-0", "wDam": "74-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 75, "intReq": 40, "mr": -5, "agi": 5, "spd": 20, "sdRaw": 95, "wDefPct": 20, "aDefPct": 15, "fixID": true, "id": 2643}, {"name": "Pike of Fury", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 12, "dex": 1, "spd": 6, "mdRaw": 8, "fixID": true, "id": 2661}, {"name": "Nesaak Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 65, "fDef": -4, "aDef": 5, "lvl": 14, "xpb": 5, "agi": 3, "spd": 7, "aDamPct": 7, "fDefPct": -7, "fixID": true, "id": 2660}, {"name": "Puncturing Dirk", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdRaw": 6, "mdRaw": 5, "fixID": true, "id": 2664}, {"name": "Refined Longbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "xpb": 4, "dex": 2, "fixID": true, "id": 2663}, {"name": "Ragni Fatigues", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 76, "aDef": -4, "eDef": 5, "lvl": 15, "mdPct": 6, "xpb": 5, "str": 3, "eDamPct": 8, "aDefPct": -7, "fixID": true, "id": 2662}, {"name": "Reinforced Composite Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "60-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "def": 3, "spd": -4, "hpBonus": 25, "fixID": true, "id": 2665}, {"name": "Scout Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "xpb": 4, "agi": 3, "spd": 6, "fixID": true, "id": 2666}, {"name": "Spiritual Siphoner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-18", "fDam": "0-0", "wDam": "3-6", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "mr": 5, "xpb": 8, "spRegen": 10, "fixID": true, "id": 2670}, {"name": "Staff of Wisdom", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "hprPct": 8, "xpb": 6, "fixID": true, "id": 2667}, {"name": "Tromsian Survival Knife", "tier": "Rare", "type": "dagger", "thorns": 9, "category": "weapon", "slots": 1, "drop": "never", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-6", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 6, "str": 4, "fixID": true, "id": 2672}, {"name": "The Magician", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "2-5", "fDam": "0-0", "wDam": "7-10", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 5, "mdPct": -6, "int": 3, "wDamPct": 6, "fixID": true, "id": 2668}, {"name": "Windcatcher Totem", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-11", "fDam": "0-0", "wDam": "0-0", "aDam": "4-5", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "lb": 6, "spd": 10, "fixID": true, "id": 2674}, {"name": "Ashes", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 800, "wDef": -50, "aDef": -50, "lvl": 94, "defReq": 65, "hpBonus": 200, "wDefPct": -10, "aDefPct": -10, "type": "necklace", "fixID": true, "id": 2673}, {"name": "Cinders", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 675, "fDef": 50, "wDef": -70, "lvl": 93, "defReq": 55, "expd": 5, "fDamPct": 9, "wDefPct": -7, "type": "bracelet", "fixID": true, "id": 2675}, {"name": "War Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "sdPct": 3, "mdPct": 5, "str": 2, "hpBonus": -10, "fixID": true, "id": 2671}, {"name": "Pride", "tier": "Rare", "category": "accessory", "drop": "never", "eDef": 20, "lvl": 93, "strReq": 50, "mdPct": 8, "xpb": 5, "str": 5, "type": "bracelet", "fixID": true, "id": 2679}, {"name": "Evapar", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": -30, "wDef": 20, "aDef": 30, "lvl": 94, "agiReq": 60, "int": 3, "spd": 7, "wDamPct": 8, "aDamPct": 8, "type": "ring", "fixID": true, "id": 2698}, {"name": "Iron Will", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 95, "defReq": 75, "hprPct": 15, "sdPct": -5, "def": 4, "hprRaw": 50, "type": "ring", "fixID": true, "id": 2676}, {"name": "The Naturalist", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "20-24", "aDam": "0-0", "tDam": "0-0", "eDam": "24-28", "atkSpd": "SLOW", "lvl": 12, "sdPct": 7, "mdPct": 7, "int": 4, "hprRaw": 8, "fixID": true, "id": 2669}, {"name": "Tungsten", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 92, "dexReq": 40, "dex": 2, "mdRaw": 16, "tDamPct": 8, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 2677}, {"name": "Sparks", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 500, "fDef": 30, "wDef": -20, "lvl": 92, "defReq": 40, "fDamPct": 7, "wDamPct": -7, "type": "ring", "fixID": true, "id": 2678}, {"name": "Dujgon Warrior Hammer", "tier": "Legendary", "type": "spear", "quest": "Ice Nations", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "46-67", "atkSpd": "VERY_FAST", "lvl": 43, "strReq": 15, "dexReq": 5, "str": 6, "dex": 2, "hpBonus": -130, "eDamPct": 8, "fixID": true, "id": 2681}, {"name": "Greysmith", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "drop": "never", "hp": 400, "fDef": -60, "lvl": 43, "strReq": 10, "str": 3, "dex": 4, "tDamPct": 30, "eDamPct": 10, "fixID": true, "id": 2684}, {"name": "Dujgon Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "aDef": 20, "tDef": 10, "lvl": 41, "hprPct": 10, "mdPct": 10, "agi": 8, "eSteal": 10, "aDamPct": 10, "tDamPct": 10, "aDefPct": 20, "tDefPct": 20, "fixID": true, "id": 2680}, {"name": "Rusher", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "aDef": 10, "tDef": 10, "lvl": 40, "agiReq": 20, "agi": 5, "spd": 20, "aDamPct": 15, "tDamPct": 15, "fixID": true, "id": 2683}, {"name": "Antivenom", "tier": "Unique", "poison": -200, "category": "accessory", "drop": "never", "hp": 150, "lvl": 67, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2685}, {"name": "Viking Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "agiReq": 20, "sdPct": -10, "mdPct": 20, "hpBonus": -255, "aDamPct": 15, "eDamPct": 30, "fixID": true, "id": 2682}, {"name": "Cattail", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 10, "lvl": 70, "strReq": 15, "intReq": 10, "sdPct": 5, "mdPct": 5, "wDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2686}, {"name": "Boomslang", "tier": "Rare", "poison": 300, "category": "accessory", "drop": "never", "lvl": 71, "hprPct": -10, "str": 3, "hprRaw": -30, "type": "necklace", "fixID": true, "id": 2688}, {"name": "Glimmer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 67, "xpb": 8, "lb": 8, "tDamPct": 7, "type": "ring", "fixID": true, "id": 2690}, {"name": "Creepvine", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "never", "fDef": -15, "lvl": 69, "strReq": 25, "str": 3, "spd": -8, "eDamPct": 8, "type": "ring", "fixID": true, "id": 2687}, {"name": "Purity", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 5, "spRegen": 15, "type": "necklace", "fixID": true, "id": 2694}, {"name": "Affluence", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 92, "lb": 12, "eSteal": 8, "type": "necklace", "fixID": true, "id": 2691}, {"name": "Diamond Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 525, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 88, "defReq": 40, "lb": 5, "type": "bracelet", "fixID": true, "id": 2692}, {"name": "Growth", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 68, "strReq": 30, "xpb": 4, "str": 4, "dex": 1, "int": 1, "agi": 1, "def": 1, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2689}, {"name": "Emerald Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 89, "lb": 20, "type": "necklace", "fixID": true, "id": 2695}, {"name": "Jewelled Broach", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 90, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2693}, {"name": "Silversplint", "tier": "Rare", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 89, "agiReq": 35, "lb": 5, "ref": 11, "aDamPct": 8, "aDefPct": 5, "type": "bracelet", "fixID": true, "id": 2696}, {"name": "Foehn Wind", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-68", "fDam": "56-72", "wDam": "0-0", "aDam": "52-76", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 41, "agiReq": 14, "defReq": 14, "xpb": 14, "lb": 14, "spRegen": 14, "fDamPct": 14, "aDamPct": 14, "fDefPct": 14, "wDefPct": -28, "aDefPct": 14, "fixID": true, "id": 2700}, {"name": "Decay Burner", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "114-194", "fDam": "469-686", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 62, "defReq": 25, "sdPct": 10, "ms": 5, "expd": 15, "fDamPct": 10, "wDefPct": -12, "fixID": true, "id": 2702}, {"name": "Value", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 91, "xpb": 10, "lb": 15, "type": "bracelet", "fixID": true, "id": 2699}, {"name": "Barkgraft", "tier": "Unique", "type": "relik", "poison": 400, "thorns": 25, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-85", "fDam": "0-0", "wDam": "0-0", "aDam": "160-180", "tDam": "0-0", "eDam": "160-180", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 25, "agiReq": 25, "str": 5, "agi": 5, "spd": -15, "mdRaw": 145, "fDefPct": -50, "fixID": true, "id": 2697}, {"name": "Grave Digger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-90", "atkSpd": "SLOW", "lvl": 61, "strReq": 25, "ls": 145, "lb": 8, "str": 4, "eSteal": 2, "wDamPct": -7, "eDefPct": 5, "fixID": true, "id": 2705}, {"name": "Stringhollow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "agiReq": 20, "ref": 8, "agi": 4, "spd": 12, "hpBonus": -100, "sdRaw": 60, "aDefPct": 8, "fixID": true, "id": 2708}, {"name": "Kerasot Spreader", "tier": "Unique", "type": "spear", "poison": 1000, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "int": -4, "expd": 6, "spd": 6, "fixID": true, "id": 2704}, {"name": "Lookout", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 790, "aDef": 30, "eDef": 30, "lvl": 59, "agiReq": 25, "mdPct": -5, "xpb": 10, "agi": 6, "spd": 12, "aDamPct": 6, "fixID": true, "id": 2701}, {"name": "Searchlight", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "39-56", "fDam": "21-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "defReq": 20, "sdPct": 10, "ref": 8, "dex": 3, "def": 4, "tDamPct": 12, "fixID": true, "id": 2709}, {"name": "The Silent", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 900, "fDef": 40, "wDef": 40, "tDef": -60, "lvl": 62, "intReq": 25, "mr": 5, "sdPct": 12, "mdPct": -8, "xpb": 12, "spd": -8, "sdRaw": 40, "fixID": true, "id": 2707}, {"name": "Vampire Blocker", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "drop": "never", "hp": 1100, "eDef": -25, "lvl": 64, "defReq": 20, "ls": 105, "ref": 5, "def": 4, "fixID": true, "id": 2706}, {"name": "Lycanthropy", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "44-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 35, "int": -6, "hprRaw": -188, "mdRaw": 65, "tDamPct": 24, "wDefPct": -18, "aDefPct": -18, "fixID": true, "id": 2703}, {"name": "Wolf Tagger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "205-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "dexReq": 10, "sdPct": 6, "mdPct": 8, "xpb": 10, "dex": 4, "fixID": true, "id": 2785}, {"name": "Wildfire", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 65, "wDef": -60, "lvl": 60, "defReq": 35, "sdPct": 8, "mdPct": 12, "expd": 7, "sdRaw": 70, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2710}, {"name": "Crystal-Blend Pendant", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 34, "mr": 5, "sdPct": -5, "sdRaw": -15, "type": "necklace", "fixID": true, "id": 2716}, {"name": "Werepelt", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 975, "fDef": -30, "lvl": 61, "sdPct": -18, "mdPct": 15, "spd": 6, "sdRaw": -80, "mdRaw": 105, "fixID": true, "id": 2711}, {"name": "Blood-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "poison": 60, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "type": "necklace", "fixID": true, "id": 2726}, {"name": "Emerald-Tinted Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 31, "xpb": 4, "lb": 8, "type": "necklace", "fixID": true, "id": 2714}, {"name": "Plain Glass Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "lvl": 31, "xpb": 7, "type": "necklace", "fixID": true, "id": 2713}, {"name": "Marrow-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "ls": 10, "type": "necklace", "fixID": true, "id": 2712}, {"name": "Scarab-Shelled Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2715}, {"name": "Sting-Glass Necklace", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -60, "lvl": 37, "sdPct": 5, "mdPct": 5, "sdRaw": 15, "mdRaw": 16, "type": "necklace", "fixID": true, "id": 2718}, {"name": "Goblin Arm Bracer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 75, "lvl": 43, "mdPct": 4, "lb": 9, "def": 4, "type": "bracelet", "fixID": true, "id": 2719}, {"name": "Webbed Glass Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "spd": 10, "type": "necklace", "fixID": true, "id": 2720}, {"name": "Goblin Cloak", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 470, "aDef": -20, "lvl": 45, "strReq": 30, "dexReq": 30, "ls": 33, "ms": 5, "lb": 15, "fixID": true, "id": 2725, "set": "Goblin"}, {"name": "Goblin Hex Focus", "tier": "Rare", "poison": 65, "category": "accessory", "drop": "never", "hp": -70, "lvl": 42, "sdPct": 6, "fDamPct": 3, "wDamPct": 3, "aDamPct": 3, "tDamPct": 3, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2717}, {"name": "Goblin Hood", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 380, "aDef": -10, "lvl": 41, "strReq": 25, "dexReq": 10, "sdPct": -7, "ls": 27, "lb": 10, "spd": 8, "fixID": true, "id": 2721, "set": "Goblin"}, {"name": "Goblin Luck Charm", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 43, "lb": 12, "spRegen": 7, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2722}, {"name": "Goblin-Silver Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 30, "fDef": 6, "wDef": 6, "aDef": 6, "tDef": 6, "eDef": 6, "lvl": 40, "xpb": 4, "lb": 8, "type": "ring", "fixID": true, "id": 2723}, {"name": "Short Cutter", "tier": "Rare", "type": "dagger", "poison": 215, "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 20, "ls": 46, "xpb": 8, "lb": 15, "dex": 5, "spd": 12, "mdRaw": 33, "fixID": true, "id": 2727}, {"name": "Goblin Runners", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "lvl": 43, "strReq": 10, "dexReq": 25, "mdPct": -7, "ms": 5, "lb": 10, "spd": 12, "fixID": true, "id": 2724, "set": "Goblin"}, {"name": "Silver Short Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "strReq": 20, "mdPct": 8, "xpb": 8, "lb": 15, "str": 4, "eSteal": 3, "fixID": true, "id": 2740}, {"name": "Quartz Driller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-35", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 39, "dexReq": 10, "xpb": 6, "lb": 6, "str": 3, "dex": 3, "mdRaw": 46, "fixID": true, "id": 2728}, {"name": "Hue", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-20", "fDam": "17-20", "wDam": "17-20", "aDam": "17-20", "tDam": "17-20", "eDam": "17-20", "atkSpd": "SLOW", "lvl": 39, "strReq": 9, "dexReq": 9, "intReq": 9, "agiReq": 9, "defReq": 9, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "fixID": true, "id": 2731}, {"name": "Hotline", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "36-42", "fDam": "36-42", "wDam": "0-0", "aDam": "0-0", "tDam": "36-42", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "dexReq": 15, "defReq": 15, "ls": 34, "xpb": 8, "dex": 7, "def": 7, "spd": 8, "hprRaw": -17, "fixID": true, "id": 2729}, {"name": "Orc Slasher", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "11-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "hprPct": 10, "mdPct": 5, "spd": 3, "fixID": true, "id": 2730}, {"name": "Deark", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "wDef": -30, "lvl": 76, "dexReq": 50, "dex": 2, "spRegen": -10, "mdRaw": 43, "tDamPct": 8, "tDefPct": 6, "type": "ring", "fixID": true, "id": 2732}, {"name": "Diminished", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 73, "sdPct": 7, "mdPct": 7, "ms": 5, "xpb": -8, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spd": 8, "hpBonus": 300, "type": "ring", "fixID": true, "id": 2734}, {"name": "Fanatic", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 72, "sdPct": 8, "int": -5, "sdRaw": 40, "type": "bracelet", "fixID": true, "id": 2736}, {"name": "Scum", "tier": "Unique", "quest": "Eye of the Storm", "poison": 250, "category": "accessory", "drop": "never", "wDef": 20, "lvl": 74, "intReq": 30, "wDamPct": 7, "type": "ring", "fixID": true, "id": 2737}, {"name": "Famine", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "eDef": -20, "lvl": 75, "agiReq": 40, "ls": 50, "str": -3, "spd": 12, "hprRaw": -20, "type": "ring", "fixID": true, "id": 2733}, {"name": "Destrortur", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": -480, "fDef": -10, "wDef": -5, "aDef": -10, "eDef": -20, "lvl": 76, "dexReq": 50, "hprPct": -24, "dex": 4, "hprRaw": -48, "sdRaw": 45, "mdRaw": 29, "tDamPct": 16, "type": "bracelet", "fixID": true, "id": 2735}, {"name": "Recovery", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": 140, "lvl": 72, "hprPct": 8, "spd": -5, "hprRaw": 40, "type": "ring", "fixID": true, "id": 2739}, {"name": "Blessing", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "12-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 4, "spd": 6, "fDamPct": -10, "fixID": true, "id": 2738}, {"name": "Sacred", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 305, "wDef": 15, "aDef": 10, "lvl": 40, "intReq": 15, "agiReq": 10, "mr": 5, "xpb": 6, "agi": 3, "wDamPct": 5, "aDamPct": 5, "fixID": true, "id": 2744}, {"name": "Traitor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-55", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "defReq": 10, "hprPct": 10, "agi": 2, "def": 3, "spd": 5, "fDamPct": -10, "aDamPct": 15, "fixID": true, "id": 2741}, {"name": "Black Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "category": "armor", "drop": "never", "hp": 100, "lvl": 18, "ls": 8, "lb": 10, "eSteal": 2, "tDamPct": 10, "fixID": true, "id": 2746}, {"name": "Stonebreaker", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "sdPct": -5, "lb": 5, "str": 1, "wDamPct": -15, "fixID": true, "id": 2743}, {"name": "Bush Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc5NWVkZWViNmI3ZWQ0MWMyNjhjZWZlYWZiZTk2MGI3YzQ5NTUwZGFlYjYzMWI1NjE1NmJmNWZlYjk4NDcifX19", "thorns": 8, "category": "armor", "drop": "never", "hp": 55, "fDef": -10, "eDef": 10, "lvl": 16, "str": 4, "spd": 8, "fixID": true, "id": 2745}, {"name": "Metal Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmJhODQ1OTE0NWQ4M2ZmYzQ0YWQ1OGMzMjYwZTc0Y2E1YTBmNjM0YzdlZWI1OWExYWQzMjM0ODQ5YzkzM2MifX19", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "lvl": 16, "def": 7, "fixID": true, "id": 2747}, {"name": "Ice Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTZhYWI1OGZhMDFmY2U5YWY0NjllZDc0N2FlZDgxMWQ3YmExOGM0NzZmNWE3ZjkwODhlMTI5YzMxYjQ1ZjMifX19", "category": "armor", "drop": "never", "hp": 60, "fDef": -8, "aDef": 12, "lvl": 17, "ms": 5, "ref": 12, "mdRaw": 20, "aDamPct": 10, "fixID": true, "id": 2748}, {"name": "Water Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWM3ZWNiZmQ2ZDMzZTg3M2ExY2Y5YTkyZjU3ZjE0NjE1MmI1MmQ5ZDczMTE2OTQ2MDI2NzExMTFhMzAyZiJ9fX0=", "category": "armor", "drop": "never", "hp": -25, "wDef": 10, "lvl": 17, "mr": 5, "sdPct": 10, "int": 5, "wDamPct": 10, "fixID": true, "id": 2750}, {"name": "Mud Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWVhNmY5MzJiNDVmZGYzYjY5M2Q5ZTQ0YmQwNWJjYTM2NGViNWI5YWZmNDk3MjI2ZmRiNTJhYmIyNDM2NDIyIn19fQ==", "poison": 15, "category": "armor", "drop": "never", "hp": 65, "wDef": 5, "aDef": -10, "eDef": 5, "lvl": 16, "sdPct": 6, "mdPct": 6, "spd": -8, "fixID": true, "id": 2749}, {"name": "Shiny Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjVkN2JlZDhkZjcxNGNlYTA2M2U0NTdiYTVlODc5MzExNDFkZTI5M2RkMWQ5YjkxNDZiMGY1YWIzODM4NjYifX19", "category": "armor", "drop": "never", "hp": 50, "lvl": 15, "xpb": 15, "spRegen": 5, "sdRaw": 10, "fixID": true, "id": 2751}, {"name": "Solid Quartz Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 360, "lvl": 43, "defReq": 20, "hprPct": 10, "def": 5, "hprRaw": 20, "fixID": true, "id": 2742}, {"name": "Rock Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDU0ZDljNDg4YzNmYmRlNTQ1NGUzODYxOWY5Y2M1YjViYThjNmMwMTg2ZjhhYTFkYTYwOTAwZmNiYzNlYTYifX19", "category": "armor", "drop": "never", "hp": 60, "eDef": 5, "lvl": 15, "sdPct": -5, "mdPct": 10, "str": 3, "eDamPct": 5, "fixID": true, "id": 2752}, {"name": "Cracheur", "tier": "Unique", "type": "bow", "thorns": 4, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-14", "fDam": "0-0", "wDam": "12-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "intReq": 14, "sdPct": 6, "int": 2, "aDamPct": 4, "fixID": true, "id": 2753}, {"name": "Arcanic", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 70, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 21, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fixID": true, "id": 2756}, {"name": "Fisher's Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 82, "wDef": 4, "lvl": 22, "hprPct": 8, "xpb": 4, "lb": 8, "dex": 2, "fixID": true, "id": 2755}, {"name": "Foundation", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 90, "eDef": 3, "lvl": 20, "mdPct": 5, "def": 2, "eDamPct": 6, "fixID": true, "id": 2754}, {"name": "Frog", "tier": "Unique", "type": "bow", "poison": 45, "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "4-10", "aDam": "0-0", "tDam": "0-0", "eDam": "6-12", "atkSpd": "NORMAL", "lvl": 19, "strReq": 12, "intReq": 8, "sdPct": -5, "mdPct": -5, "agi": 3, "fixID": true, "id": 2758}, {"name": "Memorial", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 100, "lvl": 19, "intReq": 5, "ms": 5, "spRegen": 10, "fixID": true, "id": 2759}, {"name": "Remembrance", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-23", "fDam": "0-0", "wDam": "0-0", "aDam": "13-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "agiReq": 8, "ref": 8, "spRegen": 10, "aDefPct": 10, "fixID": true, "spPct1": -17, "id": 2763}, {"name": "Shajone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 85, "lvl": 18, "hprRaw": 5, "sdRaw": 5, "mdRaw": 7, "fixID": true, "id": 2757}, {"name": "White Ghost", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-24", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "agiReq": 15, "ms": 5, "agi": 4, "spd": 5, "fixID": true, "id": 2765}, {"name": "Swamp Treads", "tier": "Unique", "type": "boots", "poison": 35, "thorns": 7, "category": "armor", "slots": 1, "drop": "never", "hp": 105, "lvl": 23, "spd": -3, "eSteal": 2, "fixID": true, "id": 2762}, {"name": "The Fallen", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-10", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 23, "xpb": 6, "def": 3, "hpBonus": 50, "fixID": true, "id": 2761}, {"name": "Bob's Sacrifice", "tier": "Unique", "type": "boots", "thorns": 10, "category": "armor", "slots": 1, "drop": "never", "hp": 290, "tDef": -25, "lvl": 45, "strReq": 10, "mdPct": 23, "str": 3, "spd": -6, "mdRaw": -13, "fixID": true, "id": 2764}, {"name": "Celsius", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "11-17", "fDam": "0-0", "wDam": "20-28", "aDam": "18-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "intReq": 20, "agiReq": 15, "ref": 8, "spd": -4, "fDamPct": -20, "wDamPct": 10, "aDamPct": 10, "fixID": true, "id": 2767}, {"name": "Current", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-30", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "xpb": 6, "spd": 5, "sdRaw": 35, "wDamPct": 10, "fixID": true, "id": 2766}, {"name": "Nilrem's Curse", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 310, "wDef": 10, "tDef": 15, "lvl": 40, "dexReq": 15, "xpb": 6, "hprRaw": -15, "sdRaw": 35, "mdRaw": 39, "fixID": true, "id": 2770}, {"name": "Frozen Earth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "34-63", "fDam": "0-0", "wDam": "46-69", "aDam": "0-0", "tDam": "0-0", "eDam": "137-194", "atkSpd": "SUPER_SLOW", "lvl": 40, "strReq": 25, "intReq": 5, "mr": 5, "str": 5, "int": 2, "spd": -7, "aDamPct": 12, "fixID": true, "id": 2769}, {"name": "Homemade Fur Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 375, "fDef": -30, "aDef": 30, "lvl": 44, "agiReq": 15, "hprPct": 15, "agi": 2, "spd": 5, "aDamPct": 7, "aDefPct": 6, "fixID": true, "id": 2768}, {"name": "Summer", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "27-38", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "defReq": 10, "hpBonus": 200, "fDamPct": 8, "eDamPct": 8, "fDefPct": 6, "fixID": true, "id": 2771}, {"name": "Seedling", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "xpb": 4, "str": 2, "type": "necklace", "fixID": true, "id": 2772}, {"name": "Woljawh", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 425, "lvl": 37, "hprPct": 10, "ls": 26, "hprRaw": 20, "fixID": true, "id": 2773}, {"name": "Frankenstein", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-12", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "dexReq": 5, "hprPct": -5, "str": 3, "tDamPct": 7, "eDamPct": 7, "fixID": true, "id": 2760}, {"name": "Flaming War Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-46", "fDam": "50-68", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 5, "def": 5, "hpBonus": 350, "fDamPct": 15, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2776}, {"name": "Tree Bracelet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "hprPct": 6, "type": "bracelet", "fixID": true, "id": 2777}, {"name": "Vine", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 4, "mdPct": 5, "type": "ring", "fixID": true, "id": 2774}, {"name": "Nodguj Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 20, "eDef": 10, "lvl": 41, "hprPct": 25, "mdPct": 5, "def": 8, "eSteal": 10, "fDamPct": 10, "eDamPct": 10, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2775}, {"name": "Shield", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 250, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 40, "defReq": 20, "def": 15, "hprRaw": 20, "fixID": true, "id": 2778}, {"name": "Nodguj Warrior Sword", "tier": "Legendary", "type": "dagger", "quest": "Ice Nations", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "45-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 43, "intReq": 10, "mr": 5, "sdPct": 15, "int": 5, "hpBonus": -200, "wDamPct": 20, "fixID": true, "id": 2779}, {"name": "Strategist", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "lvl": 43, "intReq": 15, "mr": -15, "sdPct": 25, "int": 4, "sdRaw": 40, "wDamPct": 30, "fixID": true, "id": 2781}, {"name": "Chasseur", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 20, "agiReq": 20, "sdPct": -10, "str": 3, "agi": 2, "spd": 6, "aDamPct": 7, "fixID": true, "id": 2780}, {"name": "Longtail Boots", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 600, "lvl": 51, "hprPct": 20, "spd": 14, "fixID": true, "id": 2784}, {"name": "Rotten Swamp", "tier": "Unique", "type": "wand", "poison": 600, "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "SLOW", "lvl": 54, "strReq": 28, "hprPct": -16, "sdPct": 5, "wDamPct": 10, "fixID": true, "id": 2782}, {"name": "Stagnant", "tier": "Rare", "type": "helmet", "poison": 230, "category": "armor", "slots": 2, "drop": "never", "hp": 370, "wDef": 40, "lvl": 49, "intReq": 15, "hprPct": -15, "wDamPct": 10, "eDamPct": 7, "fixID": true, "id": 2786}, {"name": "Waxed Overalls", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 675, "fDef": -45, "wDef": 45, "lvl": 54, "ref": 6, "agi": 4, "spd": 4, "wDefPct": 20, "fixID": true, "id": 2801}, {"name": "Vine Machete", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "40-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "agiReq": 20, "mdPct": 12, "spd": 8, "fDamPct": 12, "eDefPct": 10, "fixID": true, "id": 2783}, {"name": "Captain's Razor", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-50", "fDam": "0-0", "wDam": "6-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 61, "dexReq": 5, "dex": 7, "mdRaw": 47, "wDamPct": 16, "tDamPct": 10, "fixID": true, "id": 2787}, {"name": "Opium", "tier": "Rare", "type": "helmet", "poison": 405, "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "lvl": 63, "xpb": 10, "spd": -10, "fDamPct": 10, "fixID": true, "id": 2788}, {"name": "Pirate Luck", "tier": "Legendary", "type": "boots", "quest": "Beneath The Depths", "category": "armor", "slots": 2, "drop": "never", "hp": 320, "wDef": 60, "lvl": 60, "xpb": 7, "lb": 32, "eSteal": 12, "fixID": true, "id": 2789}, {"name": "Battle Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 20, "lvl": 7, "hprPct": 7, "str": 3, "fixID": true, "id": 2791}, {"name": "Rusty Sword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "60-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 10, "mdPct": 15, "str": 3, "eDamPct": 15, "fixID": true, "id": 2790}, {"name": "Plains Runner", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 8, "lvl": 1, "agi": 2, "fixID": true, "id": 2792}, {"name": "Corkuff", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 87, "intReq": 15, "agiReq": 15, "int": 3, "spd": 6, "wDamPct": 6, "aDamPct": 8, "type": "bracelet", "fixID": true, "id": 2795}, {"name": "Coolant", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 86, "wDamPct": 5, "fDefPct": 8, "wDefPct": 6, "type": "ring", "fixID": true, "id": 2796}, {"name": "Solidified Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 14, "lvl": 4, "xpb": 5, "def": 2, "fixID": true, "id": 2794}, {"name": "Microchip", "tier": "Unique", "category": "accessory", "drop": "never", "tDef": -40, "lvl": 85, "dexReq": 35, "dex": 1, "mdRaw": 17, "tDamPct": 8, "type": "ring", "fixID": true, "id": 2799}, {"name": "Doodad", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "never", "lvl": 87, "xpb": 4, "lb": 4, "ref": 4, "expd": 4, "spd": 4, "spRegen": 4, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2793}, {"name": "Ashen Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "fDef": 70, "aDef": -120, "tDef": 50, "lvl": 92, "dexReq": 40, "defReq": 45, "sdPct": 14, "ms": 10, "ref": -10, "agi": 5, "def": 5, "expd": 12, "fDamPct": 14, "aDamPct": 22, "tDamPct": 14, "fixID": true, "id": 2797}, {"name": "Wristviewer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 86, "sdPct": 4, "xpb": 9, "fDamPct": 4, "wDamPct": 4, "aDamPct": 4, "tDamPct": 4, "eDamPct": 4, "type": "bracelet", "fixID": true, "id": 2800}, {"name": "Quicksilver", "tier": "Rare", "poison": 375, "category": "accessory", "drop": "never", "hp": -600, "aDef": 20, "lvl": 88, "agiReq": 30, "agi": 2, "spd": 10, "type": "necklace", "fixID": true, "id": 2798}, {"name": "Bane of War", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-130", "fDam": "0-0", "wDam": "30-45", "aDam": "20-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 40, "agiReq": 35, "mr": 5, "sdPct": 20, "mdPct": -15, "int": 5, "agi": 5, "spRegen": 10, "mdRaw": -75, "fixID": true, "id": 2802}, {"name": "Comrade", "tier": "Rare", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-215", "fDam": "60-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "defReq": 50, "sdPct": -12, "def": 7, "hpBonus": 2250, "hprRaw": 180, "fDefPct": 20, "eDefPct": -15, "fixID": true, "id": 2807}, {"name": "Diamond Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "56-97", "fDam": "0-0", "wDam": "53-74", "aDam": "53-74", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 35, "agiReq": 35, "hprPct": 20, "mr": 5, "ref": 12, "spd": 12, "fDamPct": -10, "wDefPct": 12, "aDefPct": 12, "fixID": true, "id": 2804}, {"name": "Darkiron Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3275, "fDef": 150, "wDef": -80, "lvl": 90, "defReq": 65, "hprPct": 15, "dex": 10, "def": 5, "spd": -10, "atkTier": -4, "hprRaw": 160, "mdRaw": 850, "fDefPct": 40, "fixID": true, "id": 2803}, {"name": "Eradian Full Helm", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 2500, "fDef": 80, "wDef": 80, "tDef": -60, "eDef": -60, "lvl": 90, "defReq": 50, "hprPct": 15, "sdPct": 20, "mdPct": 20, "ref": 10, "def": 8, "fDamPct": 5, "fixID": true, "id": 2808}, {"name": "Icejewel", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-95", "fDam": "0-0", "wDam": "35-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 55, "ref": 27, "int": 8, "spd": -8, "wDamPct": 20, "wDefPct": 25, "aDefPct": -20, "fixID": true, "id": 2809}, {"name": "Fulminate Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "80-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "defReq": 50, "mdPct": 12, "def": 6, "expd": 25, "hpBonus": 1000, "fDamPct": 15, "eDefPct": -15, "fixID": true, "id": 2805}, {"name": "Low World Greaves", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2350, "wDef": 80, "aDef": -80, "eDef": 120, "lvl": 90, "strReq": 30, "intReq": 30, "sdPct": 18, "mdPct": 18, "eSteal": 6, "wDamPct": 12, "eDamPct": 12, "wDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2806}, {"name": "Magma Flinger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-345", "fDam": "0-445", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "strReq": 40, "defReq": 25, "mdPct": 14, "def": 6, "sdRaw": -95, "mdRaw": 280, "fDamPct": 10, "eDamPct": 30, "wDefPct": -25, "fixID": true, "id": 2812}, {"name": "Mercurial Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2625, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2811}, {"name": "Ramhoof", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "fDef": -90, "lvl": 93, "strReq": 30, "agiReq": 25, "mdPct": 7, "ls": 190, "def": 7, "spd": 15, "mdRaw": 180, "fixID": true, "id": 2816}, {"name": "Mountain's Song", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "510-550", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "510-550", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 40, "defReq": 40, "mdPct": 15, "expd": 25, "hpBonus": 1000, "fixID": true, "spPct1": 35, "spPct4": -21, "id": 2810}, {"name": "Odin", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-51", "fDam": "0-0", "wDam": "0-0", "aDam": "40-88", "tDam": "40-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 35, "agiReq": 35, "sdPct": 8, "mdPct": 10, "dex": 6, "agi": 4, "aDamPct": 12, "tDamPct": 8, "eDamPct": -30, "fixID": true, "id": 2813}, {"name": "Rodoroc's Guard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 3500, "fDef": 100, "aDef": 100, "lvl": 94, "agiReq": 35, "defReq": 35, "sdPct": -10, "mdPct": -8, "str": 10, "agi": 10, "def": 10, "spd": 10, "mdRaw": 195, "fDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2818}, {"name": "Ornamental Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2250, "wDef": 100, "lvl": 91, "intReq": 50, "mr": 10, "sdPct": 12, "xpb": 15, "int": 5, "sdRaw": 190, "fixID": true, "id": 2814}, {"name": "Siege Ram", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-110", "atkSpd": "SLOW", "lvl": 90, "strReq": 40, "sdPct": -15, "mdPct": 20, "lb": 10, "str": 6, "fixID": true, "id": 2815}, {"name": "Stricken Bolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "325-1015", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 35, "ms": 5, "mdRaw": 810, "tDamPct": 25, "wDefPct": -10, "fixID": true, "id": 2822}, {"name": "Vulcamail Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2450, "fDef": 100, "tDef": -100, "eDef": 100, "lvl": 89, "strReq": 40, "defReq": 35, "hprPct": 20, "ls": 220, "ms": 10, "def": 6, "spd": -7, "hpBonus": 600, "wDefPct": 15, "aDefPct": 15, "fixID": true, "id": 2819}, {"name": "Broken Sandust", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 37, "dexReq": 15, "dex": 2, "spd": 1, "tDamPct": 1, "type": "ring", "fixID": true, "id": 2823}, {"name": "Sekaisin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-100", "fDam": "0-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "dexReq": 40, "defReq": 25, "hprPct": -20, "ls": 260, "dex": 10, "hpBonus": -1100, "tDamPct": 60, "fixID": true, "id": 2817}, {"name": "Enhanced Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "fDef": -15, "tDef": -18, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 3, "ref": 2, "fDamPct": 4, "tDamPct": 8, "fixID": true, "id": 2824}, {"name": "Chipped Glitz", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 34, "sdPct": -2, "lb": 4, "type": "ring", "fixID": true, "id": 2820}, {"name": "Enhanced Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "fDef": 15, "wDef": -25, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 1, "def": 1, "expd": 3, "spd": -7, "hpBonus": 20, "fixID": true, "id": 2825}, {"name": "Enhanced DuskShield", "displayName": "Enhanced Duskshield", "tier": "Unique", "type": "leggings", "thorns": 3, "category": "armor", "slots": 2, "drop": "never", "hp": 460, "wDef": 10, "tDef": 10, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -8, "ref": 3, "fDamPct": -12, "eDamPct": -12, "fixID": true, "id": 2826}, {"name": "Cracked Stonehall", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 35, "strReq": 15, "str": 1, "spd": -4, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2830}, {"name": "Enhanced Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 8, "dex": 3, "agi": 2, "def": -7, "eSteal": 5, "fixID": true, "id": 2827}, {"name": "Upgraded Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "13-14", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 2, "int": -1, "agi": 2, "mdRaw": -26, "tDamPct": -14, "tDefPct": 4, "fixID": true, "id": 2828}, {"name": "Upgraded Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "38-56", "fDam": "17-22", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 4, "mr": 5, "spRegen": -5, "fixID": true, "id": 2829}, {"name": "Upgraded Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 4, "eDefPct": -10, "fixID": true, "id": 2831}, {"name": "Upgraded Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "39-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 4, "expd": 3, "spd": -12, "aDamPct": -9, "eDamPct": 5, "fixID": true, "id": 2834}, {"name": "Upgraded Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "24-36", "fDam": "0-0", "wDam": "0-0", "aDam": "13-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 3, "agi": 1, "spd": 3, "aDamPct": 2, "fixID": true, "id": 2837}, {"name": "Backstaff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "14-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-10", "atkSpd": "NORMAL", "lvl": 25, "str": 3, "hpBonus": 60, "mdRaw": 16, "eDefPct": 10, "fixID": true, "id": 2835}, {"name": "Used Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 4, "eDef": 4, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 2, "spd": 3, "aDamPct": 2, "eDamPct": 2, "type": "bracelet", "fixID": true, "id": 2832}, {"name": "Diving Boots II", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 750, "wDef": 65, "tDef": -50, "lvl": 55, "spd": 10, "wDefPct": 15, "id": 2833}, {"name": "Eel Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "9-13", "fDam": "0-0", "wDam": "6-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 10, "xpb": 6, "spd": 5, "sdRaw": 24, "fixID": true, "id": 2841}, {"name": "Diving Boots III", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "hp": 1350, "wDef": 90, "tDef": -75, "lvl": 70, "spd": 15, "wDefPct": 20, "id": 2836}, {"name": "Diving Boots I", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 300, "wDef": 30, "tDef": -30, "lvl": 40, "spd": 5, "wDefPct": 10, "id": 2843}, {"name": "Fishing Hook", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "2-6", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "dexReq": 5, "intReq": 5, "xpb": 5, "spd": 6, "tDamPct": 6, "fixID": true, "id": 2840}, {"name": "Harpoon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "74-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 23, "sdPct": 8, "mdPct": 4, "dex": 3, "spd": -5, "tDefPct": -7, "fixID": true, "id": 2838}, {"name": "Mage-Crafted Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "12-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "intReq": 10, "defReq": 5, "hprPct": 12, "mdPct": -20, "ref": 5, "int": 4, "wDamPct": 15, "fixID": true, "id": 2839}, {"name": "Sea Legs", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "never", "hp": 180, "wDef": 8, "tDef": -6, "lvl": 28, "intReq": 20, "mr": 5, "mdPct": -8, "int": 3, "wDamPct": 8, "fixID": true, "id": 2846}, {"name": "Portable Buoys", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 130, "wDef": 7, "lvl": 25, "ref": 9, "spd": 4, "wDefPct": 12, "fixID": true, "id": 2845}, {"name": "Seafarer's Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "wDef": 7, "aDef": 5, "lvl": 26, "sdPct": 4, "lb": 6, "fixID": true, "id": 2848}, {"name": "Selchar's Famous Breeches", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 125, "lvl": 25, "sdPct": 5, "mdPct": 7, "xpb": 7, "lb": 5, "fixID": true, "id": 2842}, {"name": "The Saltwater Rune", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 8, "intReq": 12, "sdPct": -12, "wDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw3": -10, "id": 2847}, {"name": "The Crow's Nest", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "tDef": 5, "eDef": -3, "lvl": 27, "dexReq": 12, "xpb": 4, "dex": 5, "tDamPct": 7, "fixID": true, "id": 2844}, {"name": "Advancement", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 255, "lvl": 29, "ms": 10, "xpb": 10, "spRegen": 5, "fixID": true, "id": 3564}, {"name": "Tricorne", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 115, "lvl": 24, "lb": 7, "agi": 1, "spd": 7, "hprRaw": 5, "fixID": true, "id": 2850}, {"name": "Tearing Seam", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-26", "fDam": "17-23", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-29", "atkSpd": "FAST", "lvl": 43, "strReq": 16, "defReq": 16, "ls": 33, "xpb": 7, "dex": -7, "int": -7, "agi": -7, "hpBonus": 150, "mdRaw": 43, "fixID": true, "id": 2851}, {"name": "Dilation", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 31, "xpb": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 3633}, {"name": "Diminution", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 320, "lvl": 33, "lb": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 3565}, {"name": "Hourslip", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "aDef": 12, "lvl": 32, "lb": 15, "spd": 30, "fixID": true, "id": 3567}, {"name": "Intuition", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "sdRaw": 12, "type": "bracelet", "fixID": true, "id": 3566}, {"name": "Longevity", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "hprRaw": 15, "type": "necklace", "fixID": true, "id": 3568}, {"name": "Practice", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "mdRaw": 16, "type": "bracelet", "fixID": true, "id": 3570}, {"name": "Reversion", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "lvl": 31, "ls": 32, "lb": 10, "eSteal": 5, "fixID": true, "id": 3572}, {"name": "Secondsaver", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 270, "lvl": 30, "mdPct": -25, "xpb": 15, "atkTier": 1, "fixID": true, "id": 3573}, {"name": "Seal Breaker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 335, "lvl": 34, "sdPct": 25, "xpb": 15, "fixID": true, "id": 3569}, {"name": "Slainte", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 30, "xpb": 5, "lb": 5, "spRegen": 10, "type": "necklace", "fixID": true, "id": 3571}, {"name": "Tempo Totem", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "86-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3632}, {"name": "Tempo Tanto", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "56-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3574}, {"name": "Tempo Ticker", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3634}, {"name": "Tempo Trebuchet", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "115-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3590}, {"name": "Tempo Trident", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3639}, {"name": "Timelocked Breath", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "agi": 3, "aDamPct": 5, "type": "ring", "fixID": true, "id": 3635}, {"name": "Timelocked Coal", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "def": 3, "fDamPct": 5, "type": "ring", "fixID": true, "id": 3636}, {"name": "Timelocked Dew", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "int": 3, "wDamPct": 5, "type": "ring", "fixID": true, "id": 3638}, {"name": "Timelocked Spark", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "dex": 3, "tDamPct": 5, "type": "ring", "fixID": true, "id": 3637}, {"name": "Brass Leg Plates", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": -120, "tDef": 75, "eDef": 75, "lvl": 81, "strReq": 20, "dexReq": 20, "ls": 160, "str": 9, "dex": 9, "tDamPct": 15, "eDamPct": 15, "fixID": true, "id": 2849}, {"name": "Trouble Tamer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "eDef": 12, "lvl": 32, "mdPct": 35, "lb": 15, "fixID": true, "id": 3641}, {"name": "Brass Choker", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": -350, "lvl": 81, "strReq": 10, "dexReq": 40, "mdPct": 4, "str": 1, "dex": 2, "tDamPct": 9, "type": "necklace", "fixID": true, "id": 2852}, {"name": "Crook's March", "tier": "Rare", "type": "relik", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "130-170", "eDam": "140-160", "atkSpd": "SLOW", "lvl": 82, "strReq": 45, "dexReq": 50, "mr": -10, "ls": 250, "ms": 10, "hpBonus": -900, "eSteal": 10, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2858}, {"name": "Double-Edge", "tier": "Rare", "type": "spear", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-130", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 50, "hprPct": -30, "mdPct": 13, "ls": -215, "ms": 5, "dex": 7, "hpBonus": -1000, "sdRaw": 165, "fDamPct": -15, "eDefPct": -10, "fixID": true, "id": 2853}, {"name": "Dragulj Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1875, "lvl": 80, "xpb": 15, "lb": 15, "fDamPct": 18, "wDamPct": 18, "aDamPct": 18, "tDamPct": 18, "eDamPct": 18, "fDefPct": 18, "wDefPct": 18, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "fixID": true, "id": 2854}, {"name": "Dragon Horned Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1850, "fDef": 160, "wDef": -60, "eDef": -60, "lvl": 80, "defReq": 45, "ref": 15, "def": 4, "sdRaw": 160, "mdRaw": 205, "fDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2855}, {"name": "Dragonspit", "tier": "Rare", "type": "bow", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "90-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 335, "def": 4, "expd": 7, "hpBonus": 1200, "fDamPct": 10, "fixID": true, "id": 2879}, {"name": "Earthlink", "tier": "Rare", "type": "boots", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "lvl": 81, "strReq": 55, "xpb": 10, "str": 5, "spd": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": 35, "fixID": true, "id": 2857}, {"name": "Ehoole Drakeskin", "tier": "Rare", "type": "leggings", "quest": "From The Bottom", "category": "armor", "slots": 3, "drop": "never", "hp": 1750, "fDef": -140, "wDef": 90, "aDef": 80, "lvl": 82, "intReq": 30, "agiReq": 45, "mr": 10, "sdPct": 8, "mdPct": -16, "ref": 12, "spd": 16, "sdRaw": 210, "fDamPct": -16, "aDamPct": 12, "fixID": true, "id": 2856}, {"name": "Fire Pearl", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 500, "fDef": 50, "wDef": -40, "lvl": 81, "defReq": 50, "expd": 6, "fDamPct": 6, "wDamPct": -10, "fDefPct": 4, "type": "necklace", "fixID": true, "id": 2860}, {"name": "Flexing Chain", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 25, "lvl": 80, "agiReq": 40, "str": -2, "agi": 3, "spd": 6, "aDamPct": 4, "aDefPct": 6, "type": "bracelet", "fixID": true, "id": 2859}, {"name": "Formation", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 300, "aDef": -25, "eDef": 40, "lvl": 81, "strReq": 45, "defReq": 5, "spd": -4, "eDamPct": 7, "tDefPct": 4, "type": "bracelet", "fixID": true, "id": 2862}, {"name": "Forge Stoker", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-15", "fDam": "35-40", "wDam": "0-0", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 80, "agiReq": 35, "defReq": 25, "ls": 180, "agi": 4, "spd": 8, "hprRaw": -55, "aDamPct": 20, "fDefPct": 16, "wDefPct": -12, "fixID": true, "id": 2861}, {"name": "Ironbody", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "drop": "never", "hp": 2950, "fDef": 110, "wDef": 40, "aDef": 50, "tDef": 60, "eDef": 120, "lvl": 82, "strReq": 35, "defReq": 35, "hprPct": 16, "mdPct": 16, "def": 9, "spd": -10, "aDamPct": -30, "fDefPct": 10, "eDefPct": 12, "fixID": true, "id": 2865}, {"name": "Metal Breaker", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "300-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "270-360", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 40, "mdPct": 10, "str": 6, "def": -4, "expd": 25, "spd": -7, "fixID": true, "id": 2863}, {"name": "Jewel Cutter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-170", "fDam": "0-0", "wDam": "0-0", "aDam": "54-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "agiReq": 40, "lb": 20, "agi": 7, "spd": 10, "eSteal": 4, "mdRaw": 130, "fDefPct": 15, "wDefPct": -12, "aDefPct": 20, "fixID": true, "id": 2864}, {"name": "Mining Fever", "tier": "Rare", "type": "helmet", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "eDef": 60, "lvl": 81, "xpb": 5, "lb": 35, "eSteal": 7, "eDamPct": 15, "fixID": true, "id": 2868}, {"name": "Mithril Mantle", "tier": "Unique", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 81, "ls": 175, "ms": 10, "lb": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fixID": true, "id": 2867}, {"name": "Ring of Power", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "mdPct": 8, "str": 2, "dex": 2, "type": "ring", "fixID": true, "id": 2870}, {"name": "Rask", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 81, "agiReq": 50, "agi": 5, "spd": 12, "fDefPct": -5, "type": "ring", "fixID": true, "id": 2869}, {"name": "Plate Shock", "tier": "Rare", "type": "wand", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "dexReq": 45, "sdPct": 10, "mdPct": 10, "ref": 20, "dex": 4, "hprRaw": -75, "tDamPct": 18, "wDefPct": -10, "fixID": true, "id": 2866}, {"name": "Timelocked Stone", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "str": 3, "eDamPct": 5, "type": "ring", "fixID": true, "id": 3640}, {"name": "Rough Diamond", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "strReq": 20, "intReq": 20, "sdPct": 6, "mdPct": 5, "xpb": 7, "str": 2, "aDamPct": -6, "type": "necklace", "fixID": true, "id": 2871}, {"name": "Thanos Legionnaire Greaves", "tier": "Set", "type": "boots", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 75, "lvl": 82, "defReq": 50, "xpb": 10, "lb": 10, "def": 10, "hprRaw": 150, "fDamPct": 20, "wDamPct": -20, "fDefPct": 20, "wDefPct": -20, "fixID": true, "id": 2905, "set": "Thanos Legionnaire"}, {"name": "Thanos Legionnaire Leggings", "tier": "Set", "type": "leggings", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 1900, "aDef": 75, "lvl": 82, "agiReq": 50, "xpb": 15, "lb": 5, "agi": 10, "spd": 15, "aDamPct": 20, "tDamPct": -20, "aDefPct": 20, "fixID": true, "id": 2875, "set": "Thanos Legionnaire"}, {"name": "Ring of Wisdom", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "sdPct": 7, "xpb": 10, "int": 3, "type": "ring", "fixID": true, "id": 2872}, {"name": "Thanos Legionnaire Plate", "tier": "Set", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 3, "drop": "never", "hp": 2400, "fDef": 125, "wDef": -90, "aDef": 125, "tDef": -90, "eDef": 125, "lvl": 83, "strReq": 40, "agiReq": 40, "defReq": 40, "str": 10, "agi": 10, "def": 10, "mdRaw": 225, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2873, "set": "Thanos Legionnaire"}, {"name": "Steady Grip", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "lvl": 81, "dexReq": 25, "intReq": 25, "mdPct": -10, "dex": 3, "int": 3, "sdRaw": 45, "eDamPct": -8, "type": "bracelet", "fixID": true, "id": 2878}, {"name": "Shale Edge", "tier": "Rare", "type": "dagger", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-75", "fDam": "0-0", "wDam": "40-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 82, "intReq": 25, "sdPct": 8, "ms": 5, "str": 4, "sdRaw": 90, "aDamPct": -16, "eDamPct": 15, "aDefPct": -13, "fixID": true, "id": 2877}, {"name": "Silver Bay", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-160", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "intReq": 40, "mr": 5, "lb": 10, "hpBonus": 1000, "wDamPct": 25, "wDefPct": 20, "fixID": true, "id": 2880}, {"name": "Tankard Basher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-110", "atkSpd": "FAST", "lvl": 81, "strReq": 25, "agiReq": 35, "mdPct": 12, "str": 8, "dex": -8, "agi": 8, "spd": 12, "aDamPct": 20, "fixID": true, "id": 2882}, {"name": "Sterling Silver", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "dexReq": 15, "agiReq": 25, "lb": 7, "spd": 5, "sdRaw": 25, "mdRaw": 18, "eDamPct": -7, "type": "necklace", "fixID": true, "id": 2884}, {"name": "Sterk", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 250, "fDef": 25, "wDef": -10, "eDef": 10, "lvl": 81, "strReq": 10, "defReq": 40, "def": 3, "fDefPct": 7, "aDefPct": 6, "eDefPct": 8, "type": "ring", "fixID": true, "id": 2876}, {"name": "Thanos Legionnaire Helm", "tier": "Set", "type": "helmet", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "eDef": 75, "lvl": 82, "strReq": 50, "mdPct": 10, "xpb": 5, "lb": 15, "str": 10, "eDamPct": 20, "tDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2874, "set": "Thanos Legionnaire"}, {"name": "Thanos Banner", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "eDef": 60, "lvl": 82, "strReq": 50, "lb": 10, "str": 6, "eDamPct": 10, "wDefPct": -10, "eDefPct": 10, "type": "bracelet", "fixID": true, "id": 2883}, {"name": "Thanos Crest", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "aDef": 60, "lvl": 82, "agiReq": 50, "xpb": 10, "agi": 6, "aDamPct": 10, "aDefPct": 10, "tDefPct": -10, "type": "necklace", "fixID": true, "id": 2886}, {"name": "Thanos Ironstaff", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-75", "fDam": "40-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "NORMAL", "lvl": 82, "strReq": 40, "defReq": 40, "hprPct": 20, "mdPct": 20, "dex": -10, "int": -10, "def": 10, "hpBonus": 1075, "fDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2898}, {"name": "Thanos Brand", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "hp": 650, "fDef": 30, "lvl": 82, "defReq": 50, "xpb": 5, "lb": 5, "def": 5, "fDamPct": 5, "fDefPct": 5, "wDefPct": -5, "tDefPct": -5, "type": "ring", "fixID": true, "id": 2881}, {"name": "Thanos Stonesinger", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "120-126", "fDam": "57-66", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-63", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "defReq": 40, "dex": -8, "expd": 20, "mdRaw": 160, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2889}, {"name": "Thanos Warhammer", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "110-200", "fDam": "50-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 20, "spd": -10, "fDamPct": 15, "eDamPct": 15, "eDefPct": 25, "fixID": true, "id": 2887}, {"name": "Thanos Siege Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-280", "fDam": "70-130", "wDam": "0-0", "aDam": "55-145", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "agiReq": 40, "defReq": 40, "mr": -5, "def": 10, "expd": 20, "spd": -15, "hpBonus": 750, "hprRaw": 160, "fDamPct": 15, "aDamPct": 15, "fixID": true, "id": 2885}, {"name": "Thanos Warsword", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "40-80", "tDam": "0-0", "eDam": "50-70", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "agiReq": 40, "mdPct": 20, "str": 8, "int": -8, "agi": 8, "spd": 15, "sdRaw": -90, "mdRaw": 170, "aDamPct": 12, "eDamPct": 12, "fixID": true, "id": 2890}, {"name": "Tight Clamp", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 450, "fDef": 30, "lvl": 80, "defReq": 40, "dex": -2, "def": 3, "type": "bracelet", "fixID": true, "id": 2888}, {"name": "Canyon Strider", "tier": "Unique", "type": "boots", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2200, "fDef": -70, "aDef": 70, "eDef": 70, "lvl": 84, "strReq": 15, "agiReq": 25, "agi": 6, "spd": 15, "aDamPct": 10, "eDamPct": 10, "aDefPct": 12, "eDefPct": 12, "fixID": true, "sprintReg": 15, "id": 2892}, {"name": "Fir Needle", "tier": "Unique", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "SUPER_FAST", "lvl": 83, "strReq": 25, "agiReq": 35, "str": 8, "sdRaw": 134, "aDamPct": 19, "tDefPct": -15, "fixID": true, "id": 2894}, {"name": "Coal Duster", "tier": "Rare", "type": "chestplate", "poison": 3500, "category": "armor", "slots": 3, "drop": "never", "hp": 2575, "fDef": -65, "tDef": 90, "lvl": 83, "dexReq": 40, "defReq": 45, "sdPct": -15, "mdPct": -35, "dex": 7, "def": 8, "expd": 10, "atkTier": -17, "fDamPct": 25, "tDamPct": 20, "fDefPct": -25, "fixID": true, "id": 2893}, {"name": "Filter Mask", "tier": "Rare", "type": "helmet", "poison": -375, "category": "armor", "slots": 3, "drop": "never", "hp": 2750, "aDef": 120, "eDef": 120, "lvl": 85, "spd": 10, "aDamPct": 10, "eDamPct": 10, "aDefPct": 15, "eDefPct": 20, "fixID": true, "sprintReg": 20, "id": 2891}, {"name": "Pine Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "180-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-85", "atkSpd": "NORMAL", "lvl": 85, "strReq": 40, "mdPct": 10, "xpb": 10, "str": 5, "eDefPct": 15, "fixID": true, "id": 2896}, {"name": "Shine Lamp", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "240-250", "wDam": "230-260", "aDam": "225-265", "tDam": "220-270", "eDam": "235-255", "atkSpd": "SUPER_SLOW", "lvl": 83, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "mr": 5, "sdPct": -25, "fixID": true, "spPct1": -17, "spPct2": -17, "spPct3": -17, "spPct4": -17, "id": 2900}, {"name": "Plated Mining Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2500, "lvl": 83, "defReq": 20, "hprPct": 25, "lb": 10, "def": 10, "hprRaw": 60, "fixID": true, "id": 2897}, {"name": "Wood Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-50", "atkSpd": "FAST", "lvl": 84, "strReq": 15, "mdPct": 10, "xpb": 10, "str": 5, "fDefPct": -5, "fixID": true, "id": 2902}, {"name": "Firestarter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 40, "expd": 5, "hprRaw": 70, "fDamPct": 20, "wDamPct": -10, "fixID": true, "id": 2895}, {"name": "Windwhistle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-42", "fDam": "0-0", "wDam": "60-73", "aDam": "51-82", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 35, "agiReq": 35, "mr": 5, "sdPct": 10, "agi": 8, "def": -8, "spd": 20, "wDamPct": 15, "fDefPct": -20, "fixID": true, "id": 2899}, {"name": "Surefooter", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 1900, "aDef": -100, "eDef": 100, "lvl": 86, "strReq": 55, "ms": 10, "str": 8, "spd": -8, "mdRaw": 250, "eDamPct": 15, "fixID": true, "id": 2901}, {"name": "Wooly Long Johns", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2525, "wDef": 190, "aDef": 190, "lvl": 87, "sdPct": -5, "mdPct": -5, "xpb": 14, "hprRaw": 190, "wDefPct": 14, "aDefPct": 14, "fixID": true, "id": 2904}, {"name": "Battalion", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "lvl": 50, "def": 5, "spd": 8, "fDamPct": 5, "wDamPct": -10, "aDamPct": -10, "fixID": true, "id": 2903}, {"name": "Battle Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-30", "fDam": "15-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "sdPct": 4, "mdPct": 6, "expd": 5, "eDamPct": 5, "fixID": true, "id": 2907}, {"name": "Defender", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-110", "fDam": "65-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 50, "defReq": 30, "sdPct": -6, "def": 3, "hpBonus": 400, "fixID": true, "id": 2906}, {"name": "Dual", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-39", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "dexReq": 15, "agi": 5, "spd": 5, "aDamPct": 10, "tDamPct": 5, "fixID": true, "id": 2908}, {"name": "Dinosaur", "tier": "Unique", "type": "leggings", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "hp": 650, "aDef": -50, "eDef": 40, "lvl": 51, "mdPct": 6, "str": 3, "int": -5, "fixID": true, "id": 2909}, {"name": "Hurricane", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -100, "aDef": 100, "eDef": -40, "lvl": 55, "strReq": 10, "agiReq": 25, "str": 2, "agi": 4, "spd": 10, "aDamPct": 10, "eDamPct": 6, "fixID": true, "id": 2913}, {"name": "Medecin", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-52", "fDam": "0-0", "wDam": "34-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "intReq": 25, "mr": 5, "sdPct": 10, "mdPct": -10, "ref": 5, "int": 2, "fixID": true, "id": 2910}, {"name": "Moonlight", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "0-0", "wDam": "25-35", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 16, "agiReq": 16, "mdPct": -15, "hprRaw": 25, "fDefPct": 15, "wDefPct": 25, "aDefPct": 25, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2912}, {"name": "Wardrummer", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "strReq": 16, "defReq": 16, "sdPct": -10, "mdPct": -10, "fDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2914}, {"name": "Strikedown", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "112-120", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "60-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "dexReq": 20, "intReq": 20, "mdPct": 10, "dex": 5, "spd": -10, "hprRaw": -40, "sdRaw": 95, "fixID": true, "spPct3": -10, "id": 2915}, {"name": "The Judge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "lvl": 52, "hprPct": 15, "sdPct": 15, "mdPct": 20, "ls": -80, "ms": -10, "xpb": 15, "lb": 15, "fixID": true, "id": 2911}, {"name": "Warlord", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "never", "nDam": "320-457", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 54, "strReq": 25, "str": 2, "dex": -3, "agi": -3, "def": 2, "spd": -4, "hpBonus": 450, "hprRaw": 40, "fixID": true, "id": 2916}, {"name": "Voidstone Arpes", "tier": "Rare", "type": "spear", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-219", "fDam": "0-0", "wDam": "0-0", "aDam": "219-219", "tDam": "0-0", "eDam": "219-219", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2920}, {"name": "Voidstone Esbald", "tier": "Rare", "type": "dagger", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "137-138", "fDam": "0-0", "wDam": "0-0", "aDam": "115-345", "tDam": "0-0", "eDam": "115-345", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2919}, {"name": "Voidstone Elrik", "tier": "Rare", "type": "relik", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "160-165", "fDam": "0-0", "wDam": "0-0", "aDam": "310-340", "tDam": "0-0", "eDam": "320-330", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2917}, {"name": "Voidstone Lensing", "tier": "Rare", "type": "bow", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "300-360", "tDam": "0-0", "eDam": "300-360", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2918}, {"name": "Voidstone Recteps", "tier": "Rare", "type": "wand", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-85", "fDam": "0-0", "wDam": "0-0", "aDam": "100-225", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2922}, {"name": "Zhight Beaded Broach", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "lvl": 55, "dexReq": 30, "lb": 8, "hprRaw": 10, "sdRaw": 10, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2921}, {"name": "Zhight Coral Band", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 200, "wDef": 35, "lvl": 55, "intReq": 15, "defReq": 30, "sdPct": -6, "hprRaw": 15, "tDamPct": -8, "wDefPct": 10, "type": "bracelet", "fixID": true, "id": 2923}, {"name": "Zhight Powwow Bangle", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 55, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "xpb": 9, "lb": 9, "spRegen": 12, "eSteal": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 2925}, {"name": "Zhight Shiny Ring", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": -65, "lvl": 55, "dexReq": 30, "xpb": 6, "tDamPct": 9, "type": "ring", "fixID": true, "id": 2924}, {"name": "Zhight Souvenir Coin", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 100, "lvl": 55, "xpb": 5, "lb": 10, "eSteal": 1, "type": "ring", "fixID": true, "id": 2926}, {"name": "Saffron Arch", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-52", "fDam": "14-30", "wDam": "0-0", "aDam": "0-0", "tDam": "10-34", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "dexReq": 8, "defReq": 8, "hprPct": 7, "sdPct": 6, "mdPct": -14, "ls": 33, "hpBonus": 160, "wDamPct": -7, "id": 2928}, {"name": "Sagittarius", "tier": "Legendary", "type": "leggings", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": 140, "eDef": -200, "lvl": 94, "agiReq": 80, "hprPct": -25, "ref": 18, "agi": 13, "spd": 18, "sdRaw": 175, "mdRaw": 230, "aDamPct": 25, "id": 2929}, {"name": "Zhight Weird Magic Necklace", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "wDef": 5, "eDef": 5, "lvl": 55, "strReq": 25, "intReq": 20, "sdPct": 7, "str": 2, "spRegen": 7, "wDamPct": 7, "type": "necklace", "fixID": true, "id": 2930}, {"name": "Salamander", "tier": "Unique", "type": "wand", "poison": 130, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-19", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "agiReq": 5, "ls": 20, "spd": 10, "aDamPct": 6, "tDamPct": 6, "eDefPct": -8, "id": 2934}, {"name": "Salience", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "fDef": 20, "wDef": 15, "lvl": 38, "intReq": 10, "defReq": 10, "hprPct": 12, "sdPct": -6, "mdPct": -10, "hprRaw": 10, "fDefPct": 9, "wDefPct": 9, "id": 2931}, {"name": "Sage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "mr": 10, "xpb": 32, "lb": 10, "aDamPct": 15, "id": 2927}, {"name": "Salmon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-0", "wDam": "33-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 5, "mr": 5, "sdPct": 7, "spd": 4, "wDamPct": 4, "aDamPct": 5, "id": 2933}, {"name": "Saint's Scar", "tier": "Unique", "type": "dagger", "poison": 85, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-15", "atkSpd": "NORMAL", "lvl": 24, "strReq": 10, "sdPct": -5, "mdPct": 5, "fDefPct": -10, "id": 2932}, {"name": "Speedyboy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "mdPct": 15, "str": 7, "spd": 200, "eDamPct": 10, "id": 3548}, {"name": "Saltest Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 1, "id": 3549}, {"name": "Salvation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-24", "fDam": "27-27", "wDam": "27-27", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 35, "defReq": 35, "hprPct": 20, "ref": 15, "def": 5, "hpBonus": 1250, "tDamPct": -50, "fDefPct": 12, "wDefPct": 12, "id": 2937}, {"name": "SandStorm Walker", "displayName": "Sandstorm Walker", "tier": "Unique", "type": "boots", "thorns": 3, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 435, "aDef": -30, "tDef": 20, "lvl": 44, "strReq": 5, "xpb": 10, "lb": 10, "str": 4, "dex": 4, "eDamPct": 7, "id": 2938}, {"name": "Sandscar", "tier": "Unique", "type": "spear", "poison": 365, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-42", "fDam": "0-0", "wDam": "0-0", "aDam": "10-18", "tDam": "0-0", "eDam": "16-28", "atkSpd": "NORMAL", "lvl": 51, "str": 5, "agi": 5, "wDamPct": -10, "eDamPct": 7, "wDefPct": -5, "aDefPct": 7, "id": 2943}, {"name": "Sandust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "dexReq": 15, "dex": 4, "spd": 5, "tDamPct": 6, "type": "ring", "id": 2941}, {"name": "Sandstorm", "tier": "Rare", "type": "spear", "poison": 50, "thorns": 7, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-29", "fDam": "0-0", "wDam": "0-0", "aDam": "20-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 34, "agiReq": 20, "agi": 5, "spd": 15, "atkTier": 1, "eDefPct": -35, "id": 2939}, {"name": "Sano's Wisdom", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 35, "aDef": 15, "lvl": 51, "intReq": 15, "agiReq": 10, "mr": 10, "spRegen": 10, "hprRaw": 25, "fDamPct": -15, "tDamPct": -20, "eDamPct": -15, "wDefPct": 25, "aDefPct": 15, "id": 2942}, {"name": "Sandstone Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "wDef": -15, "aDef": 8, "eDef": 8, "lvl": 37, "xpb": 8, "aDamPct": 8, "eDamPct": 8, "id": 2940}, {"name": "Sans", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "hprPct": 20, "sdPct": 20, "mdPct": 20, "id": 2944}, {"name": "Sapling", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "96-170", "aDam": "0-0", "tDam": "0-0", "eDam": "126-140", "atkSpd": "SLOW", "lvl": 75, "strReq": 35, "intReq": 35, "hprPct": 15, "mr": 10, "sdPct": -10, "mdPct": -10, "spd": -20, "hprRaw": 85, "wDefPct": 12, "eDefPct": 12, "id": 2946}, {"name": "Sano's Care", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 200, "wDef": 200, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 90, "intReq": 45, "defReq": 55, "hprPct": 40, "mr": 10, "mdPct": -20, "xpb": 15, "int": 5, "def": 10, "hprRaw": 215, "fDefPct": 15, "wDefPct": 15, "id": 2948}, {"name": "Sapphire", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "wDef": -80, "eDef": -80, "lvl": 97, "strReq": 40, "intReq": 40, "ms": 10, "ref": 18, "str": 5, "int": 5, "eSteal": 10, "sdRaw": 140, "mdRaw": 180, "fDefPct": -35, "id": 2949}, {"name": "Sargasso", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 10, "wDef": 3, "lvl": 2, "sdPct": 6, "xpb": 4, "id": 2947}, {"name": "Saundersi Signet", "tier": "Legendary", "poison": 758, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -30, "lvl": 87, "strReq": 40, "dexReq": 55, "mdPct": -7, "str": 3, "expd": 15, "type": "ring", "id": 2967}, {"name": "Sawdust", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 700, "fDef": -40, "aDef": 45, "eDef": 30, "lvl": 49, "agi": 10, "spd": 9, "mdRaw": 80, "aDamPct": 13, "eDefPct": 18, "id": 2951}, {"name": "Sapphire Shard", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "58-67", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "intReq": 20, "sdPct": 21, "ms": 5, "xpb": 14, "ref": 11, "int": 8, "fDamPct": -15, "tDefPct": -8, "id": 2945}, {"name": "Sarnfic's Lost Treasure", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 63, "intReq": 25, "lb": 9, "eSteal": 3, "wDamPct": 7, "type": "ring", "id": 2954}, {"name": "Scalding Scimitar", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-230", "fDam": "60-200", "wDam": "60-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 72, "intReq": 30, "defReq": 30, "hprPct": -30, "sdPct": 7, "hprRaw": -100, "fDamPct": 25, "wDamPct": 25, "tDefPct": -30, "eDefPct": -30, "id": 2952}, {"name": "Sayleros' Brother's Misfortune", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 22, "str": 4, "dex": -2, "agi": -2, "def": 4, "type": "bracelet", "id": 2953}, {"name": "Scalpel", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "dexReq": 15, "ls": 32, "hprRaw": 16, "id": 2958}, {"name": "Scarab", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 6, "lvl": 2, "def": 4, "id": 2955}, {"name": "Scale of Sieryu", "displayName": "Scale of Seiryu", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1500, "aDef": 50, "lvl": 78, "agiReq": 100, "mr": 20, "sdPct": -150, "mdPct": -50, "spd": 40, "atkTier": 1, "id": 2957}, {"name": "Scorcher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-40", "fDam": "50-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "defReq": 30, "def": 7, "expd": 10, "fDamPct": 10, "fDefPct": 20, "id": 2959}, {"name": "Schist", "tier": "Rare", "poison": 120, "category": "accessory", "drop": "lootchest", "hp": -125, "eDef": -60, "lvl": 84, "strReq": 65, "str": 13, "eDamPct": -7, "type": "necklace", "id": 3583}, {"name": "Scorpio", "tier": "Legendary", "type": "boots", "poison": 1800, "thorns": 24, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": -200, "eDef": 160, "lvl": 90, "strReq": 65, "dexReq": 15, "defReq": 15, "str": 25, "expd": 40, "hprRaw": 125, "eDamPct": -140, "id": 2961}, {"name": "Saltine", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "60-70", "tDam": "40-90", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "dexReq": 40, "agiReq": 40, "dex": 5, "agi": 5, "spd": 8, "hpBonus": -400, "aDamPct": 16, "tDamPct": 16, "eDefPct": -16, "id": 2936}, {"name": "Sanare", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "intReq": 35, "hprPct": 25, "sdPct": 15, "mdPct": -30, "int": 10, "wDamPct": 27, "id": 2935}, {"name": "Screech", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1675, "lvl": 80, "sdPct": 15, "mdPct": 15, "ls": 150, "spRegen": -3, "fDamPct": 11, "aDamPct": 11, "tDamPct": 11, "wDefPct": -12, "eDefPct": -12, "id": 2963}, {"name": "Scorpion", "tier": "Legendary", "type": "dagger", "poison": 450, "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ms": 10, "lb": 15, "fDefPct": -5, "wDefPct": -5, "aDefPct": -10, "tDefPct": -5, "id": 2960}, {"name": "Saving Grace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "70-80", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 20, "defReq": 20, "mr": 5, "sdPct": 10, "mdPct": -25, "wDamPct": 20, "fDefPct": 10, "id": 2950}, {"name": "Scroll of Nythiar", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-22", "wDam": "15-18", "aDam": "9-24", "tDam": "6-27", "eDam": "12-21", "atkSpd": "FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hprPct": 23, "mr": 10, "sdPct": 35, "mdPct": -70, "xpb": 15, "hprRaw": 42, "id": 2965}, {"name": "Scylla Shell", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 15, "aDef": -40, "eDef": 15, "lvl": 45, "strReq": 20, "intReq": 20, "mr": 5, "mdPct": 8, "spd": -12, "wDamPct": 5, "eDamPct": 5, "id": 2962}, {"name": "Sculptor", "tier": "Unique", "type": "spear", "thorns": 10, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "170-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "strReq": 35, "intReq": 35, "mdPct": 20, "ref": 10, "mdRaw": 150, "wDamPct": 15, "eDamPct": 15, "id": 2964}, {"name": "Seagazer", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2175, "wDef": 100, "lvl": 84, "intReq": 60, "mr": 10, "xpb": 15, "int": 8, "fDamPct": 22, "wDamPct": 22, "aDamPct": 22, "tDamPct": 22, "eDamPct": 22, "wDefPct": 10, "id": 2966}, {"name": "Sealing Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 330, "lvl": 76, "lb": 5, "spRegen": 5, "type": "necklace", "id": 2971}, {"name": "Scythe", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-165", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "strReq": 40, "dexReq": 30, "hprPct": -23, "mdPct": 25, "ms": 10, "str": 13, "dex": 9, "int": -10, "spRegen": -15, "tDamPct": 10, "eDamPct": 15, "wDefPct": -25, "id": 2969}, {"name": "Searing Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "45-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "defReq": 30, "hprPct": 18, "sdPct": 9, "expd": 6, "wDamPct": -5, "id": 2968}, {"name": "Seipodon", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 140, "tDef": -90, "lvl": 98, "intReq": 75, "mr": 10, "sdPct": 10, "ref": 15, "int": 14, "fDamPct": -25, "wDamPct": 10, "fDefPct": 10, "wDefPct": 10, "id": 2970}, {"name": "Scarlet Veil", "tier": "Fabled", "type": "helmet", "majorIds": ["EXPLOSIVE_IMPACT"], "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 52, "mdPct": 25, "spd": 8, "atkTier": 1, "mdRaw": 65, "fDefPct": -100, "wDefPct": -100, "aDefPct": -100, "tDefPct": -100, "eDefPct": -100, "id": 3587}, {"name": "Seeker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "ring", "id": 2975}, {"name": "Seismosoul", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 65, "aDef": -130, "eDef": 65, "lvl": 92, "strReq": 45, "intReq": 45, "ms": 5, "xpb": 11, "str": 7, "int": 7, "atkTier": 1, "spRegen": 25, "wDamPct": 19, "eDamPct": 19, "fDefPct": -40, "tDefPct": -40, "id": 2976}, {"name": "Seismic Chaps", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 32, "strReq": 15, "mdPct": 10, "str": 7, "spd": -5, "mdRaw": 59, "aDamPct": -10, "eDamPct": 15, "aDefPct": -15, "id": 2974}, {"name": "Sempiternel", "displayName": "Sempiternal", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "fDef": 170, "aDef": 130, "lvl": 88, "agiReq": 55, "defReq": 55, "hprPct": 25, "mr": 10, "atkTier": -1, "hpBonus": 900, "hprRaw": 185, "wDefPct": 16, "tDefPct": 18, "eDefPct": 24, "id": 2978}, {"name": "Spinal Tap", "displayName": "September", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2350, "fDef": 70, "wDef": -105, "aDef": 70, "tDef": -105, "eDef": 70, "lvl": 88, "agiReq": 35, "defReq": 35, "hprPct": -21, "ls": 215, "str": 10, "spd": 21, "mdRaw": 170, "fDamPct": 21, "aDamPct": 21, "eDamPct": 21, "id": 3106}, {"name": "Semreh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 975, "fDef": -60, "aDef": 70, "lvl": 64, "agiReq": 30, "lb": 10, "ref": 6, "agi": 9, "spd": 11, "aDamPct": 11, "id": 2977}, {"name": "Sequoia", "tier": "Unique", "type": "wand", "poison": 3130, "thorns": 20, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 100, "strReq": 50, "sdPct": -20, "str": 20, "spd": -30, "hpBonus": 1300, "wDamPct": 20, "wDefPct": 15, "eDefPct": 20, "id": 2980}, {"name": "Sequencer", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2345, "lvl": 83, "hprPct": 25, "sdPct": 15, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "hprRaw": 100, "sdRaw": 125, "mdRaw": 165, "id": 2979}, {"name": "Seraph", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-45", "fDam": "0-0", "wDam": "0-0", "aDam": "32-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 52, "intReq": 5, "agiReq": 20, "mr": 5, "mdPct": -10, "spRegen": 4, "wDefPct": 10, "aDefPct": 15, "tDefPct": -12, "id": 2983}, {"name": "Sessanta", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 60, "lvl": 60, "defReq": 10, "hpBonus": 90, "type": "ring", "id": 2984}, {"name": "Shade of Night", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "41-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "agiReq": 50, "sdPct": 15, "mdPct": -15, "spd": 15, "wDamPct": 13, "tDamPct": 13, "fDefPct": -26, "aDefPct": 20, "eDefPct": -26, "id": 2986}, {"name": "Sextant", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -70, "eDef": 60, "lvl": 62, "strReq": 40, "mdPct": 9, "str": 7, "aDamPct": -15, "eDamPct": 9, "eDefPct": 9, "id": 2982}, {"name": "Seven-League Boots", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "drop": "NORMAL", "hp": 450, "aDef": 30, "eDef": -60, "lvl": 44, "agiReq": 50, "xpb": 15, "agi": 18, "spd": 27, "id": 2981}, {"name": "Shadow Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-15", "fDam": "0-0", "wDam": "0-0", "aDam": "1-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "mdPct": -8, "ls": 5, "agi": 5, "sdRaw": 8, "id": 2985}, {"name": "Shadow Flame", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "53-55", "fDam": "50-58", "wDam": "0-0", "aDam": "0-0", "tDam": "47-61", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "dexReq": 30, "defReq": 30, "ms": 5, "agi": -10, "hpBonus": -800, "sdRaw": 125, "fDamPct": 17, "wDamPct": -25, "tDamPct": 17, "eDefPct": -20, "id": 2991}, {"name": "Secret", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 5, "spRegen": 5, "type": "bracelet", "id": 2972}, {"name": "Shaggy Boots", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "tDef": 150, "eDef": -150, "lvl": 97, "dexReq": 60, "ls": 300, "ref": 10, "dex": 10, "atkTier": -10, "hpBonus": -800, "mdRaw": 1300, "tDamPct": 23, "id": 2987}, {"name": "Shajaea", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-115", "fDam": "100-175", "wDam": "100-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "intReq": 45, "defReq": 45, "hprPct": 27, "mr": 10, "sdPct": -16, "mdPct": -16, "int": 5, "def": 5, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "id": 2989}, {"name": "Sharp", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 58, "mdPct": -6, "dex": 4, "mdRaw": 26, "type": "ring", "id": 2993}, {"name": "Shark Tooth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "mdPct": 5, "mdRaw": 1, "type": "necklace", "id": 2988}, {"name": "Sharp Heels", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 130, "eDef": -5, "lvl": 29, "dexReq": 15, "mdPct": 7, "dex": 5, "mdRaw": 29, "id": 2990}, {"name": "Sharp Terror", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-31", "fDam": "0-0", "wDam": "31-39", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "intReq": 20, "sdPct": 10, "ms": 10, "int": 7, "tDamPct": -10, "tDefPct": -10, "id": 2994}, {"name": "Sharpened Harpoon", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "105-205", "fDam": "0-0", "wDam": "150-200", "aDam": "0-0", "tDam": "50-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 35, "intReq": 35, "sdPct": 20, "mdPct": 15, "lb": 11, "dex": 9, "int": 9, "spd": -19, "hpBonus": -1050, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "id": 2992}, {"name": "Sharpened Stylus", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "15-19", "fDam": "0-0", "wDam": "15-19", "aDam": "0-0", "tDam": "15-19", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 17, "intReq": 17, "sdPct": 14, "mdPct": 14, "hpBonus": -170, "wDamPct": 14, "tDamPct": 14, "id": 2998}, {"name": "Sharpshooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "mdPct": 4, "xpb": 4, "dex": 5, "id": 2995}, {"name": "Shawl of Gaea", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3700, "fDef": 125, "aDef": -150, "eDef": 125, "lvl": 95, "strReq": 75, "defReq": 60, "str": 9, "def": 13, "expd": 30, "spd": -10, "mdRaw": 300, "fDamPct": 27, "eDamPct": 20, "wDefPct": -30, "id": 2996}, {"name": "Shatterglass", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 91, "strReq": 50, "mdPct": 11, "str": 7, "def": -5, "expd": 11, "hpBonus": -500, "aDamPct": 5, "eDamPct": 5, "type": "necklace", "id": 2999}, {"name": "Shell of Genbu", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2500, "fDef": 75, "wDef": 75, "tDef": -90, "eDef": -60, "lvl": 82, "intReq": 45, "defReq": 40, "sdPct": 23, "ls": -160, "def": 8, "spd": -10, "fDamPct": 10, "wDamPct": 10, "id": 2997}, {"name": "Shimmersight", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "lvl": 93, "mr": 5, "xpb": -10, "lb": -30, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 12, "aDefPct": 10, "tDefPct": 12, "eDefPct": 10, "id": 3002}, {"name": "Shellcarve", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-48", "fDam": "0-0", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "100-120", "atkSpd": "FAST", "lvl": 93, "strReq": 42, "intReq": 42, "mr": 5, "ms": 5, "dex": -9, "agi": -9, "def": -9, "hprRaw": -280, "wDamPct": 28, "eDamPct": 28, "spRaw1": -5, "spRaw4": -5, "id": 3003}, {"name": "Shin Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "lvl": 3, "spd": 3, "id": 3001}, {"name": "Shield Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-120", "fDam": "0-0", "wDam": "75-125", "aDam": "0-0", "tDam": "0-0", "eDam": "85-115", "atkSpd": "SLOW", "lvl": 95, "strReq": 35, "intReq": 35, "ms": 5, "xpb": 8, "expd": 20, "sdRaw": 110, "mdRaw": 160, "aDamPct": -20, "tDamPct": -20, "id": 3000}, {"name": "Sheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "intReq": 25, "defReq": 25, "sdPct": 10, "mdPct": -30, "int": 4, "def": 4, "fDamPct": 10, "wDamPct": 10, "fDefPct": 15, "wDefPct": 15, "id": 3009}, {"name": "Shine Suffocator", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-42", "fDam": "0-0", "wDam": "26-32", "aDam": "0-0", "tDam": "26-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "dexReq": 25, "intReq": 35, "sdPct": 20, "ms": 15, "dex": 10, "hprRaw": -40, "spPct1": 210, "spPct3": -56, "spRaw4": 10, "id": 3051}, {"name": "Shiny Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 120, "lvl": 56, "xpb": 4, "lb": 8, "type": "necklace", "id": 3011}, {"name": "Shinespark", "tier": "Legendary", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 575, "wDef": -20, "eDef": -30, "lvl": 47, "dexReq": 30, "defReq": 20, "mr": 5, "ref": 10, "expd": 20, "sdRaw": 60, "fDamPct": 16, "tDamPct": 15, "eDamPct": -50, "id": 3004}, {"name": "Shining Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 12, "lvl": 4, "sdPct": 4, "xpb": 4, "id": 3006}, {"name": "Shining Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-54", "fDam": "0-0", "wDam": "0-0", "aDam": "16-48", "tDam": "16-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "mr": 5, "sdPct": 16, "mdPct": -12, "ref": 14, "int": 4, "id": 3005}, {"name": "Shock", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "dex": 3, "type": "ring", "id": 3007}, {"name": "Shockmosis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-108", "fDam": "0-0", "wDam": "40-45", "aDam": "0-0", "tDam": "40-45", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 25, "intReq": 25, "sdPct": 5, "mdPct": 5, "ms": 5, "sdRaw": 90, "mdRaw": 115, "id": 3008}, {"name": "Shockwave", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -130, "aDef": 90, "tDef": 90, "lvl": 84, "dexReq": 50, "agiReq": 50, "hprPct": -12, "sdPct": 13, "ms": 10, "dex": 5, "agi": 5, "aDamPct": 8, "tDamPct": 8, "id": 3015}, {"name": "Shokku", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 40, "xpb": 10, "dex": 7, "spd": 10, "tDefPct": 5, "id": 3013}, {"name": "Short Circuit", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "tDef": -60, "lvl": 71, "dexReq": 50, "intReq": 15, "sdPct": 14, "ls": -120, "ms": 5, "wDamPct": 7, "tDamPct": 17, "wDefPct": -7, "id": 3010}, {"name": "Sightlines", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": -60, "aDef": 50, "lvl": 54, "strReq": 15, "agiReq": 35, "xpb": 7, "str": 7, "agi": 3, "spd": 10, "mdRaw": 85, "eDamPct": 7, "fDefPct": -10, "id": 3018}, {"name": "Sight of the Druid", "tier": "Unique", "type": "bow", "poison": 805, "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-120", "atkSpd": "SLOW", "lvl": 78, "strReq": 35, "intReq": 15, "mr": 5, "tDamPct": -15, "fDefPct": -15, "wDefPct": 10, "eDefPct": 10, "id": 3016}, {"name": "Sigil of Existence", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-42", "fDam": "0-0", "wDam": "40-50", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "intReq": 40, "agiReq": 40, "int": 16, "agi": 10, "hpBonus": 2050, "spRegen": 77, "fDefPct": 12, "wDefPct": 31, "aDefPct": 31, "tDefPct": -15, "eDefPct": 15, "id": 3017}, {"name": "Sigil of Resistance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "83-89", "fDam": "84-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "84-90", "atkSpd": "NORMAL", "lvl": 97, "strReq": 40, "defReq": 40, "hprPct": 95, "str": 8, "def": 12, "hpBonus": 3000, "fDefPct": 31, "wDefPct": -15, "aDefPct": 12, "tDefPct": 15, "eDefPct": 31, "id": 3019}, {"name": "Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "0-0", "aDam": "5-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 7, "spd": 15, "eDefPct": -10, "id": 3014}, {"name": "Shrok", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 385, "tDef": 30, "eDef": -25, "lvl": 46, "dexReq": 20, "mdPct": 4, "dex": 8, "mdRaw": 53, "tDamPct": 15, "tDefPct": 12, "id": 3012}, {"name": "Signal Flare", "tier": "Legendary", "type": "boots", "majorIds": ["TAUNT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3200, "fDef": 100, "wDef": -50, "aDef": 100, "eDef": -100, "lvl": 85, "agiReq": 45, "defReq": 45, "ls": 235, "str": 10, "spd": 15, "mdRaw": 190, "fDamPct": 15, "aDamPct": 15, "wDefPct": -35, "id": 3020}, {"name": "Silhouette", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "ref": 10, "agi": 8, "spRegen": 5, "aDefPct": 12, "id": 3023}, {"name": "Silver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "79-114", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 50, "agiReq": 35, "mr": 5, "sdPct": 10, "int": 9, "spd": 14, "fDamPct": -20, "wDamPct": 20, "aDefPct": 23, "id": 3025}, {"name": "Silkweb Mail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 90, "eDef": 120, "lvl": 95, "strReq": 50, "agiReq": 20, "ls": 240, "ms": 10, "str": 9, "spd": -9, "atkTier": -1, "aDamPct": 30, "eDamPct": 20, "fDefPct": -15, "id": 3022}, {"name": "Silver Bell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "75-100", "aDam": "60-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 25, "agiReq": 25, "mr": 5, "mdPct": -15, "xpb": 15, "agi": 7, "spd": 10, "spRegen": 10, "wDefPct": 20, "aDefPct": 20, "id": 3026}, {"name": "Silver Sound", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "375-380", "wDam": "0-0", "aDam": "375-380", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 99, "agiReq": 40, "defReq": 40, "mr": -5, "int": -20, "agi": 10, "def": 10, "fDamPct": 29, "wDamPct": -42, "aDamPct": 29, "spRaw3": -10, "id": 3028}, {"name": "Silkworm", "tier": "Rare", "type": "boots", "poison": 260, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -50, "aDef": 30, "lvl": 71, "agiReq": 38, "hprPct": 25, "agi": 9, "def": -10, "spd": 10, "aDamPct": 10, "id": 3024}, {"name": "Silicosis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "fDef": -100, "aDef": 45, "eDef": 55, "lvl": 63, "strReq": 40, "agiReq": 30, "str": 7, "agi": 5, "def": -3, "fDamPct": -30, "aDamPct": 13, "eDamPct": 15, "id": 3041}, {"name": "Simple Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 18, "lb": 5, "type": "necklace", "id": 3030}, {"name": "Simplicity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 21, "spRegen": 1, "type": "ring", "id": 3029}, {"name": "Sinkhole", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "550-575", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 30, "ls": 118, "agi": -5, "expd": 25, "hpBonus": -600, "mdRaw": 305, "aDefPct": -10, "id": 3033}, {"name": "Sinister", "tier": "Rare", "poison": 350, "category": "accessory", "drop": "lootchest", "wDef": -55, "tDef": 20, "lvl": 82, "dexReq": 25, "defReq": 15, "ls": 80, "ms": 5, "wDamPct": -8, "aDefPct": -13, "type": "bracelet", "id": 3031}, {"name": "Siwel's Guilt", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 74, "intReq": 40, "hprPct": 6, "xpb": 5, "lb": -5, "hpBonus": 370, "spRegen": -30, "hprRaw": 28, "type": "bracelet", "id": 3034}, {"name": "Sitis", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "75-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 65, "mr": -10, "sdPct": 20, "ls": 300, "ms": 10, "spd": -15, "hprRaw": -185, "wDamPct": 30, "id": 3032}, {"name": "Skaxis", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-100", "atkSpd": "FAST", "lvl": 62, "strReq": 40, "dexReq": 50, "xpb": 10, "dex": 100, "agi": -77, "spd": -12, "hpBonus": -500, "id": 3035}, {"name": "Skeleton Bones", "tier": "Rare", "type": "chestplate", "poison": 82, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 31, "hprPct": -8, "ls": 18, "agi": 5, "id": 3038}, {"name": "Skeleton's Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 14, "hprPct": 8, "int": 4, "hpBonus": 5, "id": 3037}, {"name": "Silver Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "xpb": 7, "lb": 13, "id": 3027}, {"name": "Skeleton Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "fDef": -15, "aDef": 20, "lvl": 36, "agiReq": 10, "agi": 5, "spd": 6, "aDamPct": 7, "fDefPct": -5, "id": 3039}, {"name": "Skien's Madness", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "10-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 56, "dexReq": 30, "mdPct": 13, "str": 7, "dex": 13, "spd": 7, "atkTier": 7, "spRegen": -10, "mdRaw": 105, "spRaw2": 10, "id": 3040}, {"name": "Skien's Paranoia", "tier": "Rare", "type": "dagger", "thorns": 40, "category": "weapon", "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "ls": 140, "ms": -5, "ref": 25, "int": -5, "hpBonus": 475, "hprRaw": 60, "id": 3042}, {"name": "Skin Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 16, "lvl": 7, "xpb": 5, "id": 3043}, {"name": "Skin Piercer", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 5, "mdPct": 7, "dex": 9, "tDamPct": 10, "id": 3044}, {"name": "Sky Chef's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 4, "drop": "never", "hp": 3200, "lvl": 96, "xpb": 15, "lb": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 3046}, {"name": "Sky Reflector", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -60, "wDef": 15, "aDef": 70, "lvl": 65, "xpb": 5, "ref": 10, "wDamPct": 10, "aDefPct": 5, "id": 3048}, {"name": "Skyspiral", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-31", "fDam": "0-0", "wDam": "0-0", "aDam": "57-63", "tDam": "38-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 20, "agiReq": 25, "dex": 5, "def": -5, "spd": 20, "hpBonus": -320, "sdRaw": 60, "mdRaw": 59, "id": 3047}, {"name": "Sky Glaze", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-25", "fDam": "0-0", "wDam": "20-30", "aDam": "15-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "intReq": 10, "agiReq": 10, "sdPct": 12, "lb": 12, "dex": -10, "spd": 5, "tDamPct": -10, "id": 3045}, {"name": "Skyfall", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "agiReq": 38, "xpb": 6, "spd": 18, "fDamPct": -12, "wDamPct": -12, "aDamPct": 24, "tDamPct": -12, "eDamPct": -12, "id": 3049}, {"name": "Slap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "agi": 3, "mdRaw": 5, "type": "bracelet", "id": 3050}, {"name": "Sizzling Shawl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "fDef": 60, "wDef": 80, "tDef": -180, "lvl": 98, "intReq": 45, "defReq": 55, "hprPct": -35, "sdPct": 23, "expd": 25, "hprRaw": -150, "sdRaw": 152, "fDamPct": 20, "wDamPct": 20, "tDefPct": -30, "id": 3036}, {"name": "Slash and Burn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-35", "fDam": "25-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "strReq": 20, "defReq": 20, "xpb": 8, "str": 7, "expd": 12, "eDamPct": 15, "fDefPct": -12, "id": 3055}, {"name": "Slate Bow", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-18", "fDam": "10-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-18", "atkSpd": "NORMAL", "lvl": 19, "strReq": 10, "defReq": 10, "hprPct": 9, "def": 7, "expd": 6, "hpBonus": 30, "eDefPct": -10, "id": 3053}, {"name": "Sleeping Beast", "tier": "Unique", "type": "bow", "poison": 1730, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-200", "eDam": "95-155", "atkSpd": "SLOW", "lvl": 95, "strReq": 40, "dexReq": 40, "sdPct": 12, "mdPct": 12, "ms": 5, "dex": 9, "spd": -15, "fDefPct": -30, "id": 3054}, {"name": "Sledge", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 9, "str": 7, "spd": -10, "mdRaw": 20, "id": 3056}, {"name": "Skywatcher", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1950, "fDef": -100, "wDef": 50, "aDef": 100, "lvl": 84, "intReq": 20, "agiReq": 35, "hprPct": -25, "mr": 5, "xpb": 12, "ref": 12, "int": 5, "agi": 7, "spd": 12, "spRegen": 12, "sdRaw": 150, "id": 3052}, {"name": "Slippery Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": -4, "aDef": 4, "lvl": 11, "dex": -2, "agi": 3, "spd": 5, "id": 3060}, {"name": "Slicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "mdPct": 3, "str": 1, "id": 3058}, {"name": "Slipstream", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1800, "aDef": 50, "lvl": 79, "agiReq": 60, "sdPct": -15, "mdPct": 10, "lb": 20, "agi": 7, "expd": -30, "spd": 15, "aDamPct": 8, "id": 3059}, {"name": "Sloth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-58", "fDam": "17-25", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 19, "hprPct": 12, "def": 5, "spd": -15, "hprRaw": 7, "id": 3062}, {"name": "Slime-blend Leggings", "displayName": "Slime-Blend Leggings", "tier": "Rare", "type": "leggings", "poison": 17, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 7, "tDef": -10, "lvl": 15, "wDamPct": 7, "eDamPct": 7, "id": 3057}, {"name": "Smack Jacket", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -100, "lvl": 89, "strReq": 55, "dexReq": 55, "hprPct": -30, "sdPct": -30, "mdPct": 8, "ls": 170, "str": 10, "dex": 10, "expd": 20, "atkTier": 1, "id": 3061}, {"name": "Sliver", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 87, "dexReq": 25, "dex": 4, "def": -3, "mdRaw": 49, "type": "ring", "id": 3063}, {"name": "Slumber", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-210", "fDam": "0-0", "wDam": "115-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 40, "mr": 10, "sdPct": -15, "mdPct": -15, "spRegen": 3, "hprRaw": 70, "wDefPct": 10, "id": 3064}, {"name": "Smoldering Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 80, "wDef": -180, "lvl": 96, "sdPct": 30, "mdPct": 30, "expd": 25, "spd": 20, "hprRaw": -100, "fDamPct": 6, "wDamPct": -30, "id": 3067}, {"name": "Snakeroot Bow", "tier": "Legendary", "type": "bow", "poison": 435, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "50-85", "wDam": "0-0", "aDam": "0-0", "tDam": "50-85", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 34, "dexReq": 20, "defReq": 20, "sdPct": 10, "dex": 8, "spd": -15, "hpBonus": -200, "fDamPct": 12, "tDamPct": 12, "id": 3065}, {"name": "Snapdragon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-50", "fDam": "35-65", "wDam": "0-0", "aDam": "0-0", "tDam": "35-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 25, "defReq": 35, "ls": 140, "expd": 15, "hprRaw": 60, "eDamPct": -10, "wDefPct": -15, "id": 3066}, {"name": "Sneaky Caster", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-30", "fDam": "0-0", "wDam": "0-0", "aDam": "4-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "mdPct": -12, "lb": 5, "spd": 10, "eSteal": 5, "id": 3068}, {"name": "Snowslicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-32", "fDam": "0-0", "wDam": "18-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "intReq": 15, "mr": 5, "ref": 8, "wDamPct": 8, "fDefPct": -8, "id": 3070}, {"name": "Snow Dust", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": -20, "aDef": 25, "tDef": 25, "eDef": -20, "lvl": 52, "dex": 4, "agi": 4, "spd": 10, "tDamPct": 5, "aDefPct": 5, "id": 3069}, {"name": "Soaked Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "wDef": 4, "tDef": -6, "lvl": 13, "wDamPct": 10, "fDefPct": 7, "id": 3072}, {"name": "Soft Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 10, "aDef": 3, "tDef": -1, "lvl": 4, "agi": 1, "id": 3075}, {"name": "Soarfae", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2650, "fDef": -125, "aDef": 150, "lvl": 97, "agiReq": 65, "ref": 17, "agi": 20, "spd": 30, "atkTier": 1, "aDamPct": 30, "aDefPct": 10, "id": 3071}, {"name": "Sokoto", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 15, "lvl": 4, "agi": 3, "spd": 8, "aDamPct": 4, "id": 3073}, {"name": "Solitude", "tier": "Unique", "type": "bow", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-120", "fDam": "0-0", "wDam": "0-0", "aDam": "75-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "agiReq": 40, "sdPct": 9, "mdPct": -8, "xpb": 8, "spd": 14, "wDamPct": 7, "id": 3077}, {"name": "Solar Pillar", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-46", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 35, "defReq": 35, "sdPct": 10, "xpb": 12, "def": 7, "hpBonus": 600, "wDamPct": 25, "eDamPct": -120, "tDefPct": -25, "id": 3076}, {"name": "Solar Flare", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": -70, "tDef": 70, "lvl": 65, "dexReq": 30, "defReq": 30, "mdPct": 5, "expd": 10, "fDamPct": 8, "tDamPct": 8, "wDefPct": -10, "id": 3074}, {"name": "Solstice", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-65", "fDam": "20-25", "wDam": "25-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 25, "hprPct": 14, "def": 7, "hpBonus": 240, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 3080}, {"name": "Soldier", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 160, "lvl": 78, "str": 4, "def": 4, "type": "ring", "id": 3078}, {"name": "Someone Else's Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "32-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "hprPct": -8, "xpb": 10, "spRegen": -5, "mdRaw": 23, "id": 3079}, {"name": "Soul Wreath", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "wDef": 50, "eDef": 50, "lvl": 64, "strReq": 30, "intReq": 35, "mr": 5, "int": 4, "spd": -10, "spRegen": 10, "hprRaw": 60, "id": 3085}, {"name": "Souffle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "105-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 58, "agiReq": 28, "agi": 9, "spd": 10, "mdRaw": 80, "tDamPct": 15, "id": 3082}, {"name": "Sonicboom", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "417-531", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 36, "agiReq": 25, "sdPct": 30, "ms": 5, "agi": 12, "spd": 25, "aDamPct": 15, "spPct3": 35, "id": 3086}, {"name": "Soul", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "sdPct": 5, "mdPct": 4, "agi": 3, "aDamPct": 6, "fDefPct": -20, "id": 3083}, {"name": "Sorcerer's Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-23", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 46, "dexReq": 20, "intReq": 10, "sdPct": 14, "mdPct": -9, "ref": 6, "sdRaw": 50, "id": 3081}, {"name": "Sound of Silence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "aDef": 10, "lvl": 23, "agiReq": 12, "xpb": 15, "spd": 10, "mdRaw": 20, "aDamPct": 15, "id": 3084}, {"name": "Soul Signal", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 90, "tDef": 125, "eDef": -170, "lvl": 92, "dexReq": 50, "intReq": 50, "mdPct": -15, "ref": 25, "dex": 10, "int": 10, "spRegen": 25, "sdRaw": 222, "eDamPct": -80, "id": 3088}, {"name": "Soundgarden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "82-86", "tDam": "0-0", "eDam": "87-99", "atkSpd": "FAST", "lvl": 72, "strReq": 20, "agiReq": 25, "ls": -140, "ref": 25, "sdRaw": 110, "wDamPct": -25, "aDamPct": 14, "eDamPct": 14, "spRaw1": -5, "id": 3087}, {"name": "Soundwave", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "514-1143", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 59, "dexReq": 70, "sdPct": -40, "mdPct": 18, "dex": 8, "tDamPct": 12, "id": 3091}, {"name": "Sow Thistle", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 450, "aDef": -40, "eDef": 30, "lvl": 44, "strReq": 30, "hprPct": -15, "mdPct": 10, "spd": -12, "mdRaw": 80, "eDamPct": 15, "id": 3092}, {"name": "Spark of Courage", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-20", "fDam": "0-35", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 86, "agiReq": 35, "defReq": 35, "hprPct": 15, "sdPct": -12, "mdPct": -12, "ref": 8, "hpBonus": 900, "hprRaw": 130, "wDamPct": -20, "id": 3089}, {"name": "Sowilo", "tier": "Unique", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": 575, "fDef": 45, "wDef": -55, "tDef": 45, "eDef": -55, "lvl": 87, "dexReq": 20, "defReq": 20, "mdPct": 6, "ref": 5, "expd": 6, "type": "necklace", "id": 3090}, {"name": "Sparkles", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "dexReq": 22, "xpb": 12, "ref": 10, "aDefPct": -10, "tDefPct": 10, "id": 3098}, {"name": "Speaker", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": -100, "aDef": 100, "lvl": 87, "intReq": 40, "mr": 10, "xpb": 25, "ref": 10, "int": 7, "spRegen": 7, "id": 3100}, {"name": "Sparkling Tones", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "75-81", "aDam": "75-81", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "intReq": 44, "agiReq": 44, "mr": 5, "xpb": 15, "dex": -25, "spd": 15, "eSteal": 5, "sdRaw": 143, "wDefPct": 20, "aDefPct": 20, "id": 3093}, {"name": "Sparklock", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "mr": 5, "int": 3, "tDamPct": 5, "id": 3095}, {"name": "Spear of Prosperity", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "xpb": 5, "lb": 15, "eSteal": 5, "id": 3097}, {"name": "Spear of Sin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-125", "fDam": "105-175", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "dexReq": 35, "defReq": 25, "ls": 290, "dex": 5, "def": 16, "spRegen": -13, "fDamPct": 15, "wDamPct": -50, "tDamPct": 15, "id": 3096}, {"name": "Spear of Vix", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "22-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 5, "agiReq": 25, "sdPct": 8, "xpb": 8, "spd": 8, "fDamPct": -8, "aDamPct": 8, "fDefPct": -8, "aDefPct": 8, "id": 3099}, {"name": "Sphyken", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "dexReq": 50, "ms": 10, "int": 7, "hpBonus": -250, "sdRaw": 40, "wDamPct": 15, "aDamPct": -20, "tDefPct": 15, "id": 3101}, {"name": "Spectral Slingshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "25-75", "wDam": "25-75", "aDam": "25-75", "tDam": "25-75", "eDam": "25-75", "atkSpd": "FAST", "lvl": 67, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "xpb": 10, "id": 3102}, {"name": "Sparkling Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3750, "fDef": 50, "wDef": -50, "aDef": 100, "tDef": 100, "eDef": -50, "lvl": 99, "dexReq": 50, "agiReq": 50, "ls": 220, "ref": 17, "int": -30, "def": 8, "hprRaw": 150, "spPct1": -7, "spPct2": -14, "spPct3": -10, "id": 3094}, {"name": "Spectre", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1600, "fDef": -50, "eDef": -50, "lvl": 65, "agiReq": 35, "sdPct": 25, "mdPct": -35, "ms": 10, "agi": 9, "hpBonus": -250, "spRegen": -10, "aDamPct": 19, "tDamPct": 19, "eDamPct": -19, "aDefPct": 10, "id": 3105}, {"name": "Spectrum", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3300, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 97, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 3104}, {"name": "Spicy", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-20", "fDam": "12-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "defReq": 8, "def": 4, "mdRaw": 18, "fDamPct": 9, "id": 3103}, {"name": "Spike", "tier": "Rare", "type": "dagger", "poison": 320, "thorns": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "75-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "24-40", "atkSpd": "NORMAL", "lvl": 50, "strReq": 20, "sdPct": 5, "mdPct": 10, "spd": -5, "aDamPct": -20, "eDamPct": 20, "id": 3107}, {"name": "Spiked Cleats", "tier": "Unique", "type": "boots", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 48, "lvl": 13, "spd": -3, "mdRaw": 12, "id": 3140}, {"name": "Spirit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-54", "fDam": "0-0", "wDam": "0-0", "aDam": "43-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "agiReq": 15, "ms": 5, "agi": 10, "def": -8, "spRegen": 4, "aDamPct": 10, "fDefPct": -10, "id": 3112}, {"name": "Spine", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 30, "mdPct": 5, "expd": 10, "aDefPct": -10, "id": 3111}, {"name": "Spiked Helmet", "tier": "Rare", "type": "helmet", "thorns": 40, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "aDef": -70, "eDef": 95, "lvl": 74, "strReq": 25, "defReq": 35, "mdPct": 18, "def": 7, "spd": -8, "fDefPct": 18, "id": 3108}, {"name": "Spiritdancer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 94, "intReq": 65, "defReq": 65, "mr": 5, "sdPct": 21, "agi": 10, "spd": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 15, "tDamPct": -15, "eDamPct": -15, "id": 3615}, {"name": "Spiritshock", "tier": "Legendary", "type": "bow", "poison": 1200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "270-270", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 55, "ls": 375, "ms": 10, "dex": 13, "spRegen": -50, "sdRaw": 135, "eDefPct": -28, "id": 3110}, {"name": "Spleen Splitter", "tier": "Unique", "type": "relik", "poison": 3600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-5", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "mr": -10, "ls": 280, "ms": 5, "str": 10, "spd": 10, "hprRaw": -210, "id": 3109}, {"name": "Spontaneous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 71, "agiReq": 20, "defReq": 20, "ms": -5, "expd": 12, "spd": 8, "hpBonus": -330, "type": "bracelet", "id": 3113}, {"name": "Sprinter", "tier": "Unique", "type": "leggings", "sprint": 7, "category": "armor", "drop": "NORMAL", "hp": 30, "aDef": 3, "lvl": 12, "spd": 11, "id": 3115}, {"name": "Sprint Belt", "tier": "Rare", "type": "leggings", "sprint": 18, "category": "armor", "drop": "NORMAL", "lvl": 33, "agiReq": 33, "agi": 8, "spd": 18, "aDamPct": 18, "sprintReg": 18, "id": 3114}, {"name": "Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3119}, {"name": "Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3117}, {"name": "Sprintguard", "tier": "Rare", "type": "leggings", "sprint": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2950, "fDef": 60, "aDef": 60, "tDef": -150, "lvl": 82, "agiReq": 45, "defReq": 45, "sdPct": 10, "mdPct": -10, "int": -20, "agi": 7, "def": 7, "spd": 23, "wDamPct": -10, "spPct1": -14, "spPct2": -7, "sprintReg": 11, "id": 3116}, {"name": "Spruce Wood Shears", "displayName": "Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "id": 3118}, {"name": "Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3120}, {"name": "Spruce Wood Stick", "displayName": "Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3121}, {"name": "Spyrr", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "str": 3, "dex": 3, "id": 3122}, {"name": "Squall's Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "dexReq": 50, "agiReq": 40, "sdPct": 10, "agi": 9, "spd": 25, "hpBonus": -1000, "tDamPct": 20, "eDefPct": -11, "id": 3123}, {"name": "Squid Anklet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 40, "tDef": -60, "lvl": 83, "intReq": 45, "mr": 5, "fDamPct": -6, "wDamPct": 6, "type": "bracelet", "id": 3124}, {"name": "Squid Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "intReq": 25, "mr": 5, "ms": 5, "xpb": 10, "int": 7, "eSteal": 1, "fDamPct": -10, "fDefPct": 10, "wDefPct": 10, "tDefPct": -30, "id": 3125}, {"name": "Sreggad", "tier": "Rare", "type": "dagger", "thorns": 333, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "ls": 354, "ref": 333, "agi": 20, "def": 20, "hpBonus": 2500, "hprRaw": 173, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "id": 3129}, {"name": "Squidword's Clarinet", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "3-6", "aDam": "2-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "int": 4, "agi": 4, "spd": 5, "fDamPct": -10, "wDamPct": 8, "wDefPct": 7, "id": 3126}, {"name": "Staff of Regrowth", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 71, "strReq": 20, "intReq": 20, "mr": 10, "mdPct": -25, "wDefPct": 10, "eDefPct": 10, "id": 3131}, {"name": "Staccato", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -60, "tDef": 40, "eDef": 20, "lvl": 96, "strReq": 45, "dexReq": 45, "mr": -5, "ms": 10, "dex": 5, "mdRaw": 29, "type": "necklace", "id": 3128}, {"name": "StabSand", "displayName": "Stabsand", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-190", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 32, "ls": 38, "dex": 8, "expd": 30, "aDamPct": 12, "id": 3127}, {"name": "Stad Aer", "tier": "Unique", "type": "helmet", "thorns": 11, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1925, "fDef": -100, "eDef": 100, "lvl": 85, "strReq": 40, "agiReq": 40, "mdPct": 7, "ms": 10, "ref": 11, "str": 8, "mdRaw": 185, "aDamPct": 11, "aDefPct": 11, "id": 3130}, {"name": "Starburst", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "35-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "agiReq": 55, "ms": 10, "hprRaw": -150, "sdRaw": 160, "fDamPct": 10, "aDamPct": 20, "tDamPct": 10, "id": 3132}, {"name": "Stalagmites", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": -130, "aDef": -130, "tDef": 100, "eDef": 100, "lvl": 67, "strReq": 20, "dexReq": 20, "ms": 5, "xpb": 10, "str": 7, "dex": 7, "tDamPct": 25, "eDamPct": 25, "tDefPct": 20, "eDefPct": 20, "id": 3135}, {"name": "Stamina", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "aDef": 5, "lvl": 24, "def": 4, "spd": 6, "hprRaw": 5, "id": 3136}, {"name": "Standoff", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "lvl": 33, "defReq": 25, "def": 5, "spd": -28, "hpBonus": 200, "id": 3134}, {"name": "Starched Pants", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 16, "lvl": 5, "def": 4, "id": 3133}, {"name": "Starglass", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -100, "wDef": 60, "aDef": 140, "tDef": -40, "lvl": 95, "intReq": 40, "agiReq": 40, "sdPct": 30, "mdPct": -15, "ref": 20, "int": 7, "def": 7, "spRegen": 15, "fDamPct": 15, "wDamPct": 5, "aDefPct": 5, "id": 2517}, {"name": "Stasis", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-150", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 30, "mdPct": 10, "str": 7, "spd": -10, "eDamPct": 10, "aDefPct": -10, "eDefPct": 10, "id": 3137}, {"name": "Static Flood", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "42-51", "aDam": "0-0", "tDam": "7-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "dexReq": 35, "intReq": 30, "hprPct": -15, "sdPct": 5, "mdPct": -16, "ms": 10, "wDamPct": 10, "tDamPct": 13, "id": 3138}, {"name": "Static Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-66", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "dexReq": 30, "sdPct": 8, "mdPct": 5, "spd": 8, "tDamPct": 8, "tDefPct": 10, "id": 3139}, {"name": "Steam Vent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-128", "fDam": "48-85", "wDam": "0-0", "aDam": "37-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "agiReq": 20, "defReq": 20, "ls": 225, "agi": 7, "def": 7, "spd": 9, "wDefPct": -12, "eDefPct": -12, "id": 3143}, {"name": "Stave of Tribute", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "xpb": 7, "lb": 15, "id": 3141}, {"name": "Statue", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 7500, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 88, "spd": -200, "hpBonus": 3850, "id": 3142}, {"name": "Steamjet Walkers", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "tDef": -80, "lvl": 86, "dexReq": 30, "intReq": 30, "agiReq": 40, "sdPct": 24, "agi": 15, "spd": 21, "wDamPct": 21, "aDamPct": 24, "tDamPct": 21, "id": 3147}, {"name": "StealSkull", "displayName": "Stealskull", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 960, "lvl": 68, "ls": 110, "ms": 5, "eSteal": 5, "id": 3144}, {"name": "Steel Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "fDef": 12, "wDef": -10, "lvl": 45, "defReq": 15, "ref": 7, "def": 5, "spd": -3, "type": "bracelet", "id": 3148}, {"name": "Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-19", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 9, "expd": 5, "spd": -10, "aDamPct": -7, "eDamPct": 6, "id": 3145}, {"name": "Steel Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 415, "lvl": 46, "hprPct": 15, "mdPct": 6, "xpb": 10, "spd": -5, "id": 3150}, {"name": "Steel Wool", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "fDef": 80, "wDef": -120, "aDef": 80, "tDef": 80, "eDef": -120, "lvl": 90, "dexReq": 35, "defReq": 35, "sdPct": 15, "ls": 200, "dex": 8, "int": -22, "wDefPct": -15, "eDefPct": -15, "spPct1": -7, "spPct2": -7, "spPct3": -7, "spPct4": -7, "id": 3151}, {"name": "Steel Toed Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "fDef": 2, "eDef": 2, "lvl": 19, "def": 4, "hpBonus": 10, "id": 3152}, {"name": "Steel Sabre", "tier": "Unique", "type": "dagger", "poison": 150, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 35, "sdPct": 7, "mdPct": 4, "str": 5, "fDamPct": -15, "fDefPct": -15, "id": 3146}, {"name": "Stick of Brilliance", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "ms": 5, "xpb": 7, "int": 4, "id": 3154}, {"name": "Stingray", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-80", "aDam": "0-0", "tDam": "20-110", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "dexReq": 27, "intReq": 27, "sdPct": 10, "ms": 5, "dex": 5, "int": 8, "tDamPct": 10, "eDamPct": -14, "eDefPct": -14, "id": 3156}, {"name": "Stone Cutter", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "eSteal": 2, "eDamPct": 6, "id": 3153}, {"name": "Stellar", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 95, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 13, "mdPct": 13, "ms": 5, "spd": 10, "hpBonus": 577, "type": "necklace", "id": 3149}, {"name": "Stonehall", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 35, "strReq": 15, "str": 5, "spd": -3, "eDamPct": 8, "type": "ring", "id": 3159}, {"name": "StoneWall", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "fDef": -10, "wDef": -10, "aDef": -50, "tDef": -10, "eDef": 150, "lvl": 60, "strReq": 30, "mdPct": 5, "xpb": 10, "str": 8, "def": 5, "aDamPct": -40, "id": 3155}, {"name": "Storm Brewer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2550, "wDef": -150, "tDef": 50, "lvl": 86, "dexReq": 65, "mr": -15, "mdPct": 15, "ms": 15, "dex": 12, "sdRaw": 160, "mdRaw": 190, "wDamPct": -20, "tDamPct": 15, "id": 3160}, {"name": "Storm Surge", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-330", "aDam": "0-0", "tDam": "1-420", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "intReq": 35, "hprPct": -20, "ms": 10, "atkTier": -1, "hpBonus": -900, "sdRaw": 146, "wDamPct": 18, "tDamPct": 18, "aDefPct": -30, "eDefPct": -71, "id": 3157}, {"name": "Storm Caller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-115", "fDam": "0-0", "wDam": "0-0", "aDam": "55-70", "tDam": "50-85", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 30, "agiReq": 30, "sdPct": 12, "def": -8, "spd": 8, "aDamPct": 12, "tDamPct": 12, "wDefPct": -24, "eDefPct": -24, "id": 3158}, {"name": "Stormdrain", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "220-225", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 55, "mr": 20, "sdPct": -15, "mdPct": -30, "int": 15, "wDamPct": 55, "wDefPct": -20, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3161}, {"name": "Stranglevine", "tier": "Unique", "type": "bow", "poison": 810, "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-120", "atkSpd": "SLOW", "lvl": 63, "hprPct": -20, "ls": 175, "fDefPct": -10, "id": 3163}, {"name": "Stratosphere", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": -60, "wDef": 120, "aDef": -60, "tDef": 120, "eDef": -120, "lvl": 98, "dexReq": 65, "intReq": 65, "mr": 10, "sdPct": 25, "wDamPct": 10, "tDamPct": 10, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "jh": 3, "id": 3591}, {"name": "Stormflash", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "1-23", "aDam": "0-0", "tDam": "1-23", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "intReq": 15, "hprPct": -9, "sdPct": 8, "xpb": 8, "dex": 5, "int": 5, "eDefPct": -10, "id": 3165}, {"name": "Straw Helmet", "tier": "Unique", "type": "helmet", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "fDef": -5, "wDef": -5, "lvl": 20, "xpb": 5, "spd": 6, "id": 3167}, {"name": "Stormstrike", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "agi": 4, "id": 3162}, {"name": "Streak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 175, "tDef": 10, "eDef": -10, "lvl": 30, "dexReq": 10, "ref": 3, "dex": 5, "spd": 10, "hpBonus": -30, "tDamPct": 10, "eDefPct": -15, "id": 3166}, {"name": "Stress", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 30, "lb": 10, "spd": 5, "hpBonus": -18, "spRegen": -10, "hprRaw": -7, "id": 3169}, {"name": "Striker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-10", "fDam": "0-0", "wDam": "0-0", "aDam": "4-7", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdPct": 5, "agi": 3, "def": -2, "hpBonus": -9, "mdRaw": 8, "id": 3168}, {"name": "Stringendo", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "agi": 4, "spd": 12, "id": 3175}, {"name": "Struggle", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "tDef": 180, "eDef": -150, "lvl": 90, "dexReq": 50, "mdPct": 20, "ms": 10, "dex": 10, "expd": 30, "atkTier": -6, "mdRaw": 775, "wDamPct": -23, "tDamPct": 31, "id": 3170}, {"name": "Sturdy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1800, "fDef": 40, "eDef": 40, "lvl": 79, "strReq": 40, "defReq": 40, "sdPct": -8, "xpb": 9, "def": 7, "hpBonus": 600, "eDefPct": 13, "id": 3171}, {"name": "Strobelight", "tier": "Fabled", "majorIds": ["TAUNT"], "category": "accessory", "drop": "lootchest", "hp": 350, "lvl": 54, "classReq": "Warrior", "defReq": 30, "ref": 15, "def": 7, "spd": -7, "type": "necklace", "id": 3172}, {"name": "Sublime", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1350, "fDef": 60, "aDef": 60, "lvl": 64, "agiReq": 50, "defReq": 50, "sdPct": -15, "mdPct": -15, "agi": 7, "def": 7, "spd": 8, "hpBonus": 200, "fDefPct": 10, "aDefPct": 10, "id": 3178}, {"name": "Stylist's Scissors", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-54", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "dexReq": 15, "xpb": 12, "lb": 10, "atkTier": 1, "eSteal": 5, "eDamPct": -5, "id": 3173}, {"name": "Sublimator", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": 70, "wDef": -90, "eDef": 70, "lvl": 66, "strReq": 30, "defReq": 30, "mdPct": 14, "def": 5, "spd": -8, "fDamPct": 16, "eDamPct": 16, "wDefPct": -18, "id": 3174}, {"name": "Subsumere", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "30-50", "aDam": "0-0", "tDam": "20-55", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 15, "intReq": 20, "sdPct": -10, "ls": 160, "ms": 10, "id": 3177}, {"name": "Stratus", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 93, "intReq": 60, "agiReq": 30, "ms": 5, "agi": 8, "spd": 11, "type": "ring", "id": 3164}, {"name": "Succulent Sneakers", "tier": "Unique", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 835, "wDef": 30, "eDef": 40, "lvl": 60, "strReq": 30, "intReq": 20, "hprPct": 20, "sdPct": -8, "wDefPct": 9, "aDefPct": -11, "eDefPct": 9, "id": 3176}, {"name": "Jewelled Sinew", "displayName": "Subtle Calamity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-135", "tDam": "0-0", "eDam": "80-135", "atkSpd": "VERY_FAST", "lvl": 90, "strReq": 35, "agiReq": 30, "mr": -5, "sdPct": 15, "ms": 5, "int": 10, "agi": 10, "fDefPct": -12, "tDefPct": -12, "id": 3179}, {"name": "Suchimu", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": 40, "wDef": 40, "lvl": 53, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "sdPct": -8, "mdPct": -8, "int": 4, "def": 4, "hprRaw": 35, "tDamPct": -30, "id": 3180}, {"name": "Sulphurous Sling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "6-15", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 45, "dexReq": 25, "defReq": 10, "sdPct": 14, "mdPct": -20, "expd": 12, "tDamPct": 14, "wDefPct": -12, "id": 3181}, {"name": "Sunray", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "fDef": 90, "tDef": 90, "lvl": 96, "dexReq": 20, "defReq": 20, "hprPct": 18, "ms": 5, "ref": 15, "dex": 5, "def": 5, "sdRaw": 160, "wDefPct": -10, "aDefPct": -10, "id": 3183}, {"name": "Sunbreeze", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "8-12", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 15, "agi": 5, "def": 5, "spd": 5, "hpBonus": 270, "wDefPct": -6, "id": 3184}, {"name": "Sunblock", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 124, "fDef": 10, "wDef": -7, "lvl": 24, "defReq": 5, "hprPct": 14, "ref": 6, "fDefPct": 5, "id": 3182}, {"name": "Sunsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "24-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 15, "agiReq": 5, "mr": 5, "xpb": 8, "ref": 5, "def": -3, "fDamPct": -15, "aDamPct": 10, "fDefPct": 5, "tDefPct": -5, "id": 3185}, {"name": "Sunrise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-35", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": 5, "xpb": 10, "lb": 10, "ref": 20, "id": 3186}, {"name": "Sunshade", "tier": "Rare", "type": "helmet", "thorns": -10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "fDef": 15, "wDef": -15, "lvl": 37, "ref": 15, "fDamPct": -5, "fDefPct": 8, "tDefPct": 8, "id": 3187}, {"name": "Sunshower", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "fDef": 60, "wDef": 60, "aDef": 90, "eDef": -125, "lvl": 83, "intReq": 40, "defReq": 40, "mr": 5, "xpb": 13, "agi": 8, "hprRaw": 100, "fDamPct": 13, "wDamPct": 13, "fDefPct": 13, "wDefPct": 13, "eDefPct": -20, "id": 3189}, {"name": "Sunshine Shortsword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "13-21", "wDam": "0-0", "aDam": "0-0", "tDam": "13-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 46, "dexReq": 20, "defReq": 20, "dex": 5, "def": 5, "hpBonus": 125, "id": 3188}, {"name": "Sunstruck", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "defReq": 30, "spRegen": 20, "hprRaw": 80, "sdRaw": -63, "mdRaw": -109, "fDamPct": 15, "id": 3191}, {"name": "Supernova", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-30", "wDam": "11-30", "aDam": "11-30", "tDam": "11-30", "eDam": "11-30", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "expd": 19, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 3190}, {"name": "Suppression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 76, "hprPct": 4, "mr": 10, "ls": -145, "ms": -20, "type": "ring", "id": 3192}, {"name": "Svalinn", "tier": "Rare", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1450, "fDef": 150, "wDef": 50, "lvl": 66, "intReq": 15, "defReq": 30, "hprPct": 30, "mr": 5, "ref": 15, "agi": -5, "def": 12, "spd": -28, "eDefPct": -25, "id": 3193}, {"name": "Swift", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 3, "spd": 5, "mdRaw": 1, "type": "necklace", "id": 3194}, {"name": "Swamp Clay", "tier": "Unique", "type": "helmet", "poison": 350, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "wDef": 65, "aDef": -70, "tDef": -70, "eDef": 65, "lvl": 78, "strReq": 35, "intReq": 30, "mr": 5, "sdPct": 6, "mdPct": 6, "spd": -7, "tDamPct": -12, "id": 3210}, {"name": "Switch Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "sdPct": 5, "dex": 3, "id": 3197}, {"name": "Sweden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-28", "fDam": "0-0", "wDam": "0-0", "aDam": "21-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "agiReq": 14, "ref": 14, "agi": 7, "spd": 14, "jh": 1, "id": 3195}, {"name": "Sylar", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-63", "fDam": "0-0", "wDam": "0-0", "aDam": "9-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "agiReq": 15, "agi": 5, "spd": 11, "sdRaw": 25, "aDefPct": 10, "id": 3199}, {"name": "Synthesizer", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "99-241", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "99-202", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 30, "intReq": 35, "xpb": 12, "dex": 8, "sdRaw": 100, "wDamPct": 25, "eDamPct": -23, "eDefPct": -16, "id": 3202}, {"name": "Synergy", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1000, "lvl": 59, "xpb": 6, "lb": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 3201}, {"name": "Syringe", "tier": "Unique", "type": "spear", "poison": -245, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "20-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 15, "ls": 41, "hpBonus": 190, "hprRaw": 19, "fDamPct": 13, "id": 3200}, {"name": "Agile Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 15, "lvl": 62, "agi": 3, "spd": 9, "aDamPct": 6, "type": "ring", "fixID": true, "id": 3203}, {"name": "Dark Band", "tier": "Rare", "quest": "Lost in the Jungle", "thorns": 8, "category": "accessory", "drop": "never", "tDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "dexReq": 10, "tDamPct": 6, "eDamPct": 6, "aDefPct": -8, "type": "bracelet", "fixID": true, "id": 3205}, {"name": "Barbaric Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "agiReq": 10, "mdPct": 8, "aDamPct": 6, "eDamPct": 6, "fDefPct": -8, "type": "necklace", "fixID": true, "id": 3204}, {"name": "Chaotic Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 25, "tDef": 25, "lvl": 63, "dexReq": 10, "intReq": 10, "sdRaw": 30, "wDamPct": 6, "tDamPct": 6, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 3206}, {"name": "Droughted Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "aDef": 25, "lvl": 63, "agiReq": 10, "defReq": 10, "expd": 8, "fDamPct": 6, "aDamPct": 6, "wDefPct": -8, "type": "necklace", "fixID": true, "id": 3209}, {"name": "Energy Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "tDef": 15, "lvl": 62, "dex": 3, "mdRaw": 29, "tDamPct": 6, "type": "ring", "fixID": true, "id": 3208}, {"name": "Force Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "eDef": 15, "lvl": 62, "mdPct": 6, "str": 3, "eDamPct": 6, "type": "ring", "fixID": true, "id": 3212}, {"name": "Mask of Courage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3NzYyMzIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzNhYTdlYzgyNGQ4NWViOWZjNzhlZmM5NjY4OWI4YTlmZTgyODgzOGJiMTZmZWU1MmZmOWNhYWFlODNjYzNhIn19fQ==", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "fDef": 100, "lvl": 57, "defReq": 30, "hprPct": 20, "lb": 10, "def": 5, "hpBonus": 500, "fDamPct": 20, "fixID": true, "id": 3214}, {"name": "Magical Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 15, "lvl": 62, "sdPct": 6, "int": 3, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3211}, {"name": "Mask of Fear", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3MTAxODQsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmFiZWVhYjUxYzM2NDc1ZDA2ZjY4M2M5MWVhOGIzZTM4MmE5ZTcxZTg0NzEyOWNlY2RlODcxMWQ5N2JkYTYifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": 80, "lvl": 57, "agiReq": 30, "lb": 10, "agi": 5, "spd": 15, "aDamPct": 20, "fixID": true, "id": 3215}, {"name": "Mask of Enlightement", "displayName": "Mask of Enlightenment", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU1NjgzMzAsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGI3NDgyNTdlZWU3NjhiNmQwM2I0ZWRhNTNjZmI1MmM1YWZmYmYxNmI3ZDhkOTNkNGQ2MWNlYjRjNmUyMTE0In19fQ==", "tier": "Legendary", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 750, "wDef": 60, "lvl": 57, "intReq": 30, "mr": 10, "sdPct": 10, "lb": 10, "int": 5, "wDamPct": 20, "fixID": true, "id": 3216}, {"name": "Guardian Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 15, "lvl": 62, "def": 3, "hpBonus": 230, "fDamPct": 6, "type": "ring", "fixID": true, "id": 3207}, {"name": "Synapse", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": -60, "eDef": -60, "lvl": 93, "strReq": 35, "agiReq": 35, "hprPct": -15, "ms": 5, "sdRaw": 120, "mdRaw": -120, "type": "bracelet", "id": 3198}, {"name": "Mask of Rage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2MTgwMzUsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmFjYzg3MmEwZGQ3MjI3NDg5ZmRlZGJlYmMyZWE2MjE1OGVlZjdlNWRkOTZjYzg3Njk5OTc3YWI5MjBmYSJ9fX0=", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1050, "eDef": 40, "lvl": 57, "strReq": 30, "mdPct": 25, "lb": 10, "str": 5, "eDamPct": 20, "fixID": true, "id": 3219}, {"name": "Scalding Band", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 63, "intReq": 10, "defReq": 10, "sdPct": 8, "fDamPct": 6, "wDamPct": 6, "tDefPct": -8, "type": "bracelet", "fixID": true, "id": 3217}, {"name": "Tachypsychia", "tier": "Fabled", "type": "relik", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "85-125", "eDam": "85-125", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 50, "dexReq": 50, "sdPct": 40, "spd": 20, "hprRaw": -245, "spRaw1": 5, "spRaw4": 5, "id": 3550}, {"name": "Tainted Step", "tier": "Unique", "type": "boots", "poison": 140, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": -25, "wDef": -25, "aDef": -25, "lvl": 51, "strReq": 30, "mdPct": 12, "ls": 42, "spRegen": -5, "hprRaw": -15, "id": 3220}, {"name": "Tactical Kukri", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-72", "fDam": "34-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "defReq": 35, "lb": 10, "hpBonus": 680, "eSteal": 5, "id": 3218}, {"name": "Mask of Hate", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2NzA3NjIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWMzMmRlZDVkNzY1N2RmMzExMTRkZmRkMzE5MjE5MzM3ZTU3NjQ2NWI3Nzk3ZGMwNmI1NjMyY2ViZDRjMzcifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "tDef": 20, "lvl": 57, "dexReq": 30, "lb": 10, "dex": 5, "mdRaw": 110, "tDamPct": 20, "fixID": true, "id": 3213}, {"name": "Tailwind", "tier": "Unique", "type": "leggings", "sprint": 16, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -150, "aDef": 150, "lvl": 91, "agiReq": 45, "sdPct": 19, "mdPct": 12, "ms": 10, "agi": 8, "spd": 18, "aDamPct": 20, "eDamPct": -15, "aDefPct": 8, "eDefPct": -25, "id": 3221}, {"name": "Takeover", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 50, "wDef": -50, "tDef": 100, "eDef": -100, "lvl": 77, "dexReq": 45, "ls": 115, "dex": 5, "int": -4, "def": 4, "sdRaw": 75, "fDamPct": 9, "wDamPct": -12, "tDamPct": 6, "id": 3222}, {"name": "Talisman Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 70, "sdPct": 5, "xpb": 5, "hpBonus": 340, "type": "necklace", "id": 3224}, {"name": "Takan's Treachery", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -45, "lvl": 30, "ls": 8, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 3223}, {"name": "Talcum", "tier": "Unique", "type": "helmet", "poison": 280, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1325, "aDef": -80, "eDef": 40, "lvl": 72, "strReq": 40, "mdPct": 8, "lb": 11, "str": 8, "eDamPct": 14, "wDefPct": -13, "aDefPct": -10, "id": 3227}, {"name": "Talaria", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 770, "fDef": -40, "lvl": 59, "agiReq": 70, "mdPct": -20, "lb": 20, "agi": 9, "spd": 23, "id": 3225}, {"name": "Tarnhelm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 240, "wDef": -20, "eDef": 20, "lvl": 33, "mdPct": 10, "str": 9, "id": 3230}, {"name": "Tarnish", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "wDef": 5, "aDef": -6, "lvl": 21, "intReq": 5, "ms": 5, "xpb": 8, "ref": -4, "wDamPct": 9, "aDefPct": -7, "id": 3226}, {"name": "Tarnkappe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "lvl": 59, "dexReq": 20, "agiReq": 40, "dex": 8, "agi": 10, "def": -15, "spd": 12, "mdRaw": 100, "aDamPct": 15, "tDamPct": 15, "id": 3229}, {"name": "Tarod's Search", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 10, "lvl": 47, "intReq": 5, "agiReq": 5, "ref": 7, "spd": 7, "hpBonus": -40, "wDefPct": 6, "type": "bracelet", "id": 3228}, {"name": "Tashkil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "80-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "defReq": 50, "hprPct": 15, "sdPct": -7, "mdPct": 20, "ms": -5, "def": 8, "spd": -6, "hprRaw": 150, "fDefPct": 20, "id": 3232}, {"name": "Taurus", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 4000, "fDef": -80, "eDef": 200, "lvl": 96, "strReq": 90, "mdPct": 50, "str": 15, "expd": 30, "atkTier": -20, "mdRaw": 1500, "id": 3234}, {"name": "Tarok's Parka", "displayName": "Tarod's Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "fDef": -2, "wDef": 6, "lvl": 10, "mr": 5, "int": 4, "sdRaw": 5, "id": 3233}, {"name": "Tear of Pirate Cove", "tier": "Rare", "quest": "Redbeard^s Booty", "category": "accessory", "drop": "never", "wDef": 20, "lvl": 61, "intReq": 40, "mr": 5, "sdPct": 4, "ms": -10, "sdRaw": 20, "type": "bracelet", "id": 3237}, {"name": "Teal Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 50, "eDef": 30, "lvl": 71, "intReq": 25, "mr": 5, "xpb": 6, "str": 5, "eDamPct": 12, "wDefPct": 7, "id": 3231}, {"name": "Technicolor Phase", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "7-9", "wDam": "7-9", "aDam": "7-9", "tDam": "7-9", "eDam": "7-9", "atkSpd": "NORMAL", "lvl": 21, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spRegen": 10, "id": 3239}, {"name": "Tears", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 51, "intReq": 40, "sdPct": 3, "ls": -21, "ms": 5, "int": 3, "type": "ring", "id": 3236}, {"name": "Tectonics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "eDef": 40, "lvl": 65, "strReq": 50, "mdPct": 8, "str": 5, "spd": -12, "eDamPct": 10, "eDefPct": 12, "id": 3235}, {"name": "Tempest", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "5-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 20, "agiReq": 20, "dex": 7, "agi": 7, "spd": 10, "mdRaw": 33, "fDamPct": -15, "fDefPct": -15, "id": 3238}, {"name": "Templar", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 50, "agiReq": 25, "defReq": 35, "sdPct": -15, "xpb": 4, "lb": 6, "spd": -15, "spRegen": 5, "eSteal": -5, "wDamPct": -10, "id": 3244}, {"name": "Tempered Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1300, "lvl": 65, "defReq": 30, "def": 8, "fDamPct": 6, "fDefPct": 4, "wDefPct": 4, "aDefPct": 4, "tDefPct": 4, "eDefPct": 4, "id": 3240}, {"name": "Tenuto", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 30, "wDef": -50, "tDef": 30, "lvl": 79, "dexReq": 40, "defReq": 40, "sdPct": 12, "dex": 4, "def": 4, "spd": -8, "atkTier": -6, "type": "necklace", "id": 3242}, {"name": "Tephra", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1875, "fDef": 90, "wDef": -100, "eDef": 90, "lvl": 80, "strReq": 40, "defReq": 35, "hprPct": 18, "mdPct": 10, "str": 7, "def": 7, "expd": 15, "fDamPct": 18, "eDamPct": 18, "id": 3243}, {"name": "Tepid Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "fDef": 6, "wDef": -3, "lvl": 20, "defReq": 5, "def": 3, "hpBonus": 15, "fDamPct": 4, "wDamPct": -6, "id": 3246}, {"name": "Terraflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": -80, "eDef": 80, "lvl": 78, "strReq": 50, "mr": -5, "sdPct": -10, "mdPct": 13, "ls": 75, "str": 7, "int": -5, "wDamPct": -10, "eDamPct": 10, "id": 3248}, {"name": "Tesla", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1100, "wDef": 180, "tDef": 120, "lvl": 97, "dexReq": 80, "ls": 280, "ms": 15, "dex": 13, "sdRaw": 185, "tDamPct": 40, "eDamPct": -30, "aDefPct": -20, "id": 3247}, {"name": "Terra's Mold", "tier": "Legendary", "type": "chestplate", "poison": 1500, "thorns": 15, "sprint": -25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "wDef": 50, "aDef": -125, "eDef": 175, "lvl": 90, "strReq": 60, "hprPct": -20, "mdPct": 23, "ms": 5, "str": 10, "eDamPct": 31, "id": 3245}, {"name": "The Chapel", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 32, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "hprPct": 10, "xpb": 10, "spRegen": 15, "id": 3252}, {"name": "The Abacus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-45", "fDam": "0-0", "wDam": "0-0", "aDam": "41-44", "tDam": "0-0", "eDam": "42-43", "atkSpd": "SLOW", "lvl": 45, "strReq": 35, "agiReq": 25, "mdPct": 7, "str": 7, "agi": 8, "aDamPct": 8, "eDamPct": 9, "fDefPct": -11, "wDefPct": -10, "id": 3250}, {"name": "Temporal Lantern", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "101-101", "wDam": "0-0", "aDam": "95-107", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "agiReq": 22, "defReq": 22, "str": -3, "dex": -3, "int": -3, "agi": 8, "def": 8, "spd": -15, "hpBonus": 285, "hprRaw": 35, "wDamPct": 20, "id": 3241}, {"name": "The Dreamer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-90", "fDam": "0-0", "wDam": "0-0", "aDam": "10-80", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 30, "agiReq": 30, "sdPct": 13, "dex": 14, "agi": 14, "spRegen": 15, "eDamPct": -30, "fDefPct": -30, "id": 3255}, {"name": "The Archaeologist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "aDef": -15, "eDef": 25, "lvl": 24, "strReq": 10, "xpb": 6, "lb": 6, "str": 4, "eDamPct": 7, "aDefPct": -8, "eDefPct": 10, "id": 3251}, {"name": "The Creationist", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "17-22", "aDam": "17-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "intReq": 35, "agiReq": 35, "sdPct": 19, "mdPct": -14, "str": -4, "dex": -4, "int": 8, "agi": 8, "def": -4, "id": 3249}, {"name": "The Sinner", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1150, "fDef": 80, "wDef": -80, "aDef": -80, "tDef": 80, "lvl": 67, "dexReq": 25, "defReq": 25, "mdPct": 12, "dex": 5, "def": 5, "spRegen": -15, "hprRaw": -45, "fDamPct": 12, "tDamPct": 12, "id": 3256}, {"name": "The Medic", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "45-55", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "intReq": 35, "defReq": 35, "hprPct": 20, "mr": 10, "sdPct": -15, "mdPct": -15, "hprRaw": 50, "wDamPct": 10, "id": 3253}, {"name": "The Banhammer", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "14-20", "atkSpd": "SLOW", "lvl": 28, "sdPct": -10, "mdPct": 10, "expd": 10, "id": 3254}, {"name": "The Berserk", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-22", "atkSpd": "SLOW", "lvl": 19, "strReq": 10, "sdPct": -10, "mdPct": 10, "str": 7, "dex": -5, "expd": 5, "aDamPct": -10, "eDamPct": 10, "aDefPct": -10, "id": 3258}, {"name": "The Berserker's Helm", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 310, "lvl": 34, "strReq": 25, "mdPct": 21, "ls": 26, "str": 9, "int": -3, "eSteal": 3, "hprRaw": -13, "id": 3257}, {"name": "The Brain Smasher", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "7-17", "atkSpd": "VERY_SLOW", "lvl": 20, "strReq": 5, "sdPct": -6, "mdPct": 4, "str": 4, "expd": 3, "aDefPct": -5, "id": 3260}, {"name": "The Brigand's Brogues", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 145, "lvl": 25, "dexReq": 10, "agiReq": 5, "dex": 4, "spd": 14, "eSteal": 4, "tDamPct": 10, "id": 3259}, {"name": "The Elder Wand", "tier": "Unique", "type": "wand", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "24-46", "aDam": "0-0", "tDam": "0-0", "eDam": "40-48", "atkSpd": "SLOW", "lvl": 62, "strReq": 10, "intReq": 10, "def": -10, "mdRaw": 70, "fDamPct": -10, "eDamPct": 12, "fDefPct": -10, "id": 3263}, {"name": "The End", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "235-260", "tDam": "0-0", "eDam": "260-290", "atkSpd": "SLOW", "lvl": 100, "strReq": 55, "agiReq": 55, "mdPct": 35, "ls": 450, "agi": 10, "spd": 25, "sdRaw": -210, "mdRaw": 365, "wDefPct": -45, "id": 3265}, {"name": "The Eviscerator", "tier": "Rare", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "strReq": 20, "dexReq": 20, "ls": 150, "str": 13, "dex": 7, "spd": 10, "id": 3267}, {"name": "The Divide", "tier": "Legendary", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-24", "wDam": "1-24", "aDam": "1-24", "tDam": "1-24", "eDam": "1-24", "atkSpd": "NORMAL", "lvl": 26, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 10, "ms": 5, "expd": 7, "spd": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 3262}, {"name": "The Ephemeral", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2125, "wDef": 100, "aDef": 100, "tDef": -130, "lvl": 87, "intReq": 45, "agiReq": 45, "mr": 10, "sdPct": 14, "mdPct": -15, "int": 7, "agi": 7, "aDamPct": 12, "tDefPct": -10, "id": 3264}, {"name": "The Euphoric Fedora", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 69, "lvl": 14, "ls": 5, "dex": 3, "spd": -4, "eSteal": 2, "id": 3266}, {"name": "The Exile", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "defReq": 50, "hprPct": 30, "mdPct": -5, "ls": 190, "str": -5, "def": 13, "spd": -5, "hpBonus": 1000, "fDefPct": 45, "id": 3269}, {"name": "The Forgery", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 100, "aDef": 30, "tDef": 30, "lvl": 74, "defReq": 30, "hprPct": 36, "lb": 19, "def": 9, "spd": -8, "eSteal": 5, "fDamPct": 11, "fDefPct": 35, "wDefPct": -20, "aDefPct": -5, "tDefPct": -5, "eDefPct": -20, "id": 3268}, {"name": "The Gambler", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -325, "lvl": 81, "ls": 80, "ms": 5, "lb": 7, "hpBonus": 325, "eSteal": 4, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "type": "ring", "id": 3270}, {"name": "The Golem", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4300, "fDef": 200, "wDef": -150, "aDef": 150, "tDef": 100, "eDef": 100, "lvl": 97, "defReq": 100, "ls": 300, "ref": 30, "agi": 10, "def": 15, "spd": -25, "hprRaw": 200, "wDamPct": -20, "fDefPct": 30, "id": 3275}, {"name": "The King's Robe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 11, "lvl": 3, "xpb": 8, "lb": 4, "id": 3274}, {"name": "The Jingling Jester", "tier": "Fabled", "type": "chestplate", "majorIds": ["GREED"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2325, "fDef": 1, "wDef": 1, "aDef": 1, "tDef": 1, "eDef": 1, "lvl": 69, "ls": 150, "xpb": 25, "lb": 25, "hprRaw": -101, "spPct2": -31, "spPct4": -10, "jh": 2, "id": 3621}, {"name": "The Head Ripper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "10-15", "atkSpd": "SLOW", "lvl": 30, "strReq": 5, "agiReq": 5, "sdPct": 5, "mdPct": 5, "agi": 7, "spd": 5, "id": 3271}, {"name": "The Knight's Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 440, "tDef": 15, "eDef": -20, "lvl": 43, "sdPct": 5, "xpb": 8, "str": 7, "dex": 7, "tDamPct": 15, "eDamPct": -30, "tDefPct": 10, "eDefPct": -10, "id": 3272}, {"name": "The Leech Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 4, "ls": 2, "id": 3278}, {"name": "The Levee", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 40, "wDef": 40, "lvl": 46, "intReq": 15, "defReq": 30, "sdPct": -10, "mdPct": -15, "def": 9, "spd": -15, "fDamPct": 15, "wDamPct": 15, "fDefPct": 20, "wDefPct": 20, "id": 3276}, {"name": "The Master's Gi", "tier": "Rare", "type": "chestplate", "quest": "Enter the Dojo", "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "lvl": 89, "hprPct": 20, "mr": 5, "xpb": 15, "spd": 12, "fDamPct": 26, "eDamPct": 26, "id": 3277}, {"name": "The Mark", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 800, "wDef": -30, "lvl": 56, "dexReq": 35, "defReq": 35, "sdPct": 20, "lb": 10, "int": -5, "spRegen": -10, "wDamPct": -10, "fDefPct": 15, "tDefPct": 15, "id": 3273}, {"name": "The Meddler", "tier": "Rare", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 19, "intReq": 8, "ls": 4, "ref": 6, "hprRaw": -2, "sdRaw": 4, "mdRaw": -4, "type": "bracelet", "id": 3280}, {"name": "The Nautilus", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-70", "fDam": "0-0", "wDam": "28-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 48, "intReq": 25, "mr": 5, "lb": 10, "ref": 5, "spd": 5, "fDefPct": 10, "wDefPct": 5, "tDefPct": -10, "id": 3281}, {"name": "The Mind", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-24", "fDam": "0-0", "wDam": "16-26", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "intReq": 20, "sdPct": 16, "mdPct": -10, "xpb": 6, "int": 7, "id": 3279}, {"name": "The Old King's Crown", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": 5, "wDef": -2, "lvl": 14, "def": 4, "fDefPct": 5, "id": 3284}, {"name": "The Out", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "xpb": 6, "spd": 5, "hpBonus": 6, "id": 3285}, {"name": "The Oblivious", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 1450, "lvl": 62, "sdPct": 7, "mdPct": 11, "xpb": 25, "hpBonus": 550, "hprRaw": 35, "fDamPct": -40, "wDamPct": -40, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 3282}, {"name": "The Oppressors", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2000, "lvl": 75, "defReq": 75, "dex": -3, "int": -3, "agi": -3, "def": 17, "spd": -15, "atkTier": -1, "hpBonus": 900, "id": 3283}, {"name": "The Parasite", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-175", "eDam": "70-125", "atkSpd": "SLOW", "lvl": 98, "strReq": 45, "dexReq": 45, "mr": -15, "ls": 430, "ms": 10, "expd": 25, "hpBonus": -1350, "hprRaw": -200, "tDamPct": 17, "eDamPct": 17, "fDefPct": -28, "id": 3287}, {"name": "The Rainmaker", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-152", "aDam": "0-0", "tDam": "0-152", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 40, "intReq": 40, "ls": -365, "ms": -10, "atkTier": 1, "sdRaw": 155, "mdRaw": 95, "tDamPct": 20, "eDamPct": 20, "id": 3290}, {"name": "The Queen's Tiara", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 19, "lvl": 5, "xpb": 4, "lb": 8, "id": 3286}, {"name": "The Prisoner", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "lvl": 79, "strReq": 55, "agi": -10, "def": 17, "spd": -40, "hpBonus": 1615, "id": 3288}, {"name": "The Rupturer", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -100, "eDef": 80, "lvl": 81, "strReq": 60, "mdPct": 10, "str": 15, "expd": 25, "eDamPct": 25, "aDefPct": -10, "id": 3315}, {"name": "The Smoking Barrel", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-400", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 20, "str": 5, "dex": 5, "expd": 15, "spd": -10, "eDamPct": 10, "id": 3292}, {"name": "The Scarecrow's Arm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 3, "mdPct": 3, "id": 3289}, {"name": "The Skin Tearer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 3, "str": 4, "dex": 4, "id": 3291}, {"name": "The Stokers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3100, "lvl": 95, "defReq": 75, "mr": 5, "mdPct": -25, "def": 15, "hprRaw": 135, "mdRaw": 285, "fDamPct": 10, "fDefPct": 15, "id": 3296}, {"name": "The Specialist", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "xpb": 20, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "fDamPct": 1176, "wDamPct": 1334, "aDamPct": 1176, "tDamPct": 889, "eDamPct": 1000, "id": 3293}, {"name": "The Thief", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 34, "mdPct": -4, "ls": 20, "ms": 5, "dex": 1, "spd": 4, "eSteal": 5, "id": 3295}, {"name": "The Vampire Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-40", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ls": 47, "spRegen": 5, "id": 3298}, {"name": "The Traveler", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-87", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 49, "mdPct": 10, "agi": 8, "spd": 23, "eSteal": 2, "aDamPct": 10, "id": 3294}, {"name": "The Wildwing", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-23", "fDam": "0-0", "wDam": "0-0", "aDam": "15-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "agiReq": 5, "agi": 4, "spd": 5, "aDamPct": 5, "fDefPct": -10, "id": 3301}, {"name": "Thermosphere", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 70, "aDef": 70, "tDef": 100, "eDef": -110, "lvl": 81, "dexReq": 45, "ref": 19, "dex": 7, "agi": 5, "def": 5, "fDamPct": 9, "aDamPct": 9, "tDamPct": 15, "fDefPct": 15, "aDefPct": 15, "tDefPct": 9, "id": 3303}, {"name": "The Visionary's Vice", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "83-137", "aDam": "0-0", "tDam": "37-203", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 40, "intReq": 40, "ms": 10, "str": -15, "def": -15, "sdRaw": 175, "wDamPct": 12, "tDamPct": 12, "fDefPct": -35, "eDefPct": -35, "id": 3300}, {"name": "Thief's Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 8, "eSteal": 5, "id": 3307}, {"name": "Therck's Irritation", "tier": "Rare", "thorns": 3, "category": "accessory", "drop": "lootchest", "hp": -5, "lvl": 9, "mdRaw": 7, "fDamPct": 5, "type": "bracelet", "id": 3299}, {"name": "The Wool Trimmer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-15", "fDam": "0-0", "wDam": "6-11", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "xpb": 4, "lb": 8, "id": 3297}, {"name": "Thinking Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 4, "mr": 5, "id": 3304}, {"name": "Thrice", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-113", "fDam": "0-0", "wDam": "33-113", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 55, "mr": 5, "sdPct": 10, "int": 12, "sdRaw": 87, "fDamPct": -17, "wDamPct": 17, "wDefPct": 17, "id": 3308}, {"name": "Threshold", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "58-74", "aDam": "0-0", "tDam": "55-77", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "dexReq": 20, "intReq": 20, "mdPct": -55, "ms": 5, "hpBonus": -120, "sdRaw": 60, "mdRaw": 105, "id": 3306}, {"name": "Thousand Waves", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "966-1143", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "intReq": 45, "hprPct": -45, "int": 15, "def": -8, "fDamPct": -30, "wDamPct": 20, "tDefPct": -25, "spPct3": -24, "id": 3309}, {"name": "Third Eye", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2600, "lvl": 88, "intReq": 80, "mr": 15, "int": 15, "spRegen": 15, "fDefPct": 15, "wDefPct": 20, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3302}, {"name": "Throatcut", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-299", "fDam": "77-299", "wDam": "0-0", "aDam": "77-163", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "agiReq": 40, "defReq": 40, "mdPct": 27, "ls": 145, "xpb": 10, "lb": 10, "dex": -10, "int": -10, "agi": 13, "def": 13, "expd": 10, "spd": -10, "id": 3305}, {"name": "Thrunda Ripsaw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-385", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 80, "hprPct": -33, "mdPct": 25, "ls": 335, "sdRaw": 155, "tDamPct": 15, "wDefPct": -20, "eDefPct": -30, "id": 3312}, {"name": "Thunder Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-100", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 85, "tDamPct": 20, "tDefPct": 10, "id": 3310}, {"name": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-90", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 3311}, {"name": "Thunder Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-55", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 39, "tDamPct": 20, "tDefPct": 10, "id": 3316}, {"name": "Thundering Wind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-85", "fDam": "0-0", "wDam": "0-0", "aDam": "30-160", "tDam": "30-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "agiReq": 40, "sdPct": 15, "mdPct": 15, "dex": 7, "agi": 7, "spd": 14, "tDamPct": 15, "eDamPct": -30, "fDefPct": -30, "id": 3321}, {"name": "Thunderbolt", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-101", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 42, "dexReq": 20, "sdPct": 12, "mdPct": 12, "xpb": 12, "agi": 8, "spd": 12, "tDamPct": 12, "eDamPct": -144, "eDefPct": -36, "id": 3314}, {"name": "Thunderbird", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-125", "tDam": "90-170", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "dexReq": 40, "agiReq": 30, "sdPct": 14, "ms": 5, "dex": 9, "agi": 7, "spd": 15, "atkTier": 1, "fDefPct": -20, "id": 3318}, {"name": "Tidebinder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "235-315", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 65, "mr": 15, "mdPct": -25, "ref": 30, "int": 13, "fDefPct": 50, "wDefPct": 75, "tDefPct": -25, "id": 3325}, {"name": "Thunderlock", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "40-85", "tDam": "20-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "dexReq": 40, "agiReq": 35, "sdPct": 9, "ref": 10, "dex": 4, "mdRaw": 110, "aDefPct": 10, "id": 3317}, {"name": "Thunderstruck", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-27", "fDam": "0-0", "wDam": "0-0", "aDam": "15-27", "tDam": "15-27", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 15, "agiReq": 15, "dex": 5, "agi": 5, "spd": 5, "fDamPct": -20, "aDamPct": 10, "tDamPct": 10, "eDamPct": -20, "id": 3322}, {"name": "Timbre", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "7-7", "wDam": "7-7", "aDam": "7-7", "tDam": "7-7", "eDam": "7-7", "atkSpd": "SLOW", "lvl": 27, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 7, "lb": 7, "id": 3326}, {"name": "Time Rift", "tier": "Fabled", "type": "chestplate", "majorIds": ["SORCERY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "wDef": -250, "lvl": 95, "intReq": 120, "mr": -15, "sdPct": 46, "ms": -20, "ref": 30, "atkTier": -1, "id": 3323}, {"name": "Timthriall", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "152-153", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "152-153", "atkSpd": "NORMAL", "lvl": 98, "strReq": 50, "mr": 10, "sdPct": 20, "mdPct": 20, "str": 15, "eDamPct": 10, "id": 3328}, {"name": "Tidebreaker", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-115", "atkSpd": "SLOW", "lvl": 55, "intReq": 30, "sdPct": 16, "mdPct": 8, "expd": 10, "wDamPct": 14, "tDefPct": -50, "id": 3324}, {"name": "Tiny", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 7, "sdPct": 2, "agi": 1, "spd": 2, "type": "necklace", "id": 3330}, {"name": "Tinderbox", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": 110, "wDef": -110, "lvl": 93, "agiReq": 40, "defReq": 40, "ms": 5, "int": -30, "agi": 8, "expd": 25, "spd": 10, "fDamPct": 10, "wDamPct": -15, "spPct1": -10, "spPct3": -7, "spPct4": -10, "id": 3327}, {"name": "Tisaun's Honour", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": 20, "eDef": 15, "lvl": 88, "strReq": 35, "defReq": 35, "mdPct": 6, "ref": 8, "def": 7, "type": "ring", "id": 3329}, {"name": "Thundersnow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "wDef": 50, "tDef": 50, "eDef": -100, "lvl": 63, "dexReq": 25, "intReq": 40, "mr": 5, "sdPct": 14, "ls": -75, "dex": 4, "int": 3, "mdRaw": -91, "wDamPct": 5, "tDamPct": 11, "id": 3320}, {"name": "Tizatuko", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 125, "aDef": 7, "eDef": -4, "lvl": 21, "lb": 13, "agi": 5, "aDamPct": 8, "eDefPct": -6, "id": 3331}, {"name": "Tidal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 50, "tDef": -30, "eDef": -30, "lvl": 92, "intReq": 40, "ms": 5, "int": 4, "wDamPct": 7, "eDamPct": -5, "type": "bracelet", "id": 3319}, {"name": "Tisaun's Proof", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-50", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-70", "atkSpd": "FAST", "lvl": 88, "strReq": 55, "defReq": 55, "sdPct": 15, "mdPct": 10, "str": 20, "dex": 20, "def": 20, "atkTier": 1, "id": 3335}, {"name": "Toes Tickler", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 20, "lvl": 8, "spd": 7, "id": 3332}, {"name": "Toaster", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-96", "fDam": "66-72", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "defReq": 38, "sdPct": 11, "mdPct": 11, "fDefPct": 20, "id": 3333}, {"name": "Thunder Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-95", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 80, "tDamPct": 20, "tDefPct": 10, "id": 3313}, {"name": "Togak's Vision", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -50, "aDef": 25, "eDef": 25, "lvl": 77, "strReq": 15, "agiReq": 15, "ref": 6, "str": 4, "spRegen": 4, "fDamPct": -10, "fDefPct": -10, "aDefPct": 5, "eDefPct": 5, "type": "bracelet", "id": 3337}, {"name": "Tormenter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 6, "xpb": 5, "lb": 5, "id": 3336}, {"name": "Tonbo", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-90", "tDam": "0-0", "eDam": "35-90", "atkSpd": "NORMAL", "lvl": 58, "strReq": 15, "agiReq": 15, "sdPct": -19, "mdPct": 11, "str": 7, "agi": 7, "spd": 10, "aDamPct": 10, "aDefPct": -10, "id": 3334}, {"name": "Torrential Tide", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-85", "fDam": "0-0", "wDam": "1-255", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "intReq": 55, "mdPct": -40, "int": 25, "expd": -40, "sdRaw": 300, "fDamPct": -150, "wDamPct": 25, "tDefPct": -30, "id": 3339}, {"name": "Touroto Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": 65, "wDef": 65, "aDef": 65, "tDef": 65, "eDef": 65, "lvl": 85, "mdPct": 60, "str": 7, "def": 7, "atkTier": -1, "hpBonus": 350, "id": 3341}, {"name": "Tosach", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "NORMAL", "hp": 2, "lvl": 1, "xpb": 2, "id": 3340}, {"name": "Toxin", "tier": "Rare", "type": "helmet", "poison": 500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -80, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 40, "dexReq": 40, "hprPct": -10, "mdPct": 9, "hprRaw": -60, "tDamPct": 9, "eDamPct": 9, "aDefPct": -13, "id": 3367}, {"name": "Tower", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "defReq": 45, "hprPct": 20, "def": 13, "spd": -15, "hpBonus": 1715, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3342}, {"name": "Tourmaline Lyre", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-36", "fDam": "10-17", "wDam": "0-0", "aDam": "8-19", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 20, "hprPct": 20, "xpb": 15, "lb": 10, "agi": 5, "def": 5, "spd": 10, "hprRaw": 20, "id": 3338}, {"name": "Toxotes", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "175-235", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 73, "strReq": 20, "intReq": 40, "mdPct": 10, "int": 7, "hpBonus": -600, "wDamPct": 10, "tDefPct": -15, "id": 3344}, {"name": "Trace", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 11, "xpb": 2, "lb": 2, "spRegen": 2, "hprRaw": 2, "sdRaw": 2, "mdRaw": 2, "type": "necklace", "id": 3343}, {"name": "Trauma", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "aDef": 30, "tDef": 30, "lvl": 73, "dexReq": 45, "agiReq": 45, "dex": 5, "int": -10, "agi": 5, "mdRaw": 145, "aDamPct": 11, "tDamPct": 11, "id": 3348}, {"name": "Tracer", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "198-205", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 88, "agiReq": 55, "sdPct": -150, "mdPct": 15, "agi": 13, "spd": 15, "atkTier": 1, "hpBonus": -1500, "mdRaw": 160, "aDefPct": 10, "id": 3345}, {"name": "Travel Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "xpb": 5, "hpBonus": 20, "type": "necklace", "id": 3346}, {"name": "Tremorstep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 875, "aDef": -65, "eDef": 50, "lvl": 63, "strReq": 40, "mdPct": 12, "ls": -60, "str": 4, "agi": -3, "expd": 7, "spd": -12, "fDamPct": 5, "eDamPct": 15, "eDefPct": 11, "id": 3353}, {"name": "Tribulation", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-100", "wDam": "0-0", "aDam": "0-0", "tDam": "30-135", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "dexReq": 30, "defReq": 30, "ls": 115, "expd": 15, "spd": -14, "spRegen": -15, "fDamPct": 12, "tDamPct": 12, "wDefPct": -20, "id": 3349}, {"name": "Tribal Flute", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-22", "fDam": "0-0", "wDam": "0-0", "aDam": "11-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "agiReq": 15, "sdPct": -15, "mdPct": 8, "str": 4, "agi": 4, "spd": 5, "eDamPct": 5, "fDefPct": -10, "id": 3347}, {"name": "Tribal Headdress", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "lvl": 35, "agiReq": 5, "sdPct": -5, "str": 5, "agi": 3, "spd": 5, "mdRaw": 46, "aDefPct": 5, "eDefPct": 5, "id": 3351}, {"name": "Trinket", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "xpb": 6, "lb": 6, "eSteal": 2, "type": "bracelet", "id": 3352}, {"name": "Troms' Climbing Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": -30, "aDef": 30, "lvl": 53, "agiReq": 30, "xpb": 7, "agi": 7, "def": -5, "spd": 10, "fDamPct": -10, "aDamPct": 5, "id": 3357}, {"name": "Troms' Pride", "tier": "Unique", "type": "spear", "thorns": 9, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 70, "ref": 9, "sdRaw": 70, "mdRaw": 90, "fDamPct": -7, "aDamPct": -7, "id": 3356}, {"name": "Triumph", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1900, "lvl": 75, "xpb": 10, "lb": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 2, "id": 3350}, {"name": "Tropics", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "323-395", "aDam": "0-0", "tDam": "0-0", "eDam": "323-395", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "ms": 5, "str": 7, "int": 7, "hpBonus": -1500, "fDefPct": -30, "id": 3355}, {"name": "Tsunami", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 100, "wDef": 15, "tDef": -15, "lvl": 24, "intReq": 30, "mr": 10, "wDamPct": 5, "tDamPct": -8, "tDefPct": -15, "id": 3354}, {"name": "Turbulence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -40, "aDef": 40, "tDef": -50, "lvl": 53, "agiReq": 30, "mdPct": 13, "dex": -4, "mdRaw": 65, "aDamPct": 8, "id": 3359}, {"name": "Turnpike", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "13-15", "atkSpd": "VERY_SLOW", "lvl": 8, "lb": 8, "def": 4, "spd": -5, "mdRaw": 20, "id": 3361}, {"name": "Tundra Strike", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-140", "fDam": "0-0", "wDam": "325-625", "aDam": "0-0", "tDam": "0-0", "eDam": "325-625", "atkSpd": "SUPER_SLOW", "lvl": 87, "strReq": 40, "intReq": 40, "sdPct": 12, "ms": 10, "ref": 45, "str": 8, "spd": -11, "fDamPct": -20, "fDefPct": -30, "id": 3360}, {"name": "Tsunasweep", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-80", "fDam": "0-0", "wDam": "50-90", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 40, "intReq": 40, "sdPct": 20, "mdPct": -16, "ms": 5, "dex": 8, "fDamPct": -20, "wDamPct": 18, "tDamPct": 18, "eDamPct": -14, "eDefPct": -20, "id": 3358}, {"name": "Turmoil", "tier": "Rare", "type": "spear", "poison": 610, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-75", "eDam": "25-75", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 30, "dexReq": 30, "sdPct": -8, "mdPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3362}, {"name": "Twilight", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": 50, "tDef": 50, "lvl": 66, "dexReq": 50, "agiReq": 50, "dex": 5, "agi": 5, "sdRaw": 30, "mdRaw": 39, "aDamPct": 10, "tDamPct": 10, "aDefPct": 10, "tDefPct": 10, "id": 3370}, {"name": "Turquoise", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3175, "wDef": 90, "eDef": 90, "lvl": 95, "strReq": 30, "intReq": 30, "sdPct": 10, "xpb": 10, "str": 5, "int": 5, "eSteal": 8, "mdRaw": 175, "aDamPct": -15, "id": 3365}, {"name": "Ultraviolet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "6-14", "wDam": "4-16", "aDam": "2-18", "tDam": "0-20", "eDam": "8-12", "atkSpd": "FAST", "lvl": 27, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "hprPct": -12, "spd": 7, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 3368}, {"name": "Twin Daggers", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "16-27", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 49, "dexReq": 20, "agiReq": 20, "dex": 10, "spd": 12, "id": 3363}, {"name": "Twist Band", "tier": "Unique", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 49, "intReq": 10, "agiReq": 10, "ref": 6, "agi": 4, "sdRaw": 12, "type": "bracelet", "id": 3364}, {"name": "Undefined", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "lvl": 94, "hprRaw": 135, "sdRaw": 135, "mdRaw": 175, "id": 3371}, {"name": "Umbral Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "fDef": -120, "wDef": 80, "tDef": 80, "lvl": 87, "dexReq": 40, "intReq": 40, "sdPct": 16, "ms": 10, "str": 7, "dex": 5, "int": 5, "fDamPct": -8, "wDamPct": 12, "tDamPct": 12, "fDefPct": -8, "wDefPct": 10, "tDefPct": 10, "id": 3366}, {"name": "Undertow", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "wDef": 10, "tDef": -20, "lvl": 22, "intReq": 10, "mr": 5, "sdPct": 12, "mdPct": -10, "int": 5, "spd": -8, "wDefPct": 8, "id": 3372}, {"name": "Unhalting Eagle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-39", "fDam": "0-0", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "strReq": 5, "agiReq": 10, "mdPct": 8, "str": 5, "spd": 15, "fDefPct": -15, "id": 3373}, {"name": "Undying", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "300-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "300-400", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 35, "defReq": 55, "hprPct": 25, "sdPct": -7, "mdPct": -7, "ls": 400, "def": 20, "spd": -15, "hpBonus": 2500, "hprRaw": 196, "wDefPct": 25, "id": 3381}, {"name": "Union", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 39, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "bracelet", "id": 3376}, {"name": "Unravel", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 70, "lvl": 92, "agiReq": 80, "mdPct": -50, "ms": 10, "ref": 18, "agi": 9, "sdRaw": 222, "aDamPct": 27, "id": 3377}, {"name": "Unholy Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "dexReq": 20, "xpb": 5, "dex": 4, "agi": -3, "expd": 5, "spRegen": -10, "tDamPct": 10, "aDefPct": -25, "id": 3374}, {"name": "Unsheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-90", "wDam": "75-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "intReq": 30, "defReq": 30, "sdPct": -30, "mdPct": 10, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "fDefPct": 10, "wDefPct": 10, "id": 3382}, {"name": "Updraft", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2825, "fDef": -70, "aDef": 80, "tDef": 120, "eDef": -110, "lvl": 96, "dexReq": 45, "ms": 5, "dex": 6, "agi": 6, "spd": 16, "aDamPct": 20, "tDamPct": 24, "fDefPct": -10, "jh": 1, "id": 3379}, {"name": "Unspeakable", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -239, "lvl": 65, "strReq": 36, "dexReq": 47, "mr": -5, "ms": 10, "str": 4, "dex": 5, "sdRaw": -43, "mdRaw": -44, "type": "ring", "id": 3378}, {"name": "Umbrella Hat", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "tDef": -20, "lvl": 34, "intReq": 25, "mr": 10, "sdPct": 5, "dex": -4, "wDefPct": 8, "tDefPct": -12, "id": 3369}, {"name": "Unrefined Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "eDef": 30, "lvl": 50, "strReq": 25, "sdPct": -12, "mdPct": 5, "lb": 13, "spd": -12, "eDamPct": 20, "eDefPct": 20, "id": 3375}, {"name": "Upside Down Bowl", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "aDef": -5, "eDef": 5, "lvl": 12, "lb": 5, "str": 3, "id": 3380}, {"name": "Urheus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 8, "wDef": -12, "eDef": 10, "lvl": 32, "strReq": 10, "defReq": 5, "hprPct": 15, "str": 5, "def": 3, "mdRaw": 48, "aDamPct": -8, "id": 3383}, {"name": "Uranium Aegis", "tier": "Fabled", "type": "chestplate", "majorIds": ["PLAGUE"], "poison": 900, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "wDef": -60, "tDef": 75, "lvl": 77, "strReq": 35, "dexReq": 45, "hprPct": -100, "expd": 50, "hpBonus": 1200, "spRaw3": 5, "id": 3386}, {"name": "Upside Down Bucket", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "wDef": 25, "tDef": -15, "lvl": 42, "mdPct": -3, "ref": 8, "wDamPct": 16, "wDefPct": 9, "id": 3384}, {"name": "Vacancy", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "lvl": 89, "agiReq": 50, "int": -24, "agi": 12, "spd": 15, "spPct1": -10, "spPct3": -7, "spPct4": -17, "id": 3385}, {"name": "Uriel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 27, "agiReq": 5, "spd": 12, "type": "ring", "id": 3387}, {"name": "Vacarme", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "tDef": 100, "eDef": -100, "lvl": 91, "dexReq": 70, "ms": 10, "dex": 7, "expd": 20, "hprRaw": -135, "sdRaw": 165, "tDamPct": 23, "tDefPct": -32, "id": 3586}, {"name": "Valix", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "xpb": 8, "spd": 8, "id": 3388}, {"name": "Valkyrie", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-95", "tDam": "0-125", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 35, "agiReq": 30, "hprPct": -8, "spd": 15, "sdRaw": -55, "mdRaw": 70, "id": 3392}, {"name": "Vacuum", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2475, "wDef": 60, "aDef": -130, "eDef": 70, "lvl": 93, "strReq": 45, "intReq": 55, "mr": 10, "spd": -12, "sdRaw": 155, "wDamPct": 15, "eDamPct": 15, "aDefPct": -30, "id": 3389}, {"name": "Valiant", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-13", "fDam": "0-0", "wDam": "0-0", "aDam": "12-16", "tDam": "0-0", "eDam": "18-21", "atkSpd": "SLOW", "lvl": 34, "strReq": 20, "agiReq": 10, "mdPct": 9, "xpb": 8, "str": 8, "spRegen": 6, "id": 3399}, {"name": "Valorheart", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "40-50", "wDam": "40-50", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 41, "intReq": 20, "defReq": 20, "def": 5, "spd": -10, "hpBonus": 250, "spRegen": 10, "fDefPct": 15, "wDefPct": 15, "id": 3390}, {"name": "Vandal's Touch", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-112", "fDam": "0-0", "wDam": "0-0", "aDam": "50-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "strReq": 20, "agiReq": 40, "mdPct": 12, "lb": 15, "str": 8, "eSteal": 5, "sdRaw": -60, "eDamPct": 16, "id": 3394}, {"name": "Vampire Touch", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 12, "hprPct": 10, "mr": 5, "ls": 55, "id": 3395}, {"name": "Vanilla Spade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "agiReq": 20, "mr": 5, "int": 10, "agi": 10, "spd": 10, "tDamPct": -5, "eDamPct": -5, "id": 3398}, {"name": "Vartija", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "9-13", "fDam": "2-6", "wDam": "0-0", "aDam": "2-6", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "agiReq": 10, "defReq": 10, "sdPct": -7, "def": 9, "spd": 15, "hpBonus": 160, "id": 3396}, {"name": "Vampire Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "hprPct": -10, "ls": 32, "spRegen": 5, "id": 3393}, {"name": "Vaward", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3900, "lvl": 99, "hprPct": 15, "sdPct": 15, "mdPct": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spRegen": 15, "id": 3397}, {"name": "Veantur", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-110", "fDam": "0-0", "wDam": "50-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "intReq": 50, "sdPct": 12, "mdPct": 10, "ref": 7, "int": 7, "hpBonus": -1000, "fDamPct": -25, "wDamPct": 15, "id": 3400}, {"name": "Valhalla", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3525, "fDef": 80, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 40, "agiReq": 40, "defReq": 40, "ls": 215, "str": 9, "agi": 9, "def": 9, "spd": 12, "spRegen": 12, "wDefPct": -25, "tDefPct": -25, "id": 3391}, {"name": "Vellalar", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "ms": 5, "str": 5, "fDamPct": -5, "id": 3401}, {"name": "Venison", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 735, "fDef": -75, "wDef": 45, "eDef": 60, "lvl": 54, "strReq": 20, "intReq": 15, "mr": 10, "mdPct": 19, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": -15, "tDefPct": -10, "id": 3406}, {"name": "Venomsoul", "tier": "Unique", "type": "chestplate", "poison": 525, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "aDef": -90, "lvl": 75, "strReq": 30, "intReq": 20, "ms": 5, "spRegen": -10, "id": 3404}, {"name": "Veins", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "72-78", "wDam": "69-81", "aDam": "66-84", "tDam": "63-87", "eDam": "75-75", "atkSpd": "SLOW", "lvl": 89, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hpBonus": 965, "hprRaw": 115, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 3402}, {"name": "Ventus Tail", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2150, "aDef": 120, "tDef": 120, "eDef": -250, "lvl": 80, "dexReq": 35, "agiReq": 35, "sdPct": 10, "ms": 10, "dex": 8, "agi": 8, "spd": 7, "eSteal": 7, "aDamPct": 27, "tDamPct": 27, "eDamPct": -45, "id": 3403}, {"name": "Verglas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 82, "intReq": 35, "agiReq": 35, "sdPct": 6, "int": 5, "spd": -10, "hprRaw": -55, "aDamPct": 5, "type": "necklace", "id": 3408}, {"name": "Ventilator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "aDef": 6, "lvl": 25, "agiReq": 15, "spd": 12, "fDamPct": -8, "aDamPct": 6, "id": 3405}, {"name": "Verdigris Sabatons", "tier": "Unique", "type": "boots", "poison": 550, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1900, "fDef": 70, "wDef": -60, "tDef": 40, "lvl": 76, "dexReq": 20, "defReq": 35, "mr": -5, "def": 5, "spd": -7, "sdRaw": 100, "wDamPct": -14, "aDamPct": -12, "tDefPct": 10, "id": 3407}, {"name": "Vesuvius", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "100-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "VERY_SLOW", "lvl": 86, "strReq": 30, "defReq": 30, "mdPct": 12, "str": 8, "expd": 33, "fDamPct": 15, "wDamPct": -10, "eDamPct": 15, "wDefPct": -20, "id": 3409}, {"name": "Verstand", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "wDef": 10, "tDef": -8, "lvl": 28, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -6, "str": -3, "int": 4, "id": 3410}, {"name": "Vile", "tier": "Rare", "type": "bow", "poison": 1100, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-115", "atkSpd": "FAST", "lvl": 62, "ls": 120, "hpBonus": -250, "mdRaw": 130, "eDamPct": 15, "wDefPct": -20, "id": 3414}, {"name": "Vigor", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-90", "fDam": "170-200", "wDam": "170-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "intReq": 25, "defReq": 25, "hprPct": 40, "sdPct": -7, "mdPct": -16, "def": 5, "hpBonus": 500, "hprRaw": 25, "wDefPct": 7, "id": 3412}, {"name": "Vibrato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-22", "fDam": "0-0", "wDam": "0-0", "aDam": "55-56", "tDam": "55-56", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "dexReq": 16, "agiReq": 16, "ms": 5, "def": -12, "spd": 12, "spPct1": -23, "id": 3413}, {"name": "Vinecrawlers", "tier": "Rare", "type": "boots", "poison": 425, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "aDef": -70, "eDef": 90, "lvl": 72, "strReq": 45, "str": 7, "def": 7, "spd": -8, "hprRaw": 60, "fDefPct": -25, "wDefPct": 15, "id": 3411}, {"name": "Viper", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-22", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 38, "dexReq": 22, "mdPct": 6, "ls": 26, "dex": 4, "spd": 4, "mdRaw": 13, "id": 3416}, {"name": "Virgo", "tier": "Legendary", "type": "boots", "thorns": 1, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 5, "lvl": 97, "strReq": 70, "dexReq": 70, "mdPct": -45, "ref": 1, "agi": -20, "def": -20, "expd": 65, "atkTier": 2, "tDamPct": 16, "eDamPct": 16, "id": 3417}, {"name": "Virtuoso", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "wDef": 70, "aDef": 70, "lvl": 94, "intReq": 50, "agiReq": 50, "mr": 5, "sdPct": 20, "ms": -40, "spd": 20, "sdRaw": 196, "id": 3415}, {"name": "Vital", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -220, "lvl": 67, "hprPct": 10, "hprRaw": 40, "type": "ring", "id": 3421}, {"name": "Virtue", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-350", "fDam": "0-0", "wDam": "210-250", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "intReq": 45, "sdPct": 9, "ms": 15, "ref": 9, "agi": -6, "spd": -12, "atkTier": -1, "id": 3419}, {"name": "Vitium", "tier": "Rare", "poison": 50, "category": "accessory", "drop": "lootchest", "hp": -20, "aDef": -5, "lvl": 32, "ls": 10, "expd": 6, "type": "necklace", "id": 3418}, {"name": "Vitriol", "tier": "Unique", "poison": 83, "category": "accessory", "drop": "lootchest", "hp": -60, "wDef": -5, "eDef": 10, "lvl": 39, "strReq": 15, "hprPct": -10, "ls": 12, "type": "bracelet", "id": 3420}, {"name": "Vivace", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "9-13", "tDam": "9-13", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "dexReq": 10, "agiReq": 10, "sdPct": 11, "dex": 5, "agi": 5, "spd": 11, "eDefPct": 18, "id": 3422}, {"name": "Voidlight", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-90", "tDam": "0-180", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "dexReq": 35, "agiReq": 35, "sdPct": 10, "mdPct": -40, "ms": 10, "ref": 15, "str": -10, "agi": 13, "sdRaw": 205, "eDefPct": -25, "id": 3423}, {"name": "Void Catalyst", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-515", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "dexReq": 43, "dex": 25, "tDamPct": 45, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3425}, {"name": "Volcano", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "135-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "155-200", "atkSpd": "SLOW", "lvl": 98, "strReq": 40, "defReq": 40, "str": 13, "def": 13, "expd": 20, "spd": -25, "fDamPct": 12, "eDamPct": 12, "fDefPct": 18, "eDefPct": 18, "id": 3424}, {"name": "Voidshard", "tier": "Rare", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": -120, "lvl": 70, "strReq": 25, "agiReq": 25, "sdPct": 7, "ls": 44, "spd": 7, "type": "ring", "id": 3427}, {"name": "Voodoo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "sdPct": 6, "id": 3430}, {"name": "Voleur", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 36, "dexReq": 10, "agiReq": 5, "mdPct": -7, "lb": 12, "dex": 3, "agi": 3, "spd": 4, "eSteal": 6, "id": 3428}, {"name": "Volmor's Flair", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 5, "lb": 13, "hpBonus": -750, "type": "bracelet", "id": 3426}, {"name": "Vorpal", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "61-72", "aDam": "0-0", "tDam": "0-132", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 25, "intReq": 25, "hprPct": -25, "mr": -5, "dex": 17, "hpBonus": -500, "sdRaw": 120, "wDamPct": 15, "tDamPct": 15, "id": 3436}, {"name": "Blue Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3435, "set": "Blue Team"}, {"name": "Blue Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3431, "set": "Blue Team"}, {"name": "Red Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3434, "set": "Red Team"}, {"name": "Red Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3437, "set": "Red Team"}, {"name": "Red Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3443, "set": "Red Team"}, {"name": "Blitzen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -140, "wDef": 10, "lvl": 75, "dexReq": 40, "ms": 5, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3438}, {"name": "Comet", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 12, "aDef": 12, "eDef": 12, "lvl": 70, "strReq": 20, "agiReq": 10, "defReq": 10, "mr": -5, "sdPct": -6, "mdPct": 8, "expd": 12, "mdRaw": 26, "type": "bracelet", "fixID": true, "id": 3441}, {"name": "Charcoal", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 3425, "fDef": 120, "aDef": 120, "lvl": 95, "strReq": 20, "defReq": 60, "ls": 285, "ref": 20, "str": 6, "def": 6, "hprRaw": 195, "fDamPct": 10, "aDefPct": 15, "eDefPct": 25, "fixID": true, "id": 3439}, {"name": "Conifer", "tier": "Rare", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "42-58", "wDam": "0-0", "aDam": "44-56", "tDam": "0-0", "eDam": "36-64", "atkSpd": "SLOW", "lvl": 50, "strReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "spd": -10, "hpBonus": 250, "hprRaw": 30, "fixID": true, "id": 3442}, {"name": "Vortex", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 71, "dexReq": 35, "agiReq": 55, "ms": 10, "dex": 5, "agi": 8, "spd": 16, "sdRaw": 100, "mdRaw": 80, "id": 3432}, {"name": "Cupid", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 5, "lvl": 50, "strReq": 20, "intReq": 45, "hprPct": 10, "mr": 5, "sdPct": -10, "hprRaw": 12, "mdRaw": -19, "type": "bracelet", "fixID": true, "id": 3440}, {"name": "Dancer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": -180, "lvl": 80, "agiReq": 50, "spd": 9, "hprRaw": -35, "aDamPct": 12, "type": "necklace", "fixID": true, "id": 3444}, {"name": "Dasher", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 320, "fDef": -25, "lvl": 85, "strReq": 30, "agiReq": 40, "mdPct": 9, "str": 4, "spd": 9, "type": "ring", "fixID": true, "id": 3445}, {"name": "Donner", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 15, "wDef": -25, "tDef": 15, "lvl": 65, "dexReq": 30, "dex": 5, "fDamPct": 9, "type": "ring", "fixID": true, "id": 3447}, {"name": "Dragster", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -50, "aDef": 40, "lvl": 60, "agiReq": 45, "agi": 3, "def": -6, "spd": 20, "mdRaw": 100, "aDamPct": 5, "fDefPct": -10, "aDefPct": 5, "fixID": true, "id": 3446}, {"name": "Frostburn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-40", "fDam": "30-90", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "defReq": 35, "mr": -5, "sdPct": 12, "hprRaw": -85, "fDamPct": 24, "wDamPct": 18, "fixID": true, "id": 3450}, {"name": "Ice Skates", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1200, "fDef": -160, "wDef": 80, "aDef": 55, "lvl": 75, "agiReq": 55, "mr": 5, "int": 4, "spd": 18, "fDamPct": -26, "wDamPct": 14, "aDamPct": 8, "fixID": true, "id": 3454}, {"name": "Garland", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2275, "tDef": -160, "eDef": 90, "lvl": 90, "strReq": 45, "intReq": 40, "sdPct": 22, "sdRaw": 225, "aDefPct": -14, "tDefPct": -14, "fixID": true, "id": 3448}, {"name": "Prancer", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 130, "fDef": 10, "tDef": 5, "eDef": 15, "lvl": 55, "strReq": 30, "str": 2, "def": 2, "eDamPct": 7, "type": "ring", "fixID": true, "id": 3449}, {"name": "Krampus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "70-110", "wDam": "0-0", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "dexReq": 30, "defReq": 30, "mr": -5, "mdPct": 25, "ls": 180, "def": 8, "eSteal": 3, "hprRaw": -90, "tDamPct": 20, "wDefPct": -22, "fixID": true, "id": 3453}, {"name": "Scrooge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "225-365", "eDam": "225-365", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 35, "dexReq": 35, "ls": 325, "ms": 10, "lb": 33, "spd": -20, "spRegen": -25, "eSteal": 10, "hprRaw": -150, "fixID": true, "id": 3451}, {"name": "Ski Mask", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2300, "wDef": 60, "aDef": 60, "tDef": -120, "lvl": 90, "intReq": 60, "agiReq": 45, "mr": 15, "mdPct": -12, "wDamPct": 25, "aDamPct": 25, "fixID": true, "id": 3456}, {"name": "Sealskin Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 90, "aDef": 90, "tDef": -70, "lvl": 65, "intReq": 20, "agiReq": 20, "mr": 5, "xpb": 8, "ref": 12, "int": 6, "agi": 3, "spd": 12, "tDamPct": -40, "wDefPct": 16, "aDefPct": 16, "fixID": true, "id": 3452}, {"name": "Sleigher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-35", "fDam": "0-0", "wDam": "0-0", "aDam": "30-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "strReq": 10, "agiReq": 20, "sdPct": -15, "mdPct": 12, "str": 8, "agi": 2, "spd": 12, "mdRaw": 46, "eDamPct": 20, "fDefPct": -20, "fixID": true, "id": 3457}, {"name": "Snowstorm", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-37", "aDam": "0-37", "tDam": "0-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 50, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 8, "ms": 10, "xpb": 12, "str": -5, "spd": 12, "sdRaw": 50, "fDefPct": -36, "fixID": true, "id": 3455}, {"name": "Toy Maker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1775, "aDef": 90, "tDef": 90, "eDef": -160, "lvl": 85, "dexReq": 35, "agiReq": 35, "mdPct": -25, "dex": 7, "agi": 7, "atkTier": 1, "mdRaw": 230, "aDamPct": 5, "tDamPct": 5, "fixID": true, "id": 3458}, {"name": "Wynnter Scarf", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 425, "fDef": 40, "wDef": -70, "aDef": 40, "lvl": 40, "agiReq": 20, "defReq": 20, "hprPct": 20, "agi": 3, "def": 3, "hprRaw": 20, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 3463}, {"name": "Zenith", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "20-30", "tDam": "20-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "dexReq": 35, "agiReq": 25, "mdPct": 15, "ls": -190, "ms": 5, "agi": 7, "expd": 60, "atkTier": 2, "tDamPct": 10, "aDefPct": 12, "eDefPct": -15, "fixID": true, "id": 3459}, {"name": "Wipe", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "26-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "agiReq": 50, "mdPct": 15, "ms": 10, "agi": 15, "spd": 28, "hprRaw": -250, "aDamPct": 22, "fixID": true, "id": 3461}, {"name": "Vixen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 300, "fDef": 20, "lvl": 60, "defReq": 70, "hprRaw": 25, "aDefPct": 7, "tDefPct": 4, "eDefPct": 5, "type": "necklace", "fixID": true, "id": 3460}, {"name": "Red Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3466, "set": "Red Team"}, {"name": "Waking Nightmare", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "140-180", "tDam": "0-0", "eDam": "140-180", "atkSpd": "SLOW", "lvl": 79, "strReq": 27, "agiReq": 27, "mdPct": 12, "str": 8, "hpBonus": -1085, "wDamPct": -40, "aDamPct": 18, "eDamPct": 18, "fDefPct": -25, "spRaw1": -5, "id": 3462}, {"name": "The Lethe", "displayName": "Waking Vigil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "30-65", "tDam": "0-0", "eDam": "30-65", "atkSpd": "FAST", "lvl": 98, "strReq": 40, "agiReq": 40, "sdPct": -50, "mdPct": 31, "xpb": -25, "spd": 12, "spRegen": -15, "mdRaw": 100, "fDamPct": 31, "id": 3464}, {"name": "War Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "sdPct": -10, "mdPct": 10, "str": 7, "def": 7, "spd": -10, "hpBonus": 775, "id": 3469}, {"name": "Walking Stick", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 20, "agiReq": 5, "xpb": 4, "agi": 4, "spd": 10, "id": 3465}, {"name": "Wastelands", "tier": "Unique", "poison": 90, "category": "accessory", "drop": "lootchest", "lvl": 44, "strReq": 20, "mdPct": 5, "str": 3, "spd": -3, "type": "ring", "id": 3467}, {"name": "Wasp", "tier": "Rare", "poison": 155, "category": "accessory", "drop": "lootchest", "lvl": 50, "dexReq": 20, "hprRaw": -12, "tDamPct": 6, "type": "ring", "id": 3470}, {"name": "Water Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-80", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3471}, {"name": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3474}, {"name": "Water Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-75", "fDam": "0-0", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3475}, {"name": "Water Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "0-0", "wDam": "30-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3472}, {"name": "Waterspout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-95", "fDam": "0-0", "wDam": "105-125", "aDam": "0-0", "tDam": "45-185", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 35, "intReq": 35, "sdPct": 6, "mdPct": -9, "ms": 5, "wDefPct": 22, "tDefPct": 22, "id": 3473}, {"name": "Warmth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "def": 3, "type": "ring", "id": 3468}, {"name": "Wavedash", "tier": "Unique", "type": "boots", "sprint": -10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2250, "wDef": 90, "aDef": 90, "lvl": 89, "intReq": 25, "agiReq": 20, "mr": 10, "sdPct": 12, "agi": 8, "spd": 18, "wDamPct": 12, "aDamPct": 8, "sprintReg": 18, "id": 3476}, {"name": "Wavelength", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "sdPct": 13, "mdPct": 13, "ms": -5, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3477}, {"name": "Waves Raiser", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "intReq": 35, "sdPct": 12, "mdPct": 12, "wDamPct": 12, "wDefPct": 12, "id": 3478}, {"name": "Way Back Home", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1600, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 75, "strReq": 20, "agiReq": 20, "agi": 7, "spd": 12, "spRegen": 7, "id": 3479}, {"name": "Weather Warning", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-25", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "dexReq": 15, "intReq": 15, "sdPct": 10, "wDamPct": 10, "tDamPct": 10, "fDefPct": -13, "aDefPct": -13, "eDefPct": -13, "id": 3480}, {"name": "Wayfinder", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "35-50", "aDam": "32-40", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 15, "agiReq": 20, "ms": 5, "lb": 10, "int": 4, "agi": 4, "spd": 8, "id": 3482}, {"name": "Wedding Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 5, "hpBonus": 6, "type": "ring", "id": 3481}, {"name": "All for One", "displayName": "Weatherwalkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "fDef": -90, "wDef": -90, "aDef": -90, "tDef": -100, "eDef": -90, "lvl": 92, "dexReq": 70, "mr": -5, "sdPct": 31, "dex": 8, "spd": 15, "tDamPct": 10, "wDefPct": -20, "tDefPct": -15, "id": 3625}, {"name": "Whimsy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-35", "fDam": "0-0", "wDam": "0-0", "aDam": "45-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 40, "agiReq": 30, "sdPct": -3, "mdPct": -5, "xpb": 25, "int": 13, "spd": 20, "eSteal": 2, "wDamPct": 22, "id": 3484}, {"name": "Whirlpool", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "10-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 30, "sdRaw": 60, "wDamPct": 9, "tDefPct": -19, "id": 3483}, {"name": "Whistling Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "fDef": -30, "aDef": 20, "lvl": 47, "agiReq": 30, "mdPct": 8, "agi": 4, "spd": 7, "aDamPct": 7, "eDefPct": -10, "id": 3488}, {"name": "Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "12-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 10, "agi": 4, "spd": 6, "aDamPct": 6, "id": 3485}, {"name": "White-hot Leggings", "displayName": "White-Hot Leggings", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "fDef": 170, "wDef": -100, "tDef": 100, "eDef": 30, "lvl": 88, "defReq": 55, "sdPct": 8, "spd": 8, "hpBonus": -220, "sdRaw": 140, "mdRaw": 180, "fDamPct": 12, "id": 3487}, {"name": "White", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 5, "lvl": 30, "aDamPct": 7, "aDefPct": 7, "type": "ring", "id": 3486}, {"name": "Whitecap", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-112", "fDam": "0-0", "wDam": "51-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "intReq": 30, "sdPct": 16, "fDamPct": -15, "tDefPct": -15, "id": 3489}, {"name": "White Noise", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "74-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 25, "mdPct": -15, "xpb": 15, "sdRaw": 66, "aDamPct": 14, "eDamPct": -30, "eDefPct": -18, "id": 3490}, {"name": "White Storm", "tier": "Unique", "type": "helmet", "poison": 130, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 510, "fDef": -20, "aDef": 25, "lvl": 48, "agi": 7, "spd": 10, "eDamPct": 5, "id": 3493}, {"name": "Whitewater", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "wDef": 70, "tDef": -80, "lvl": 64, "intReq": 35, "mr": 5, "sdPct": 11, "mdPct": 8, "fDamPct": -20, "wDamPct": 13, "id": 3494}, {"name": "Blue Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3433, "set": "Blue Team"}, {"name": "Blue Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3429, "set": "Blue Team"}, {"name": "Wicked", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": -60, "lvl": 50, "dexReq": 20, "defReq": 20, "mr": -5, "sdPct": 15, "mdPct": 10, "expd": 8, "fDamPct": 10, "tDamPct": 10, "id": 3491}, {"name": "Whitestone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 73, "intReq": 25, "agiReq": 15, "hprPct": 20, "sdPct": 7, "mdPct": -15, "xpb": 10, "ref": 8, "spd": 6, "wDefPct": 7, "aDefPct": 6, "id": 3492}, {"name": "Wild Gauntlet", "tier": "Unique", "type": "dagger", "thorns": 13, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "59-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "48-63", "atkSpd": "NORMAL", "lvl": 60, "strReq": 25, "sdPct": -7, "mdPct": 10, "spd": -5, "id": 3495}, {"name": "Willpower", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 42, "intReq": 15, "hprPct": 8, "mr": 5, "type": "necklace", "id": 3496}, {"name": "Windchime", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "agiReq": 35, "ms": 10, "xpb": 12, "aDamPct": 10, "id": 3497}, {"name": "Wind Mimic", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -120, "aDef": 200, "lvl": 94, "agiReq": 60, "ms": 10, "agi": 7, "spd": 20, "fDamPct": 20, "aDamPct": 20, "fDefPct": -20, "aDefPct": 10, "id": 3499}, {"name": "Wiggling Villager", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "xpb": 11, "lb": 19, "id": 3500}, {"name": "Window Pane", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "27-33", "aDam": "0-0", "tDam": "27-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "dexReq": 13, "intReq": 13, "sdPct": 14, "mdPct": -14, "str": -6, "dex": 4, "int": 4, "wDamPct": 9, "tDamPct": 9, "eDamPct": -10, "eDefPct": -10, "id": 3503}, {"name": "Windforce", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-51", "fDam": "0-0", "wDam": "0-0", "aDam": "31-57", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "str": 7, "spd": 14, "eDamPct": 15, "aDefPct": 10, "eDefPct": -10, "id": 3501}, {"name": "Wind Murmurs", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-86", "fDam": "0-0", "wDam": "0-0", "aDam": "76-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 35, "sdPct": -9, "mdPct": -18, "xpb": 15, "ref": 20, "agi": 12, "spd": 20, "id": 3498}, {"name": "Windowframe", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "27-33", "eDam": "27-33", "atkSpd": "NORMAL", "lvl": 34, "strReq": 12, "dexReq": 12, "sdPct": -14, "mdPct": 14, "str": 4, "dex": 4, "int": -6, "wDamPct": -10, "tDamPct": 9, "eDamPct": 9, "wDefPct": -10, "id": 3504}, {"name": "Gravesbane", "displayName": "Windshear", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "fDef": -120, "aDef": 90, "tDef": 90, "eDef": -30, "lvl": 94, "dexReq": 40, "agiReq": 40, "mr": 5, "ms": 5, "spd": 16, "eSteal": 6, "sdRaw": 170, "mdRaw": 195, "fDefPct": -20, "sprintReg": 12, "id": 1229}, {"name": "Windy Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 350, "aDef": 50, "eDef": -50, "lvl": 83, "agiReq": 30, "agi": 4, "spd": 7, "aDamPct": 7, "type": "necklace", "id": 3506}, {"name": "Wing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": 50, "tDef": -70, "lvl": 61, "agiReq": 15, "lb": 4, "agi": 5, "spd": 20, "aDamPct": 5, "aDefPct": 8, "tDefPct": -7, "id": 3502}, {"name": "Winter's Essence", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 44, "intReq": 20, "agiReq": 20, "mr": 10, "sdPct": 20, "ls": 41, "int": 8, "agi": 8, "hprRaw": -50, "id": 3508}, {"name": "Winterspell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-200", "fDam": "0-0", "wDam": "0-0", "aDam": "110-165", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "sdPct": 4, "str": -3, "spd": 5, "wDamPct": 10, "fDefPct": -5, "id": 3507}, {"name": "Wintergreen", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-100", "fDam": "0-0", "wDam": "0-0", "aDam": "45-50", "tDam": "0-0", "eDam": "45-50", "atkSpd": "NORMAL", "lvl": 54, "strReq": 20, "agiReq": 25, "sdPct": 15, "spd": 20, "atkTier": 1, "hpBonus": -1000, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3505}, {"name": "Wirt's Leg", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "lb": 23, "eSteal": 5, "id": 3509}, {"name": "WitherString", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-45", "fDam": "0-0", "wDam": "2-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "mr": 5, "ms": 5, "id": 3511}, {"name": "Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 5, "eDef": 5, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 4, "spd": 4, "aDamPct": 4, "eDamPct": 4, "type": "bracelet", "id": 3513}, {"name": "Wolf Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "hprPct": 30, "mr": 5, "id": 3510}, {"name": "Wolf Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 90, "lvl": 46, "agiReq": 15, "str": 4, "agi": 4, "spd": 6, "type": "necklace", "id": 3512}, {"name": "Wormwood", "tier": "Unique", "type": "boots", "poison": 23, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 6, "aDef": -6, "tDef": -6, "eDef": 6, "lvl": 17, "strReq": 5, "intReq": 5, "ls": 6, "hpBonus": -14, "id": 3514}, {"name": "Worry", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 11, "ref": 5, "int": 3, "spRegen": 3, "type": "bracelet", "id": 3516}, {"name": "Worship", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 84, "xpb": 7, "lb": 7, "hpBonus": 300, "spRegen": 7, "type": "ring", "id": 3518}, {"name": "Wybel Carved Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "220-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3519}, {"name": "Wrath", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-90", "atkSpd": "SLOW", "lvl": 78, "strReq": 39, "defReq": 39, "mdPct": 13, "ls": 280, "lb": 13, "spRegen": -39, "mdRaw": 150, "wDamPct": -26, "aDamPct": -26, "tDamPct": -26, "id": 3515}, {"name": "Wybel Fluff Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "300-355", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3521}, {"name": "Wybel Horn Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3520}, {"name": "Wybel Ivory Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3522}, {"name": "Wybel Tooth Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3523}, {"name": "Xyloid", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1850, "wDef": 65, "tDef": -100, "eDef": 60, "lvl": 80, "strReq": 35, "intReq": 25, "mr": 5, "mdPct": 10, "spd": -10, "hprRaw": 90, "fDamPct": -15, "wDamPct": 8, "eDamPct": 12, "tDefPct": -20, "id": 3525}, {"name": "Xystus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 30, "agi": 8, "spd": 8, "aDamPct": 10, "aDefPct": 12, "id": 3524}, {"name": "Yamato Spear", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "sdPct": 15, "mdPct": 15, "ms": 5, "xpb": 16, "dex": 13, "id": 3527}, {"name": "Yggdrasil", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "76-90", "atkSpd": "NORMAL", "lvl": 98, "strReq": 35, "intReq": 40, "mr": 5, "str": 9, "int": 5, "wDamPct": 20, "eDamPct": 8, "fDefPct": -15, "wDefPct": 10, "tDefPct": -10, "id": 3526}, {"name": "Yin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 30, "lvl": 92, "dexReq": 55, "sdPct": -8, "mdPct": 9, "dex": 4, "spRegen": -5, "sdRaw": -30, "mdRaw": 41, "type": "ring", "id": 3531}, {"name": "World Splitter", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-80", "fDam": "160-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "dexReq": 40, "defReq": 25, "mdPct": 10, "ls": 150, "spRegen": -33, "fDamPct": 12, "wDamPct": -143, "tDamPct": 12, "wDefPct": -20, "id": 3517}, {"name": "Yang", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "tDef": -30, "lvl": 92, "intReq": 55, "sdPct": 9, "mdPct": -8, "int": 4, "spRegen": 5, "sdRaw": 30, "mdRaw": -41, "type": "ring", "id": 3528}, {"name": "Yol", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-116", "fDam": "240-260", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "defReq": 55, "hprPct": 30, "def": 15, "hpBonus": 2650, "hprRaw": 165, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 3532}, {"name": "Yahya's Nail Clipper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-8", "atkSpd": "NORMAL", "lvl": 17, "hprPct": 6, "mr": 5, "mdPct": 7, "aDefPct": 5, "eDefPct": 5, "id": 3529}, {"name": "Yume", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 385, "fDef": -40, "aDef": 15, "lvl": 37, "agiReq": 25, "xpb": 12, "agi": 5, "spd": 12, "sdRaw": 50, "aDamPct": 12, "id": 3530}, {"name": "Yverlian Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-54", "wDam": "29-48", "aDam": "18-59", "tDam": "10-67", "eDam": "36-41", "atkSpd": "FAST", "lvl": 97, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 25, "spRegen": 5, "hprRaw": 150, "fDefPct": 16, "wDefPct": 16, "aDefPct": 16, "tDefPct": 16, "eDefPct": 16, "id": 3536}, {"name": "Ylem", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-127", "wDam": "0-0", "aDam": "0-0", "tDam": "0-127", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 30, "defReq": 35, "ls": 180, "hprRaw": -80, "sdRaw": 120, "fDamPct": 15, "tDamPct": 15, "wDefPct": -25, "eDefPct": -25, "id": 3533}, {"name": "Zephra Shredder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-260", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "agiReq": 80, "mr": -5, "sdPct": 15, "ls": -175, "spd": 30, "mdRaw": 180, "aDamPct": 25, "fDefPct": -30, "id": 3534}, {"name": "Zeal", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "lvl": 38, "defReq": 15, "hprPct": 8, "sdPct": -8, "mdPct": 5, "spd": 4, "hpBonus": 50, "fDamPct": 4, "id": 3537}, {"name": "Zephyr", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-204", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 90, "sdPct": 11, "mdPct": 11, "agi": 10, "spd": 18, "atkTier": 1, "id": 3535}, {"name": "Zero", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-133", "wDam": "0-133", "aDam": "0-133", "tDam": "0-133", "eDam": "0-133", "atkSpd": "FAST", "lvl": 87, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 18, "expd": 333, "hpBonus": -1250, "hprRaw": -125, "sdRaw": 210, "id": 3539}, {"name": "Zipper", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "5-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "dexReq": 20, "xpb": 11, "lb": 11, "spd": 8, "tDamPct": 11, "tDefPct": 11, "eDefPct": -21, "id": 3544}, {"name": "Zombie Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "aDef": -4, "eDef": 4, "lvl": 18, "hprPct": 10, "xpb": 5, "str": 3, "hpBonus": 15, "id": 3538}, {"name": "Zjarr", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 25, "defReq": 10, "sdPct": -3, "def": 3, "hprRaw": 4, "type": "ring", "id": 3541}, {"name": "Zombified Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 182, "fDef": -3, "aDef": -3, "tDef": -3, "lvl": 30, "hprPct": 14, "xpb": 5, "lb": 5, "hpBonus": 50, "id": 3540}, {"name": "default", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "int": 12, "id": 3543}, {"name": "Zombified Branch", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "126-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 51, "ls": 55, "ms": 5, "spd": -12, "id": 3542}], "sets": {"Ornate Shadow": {"items": ["Ornate Shadow Cowl", "Ornate Shadow Garb", "Ornate Shadow Cover", "Ornate Shadow Cloud"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Grookwarts": {"items": ["Dragon's Eye Bracelet", "Draoi Fair", "Renda Langit"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Master Hive": {"items": ["Abyss-Imbued Leggings", "Boreal-Patterned Crown", "Anima-Infused Cuirass", "Chaos-Woven Greaves", "Elysium-Engraved Aegis", "Eden-Blessed Guards", "Gaea-Hewn Boots", "Hephaestus-Forged Sabatons", "Obsidian-Framed Helmet", "Twilight-Gilded Cloak", "Infused Hive Relik", "Infused Hive Wand", "Infused Hive Spear", "Infused Hive Dagger", "Infused Hive Bow", "Contrast", "Prowess", "Intensity"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Thunder Hive": {"items": ["Sparkling Visor", "Insulated Plate Mail", "Static-Charged Leggings", "Thunderous Step", "Bottled Thunderstorm", "Lightning Flash"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Air Hive": {"items": ["Pride of the Aerie", "Gale's Freedom", "Turbine Greaves", "Flashstep", "Breezehands", "Vortex Bracer"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Earth Hive": {"items": ["Ambertoise Shell", "Beetle Aegis", "Elder Oak Roots", "Humbark Moccasins", "Subur Clip", "Golemlus Core"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Water Hive": {"items": ["Whitecap Crown", "Stillwater Blue", "Trench Scourer", "Silt of the Seafloor", "Coral Ring", "Moon Pool Circlet"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Fire Hive": {"items": ["Sparkweaver", "Soulflare", "Cinderchain", "Mantlewalkers", "Clockwork", "Dupliblaze"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Synch Core": {"items": ["Overload Core", "Synchro Core", "Dodge Core", "Harden Core", "Hustle Core"], "bonuses": [{}, {"hprRaw": -20, "fDefPct": -8, "wDefPct": -8, "aDefPct": -8, "tDefPct": -8, "eDefPct": -8, "sprint": -8}, {"hprRaw": 150, "fDefPct": -40, "wDefPct": -40, "aDefPct": -40, "tDefPct": -40, "eDefPct": -40, "sprint": -35, "ws": 16, "hpBonus": 1150, "sdPct": 14, "mdPct": 14, "jh": 1, "mr": -1, "ms": -1}, {"hprRaw": 50, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "sprint": 8, "ws": 8, "hpBonus": 666, "sdPct": 7, "mdPct": 7, "jh": 1}]}, "Black": {"items": ["Black Cap", "Black Boots", "Black Pants", "Black Tunic"], "bonuses": [{}, {"ms": 1, "dex": 2, "sdRaw": 15, "mdRaw": 5}, {"ms": 1, "dex": 6, "sdRaw": 35, "mdRaw": 10}, {"ms": 3, "dex": 20, "sdRaw": 65, "mdRaw": 70}]}, "Red Team": {"items": ["Red Team Boots", "Red Team Leggings", "Red Team Chestplate", "Red Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Tribal": {"items": ["Tribal Cap", "Tribal Boots", "Tribal Pants", "Tribal Tunic"], "bonuses": [{}, {"str": 2, "spd": 5}, {"str": 5, "agi": 2, "spd": 10}, {"sdPct": -15, "str": 10, "agi": 5, "spd": 15, "atkTier": 1}]}, "Champion": {"items": ["Champion Helmet", "Champion Boots", "Champion Leggings", "Champion Chestplate"], "bonuses": [{}, {}, {}, {"mr": 5, "sdPct": 75, "mdPct": 75, "ms": 5, "ls": 400, "hprRaw": 600}]}, "Outlaw": {"items": ["Outlaw Cap", "Outlaw Boots", "Outlaw Pants", "Outlaw Tunic"], "bonuses": [{}, {"ls": 11, "xpb": 5, "agi": 4, "eSteal": 2}, {"ls": 22, "xpb": 10, "agi": 8, "eSteal": 4}, {"ls": 45, "xpb": 25, "agi": 28, "eSteal": 8}]}, "Snail": {"items": ["Snail Helm", "Snail Boots", "Snail Leggings", "Snail Mail"], "bonuses": [{}, {"str": 7, "agi": -5, "thorns": 10, "spd": -5, "poison": 880, "hpBonus": 1100, "hprRaw": 125}, {"str": 14, "agi": -10, "thorns": 20, "spd": -10, "poison": 2650, "hpBonus": 2675, "hprRaw": 275}, {"str": 21, "agi": -15, "thorns": 40, "spd": -15, "poison": 5500, "hpBonus": 5500, "hprRaw": 575}]}, "Thanos Legionnaire": {"items": ["Thanos Legionnaire Helm", "Thanos Legionnaire Greaves", "Thanos Legionnaire Leggings", "Thanos Legionnaire Plate"], "bonuses": [{}, {"str": 2, "dex": -2, "int": -2, "agi": 2, "def": 2, "spd": 5, "hprRaw": 55, "mdRaw": 135}, {"str": 5, "dex": -5, "int": -5, "agi": 5, "def": 5, "spd": 10, "hprRaw": 210, "mdRaw": 270}, {"str": 15, "dex": -15, "int": -15, "agi": 15, "def": 15, "spd": 25, "atkTier": 1, "hprRaw": 525, "mdRaw": 540}]}, "Ghostly": {"items": ["Ghostly Cap", "Ghostly Boots", "Ghostly Pants", "Ghostly Tunic"], "bonuses": [{}, {"mr": -1, "ms": 2, "sdRaw": 40, "wDamPct": 5, "tDamPct": 5, "eDamPct": -34}, {"mr": -2, "ms": 4, "sdRaw": 115, "wDamPct": 10, "tDamPct": 10, "eDamPct": -67}, {"mr": -3, "ms": 6, "sdRaw": 230, "wDamPct": 32, "tDamPct": 32, "eDamPct": -100, "atkTier": -2}]}, "Adventurer's": {"items": ["Adventurer's Cap", "Adventurer's Boots", "Adventurer's Pants", "Adventurer's Tunic"], "bonuses": [{}, {"sdPct": 4, "mdPct": 4, "xpb": 10, "lb": 5, "spd": 2, "hpBonus": 15, "spRegen": 5}, {"sdPct": 12, "mdPct": 12, "xpb": 20, "lb": 10, "spd": 5, "hpBonus": 40, "spRegen": 15}, {"mr": 2, "sdPct": 25, "mdPct": 25, "xpb": 50, "lb": 30, "spd": 15, "hpBonus": 175, "spRegen": 50}]}, "Air Relic": {"items": ["Air Relic Helmet", "Air Relic Boots", "Air Relic Leggings", "Air Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "spd": 10, "hpBonus": 60}, {"xpb": 10, "lb": 25, "spd": 20, "hpBonus": 190}, {"xpb": 25, "lb": 50, "agi": 20, "spd": 60, "hpBonus": 400}]}, "Spider": {"items": ["Spinneret", "Abdomen", "Cephalothorax"], "bonuses": [{}, {"xpb": 10, "dex": 2, "agi": 2, "spd": 7, "poison": 35}, {"xpb": 25, "dex": 6, "agi": 6, "spd": 19, "poison": 130}]}, "Pigman": {"items": ["Pigman Helmet", "Pigman Battle Hammer"], "bonuses": [{}, {"str": 20, "eDamPct": 40}]}, "Kaerynn's": {"items": ["Kaerynn's Mind", "Kaerynn's Body"], "bonuses": [{}, {"mr": 2, "xpb": 40, "def": 25, "fDamPct": 20, "hprRaw": 180}]}, "Bandit's": {"items": ["Bandit's Locket", "Bandit's Bangle", "Bandit's Knuckle", "Bandit's Ring"], "bonuses": [{}, {"xpb": 3, "lb": 4, "eSteal": 1}, {"xpb": 7, "lb": 9, "eSteal": 3}, {"xpb": 12, "lb": 15, "eSteal": 6}]}, "Jester": {"items": ["Jester Necklace", "Jester Bracelet", "Jester Ring"], "bonuses": [{"xpb": 20, "lb": 20}, {"xpb": 45, "lb": 45, "spd": 5, "hpBonus": 240, "eSteal": 5}, {"xpb": 75, "lb": 75, "spd": 10, "hpBonus": 480, "eSteal": 15, "thorns": 12, "ref": 12}, {"xpb": 120, "lb": 120, "spd": 25, "hpBonus": 720, "eSteal": 20, "thorns": 30, "ref": 30}]}, "Builder's": {"items": ["Builder's Helmet", "Builder's Boots", "Builder's Trousers", "Builder's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Silverfish": {"items": ["Silverfish Helm", "Silverfish Boots"], "bonuses": [{"spd": 5}, {"agi": 10, "thorns": 20, "spd": 20, "poison": 290}]}, "Skien's": {"items": ["Skien Boots", "Skien Leggings", "Skien's Fatigues"], "bonuses": [{}, {"sdPct": -12, "mdPct": 12, "sdRaw": -50, "mdRaw": 60}, {"sdPct": -35, "mdPct": 35, "dex": 30, "spd": 11, "sdRaw": -150, "mdRaw": 180}]}, "Snow": {"items": ["Snow Helmet", "Snow Boots", "Snow Pants", "Snow Tunic"], "bonuses": [{}, {"hprPct": -10, "mr": 1, "sdPct": 6, "ref": 10, "thorns": 8}, {"hprPct": -20, "mr": 2, "sdPct": 14, "ref": 35, "thorns": 24}, {"hprPct": -30, "mr": 4, "sdPct": 30, "ref": 75, "thorns": 70}]}, "Veekhat's": {"items": ["Veekhat's Horns", "Veekhat's Udders"], "bonuses": [{}, {"mdPct": 30, "ms": 2, "spd": 25, "spPct2": -40}]}, "Morph": {"items": ["Morph-Stardust", "Morph-Ruby", "Morph-Amethyst", "Morph-Emerald", "Morph-Topaz", "Morph-Gold", "Morph-Iron", "Morph-Steel"], "bonuses": [{}, {"xpb": 5, "lb": 5}, {"mr": 1, "xpb": 10, "lb": 10, "spRaw2": -1, "hpBonus": 125}, {"mr": 1, "xpb": 15, "lb": 15, "spRaw2": -1, "hpBonus": 425}, {"mr": 2, "xpb": 35, "lb": 35, "hpBonus": 1325, "spRaw2": -1, "spRaw4": -1}, {"mr": 2, "xpb": 55, "lb": 55, "hpBonus": 2575, "spRaw2": -1, "spRaw4": -1}, {"mr": 3, "xpb": 80, "lb": 80, "hpBonus": 4450, "spRaw1": -1, "spRaw2": -1, "spRaw4": -1}, {"mr": 4, "xpb": 100, "lb": 100, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "hpBonus": 8270, "spRaw1": -1, "spRaw2": -1, "spRaw3": -1, "spRaw4": -1}]}, "Black Catalyst": {"items": ["Black Catalyst"], "bonuses": [{"xpb": -5}, {"hpBonus": 325, "str": 0, "dex": 0, "int": 0, "def": 0, "agi": 0, "xpb": 25, "spRegen": 10, "sdPct": 8, "spPct1": -12, "spPct3": -12}]}, "Leaf": {"items": ["Leaf Cap", "Leaf Boots", "Leaf Pants", "Leaf Tunic"], "bonuses": [{}, {"hprPct": 5, "thorns": 7, "hpBonus": 10, "hprRaw": 1}, {"hprPct": 12, "thorns": 18, "hpBonus": 20, "hprRaw": 3}, {"hprPct": 25, "thorns": 35, "hpBonus": 60, "hprRaw": 7}]}, "Vexing": {"items": ["Mask of the Dark Vexations", "Staff of the Dark Vexations"], "bonuses": [{}, {"mr": 2, "sdPct": 15, "mdPct": -15, "sdRaw": 30, "spPct2": -50}]}, "Hallowynn 2016": {"items": ["Treat", "Trick"], "bonuses": [{}, {"xpb": 15, "spRegen": 10, "eSteal": 5}]}, "Spore": {"items": ["Spore Cap", "Spore Shortsword"], "bonuses": [{}, {"ls": 20, "expd": 20, "poison": 70}]}, "Horse": {"items": ["Horse Mask", "Horse Hoof"], "bonuses": [{}, {"mdPct": 11, "xpb": 25, "spd": 17, "aDamPct": 15, "eDamPct": 15, "sprint": 25, "sprintReg": 50}]}, "GM's": {"items": ["GM's Helmet", "GM's Boots", "GM's Trousers", "GM's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Nether": {"items": ["Nether Cap", "Nether Boots", "Nether Pants", "Nether Tunic"], "bonuses": [{}, {"ls": 5, "expd": 2, "hprRaw": -1, "fDamPct": 2, "wDamPct": -10}, {"ls": 15, "expd": 10, "hprRaw": -2, "fDamPct": 8, "wDamPct": -25}, {"ls": 50, "def": 15, "expd": 60, "hprRaw": -20, "fDamPct": 42, "wDamPct": -45}]}, "Thunder Relic": {"items": ["Thunder Relic Helmet", "Thunder Relic Boots", "Thunder Relic Leggings", "Thunder Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 55, "mdRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 180, "mdRaw": 32}, {"xpb": 25, "lb": 50, "dex": 20, "hpBonus": 380, "mdRaw": 105}]}, "Visceral": {"items": ["Visceral Skullcap", "Visceral Toe", "Visceral Legs", "Visceral Chest"], "bonuses": [{}, {"hprPct": 30, "mdPct": 10, "ls": 45, "hpBonus": -1000, "hprRaw": 35, "mdRaw": 40}, {"hprPct": 100, "mdPct": 25, "ls": 90, "hpBonus": -2500, "hprRaw": 75, "mdRaw": 80}, {"hprPct": 350, "mdPct": 50, "ls": 180, "hpBonus": -4000, "hprRaw": 145, "mdRaw": 165}]}, "Bony": {"items": ["Bony Circlet", "Bony Bow"], "bonuses": [{}, {"agi": 8, "mdRaw": 45, "aDamPct": 15}]}, "Blue Team": {"items": ["Blue Team Boots", "Blue Team Leggings", "Blue Team Chestplate", "Blue Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Clock": {"items": ["Clock Helm", "Clock Amulet", "Watch Bracelet", "Clockwork Ring", "Time Ring", "Clock Boots", "Clock Leggings", "Clock Mail"], "bonuses": [{}, {"fDamPct": 15, "wDamPct": 6, "aDamPct": 5, "tDamPct": 18, "eDamPct": 8}, {"fDamPct": 14, "wDamPct": 12, "aDamPct": 13}, {"fDamPct": 13, "wDamPct": 18, "aDamPct": 20, "tDamPct": 18, "eDamPct": 14}, {"fDamPct": 12, "wDamPct": 24, "aDamPct": 28}, {"fDamPct": 11, "wDamPct": 24, "aDamPct": 24, "tDamPct": 18, "eDamPct": 22}, {"fDamPct": 10, "wDamPct": 24, "aDamPct": 19}, {"fDamPct": 9, "wDamPct": 24, "aDamPct": 14, "tDamPct": 18, "eDamPct": 34}]}, "Ultramarine": {"items": ["Ultramarine Crown", "Ultramarine Boots", "Ultramarine Belt", "Ultramarine Cape"], "bonuses": [{}, {"mr": 2, "mdPct": -24, "int": 5, "wDamPct": 10, "tDamPct": -8, "wDefPct": 16}, {"mr": 5, "mdPct": -54, "int": 15, "wDamPct": 20, "tDamPct": -18, "wDefPct": 36}, {"mr": 8, "mdPct": -90, "int": 25, "wDamPct": 40, "tDamPct": -30, "wDefPct": 56}]}, "Cosmic": {"items": ["Cosmic Visor", "Cosmic Walkers", "Cosmic Ward", "Cosmic Vest"], "bonuses": [{}, {"xpb": 25, "lb": 25, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "ms": 1}, {"xpb": 50, "lb": 50, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "ms": 2}, {"xpb": 75, "lb": 75, "fDefPct": 100, "wDefPct": 100, "aDefPct": 100, "tDefPct": 100, "eDefPct": 100, "sdPct": 40, "ms": 6}]}, "Saint's": {"items": ["Saint's Shawl", "Saint's Sandals", "Saint's Leggings", "Saint's Tunic"], "bonuses": [{}, {"mr": 1, "sdPct": -10, "mdPct": -15, "def": 7, "spRegen": 10, "wDamPct": 15, "aDamPct": 15}, {"mr": 3, "sdPct": -20, "mdPct": -40, "def": 15, "spRegen": 25, "wDamPct": 40, "aDamPct": 40}, {"mr": 6, "sdPct": -40, "mdPct": -85, "def": 40, "spRegen": 100, "wDamPct": 85, "aDamPct": 85}]}, "Beachside": {"items": ["Beachside Headwrap", "Beachside Conch"], "bonuses": [{}, {"lb": 20, "wDamPct": 35, "wDefPct": 25}]}, "Villager": {"items": ["Villager Pants", "Villager Mail"], "bonuses": [{}, {"xpb": 20, "lb": 60, "eSteal": 8}]}, "Goblin": {"items": ["Goblin Hood", "Goblin Runners", "Goblin Cloak"], "bonuses": [{"sdPct": -5, "mdPct": -5, "sdRaw": 27, "mdRaw": 25}, {"sdPct": -13, "mdPct": -13, "ls": 30, "sdRaw": 55, "mdRaw": 70}, {"sdPct": -33, "mdPct": -33, "ls": 90, "ms": 2, "sdRaw": 160, "mdRaw": 105, "atkTier": 1}]}, "Corrupted Nii": {"items": ["Corrupted Nii Mukluk", "Corrupted Nii Plate", "Corrupted Nii Shako"], "bonuses": [{}, {"int": 3, "def": 3, "hprRaw": 90}, {"mr": 5, "int": 20, "def": 20, "hpBonus": 1500, "hprRaw": 330, "fDefPct": 75, "wDefPct": 75}]}, "Water Relic": {"items": ["Water Relic Helmet", "Water Relic Boots", "Water Relic Leggings", "Water Relic Chestplate"], "bonuses": [{}, {"mr": 1, "xpb": 5, "lb": 10, "hpBonus": 55}, {"mr": 2, "xpb": 10, "lb": 25, "hpBonus": 170}, {"mr": 4, "xpb": 25, "lb": 50, "int": 20, "hpBonus": 360}]}, "Elf": {"items": ["Elf Cap", "Elf Shoes", "Elf Pants", "Elf Robe"], "bonuses": [{}, {"hprPct": 10, "lb": 8, "agi": 3, "def": 3, "spd": 8}, {"hprPct": 20, "lb": 20, "agi": 7, "def": 7, "spd": 16}, {"hprPct": 45, "lb": 35, "agi": 15, "def": 15, "spd": 25, "hprRaw": 50}]}, "Relic": {"items": ["Relic Helmet", "Relic Boots", "Relic Leggings", "Relic Chestplate"], "bonuses": [{}, {"xpb": 10, "lb": 10, "hpBonus": 65, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5}, {"xpb": 25, "lb": 25, "hpBonus": 200, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12}, {"xpb": 50, "lb": 50, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "hpBonus": 425, "fDamPct": 25, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25}]}, "Corrupted Uth": {"items": ["Corrupted Uth Sandals", "Corrupted Uth Belt", "Corrupted Uth Plume"], "bonuses": [{}, {"ls": 180, "agi": 3, "def": 3}, {"ls": 700, "ref": 80, "agi": 25, "def": 25, "thorns": 80, "fDefPct": 125, "aDefPct": 125}]}, "Fire Relic": {"items": ["Fire Relic Helmet", "Fire Relic Boots", "Fire Relic Leggings", "Fire Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 90, "hprRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 270, "hprRaw": 40}, {"xpb": 25, "lb": 50, "def": 20, "hpBonus": 570, "hprRaw": 100}]}, "Flashfire": {"items": ["Flashfire Gauntlet", "Flashfire Knuckle"], "bonuses": [{}, {"spd": 8, "atkTier": 1, "wDamPct": -15, "wDefPct": -15}, {"spd": 16, "atkTier": 1, "fDamPct": 12, "wDamPct": -15, "wDefPct": -15}]}, "Earth Relic": {"items": ["Earth Relic Helmet", "Earth Relic Boots", "Earth Relic Leggings", "Earth Relic Chestplate"], "bonuses": [{}, {"mdPct": 10, "xpb": 5, "lb": 10, "hpBonus": 65}, {"mdPct": 20, "xpb": 10, "lb": 25, "hpBonus": 200}, {"mdPct": 45, "xpb": 25, "lb": 50, "str": 20, "hpBonus": 425}]}, "Bear": {"items": ["Bear Mask", "Bear Head", "Bear Body"], "bonuses": [{}, {"mdPct": 14, "hpBonus": 75, "mdRaw": 25}]}, "Slime": {"items": ["Slime Boots", "Slime Plate"], "bonuses": [{}, {"hprPct": 35, "thorns": 15, "spd": -6, "poison": 300, "hpBonus": 600, "jh": 1}]}, "Wynnterfest 2016": {"items": ["Green Ornament", "Red Ornament", "Blue Ornament", "Yellow Ornament"], "bonuses": [{"sdPct": 3}, {"sdPct": 3, "mdPct": 3, "xpb": 6}, {"sdPct": 3, "mdPct": 3, "xpb": 12, "hpBonus": 120}, {"sdPct": 14, "mdPct": 14, "xpb": 24, "hpBonus": 480}]}}} \ No newline at end of file +{"items": [{"name": "Keratoconus", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Keratoconus", "slots": 3, "hp": 3900, "fDef": -150, "aDef": 250, "tDef": -150, "lvl": 101, "intReq": 65, "agiReq": 65, "hprPct": -50, "mr": 8, "int": 15, "def": -10, "wDamPct": 30, "aDamPct": 35, "tDamPct": -40, "spRaw4": -4, "id": 3579}, {"name": "Wanderlust", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Wanderlust", "slots": 2, "hp": 3500, "fDef": -75, "wDef": 100, "aDef": 100, "tDef": 75, "lvl": 103, "dexReq": 45, "agiReq": 55, "hprPct": -15, "ls": 230, "ms": -12, "spd": 25, "sdRaw": 208, "wDamPct": 20, "aDamPct": 30, "id": 3592}, {"name": "Anaerobic", "type": "leggings", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Anaerobic", "slots": 4, "hp": 3850, "wDef": -150, "aDef": 100, "eDef": 100, "lvl": 104, "strReq": 60, "agiReq": 60, "mr": 8, "ref": 48, "str": 12, "atkTier": -1, "aDamPct": 32, "eDamPct": 24, "spRaw1": -8, "id": 3611}, {"name": "Danse Macabre", "type": "relik", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Danse Macabre", "basedps": 238, "slots": 1, "nDam": "0-0", "fDam": "97-141", "wDam": "0-0", "aDam": "0-0", "tDam": "24-214", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 102, "classReq": "Shaman", "dexReq": 55, "defReq": 50, "ms": 13, "atkTier": 1, "hpBonus": -1150, "hprRaw": -204, "sdRaw": 184, "spRaw1": -7, "id": 3614}, {"name": "Darkness's Dogma", "type": "bow", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Darkness's Dogma", "basedps": 1250, "slots": 3, "nDam": "0-0", "fDam": "550-700", "wDam": "600-650", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 103, "classReq": "Archer", "intReq": 60, "defReq": 50, "ls": -700, "ms": 13, "ref": 25, "hpBonus": 1500, "fDefPct": -50, "wDefPct": -50, "id": 3654}, {"name": "Frameshift", "type": "wand", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Frameshift", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "160-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-210", "atkSpd": "VERY_SLOW", "lvl": 104, "classReq": "Mage", "strReq": 40, "defReq": 60, "mr": 7, "mdPct": 25, "ls": 380, "def": 20, "wDamPct": -30, "spRaw1": -4, "id": 3655}, {"name": "Helminth", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Helminth", "basedps": 100, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-199", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 102, "classReq": "Warrior", "dexReq": 65, "ls": 500, "atkTier": 1, "hpBonus": -1250, "tDamPct": 20, "wDefPct": -35, "aDefPct": -35, "id": 3656}, {"name": "Lanternfly Leg", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Lanternfly Leg", "basedps": 180, "slots": 3, "nDam": "150-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 101, "classReq": "Assassin", "agiReq": 50, "defReq": 50, "spd": 30, "hpBonus": 1000, "fDamPct": 23, "aDamPct": 23, "spRaw2": -4, "jh": 1, "id": 3657}, {"name": "Dissonance", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Dissonance", "sprint": 20, "slots": 2, "hp": 3050, "wDef": 100, "aDef": -175, "tDef": 100, "lvl": 103, "dexReq": 50, "intReq": 50, "sdPct": 20, "ls": -275, "lb": 20, "spd": -20, "wDamPct": 20, "tDamPct": 12, "id": 3658}, {"name": "Atomizer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Atomizer", "poison": 600, "thorns": 25, "slots": 3, "hp": 4350, "fDef": 120, "wDef": 120, "aDef": 200, "lvl": 102, "agiReq": 75, "hprPct": 37, "agi": 8, "fDefPct": 31, "wDefPct": 31, "jh": 1, "id": 3660}, {"name": "Wasteland Azalea", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Wasteland Azalea", "poison": 500, "sprint": -15, "slots": 3, "hp": 2750, "fDef": -75, "eDef": 75, "lvl": 101, "strReq": 45, "agiReq": 50, "atkTier": -1, "sdRaw": 140, "aDamPct": 25, "eDamPct": 25, "spRaw3": -6, "id": 3661}, {"name": "Tranquility", "type": "ring", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Tranquility", "hp": 550, "fDef": 50, "wDef": 50, "lvl": 101, "intReq": 45, "defReq": 45, "hprPct": 17, "sdPct": 5, "str": -3, "dex": -3, "spd": -7, "id": 3662}, {"name": "Misalignment", "type": "bracelet", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Misalignment", "lvl": 101, "strReq": 35, "dexReq": 45, "mr": 3, "dex": 3, "int": 3, "wDamPct": 10, "tDamPct": 6, "eDamPct": 6, "id": 3663}, {"name": "Grafted Eyestalk", "type": "necklace", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Grafted Eyestalk", "hp": -600, "tDef": -40, "eDef": -40, "lvl": 101, "agiReq": 40, "defReq": 40, "hprPct": -12, "sdPct": 8, "agi": 5, "def": 5, "spRaw1": -1, "id": 3664}, {"name": "Forbearance", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Forbearance", "lvl": 105, "dexReq": 60, "intReq": 60, "mr": 4, "ls": 120, "dex": 6, "int": 6, "wDamPct": -15, "tDamPct": -15, "id": 3665}, {"name": "Ingress", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Ingress", "aDef": 55, "eDef": 55, "lvl": 105, "strReq": 55, "agiReq": 55, "dex": 4, "int": 2, "def": 4, "sdRaw": 55, "aDamPct": 8, "eDamPct": 8, "id": 3666}, {"name": "Breakthrough", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Breakthrough", "fDef": -30, "tDef": -45, "eDef": -45, "lvl": 105, "intReq": 45, "agiReq": 45, "sdPct": 13, "ms": 6, "str": -4, "dex": -4, "def": -6, "sdRaw": 75, "spRaw2": -4, "id": 3667}, {"name": "Simulacrum", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Simulacrum", "hp": -800, "fDef": -90, "eDef": -70, "lvl": 105, "strReq": 55, "defReq": 45, "mr": 5, "spd": 8, "hprRaw": -150, "sdRaw": 150, "id": 3670}, {"name": "Medeis", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Medeis", "slots": 3, "hp": 2950, "fDef": 75, "wDef": 75, "aDef": -100, "tDef": 75, "eDef": -100, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "sdPct": 8, "dex": 10, "int": 10, "def": 10, "fDamPct": 8, "wDamPct": 8, "aDamPct": -75, "tDamPct": 8, "eDamPct": -75, "id": 1763}, {"name": "Roulette", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Roulette", "basedps": 29, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-58", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "dexReq": 40, "xpb": 8, "lb": 8, "dex": 8, "tDamPct": 888, "id": 2368}, {"name": "Prowess", "type": "bracelet", "tier": "Legendary", "majorIds": [], "quest": "The Qira Hive", "category": "accessory", "displayName": "Prowess", "set": "Master Hive", "hp": 425, "lvl": 100, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 1284}, {"name": "Caesura", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Caesura", "slots": 2, "hp": 2450, "wDef": -250, "tDef": 100, "eDef": 100, "lvl": 93, "strReq": 45, "dexReq": 60, "intReq": 30, "mr": -15, "sdPct": 10, "ms": -15, "str": 10, "int": 15, "sdRaw": 231, "tDamPct": 25, "eDamPct": 25, "id": 463}, {"name": "Gigabyte", "type": "necklace", "tier": "Legendary", "category": "accessory", "displayName": "Gigabyte", "thorns": 8, "hp": -512, "lvl": 93, "mr": -4, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "spd": 8, "hprRaw": 48, "fixID": true, "id": 731}, {"name": "Pro Tempore", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Pro Tempore", "slots": 4, "hp": 2350, "wDef": -50, "tDef": -50, "lvl": 88, "dexReq": 40, "intReq": 50, "mr": 10, "sdPct": 20, "ls": 165, "ms": -15, "int": 10, "sdRaw": 104, "id": 3577}, {"name": "Orange Lily", "type": "bow", "tier": "Legendary", "category": "weapon", "displayName": "Orange Lily", "basedps": 507.5, "slots": 3, "nDam": "75-140", "fDam": "0-0", "wDam": "165-235", "aDam": "0-0", "tDam": "0-0", "eDam": "165-235", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "intReq": 60, "mr": 10, "wDamPct": 20, "aDamPct": -150, "eDamPct": 20, "aDefPct": -100, "fixID": true, "spRaw3": -5, "spRaw4": 50, "id": 717}, {"name": "Brainwash", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Brainwash", "hp": 2800, "wDef": -220, "tDef": 100, "eDef": 70, "lvl": 96, "strReq": 40, "dexReq": 70, "hprPct": -40, "mr": 10, "sdPct": 10, "ms": 15, "str": 13, "int": -50, "sdRaw": 190, "wDamPct": -30, "tDamPct": 15, "id": 416}, {"name": "Second Wind", "type": "leggings", "tier": "Fabled", "majorIds": [], "category": "armor", "displayName": "Second Wind", "slots": 3, "hp": 6325, "fDef": 120, "aDef": 120, "tDef": -350, "eDef": -350, "lvl": 83, "agiReq": 40, "defReq": 65, "hprPct": -30, "ls": -475, "agi": 20, "spd": 20, "atkTier": 1, "id": 2973}, {"name": "Cumulonimbus", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Cumulonimbus", "slots": 3, "hp": 1800, "wDef": 70, "aDef": 70, "tDef": 70, "lvl": 94, "dexReq": 30, "intReq": 30, "agiReq": 30, "sdPct": 15, "dex": 10, "int": 10, "agi": 10, "spd": 25, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "id": 696}, {"name": "Morrowind", "type": "wand", "tier": "Legendary", "majorIds": [], "category": "weapon", "displayName": "Morrowind", "basedps": 135, "slots": 3, "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "agiReq": 45, "ref": 46, "agi": 14, "spd": 23, "sdRaw": 145, "aDamPct": 23, "eDamPct": -15, "aDefPct": 23, "id": 1818}, {"name": "Anima-Infused Helmet", "displayName": "Boreal-Patterned Crown", "type": "helmet", "tier": "Legendary", "quest": "The Qira Hive", "category": "armor", "set": "Master Hive", "slots": 2, "hp": 3000, "wDef": 150, "aDef": 150, "tDef": 150, "lvl": 100, "dexReq": 40, "intReq": 40, "agiReq": 40, "mr": 8, "sdPct": 20, "mdPct": -40, "str": -30, "def": -30, "sdRaw": 300, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "fixID": true, "id": 1267}, {"name": "Corsair", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Corsair", "slots": 2, "hp": 2900, "aDef": 110, "tDef": 80, "eDef": -140, "lvl": 99, "dexReq": 55, "agiReq": 35, "ms": 5, "dex": 8, "spd": 11, "eSteal": 4, "aDamPct": 12, "tDamPct": 10, "spPct1": -10, "spPct4": -14, "id": 658}, {"name": "Charging Flame", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Charging Flame", "basedps": 190, "slots": 2, "nDam": "20-40", "fDam": "20-140", "wDam": "40-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 12, "mdPct": 12, "expd": 24, "hpBonus": -1200, "fDamPct": 12, "wDamPct": 12, "tDefPct": -25, "spRaw2": -12, "id": 519}, {"name": "Aphotic", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aphotic", "slots": 2, "hp": 3200, "wDef": 150, "tDef": -150, "lvl": 98, "intReq": 100, "sdPct": 50, "dex": -80, "int": 5, "atkTier": -6, "spRaw3": -7, "id": 133}, {"name": "Silent Ballet", "type": "relik", "tier": "Unique", "majorIds": [], "category": "weapon", "displayName": "Silent Ballet", "basedps": 231, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "110-121", "tDam": "0-0", "eDam": "110-121", "atkSpd": "FAST", "lvl": 83, "strReq": 40, "agiReq": 40, "sdPct": -40000, "mdPct": 40, "sdRaw": -40000, "spPct1": -40, "spRaw1": -400, "spPct2": -40, "spRaw2": -400, "spPct3": -40, "spRaw3": -400, "spPct4": -40, "spRaw4": -400, "id": 3021}, {"name": "Rhythm of the Seasons", "type": "spear", "tier": "Fabled", "majorIds": ["RALLY"], "category": "weapon", "displayName": "Rhythm of the Seasons", "basedps": 165, "slots": 2, "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-140", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 80, "defReq": 60, "mr": 15, "def": 12, "hpBonus": 1800, "hprRaw": -660, "wDamPct": 25, "id": 3598}, {"name": "Sorrow", "type": "chestplate", "tier": "Rare", "category": "armor", "displayName": "Sorrow", "slots": 1, "hp": 1400, "wDef": 150, "tDef": -150, "lvl": 72, "intReq": 95, "mr": 5, "sdPct": 8, "ms": -20, "spRegen": 20, "wDamPct": 42, "fixID": true, "spRaw1": -8, "id": 666}, {"name": "Condensation", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Condensation", "hp": 2000, "wDef": 100, "tDef": -120, "lvl": 87, "intReq": 75, "sdPct": 30, "mdPct": -30, "int": 10, "tDefPct": -20, "spRaw3": -6, "id": 586}, {"name": "Augoeides", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Augoeides", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 63, "intReq": 65, "mr": 5, "xpb": 5, "lb": 8, "ref": 30, "spRegen": 10, "mdRaw": -52, "spRaw3": -5, "id": 169}, {"name": "Matryoshka Shell", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Matryoshka Shell", "slots": 18, "hp": 550, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 20, "lb": 20, "spd": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "spRaw1": -5, "id": 1764}, {"name": "Pure", "type": "wand", "tier": "Mythic", "majorIds": ["ENTROPY"], "category": "weapon", "displayName": "Pure", "basedps": 70, "nDam": "0-5", "fDam": "0-0", "wDam": "20-45", "aDam": "15-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 50, "agiReq": 30, "sdPct": 400, "mdPct": -100, "ms": 30, "xpb": 30, "ref": 20, "spRaw3": 6, "id": 1711}, {"name": "Resurgence", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Resurgence", "slots": 4, "hp": 4550, "fDef": 125, "wDef": 175, "lvl": 91, "intReq": 65, "defReq": 90, "mr": 30, "sdPct": -35, "mdPct": -45, "int": 25, "spd": -14, "spRegen": 20, "hprRaw": 390, "id": 1717}, {"name": "Galleon", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Galleon", "poison": 4231, "slots": 3, "hp": 4500, "wDef": 250, "aDef": -175, "eDef": 200, "lvl": 92, "strReq": 65, "intReq": 60, "mdPct": 45, "ms": 20, "lb": 20, "atkTier": -1, "eSteal": 15, "wDamPct": 36, "eDamPct": 36, "id": 1702}, {"name": "Boreal", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Boreal", "slots": 3, "hp": 5000, "fDef": 250, "aDef": 375, "lvl": 93, "agiReq": 65, "defReq": 75, "hprPct": 100, "mr": 10, "ref": 25, "spd": 25, "hprRaw": 269, "tDamPct": -75, "eDamPct": -75, "fDefPct": 50, "aDefPct": 50, "id": 1687}, {"name": "Freedom", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Freedom", "basedps": 485, "slots": 4, "nDam": "0-0", "fDam": "75-119", "wDam": "65-129", "aDam": "55-139", "tDam": "45-149", "eDam": "85-109", "atkSpd": "NORMAL", "lvl": 93, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "agi": 30, "spd": 15, "hpBonus": 1000, "sdRaw": 111, "mdRaw": 111, "id": 1695}, {"name": "Olympic", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Olympic", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "345-375", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "agiReq": 105, "agi": 25, "spd": 35, "aDamPct": 20, "aDefPct": 30, "spRaw1": -10, "spRaw2": -10, "jh": 6, "id": 1718}, {"name": "Guardian", "type": "spear", "tier": "Mythic", "majorIds": ["GUARDIAN"], "category": "weapon", "displayName": "Guardian", "basedps": 255, "thorns": 25, "slots": 3, "nDam": "50-90", "fDam": "165-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 110, "mr": 1, "def": 20, "hpBonus": 6000, "hprRaw": 585, "fDefPct": 20, "wDefPct": 20, "eDefPct": 20, "id": 1701}, {"name": "Hadal", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Hadal", "basedps": 1950, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "1750-2150", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 94, "intReq": 130, "mr": 30, "sdPct": 75, "spPct3": 112, "spPct4": 112, "id": 1703}, {"name": "Nullification", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Nullification", "basedps": 315, "poison": -7000, "slots": 3, "nDam": "0-0", "fDam": "36-90", "wDam": "46-80", "aDam": "28-98", "tDam": "22-104", "eDam": "60-66", "atkSpd": "FAST", "lvl": 95, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "ls": 495, "ms": 16, "ref": 80, "def": 40, "fDefPct": 143, "wDefPct": 143, "aDefPct": 143, "tDefPct": 143, "eDefPct": 143, "id": 1714}, {"name": "Idol", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Idol", "basedps": 280, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "230-330", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "intReq": 120, "mr": 10, "ref": 30, "int": 26, "spRegen": 25, "sdRaw": 264, "wDefPct": 15, "spRaw2": -50, "id": 1705}, {"name": "Dawnbreak", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Dawnbreak", "slots": 2, "hp": 4225, "fDef": 200, "wDef": -125, "aDef": -125, "tDef": 200, "lvl": 96, "dexReq": 65, "defReq": 65, "ls": 350, "ms": 12, "expd": 23, "atkTier": -20, "mdRaw": 2700, "fDamPct": 27, "tDamPct": 27, "id": 1691}, {"name": "Cataclysm", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Cataclysm", "basedps": 265, "thorns": 21, "slots": 3, "nDam": "40-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-305", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 96, "dexReq": 120, "dex": 20, "hpBonus": -6000, "eSteal": 5, "tDamPct": 17, "spRaw1": -1, "id": 1690}, {"name": "Grimtrap", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Grimtrap", "basedps": 570, "poison": 2000, "thorns": 70, "slots": 3, "nDam": "175-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "305-425", "atkSpd": "SLOW", "lvl": 96, "strReq": 100, "ls": 650, "ms": -10, "str": 15, "spRaw2": 1, "spRaw4": -10, "id": 1699}, {"name": "Weathered", "type": "dagger", "tier": "Mythic", "majorIds": ["ROVINGASSASSIN"], "category": "weapon", "displayName": "Weathered", "basedps": 245, "slots": 3, "nDam": "40-80", "fDam": "0-0", "wDam": "0-0", "aDam": "140-230", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 110, "ms": 16, "ref": 25, "agi": 15, "expd": -50, "spd": 25, "atkTier": 1, "aDamPct": 20, "id": 1726}, {"name": "Thrundacrack", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Thrundacrack", "basedps": 205, "slots": 4, "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-220", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "dexReq": 105, "hprPct": -60, "dex": 35, "spd": 9, "wDamPct": 60, "tDamPct": 25, "spRaw3": -6, "id": 1722}, {"name": "Lament", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Lament", "basedps": 265, "slots": 3, "nDam": "70-90", "fDam": "0-0", "wDam": "180-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "intReq": 110, "ls": -500, "ms": 40, "int": 20, "wDamPct": 80, "spPct1": -35, "id": 1710}, {"name": "Toxoplasmosis", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Toxoplasmosis", "basedps": 3, "poison": 10000, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-3", "atkSpd": "VERY_FAST", "lvl": 96, "strReq": 110, "ls": 500, "ms": 18, "lb": 20, "str": 40, "spd": 20, "id": 1724}, {"name": "Stardew", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Stardew", "slots": 2, "hp": 4075, "fDef": -100, "wDef": 150, "aDef": -100, "tDef": 150, "eDef": -100, "lvl": 97, "dexReq": 65, "intReq": 75, "mr": -9, "ms": 15, "ref": 25, "sdRaw": 313, "wDamPct": 35, "tDamPct": 35, "id": 1723}, {"name": "Divzer", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Divzer", "basedps": 299, "slots": 3, "nDam": "48-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "250-250", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 115, "ls": 973, "ms": 30, "dex": 37, "agi": -550, "def": -39, "atkTier": 1, "sdRaw": 253, "mdRaw": 536, "fDamPct": -550, "wDamPct": -550, "id": 1692}, {"name": "Inferno", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Inferno", "basedps": 950, "slots": 3, "nDam": "0-0", "fDam": "855-1045", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 105, "hprPct": -45, "mr": -1, "mdPct": 25, "def": 15, "spd": 25, "hpBonus": 1500, "mdRaw": 560, "fDamPct": 35, "wDefPct": -40, "spRaw1": -1, "id": 1707}, {"name": "Nirvana", "type": "dagger", "tier": "Mythic", "majorIds": ["ARCANES"], "category": "weapon", "displayName": "Nirvana", "basedps": 352.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "320-385", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 110, "mr": 10, "sdPct": 25, "mdPct": -80, "ms": -20, "ref": 15, "int": 40, "hpBonus": -2000, "id": 1712}, {"name": "Collapse", "type": "spear", "tier": "Mythic", "majorIds": ["FISSION"], "category": "weapon", "displayName": "Collapse", "basedps": 827.5, "slots": 3, "nDam": "40-65", "fDam": "0-310", "wDam": "0-310", "aDam": "0-310", "tDam": "0-310", "eDam": "0-310", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "mdPct": 50, "ms": 18, "str": 45, "expd": 250, "fDefPct": -65, "wDefPct": -65, "aDefPct": -65, "tDefPct": -65, "eDefPct": -65, "id": 1693}, {"name": "Gaia", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Gaia", "basedps": 620, "poison": 2500, "thorns": 15, "slots": 3, "nDam": "150-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "380-490", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 105, "mdPct": 15, "str": 25, "sdRaw": -275, "mdRaw": 575, "spRaw4": -9, "id": 1700}, {"name": "Absolution", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Absolution", "basedps": 200, "nDam": "0-0", "fDam": "195-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "defReq": 115, "mr": 16, "hpBonus": 3000, "spRegen": 23, "fDamPct": 20, "wDamPct": 200, "tDefPct": 45, "eDefPct": 45, "spRaw1": -20, "id": 1682}, {"name": "Spring", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Spring", "basedps": 422.5, "slots": 3, "nDam": "150-185", "fDam": "0-0", "wDam": "200-310", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "intReq": 120, "mr": 30, "str": 15, "dex": -40, "int": 15, "wDamPct": 20, "tDamPct": -50, "id": 1721}, {"name": "Monster", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Monster", "basedps": 315, "slots": 3, "nDam": "110-140", "fDam": "160-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "defReq": 110, "mdPct": 40, "ls": 500, "ms": 10, "def": 40, "hpBonus": 3000, "fDamPct": 25, "spRaw1": 4, "id": 1713}, {"name": "Revenant", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Revenant", "slots": 3, "hp": 7000, "aDef": 70, "eDef": 70, "lvl": 99, "strReq": 70, "agiReq": 70, "mdPct": -70, "ms": 10, "ref": 120, "spd": 40, "hpBonus": -2500, "mdRaw": 520, "aDamPct": 40, "eDamPct": 40, "spPct4": -28, "id": 1719}, {"name": "Fatal", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fatal", "basedps": 180.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-360", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "dexReq": 110, "sdPct": 25, "ms": 1, "dex": 25, "spd": 15, "spPct1": 28, "spPct2": -49, "id": 1698}, {"name": "Warp", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Warp", "basedps": 260, "slots": 3, "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "190-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "agiReq": 130, "hprPct": -200, "mr": -45, "ref": 90, "agi": 20, "expd": 50, "spd": 180, "hprRaw": -600, "aDamPct": 15, "spRaw1": 4, "spRaw2": -299, "id": 1729}, {"name": "Oblivion", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Oblivion", "basedps": 1699.5, "slots": 4, "nDam": "1-200", "fDam": "0-0", "wDam": "600-999", "aDam": "0-0", "tDam": "600-999", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 101, "dexReq": 75, "intReq": 65, "mr": -30, "ms": 15, "dex": 15, "expd": 40, "spRegen": 40, "sdRaw": 265, "spRaw2": -20, "id": 3647}, {"name": "Epoch", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Epoch", "basedps": 1680, "sprint": 70, "slots": 3, "nDam": "500-620", "fDam": "0-0", "wDam": "0-0", "aDam": "520-600", "tDam": "480-640", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 102, "dexReq": 70, "agiReq": 70, "sdPct": 40, "ls": 825, "ms": -1, "spd": -20, "mdRaw": 769, "spRaw1": -1, "spRaw4": -1, "id": 3645}, {"name": "Fantasia", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fantasia", "basedps": 1350, "slots": 3, "nDam": "0-0", "fDam": "185-295", "wDam": "200-280", "aDam": "215-265", "tDam": "230-250", "eDam": "170-310", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": -20, "sdPct": 30, "ms": -20, "int": 50, "spPct1": -27, "spPct2": -27, "spPct3": -27, "spPct4": -27, "id": 1697}, {"name": "Slayer", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Slayer", "slots": 2, "hp": 3775, "wDef": -100, "lvl": 94, "dexReq": 75, "agiReq": 60, "dex": 20, "spd": 27, "atkTier": 1, "eSteal": 10, "hprRaw": -270, "mdRaw": 285, "spPct3": -30, "id": 1716}, {"name": "Immolation", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Immolation", "basedps": 640, "slots": 3, "nDam": "0-0", "fDam": "200-440", "wDam": "0-0", "aDam": "310-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 101, "agiReq": 80, "defReq": 80, "hprPct": -180, "agi": 50, "def": 50, "hpBonus": -2750, "fDamPct": 45, "wDamPct": -1000, "aDamPct": 45, "spPct3": -14, "id": 3646}, {"name": "Convergence", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Convergence", "basedps": 300, "slots": 3, "nDam": "70-90", "fDam": "105-115", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 104, "intReq": 65, "defReq": 75, "hprPct": 43, "tDamPct": 55, "eDamPct": 55, "aDefPct": 35, "spPct3": -45, "sprintReg": 43, "id": 3643}, {"name": "Guillotine", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Guillotine", "slots": 4, "hp": 1000, "fDef": 70, "wDef": 70, "aDef": -220, "tDef": 70, "eDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "defReq": 45, "mr": 10, "sdPct": 10, "mdPct": 23, "ls": 215, "ms": 10, "str": 5, "dex": 5, "int": 5, "agi": -99, "def": 5, "hpBonus": -1337, "sdRaw": 150, "aDamPct": -50, "aDefPct": -15, "id": 3588}, {"name": "Prayer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Prayer", "slots": 2, "hp": 1280, "wDef": 100, "tDef": -100, "lvl": 68, "intReq": 45, "sdPct": 12, "xpb": 8, "int": 5, "spRegen": 8, "fDamPct": -16, "wDefPct": 12, "spRaw3": -5, "id": 2155}, {"name": "Symphony", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Symphony", "slots": 2, "hp": 1350, "fDef": 80, "wDef": 80, "tDef": -90, "eDef": -90, "lvl": 72, "intReq": 50, "defReq": 50, "hprPct": 20, "sdPct": 10, "mdPct": -10, "xpb": 12, "ref": 17, "hprRaw": 70, "spRaw4": -6, "id": 3196}, {"name": "Entamyx", "type": "leggings", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Entamyx", "slots": 3, "hp": 2150, "fDef": -100, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": 150, "lvl": 76, "strReq": 50, "intReq": 50, "agiReq": 50, "dex": -20, "def": -20, "wDamPct": 15, "aDamPct": 15, "eDamPct": 15, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw1": -4, "spRaw3": -4, "id": 2638}, {"name": "Gysdep", "type": "helmet", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Gysdep", "slots": 3, "hp": 2000, "fDef": 150, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": -100, "lvl": 74, "intReq": 50, "agiReq": 50, "defReq": 50, "str": -20, "dex": -20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -3, "id": 2642}, {"name": "Aquarius", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aquarius", "slots": 3, "hp": 2550, "fDef": -100, "lvl": 95, "intReq": 110, "mr": 25, "mdPct": -20, "spRaw1": -7, "id": 126}, {"name": "Scaldsteppers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Scaldsteppers", "slots": 2, "hp": 2325, "fDef": 80, "wDef": 110, "aDef": -90, "tDef": -100, "lvl": 90, "intReq": 40, "defReq": 30, "sdPct": 20, "int": 7, "expd": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": -12, "spRaw1": -6, "id": 2956}, {"name": "Steamstone", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Steamstone", "slots": 2, "hp": 2900, "fDef": 75, "wDef": 75, "tDef": -130, "eDef": 50, "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 25, "ms": 5, "int": 7, "def": 8, "aDamPct": -10, "tDamPct": -10, "eDamPct": 16, "fDefPct": 8, "wDefPct": 8, "fixID": true, "spRaw3": -6, "spRaw4": -3, "id": 2821}, {"name": "Leviathan", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Leviathan", "slots": 2, "hp": 2850, "wDef": 90, "aDef": -90, "tDef": -100, "eDef": 100, "lvl": 97, "strReq": 45, "intReq": 45, "str": 12, "atkTier": 1, "eSteal": 7, "wDamPct": 19, "eDamPct": 19, "tDefPct": -10, "spRaw3": -6, "id": 1634}, {"name": "The Courier's Cape", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "The Courier's Cape", "slots": 3, "hp": 1900, "aDef": 50, "lvl": 86, "agiReq": 70, "mr": 10, "xpb": 15, "lb": 10, "agi": 10, "spd": 20, "aDamPct": 23, "aDefPct": 15, "eDefPct": 10, "id": 3261}, {"name": "Exhibition", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Exhibition", "fDef": -30, "wDef": 60, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 105, "intReq": 80, "mr": -10, "spRaw1": -2, "spRaw2": -2, "spRaw3": -2, "spRaw4": -2, "id": 3669}, {"name": "Ambivalence", "type": "necklace", "tier": "Legendary", "majorIds": [], "category": "accessory", "displayName": "Ambivalence", "fDef": 70, "aDef": 70, "tDef": 70, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "sdPct": 50, "int": -100, "wDamPct": 25, "fixID": true, "spPct1": 100, "spPct2": 100, "spPct3": 100, "spPct4": 100, "id": 3618}, {"name": "Conduit of Spirit", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Conduit of Spirit", "hp": 2800, "aDef": 150, "lvl": 93, "agiReq": 105, "mr": 5, "sdPct": 25, "ms": 15, "ref": 25, "spRegen": 50, "aDamPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -5, "id": 639}, {"name": "Ossuary", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Ossuary", "thorns": 30, "slots": 2, "hp": 2550, "aDef": 90, "tDef": 90, "lvl": 84, "ls": 245, "spd": 15, "sdRaw": 170, "aDamPct": 12, "tDamPct": 15, "fixID": true, "spRaw3": -4, "id": 629}, {"name": "Far Cosmos", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Far Cosmos", "slots": 5, "hp": 3500, "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "str": 9, "dex": 9, "int": 9, "agi": 9, "def": 9, "spPct2": -6, "id": 1022}, {"name": "Ophiolite", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Ophiolite", "slots": 4, "hp": 2400, "fDef": 80, "wDef": -60, "aDef": 80, "tDef": -120, "eDef": -60, "lvl": 98, "strReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 20, "sdPct": 14, "mdPct": 40, "ls": -235, "str": 5, "dex": -99, "int": 5, "agi": 5, "def": 5, "spd": -20, "hprRaw": 170, "tDefPct": -20, "spRaw1": -6, "id": 3596}, {"name": "Ionosphere", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Ionosphere", "slots": 3, "hp": 2850, "fDef": 70, "aDef": -110, "tDef": 90, "lvl": 97, "dexReq": 55, "hprPct": -15, "ls": 190, "ms": 5, "dex": 7, "spd": 11, "tDamPct": 21, "eDefPct": -15, "spRaw1": -5, "id": 1466}, {"name": "Dragon's Eye Bracelet", "type": "bracelet", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Dragon's Eye Bracelet", "set": "Grookwarts", "fDef": 25, "lvl": 60, "defReq": 40, "xpb": 10, "expd": 5, "fDamPct": 11, "wDefPct": -8, "spRaw3": -3, "id": 1879}, {"name": "Draoi Fair", "type": "ring", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Draoi Fair", "set": "Grookwarts", "wDef": 20, "eDef": 20, "lvl": 60, "strReq": 25, "intReq": 25, "xpb": 10, "hprRaw": 30, "spRaw1": -3, "id": 1882}, {"name": "Renda Langit", "type": "necklace", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Renda Langit", "set": "Grookwarts", "hp": 230, "aDef": 30, "lvl": 60, "agiReq": 40, "xpb": 10, "spd": 12, "eDefPct": -8, "spRaw2": -3, "spRaw4": -3, "id": 1931}, {"name": "Cloudwalkers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Cloudwalkers", "sprint": 15, "slots": 3, "aDef": 100, "lvl": 94, "agiReq": 50, "sdPct": 40, "xpb": 10, "spd": 30, "aDamPct": 30, "aDefPct": 20, "fixID": true, "spRaw1": -5, "id": 2510}, {"name": "Harmony", "type": "leggings", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Harmony", "slots": 2, "hp": 2650, "fDef": 180, "wDef": 180, "tDef": 180, "eDef": 180, "lvl": 84, "agiReq": 65, "sdPct": 9, "mdPct": -18, "spd": 18, "spRegen": 18, "aDefPct": 45, "spRaw3": -5, "id": 1314}, {"name": "Detachment", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Detachment", "aDef": 60, "tDef": 60, "lvl": 105, "dexReq": 55, "agiReq": 60, "spd": 13, "sdRaw": -65, "mdRaw": -85, "spPct4": -19, "id": 3668}, {"name": "Roridula", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Roridula", "slots": 2, "hp": 3675, "fDef": -150, "eDef": 150, "lvl": 104, "strReq": 55, "intReq": 55, "ms": 8, "xpb": 25, "str": 10, "spd": 15, "wDamPct": 25, "tDamPct": -30, "spPct4": 14, "id": 3659}, {"name": "Panic Zealot", "tier": "Fabled", "type": "relik", "material": "273:7", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 3, "lore": "They must know what you went through. They must suffer the same as you did.", "drop": "never", "restrict": "Untradable", "nDam": "46-60", "fDam": "0-0", "wDam": "0-0", "aDam": "43-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 101, "agiReq": 85, "spd": 30, "atkTier": 3, "hpBonus": -5000, "tDamPct": -30, "spPct1": -100, "spPct2": -100, "spPct3": -100, "id": 3600}, {"name": "The Nothing", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-1", "wDam": "0-0", "aDam": "0-1", "tDam": "0-1", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "dexReq": 55, "defReq": 55, "ls": 700, "ms": 15, "int": -25, "spd": 10, "tSdRaw": 500, "fSdRaw": 500, "aSdRaw": 500, "fixID": true, "spRaw3": -10, "id": 781}, {"name": "Dondasch", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3375, "aDef": 150, "eDef": 150, "lvl": 100, "strReq": 50, "agiReq": 50, "str": 20, "spd": 27, "spRegen": 15, "mdRaw": 280, "fDamPct": -100, "aDamPct": 25, "eDamPct": 25, "id": 0}, {"name": "Eidolon", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "520-570", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "agiReq": 45, "ms": 5, "xpb": 10, "agi": 15, "spd": 30, "spRegen": 15, "fDamPct": -20, "aDefPct": 30, "tDefPct": 25, "id": 1}, {"name": "Nona", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-85", "tDam": "0-0", "eDam": "62-85", "atkSpd": "SUPER_FAST", "lvl": 95, "strReq": 50, "agiReq": 40, "xpb": 10, "agi": 13, "spd": 25, "atkTier": 1, "spRegen": 15, "hprRaw": -180, "sdRaw": 90, "mdRaw": 100, "fDefPct": -100, "id": 2}, {"name": "Breakbore", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-130", "eDam": "60-130", "atkSpd": "SLOW", "lvl": 90, "strReq": 35, "dexReq": 35, "mdPct": 30, "xpb": 10, "lb": 10, "str": 13, "expd": 57, "tDamPct": 20, "wDefPct": -20, "aDefPct": -20, "id": 4}, {"name": "Tera", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3225, "aDef": -200, "tDef": 100, "eDef": 100, "lvl": 90, "strReq": 50, "dexReq": 50, "xpb": 10, "lb": 20, "str": 10, "dex": 10, "tDamPct": 36, "eDamPct": 36, "id": 3}, {"name": "Summa", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": -25, "tDef": -25, "lvl": 95, "mr": 5, "xpb": 10, "str": 1, "dex": 4, "agi": 1, "def": 4, "hprRaw": -35, "type": "ring", "id": 5}, {"name": "Helm Splitter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "714-1114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 60, "mdPct": 150, "xpb": 10, "lb": 10, "str": 20, "atkTier": -1, "sdRaw": -2000, "id": 8}, {"name": "Back-up Plan", "displayName": "Back-Up Plan", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 625, "lvl": 70, "defReq": 50, "xpb": 10, "agi": 7, "def": 7, "type": "bracelet", "id": 7}, {"name": "Quick-Strike Leggings", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1525, "lvl": 70, "classReq": "Assassin", "dexReq": 60, "dex": 20, "spd": 14, "atkTier": 1, "eDefPct": -14, "id": 6}, {"name": "Greenhoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "strReq": 10, "agiReq": 5, "mdPct": 15, "str": 7, "spd": 12, "eDamPct": 10, "id": 11}, {"name": "Durum's Serenity", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "wDef": 7, "eDef": 7, "lvl": 25, "strReq": 5, "intReq": 10, "xpb": 10, "str": 5, "int": 7, "spRegen": 12, "type": "necklace", "id": 10}, {"name": "The Scarecrow's Vest", "tier": "Legendary", "type": "chestplate", "thorns": 60, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": -5, "lvl": 20, "ref": 40, "def": 7, "spd": -7, "hpBonus": 58, "id": 13}, {"name": "Kahontsi Ohstyen", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 60, "strReq": 80, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "sdPct": 20, "xpb": 10, "lb": 10, "dex": -15, "expd": 35, "spd": 20, "tDamPct": -100, "id": 9}, {"name": "Onenya Hronkas", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1750, "fDef": 100, "wDef": -60, "aDef": -60, "eDef": 100, "lvl": 60, "strReq": 30, "defReq": 85, "hprPct": 20, "mdPct": 40, "str": 7, "def": 7, "spd": -12, "atkTier": -1, "hprRaw": 70, "id": 15}, {"name": "Ohonte Kerhite", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "intReq": 100, "defReq": 15, "hprPct": 25, "mr": 15, "sdPct": 25, "mdPct": -75, "xpb": 10, "int": 13, "hpBonus": 770, "spRegen": 25, "wDamPct": 45, "id": 12}, {"name": "Blade of Shade", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-55", "fDam": "65-80", "wDam": "0-0", "aDam": "55-90", "tDam": "40-105", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "dexReq": 20, "agiReq": 20, "defReq": 20, "ls": 225, "ms": 10, "xpb": 10, "spd": 20, "hpBonus": -250, "hprRaw": -70, "fDamPct": 20, "aDamPct": 20, "id": 17}, {"name": "Shackle of Shade", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 50, "tDef": 50, "lvl": 70, "dexReq": 10, "defReq": 10, "xpb": 10, "wDefPct": -3, "aDefPct": 9, "eDefPct": -3, "type": "bracelet", "id": 16}, {"name": "Plague Mask", "tier": "Legendary", "type": "helmet", "poison": 400, "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 925, "fDef": 10, "wDef": 10, "aDef": 70, "tDef": 10, "eDef": 70, "lvl": 55, "hprPct": 20, "sdPct": -10, "mdPct": -15, "ls": 95, "xpb": 10, "def": 7, "spd": -15, "id": 20}, {"name": "Plague Staff", "tier": "Fabled", "type": "wand", "majorIds": ["PLAGUE"], "poison": 1800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "intReq": 50, "int": 20, "hprRaw": 100, "id": 21}, {"name": "Shadestep", "tier": "Legendary", "type": "boots", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": -275, "aDef": 100, "tDef": 120, "lvl": 70, "classReq": "Archer", "dexReq": 30, "agiReq": 60, "ls": 175, "ref": 50, "agi": 13, "spd": 30, "hprRaw": -45, "mdRaw": 195, "id": 14}, {"name": "Purification Bead", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 55, "defReq": 20, "hprPct": 10, "def": 5, "spRegen": 5, "hprRaw": 30, "type": "necklace", "id": 18}, {"name": "Anxiolytic", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3880, "fDef": -125, "wDef": 150, "aDef": 150, "tDef": 125, "eDef": -175, "lvl": 101, "strReq": 35, "dexReq": 40, "intReq": 50, "agiReq": 50, "defReq": 35, "mr": 20, "dex": 15, "int": 10, "agi": 12, "spRaw1": 5, "spRaw3": 5, "spRaw4": 5, "sprintReg": 13, "id": 3629}, {"name": "Deadeye", "tier": "Fabled", "type": "bow", "majorIds": ["HAWKEYE"], "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "577-578", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 45, "xpb": 10, "dex": 30, "id": 19}, {"name": "Redrock Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 425, "fDef": 25, "lvl": 40, "defReq": 30, "xpb": 11, "str": 9, "fDamPct": 19, "fDefPct": 19, "id": 23}, {"name": "Sundown Poncho", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 25, "tDef": 30, "lvl": 40, "dexReq": 15, "defReq": 15, "mdPct": 34, "xpb": 11, "dex": 9, "def": 9, "atkTier": -1, "fDamPct": 30, "tDamPct": 30, "wDefPct": -25, "id": 24}, {"name": "Crossbolt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "mdPct": 50, "spd": -5, "sdRaw": -25, "id": 22}, {"name": "Dissociation", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 101, "mr": 10, "mdPct": 60, "str": -35, "int": -20, "def": -35, "hpBonus": 3550, "sdRaw": 231, "aDefPct": 75, "tDefPct": 75, "spRaw3": -5, "id": 3628}, {"name": "Obolus", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 25, "ls": 38, "xpb": 10, "lb": 30, "def": 9, "spRegen": 20, "hprRaw": 42, "id": 25}, {"name": "Haros' Oar", "tier": "Legendary", "type": "wand", "poison": 75, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-18", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 15, "sdPct": 15, "ms": 10, "xpb": 10, "dex": 7, "wDamPct": 11, "id": 28}, {"name": "Stave of the Legends", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-70", "fDam": "10-40", "wDam": "20-30", "aDam": "0-0", "tDam": "5-45", "eDam": "15-35", "atkSpd": "NORMAL", "lvl": 70, "mr": 10, "sdPct": 20, "str": 10, "dex": 10, "int": 10, "def": 10, "fDefPct": 25, "wDefPct": 25, "tDefPct": 25, "eDefPct": 25, "id": 26}, {"name": "Legend Guard's Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 70, "classReq": "Warrior", "strReq": 30, "defReq": 50, "sdPct": -10, "mdPct": 20, "xpb": 15, "str": 7, "def": 10, "spd": -10, "hpBonus": 339, "id": 27}, {"name": "Trainer's Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 70, "hprPct": 20, "sdPct": -7, "mdPct": -7, "xpb": 12, "hprRaw": 20, "type": "necklace", "id": 33}, {"name": "Binding Brace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 25, "lvl": 50, "dexReq": 25, "sdPct": -4, "ms": -5, "xpb": 10, "dex": 7, "spd": 12, "tDamPct": 15, "type": "bracelet", "id": 32}, {"name": "Constrict Collar", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 45, "xpb": 15, "def": 7, "hpBonus": 96, "hprRaw": -10, "type": "necklace", "id": 29}, {"name": "Marius' Prison", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "lvl": 50, "intReq": 45, "ls": 58, "ms": 20, "xpb": 10, "spd": -20, "atkTier": -1, "sdRaw": 80, "mdRaw": 105, "id": 31}, {"name": "Capsid Frame", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 165, "fDef": 60, "lvl": 60, "intReq": 50, "defReq": 40, "hprPct": 30, "mr": 15, "int": 10, "expd": 25, "fDamPct": 30, "wDamPct": 35, "aDefPct": -90, "id": 3553}, {"name": "Shackles of the Beast", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 525, "wDef": -60, "aDef": 50, "tDef": 50, "lvl": 45, "strReq": 10, "defReq": 20, "mr": -5, "sdPct": -10, "mdPct": 25, "str": 7, "def": 7, "expd": 20, "hpBonus": 525, "id": 30}, {"name": "Phage Pins", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -260, "fDef": 75, "eDef": 75, "lvl": 65, "defReq": 60, "mr": 20, "str": 15, "spd": 15, "hprRaw": 108, "fDamPct": 15, "eDamPct": 15, "spPct2": -47, "id": 3555}, {"name": "Bonder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "210-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "hprPct": 30, "mr": 20, "sdPct": -20, "mdPct": -20, "expd": -500, "spRegen": 20, "hprRaw": 200, "id": 37}, {"name": "Crystal Coil", "tier": "Legendary", "type": "chestplate", "poison": 600, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 190, "eDef": 70, "lvl": 60, "strReq": 50, "ms": 10, "def": 15, "spd": -10, "atkTier": -13, "mdRaw": 1100, "eDamPct": 20, "id": 3554}, {"name": "Braker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "405-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "sdPct": -100, "str": 13, "expd": 77, "spd": -20, "hpBonus": -2050, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 34}, {"name": "About-Face", "tier": "Unique", "type": "chestplate", "thorns": 333, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "fDef": 60, "eDef": 60, "lvl": 86, "strReq": 40, "defReq": 40, "sdPct": -55, "mdPct": -55, "ls": 195, "ms": 10, "ref": 333, "str": 10, "def": 10, "hprRaw": 160, "id": 40}, {"name": "Lower", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "350-430", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "str": 10, "spRaw1": 55, "spRaw2": -15, "spRaw3": -15, "spRaw4": -15, "id": 35}, {"name": "Abyssal Walkers", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": 80, "wDef": -100, "aDef": -80, "tDef": 80, "lvl": 71, "dexReq": 25, "defReq": 25, "ls": 100, "dex": 7, "expd": 5, "spRegen": -15, "eDamPct": -8, "id": 46}, {"name": "Slider", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "ms": 15, "dex": -30, "agi": 15, "spd": 40, "eSteal": 5, "sdRaw": 160, "mdRaw": -50, "id": 36}, {"name": "Accelerator", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 3500, "aDef": -150, "tDef": -150, "lvl": 92, "sdPct": -15, "mdPct": -20, "dex": 10, "agi": 10, "spd": 15, "atkTier": 1, "aDamPct": 11, "tDamPct": 11, "id": 74}, {"name": "Absorption", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "40-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "dexReq": 25, "intReq": 15, "mr": 5, "ms": 5, "xpb": 15, "id": 41}, {"name": "Ace of Spades", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-75", "wDam": "0-0", "aDam": "0-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "agiReq": 50, "defReq": 45, "mr": -15, "agi": 13, "def": 10, "spd": 15, "hpBonus": 2700, "fDamPct": 15, "aDamPct": 25, "id": 44}, {"name": "Acid", "tier": "Unique", "poison": 550, "category": "accessory", "drop": "lootchest", "hp": -250, "wDef": -30, "lvl": 99, "def": -2, "type": "ring", "id": 43}, {"name": "Achromatic Gloom", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 98, "sdPct": 14, "mdPct": 14, "str": -4, "dex": -4, "int": -4, "agi": -4, "def": -4, "sdRaw": 85, "mdRaw": 65, "type": "necklace", "id": 42}, {"name": "Acidstream", "tier": "Rare", "type": "bow", "poison": 311, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "31-37", "aDam": "0-0", "tDam": "0-0", "eDam": "12-14", "atkSpd": "SLOW", "lvl": 31, "ms": 5, "wDefPct": -35, "eDefPct": 15, "id": 45}, {"name": "Acrobat", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "80-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 10, "agiReq": 40, "mdPct": 5, "agi": 7, "spd": 10, "aDamPct": 4, "tDamPct": 6, "fDefPct": -12, "id": 48}, {"name": "Adamantite", "tier": "Legendary", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -20, "lvl": 70, "hprPct": 25, "str": 7, "def": 13, "hpBonus": 1350, "fDamPct": -3, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -3, "id": 47}, {"name": "Adanac", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "wDef": 50, "aDef": 50, "tDef": -50, "lvl": 63, "intReq": 30, "agiReq": 30, "mr": 5, "spd": -15, "hprRaw": 48, "wDefPct": 6, "aDefPct": 6, "id": 49}, {"name": "Adder Stone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 375, "wDef": 25, "eDef": 25, "lvl": 80, "strReq": 30, "intReq": 40, "mr": 5, "xpb": 10, "spd": -5, "hprRaw": 80, "tDamPct": -6, "type": "necklace", "id": 50}, {"name": "Adigard's Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -5, "wDef": 15, "lvl": 30, "mr": 5, "xpb": 12, "agi": 5, "spd": 4, "tDefPct": -4, "id": 51}, {"name": "Admiral's Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 170, "wDef": -10, "tDef": -10, "lvl": 21, "defReq": 15, "xpb": 7, "def": 8, "spd": -6, "hprRaw": 7, "id": 52}, {"name": "Ado Saki", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 105, "wDef": 10, "tDef": -8, "lvl": 20, "intReq": 5, "ls": -6, "ms": 5, "xpb": 12, "ref": 3, "id": 72}, {"name": "Abandoned Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "sdPct": 6, "lb": 5, "id": 39}, {"name": "Stinger", "tier": "Legendary", "type": "bow", "poison": 2000, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "1200-1555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "ls": 735, "ms": -5, "expd": 30, "atkTier": -99, "hprRaw": -240, "id": 38}, {"name": "Adrift", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-33", "fDam": "0-0", "wDam": "70-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 63, "intReq": 25, "mdPct": -15, "ref": 30, "spRegen": 30, "wDefPct": 40, "aDefPct": 15, "tDefPct": 15, "id": 53}, {"name": "Adrenaline", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2200, "fDef": -30, "wDef": -30, "aDef": -65, "tDef": -100, "eDef": -65, "lvl": 88, "intReq": 60, "defReq": 60, "sdPct": 17, "mdPct": -25, "ls": -450, "ms": 15, "int": 6, "def": 6, "spd": 13, "sdRaw": 170, "mdRaw": -170, "id": 3589}, {"name": "Aeolipile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-121", "wDam": "110-162", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "intReq": 35, "defReq": 35, "mr": 5, "sdPct": 10, "mdPct": -10, "int": 9, "fDefPct": 20, "wDefPct": 10, "eDefPct": -15, "id": 54}, {"name": "Adventurous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 60, "agiReq": 30, "xpb": 5, "ref": 5, "spd": 8, "type": "bracelet", "id": 56}, {"name": "Aeolian", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-50", "fDam": "0-0", "wDam": "0-0", "aDam": "14-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "agiReq": 10, "str": -3, "agi": 5, "spd": 5, "aDamPct": 4, "id": 57}, {"name": "Aeolus", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": -30, "lvl": 41, "agiReq": 25, "xpb": 15, "def": -7, "spd": 17, "aDamPct": 6, "fDefPct": -15, "id": 55}, {"name": "Aerodynamics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1400, "fDef": -70, "aDef": 70, "tDef": 60, "eDef": -80, "lvl": 73, "dexReq": 35, "agiReq": 50, "mdPct": -10, "agi": 8, "spd": 16, "aDefPct": 12, "tDefPct": 10, "id": 60}, {"name": "Aerokinesis", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-190", "fDam": "0-0", "wDam": "0-0", "aDam": "100-190", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "agiReq": 75, "agi": 5, "sdRaw": 120, "fDamPct": -29, "wDamPct": -29, "aDamPct": 20, "tDamPct": -29, "eDamPct": -29, "id": 59}, {"name": "Aeronaut", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": -10, "aDef": 10, "lvl": 29, "agiReq": 15, "ref": 7, "agi": 5, "spd": 9, "aDamPct": 7, "fDefPct": -12, "id": 62}, {"name": "Aersectra", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "96-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "41-240", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "agiReq": 40, "sdPct": 21, "def": -10, "expd": 20, "hpBonus": -1000, "mdRaw": 115, "fDamPct": -30, "aDamPct": 24, "aDefPct": 20, "id": 64}, {"name": "Aether", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-70", "tDam": "0-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "spd": 15, "aDamPct": 15, "tDamPct": 15, "fDefPct": -15, "eDefPct": -15, "id": 61}, {"name": "Aerosol", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-92", "fDam": "0-0", "wDam": "0-0", "aDam": "50-125", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "agiReq": 40, "agi": 8, "def": -6, "mdRaw": 75, "fDamPct": -60, "aDamPct": 12, "fDefPct": -60, "id": 58}, {"name": "Affrettando", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-15", "fDam": "0-0", "wDam": "0-0", "aDam": "14-31", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 30, "agiReq": 20, "str": -5, "spd": 21, "mdRaw": 20, "aDamPct": 5, "tDamPct": 15, "eDefPct": -30, "id": 63}, {"name": "Agave", "tier": "Rare", "thorns": 10, "category": "accessory", "drop": "lootchest", "hp": -275, "tDef": 30, "eDef": 30, "lvl": 97, "strReq": 35, "dexReq": 35, "atkTier": -3, "sdRaw": 59, "mdRaw": 85, "type": "ring", "id": 3594}, {"name": "Aggression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": 10, "lvl": 44, "strReq": 15, "mdPct": 7, "str": 4, "expd": 5, "type": "bracelet", "id": 67}, {"name": "Afterimage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "40-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 90, "sdPct": 14, "agi": 9, "spd": 22, "atkTier": 1, "aDamPct": 14, "fDefPct": -12, "wDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 65}, {"name": "Agitation", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "24-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "dexReq": 50, "sdPct": 15, "mdPct": 23, "expd": 19, "hprRaw": -60, "tDamPct": 20, "tDefPct": -70, "id": 66}, {"name": "Air Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "45-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 50, "aDamPct": 15, "aDefPct": 15, "id": 69}, {"name": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 68}, {"name": "Air Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "40-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 70, "aDamPct": 15, "aDefPct": 15, "id": 71}, {"name": "Alarm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "7-10", "tDam": "4-13", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 41, "dexReq": 15, "agiReq": 15, "str": -5, "dex": 5, "agi": 5, "mdRaw": 13, "eDamPct": -14, "id": 79}, {"name": "Air Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "20-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 70}, {"name": "Ajax", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 525, "aDef": -30, "eDef": 30, "lvl": 45, "strReq": 25, "mdPct": 15, "str": 13, "agi": -10, "spd": -10, "sdRaw": -40, "mdRaw": 85, "id": 73}, {"name": "Alaxica", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "27-56", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 40, "sdPct": 15, "xpb": 15, "ref": 10, "agi": 8, "spd": 10, "spRegen": 5, "fDamPct": -20, "wDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 76}, {"name": "Albacore", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": 80, "lvl": 97, "intReq": 45, "defReq": 35, "mr": 5, "ref": 8, "int": 5, "def": 5, "sdRaw": 154, "fDamPct": 13, "wDamPct": 13, "eDefPct": -18, "id": 75}, {"name": "Albedo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2800, "fDef": 100, "wDef": 125, "aDef": 150, "tDef": 125, "eDef": 100, "lvl": 85, "agiReq": 60, "ref": 65, "agi": 10, "fDefPct": 21, "wDefPct": 18, "aDefPct": 15, "tDefPct": 18, "eDefPct": 21, "id": 77}, {"name": "Aldo", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-104", "fDam": "0-0", "wDam": "31-45", "aDam": "71-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "xpb": 19, "lb": 19, "int": 5, "agi": 4, "hpBonus": -190, "wDamPct": 10, "id": 78}, {"name": "Albakaya", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "8-12", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "hprPct": 10, "mr": 5, "hpBonus": 40, "fDefPct": 10, "wDefPct": -10, "id": 125}, {"name": "Alice's Sleeve", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 14, "hprPct": 6, "mdPct": -6, "def": 4, "type": "bracelet", "id": 80}, {"name": "Aldorei's Tear", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 50, "aDef": -10, "tDef": -50, "eDef": 50, "lvl": 77, "strReq": 10, "intReq": 10, "ms": 5, "str": 8, "spd": -5, "id": 83}, {"name": "Aldorei's Vision", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "0-0", "wDam": "45-60", "aDam": "0-0", "tDam": "0-0", "eDam": "45-60", "atkSpd": "SLOW", "lvl": 82, "strReq": 25, "intReq": 25, "mr": 5, "str": 7, "int": 7, "spRegen": 5, "mdRaw": 100, "fDamPct": -10, "aDamPct": -10, "tDamPct": -10, "id": 81}, {"name": "Aldorei's Training Bow", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "7-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "hprPct": 7, "mr": 5, "dex": 1, "id": 84}, {"name": "Aliez", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -225, "aDef": 25, "tDef": 25, "lvl": 75, "dexReq": 35, "agiReq": 40, "mdPct": -10, "ms": 5, "mdRaw": 50, "aDamPct": 11, "tDamPct": 9, "type": "ring", "id": 82}, {"name": "Alazarin", "displayName": "Alizarin", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "15-28", "fDam": "17-60", "wDam": "17-60", "aDam": "17-60", "tDam": "17-60", "eDam": "17-60", "atkSpd": "FAST", "lvl": 89, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "xpb": 23, "hpBonus": 1250, "spRegen": 10, "hprRaw": 150, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 87}, {"name": "Alka Cometflinger", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "425-605", "atkSpd": "SLOW", "lvl": 93, "strReq": 80, "mdPct": 31, "str": 13, "expd": 31, "sdRaw": -175, "eDamPct": 31, "wDefPct": -30, "aDefPct": -30, "id": 85}, {"name": "Alkahest", "tier": "Rare", "type": "helmet", "poison": 3500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "lvl": 95, "strReq": 70, "defReq": 30, "hprPct": -20, "mr": -5, "ls": 145, "ms": 5, "atkTier": -18, "eDamPct": 10, "id": 86}, {"name": "Allegro", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": -50, "lvl": 71, "agiReq": 40, "sdPct": -10, "mdPct": 10, "agi": 5, "spd": 18, "fDamPct": -30, "id": 89}, {"name": "Almuj's Daggers", "tier": "Legendary", "type": "dagger", "poison": 45, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-16", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 20, "dexReq": 15, "agiReq": 8, "xpb": 5, "agi": 8, "spd": 20, "eSteal": 5, "id": 102}, {"name": "Alligator", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "wDef": 7, "tDef": -5, "lvl": 16, "strReq": 5, "intReq": 5, "sdPct": 7, "mdPct": 7, "wDamPct": 4, "tDefPct": -6, "id": 91}, {"name": "Almuj's Walker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 200, "lvl": 25, "lb": 15, "dex": 7, "agi": 7, "spd": 25, "eSteal": 8, "id": 90}, {"name": "Alternator", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 250, "wDef": -10, "tDef": 5, "eDef": -5, "lvl": 32, "dexReq": 20, "mr": -15, "sdPct": 19, "ms": 10, "lb": 7, "mdRaw": 52, "wDamPct": -15, "tDamPct": 11, "id": 94}, {"name": "Aloof", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "spd": -3, "hpBonus": 6, "id": 95}, {"name": "Amadeus", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "160-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 50, "defReq": 30, "mr": 15, "sdPct": 15, "ls": -220, "def": 15, "spd": -15, "fDamPct": 20, "wDefPct": 15, "id": 97}, {"name": "Alumia", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "tDef": 10, "eDef": -5, "lvl": 24, "dexReq": 8, "sdPct": 8, "ref": 6, "spRegen": 4, "tDamPct": 10, "eDamPct": -10, "id": 93}, {"name": "Altimeter", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "28-32", "tDam": "0-0", "eDam": "25-30", "atkSpd": "VERY_FAST", "lvl": 59, "strReq": 25, "agiReq": 27, "sdPct": -8, "mdPct": 12, "spd": 15, "mdRaw": 34, "tDefPct": -10, "id": 92}, {"name": "Amethyst Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "lvl": 36, "intReq": 5, "defReq": 10, "int": 3, "hprRaw": 10, "type": "ring", "id": 98}, {"name": "Amiscia", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 155, "tDef": 10, "eDef": -10, "lvl": 29, "dexReq": 15, "sdPct": 6, "ls": 13, "dex": 5, "tDamPct": 6, "id": 115}, {"name": "Amulet of the Necromancer", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -5, "lvl": 18, "hprPct": -7, "mr": -5, "ls": 3, "ms": 5, "type": "necklace", "id": 101}, {"name": "Amplitude", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "tDef": 75, "eDef": -75, "lvl": 61, "dexReq": 50, "mdPct": 10, "str": -5, "dex": 7, "tDamPct": 10, "eDamPct": -10, "tDefPct": 10, "eDefPct": -10, "id": 100}, {"name": "Anarchy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "sdRaw": 30, "mdRaw": 26, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 108}, {"name": "Anamnesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": -1600, "wDef": 200, "lvl": 82, "intReq": 100, "mr": 20, "mdPct": -55, "ref": 20, "int": 29, "spRegen": 20, "wDamPct": 55, "id": 103}, {"name": "Anchor Chain", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "20-100", "atkSpd": "VERY_SLOW", "lvl": 35, "strReq": 15, "intReq": 15, "mdPct": 11, "str": 10, "spd": -15, "wDamPct": 12, "eDamPct": 12, "aDefPct": -19, "id": 104}, {"name": "Anchoryl", "tier": "Legendary", "type": "boots", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 50, "lvl": 52, "defReq": 25, "hprPct": 23, "ref": 11, "spd": -15, "hpBonus": 250, "hprRaw": 50, "id": 106}, {"name": "Ancient Battle Crossbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "VERY_SLOW", "lvl": 23, "strReq": 45, "mdPct": 23, "xpb": 10, "lb": 12, "str": 15, "dex": 8, "spd": -10, "id": 107}, {"name": "Ancient Scout Shoes", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 10, "lb": 5, "agi": 4, "spd": 7, "id": 105}, {"name": "Ancient Wand", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 109}, {"name": "Aneroid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "aDef": -5, "eDef": 10, "lvl": 23, "strReq": 7, "sdPct": -6, "mdPct": 10, "str": 5, "int": -2, "id": 111}, {"name": "Aneurysm", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": -30, "lvl": 64, "strReq": 20, "dexReq": 45, "hprPct": -15, "mdPct": 10, "ls": -150, "sdRaw": 40, "mdRaw": 100, "wDamPct": -15, "eDamPct": 10, "id": 112}, {"name": "Andante", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "201-201", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 25, "mdPct": 15, "str": 4, "spd": -15, "eDamPct": 10, "eDefPct": 8, "id": 110}, {"name": "Andesite Aegis", "tier": "Legendary", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 110, "wDef": -50, "aDef": -50, "tDef": 100, "eDef": 110, "lvl": 77, "strReq": 30, "defReq": 30, "str": 8, "def": 8, "spd": -10, "hprRaw": 80, "fDefPct": 15, "tDefPct": 10, "eDefPct": 15, "id": 119}, {"name": "Ambiguity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -180, "fDef": 40, "wDef": -50, "aDef": 40, "lvl": 92, "agiReq": 45, "defReq": 45, "hprPct": 10, "agi": 5, "spd": 5, "hpBonus": 600, "hprRaw": 70, "type": "necklace", "id": 96}, {"name": "Animosity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "60-80", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "dexReq": 40, "agiReq": 40, "sdPct": 16, "dex": 8, "agi": 8, "def": -8, "spd": 10, "fDefPct": -26, "wDefPct": -14, "eDefPct": -14, "id": 118}, {"name": "Anger Point", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -80, "wDef": -80, "aDef": -80, "tDef": -80, "lvl": 68, "strReq": 40, "sdPct": 5, "mdPct": 15, "str": 7, "def": -7, "sdRaw": 30, "mdRaw": 145, "eDamPct": 15, "eDefPct": -15, "id": 113}, {"name": "Angel Robe", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1450, "fDef": -60, "aDef": 80, "tDef": 20, "eDef": -20, "lvl": 78, "agiReq": 40, "xpb": 5, "ref": 5, "agi": 7, "spd": 15, "aDefPct": 10, "id": 114}, {"name": "Anno", "tier": "Rare", "poison": 110, "category": "accessory", "drop": "lootchest", "hp": 40, "lvl": 39, "dexReq": 10, "defReq": 10, "hprRaw": 8, "type": "ring", "id": 116}, {"name": "Anokumeme", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-62", "aDam": "32-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "intReq": 40, "agiReq": 25, "mdPct": -12, "spRegen": 10, "wDamPct": 8, "aDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 117}, {"name": "Anthracite Ballista", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "545-675", "wDam": "0-0", "aDam": "545-675", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 98, "agiReq": 40, "defReq": 40, "sdPct": -20, "mdPct": 15, "ls": 500, "expd": 30, "hpBonus": 2000, "mdRaw": 560, "fDefPct": 20, "aDefPct": 20, "id": 122}, {"name": "Amanuensis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "wDef": -60, "lvl": 87, "intReq": 65, "sdPct": 4, "int": 13, "wDamPct": -7, "type": "necklace", "id": 3580}, {"name": "Antimony", "tier": "Rare", "type": "leggings", "poison": 465, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 975, "fDef": 75, "wDef": -80, "lvl": 59, "strReq": 25, "defReq": 10, "mr": -5, "str": 5, "def": 4, "expd": 10, "spd": -5, "fDefPct": 10, "wDefPct": -12, "id": 120}, {"name": "Aluminium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "hprPct": 5, "type": "ring", "id": 99}, {"name": "Antithesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 60, "wDef": 40, "tDef": -120, "lvl": 78, "intReq": 30, "defReq": 35, "hprPct": -27, "sdPct": 16, "hprRaw": -95, "fDamPct": 19, "wDamPct": 13, "tDamPct": -28, "id": 124}, {"name": "Apology", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "266-270", "fDam": "0-0", "wDam": "266-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "intReq": 42, "mr": 10, "mdPct": -10, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 123}, {"name": "Antim", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 99, "hprRaw": 45, "sdRaw": 21, "mdRaw": 23, "type": "necklace", "id": 121}, {"name": "Backburner", "displayName": "Anvil Crawler", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1700", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "dexReq": 50, "sdPct": -20, "dex": 15, "expd": 30, "spd": -20, "atkTier": -10, "mdRaw": 575, "tDamPct": 15, "aDefPct": -30, "id": 129}, {"name": "Antipode", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-35", "fDam": "30-45", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 10, "int": 9, "def": 9, "expd": 10, "fDamPct": 10, "wDamPct": -10, "fDefPct": -10, "wDefPct": 10, "id": 128}, {"name": "Aquamarine", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 60, "eDef": 60, "lvl": 100, "strReq": 40, "intReq": 40, "mr": 10, "ref": 18, "str": 7, "int": 7, "eSteal": 6, "hprRaw": 150, "sdRaw": 105, "mdRaw": 105, "fDamPct": -25, "id": 135}, {"name": "Arakadicus' Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-130", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 66, "strReq": 20, "dexReq": 20, "sdPct": -10, "mdPct": 20, "str": 12, "dex": 12, "aDamPct": -30, "wDefPct": -10, "aDefPct": -30, "id": 130}, {"name": "Arakadicus' Leg", "tier": "Unique", "type": "wand", "poison": 465, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "30-45", "atkSpd": "SLOW", "lvl": 67, "strReq": 15, "dexReq": 15, "sdPct": -10, "mdPct": 10, "xpb": 10, "aDamPct": -50, "tDamPct": 15, "aDefPct": -50, "id": 134}, {"name": "Arakadicus' Maw", "tier": "Rare", "type": "dagger", "poison": 1350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 98, "strReq": 55, "ms": 10, "str": 12, "mdRaw": 220, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "id": 127}, {"name": "Arbalest", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "210-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "230-250", "atkSpd": "SLOW", "lvl": 87, "strReq": 55, "mdPct": -30, "dex": -12, "expd": 40, "sdRaw": 200, "wDamPct": -20, "eDamPct": 25, "spPct4": -45, "id": 131}, {"name": "Aratera", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 80, "wDef": -40, "aDef": -80, "eDef": 40, "lvl": 70, "strReq": 30, "defReq": 40, "str": 12, "expd": 11, "sdRaw": -125, "fDamPct": 20, "eDamPct": 20, "wDefPct": -20, "id": 132}, {"name": "Arc Bracer", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "wDef": -20, "tDef": 50, "eDef": -40, "lvl": 95, "dexReq": 40, "dex": 5, "tDamPct": 7, "type": "bracelet", "id": 136}, {"name": "Arc Rifle", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-240", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 55, "sdPct": 12, "mdPct": 12, "xpb": 8, "dex": 10, "hpBonus": -1550, "tDamPct": 20, "eDefPct": -30, "id": 137}, {"name": "Arcane Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 40, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 15, "mr": 5, "sdPct": 4, "mdPct": -7, "id": 139}, {"name": "Arcane Grieves", "displayName": "Arcane Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "wDef": 3, "lvl": 10, "mr": 5, "int": 3, "id": 138}, {"name": "Archaic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 40, "wDef": -30, "aDef": 20, "lvl": 83, "agiReq": 20, "defReq": 30, "sdPct": -8, "mdPct": -6, "agi": 4, "def": 5, "hprRaw": 50, "type": "ring", "id": 140}, {"name": "Aries", "tier": "Legendary", "type": "helmet", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "lvl": 92, "strReq": 55, "agiReq": 55, "mdPct": 25, "ls": 240, "ms": 5, "agi": 10, "spd": 25, "sdRaw": 175, "wDamPct": -20, "id": 143}, {"name": "Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "11-13", "aDam": "11-13", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 11, "int": 5, "agi": 5, "spRegen": 4, "mdRaw": -21, "tDamPct": -10, "tDefPct": 7, "id": 154}, {"name": "Arcus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 40, "tDef": 40, "eDef": -90, "lvl": 63, "dexReq": 35, "intReq": 35, "ms": 10, "sdRaw": 100, "eDamPct": -12, "eDefPct": -12, "id": 141}, {"name": "Ardiente", "tier": "Unique", "type": "leggings", "poison": 500, "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": -80, "wDef": -120, "lvl": 93, "defReq": 60, "hprPct": -20, "sdPct": 10, "def": 7, "spd": 9, "fDamPct": 27, "wDamPct": -40, "wDefPct": -40, "id": 142}, {"name": "Arkhalis", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "122-182", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 60, "ms": 5, "str": -15, "dex": 15, "spd": 15, "atkTier": -1, "hpBonus": -1350, "mdRaw": 310, "tDamPct": 15, "eDefPct": -30, "id": 145}, {"name": "Ariodo's Dial", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -40, "lvl": 63, "dexReq": 10, "intReq": 5, "sdPct": 5, "int": 3, "tDamPct": 7, "type": "bracelet", "id": 144}, {"name": "Arma Gauntlet", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "106-150", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 75, "strReq": 25, "defReq": 25, "sdPct": -20, "mdPct": 25, "str": 8, "def": 10, "expd": 10, "spd": -12, "hpBonus": 1600, "hprRaw": 80, "sdRaw": -75, "id": 146}, {"name": "Armageddon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 10, "dexReq": 20, "sdPct": 6, "str": 9, "dex": 9, "eDamPct": 15, "id": 147}, {"name": "Artifice", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "mdPct": 6, "ms": 5, "spd": 5, "tDamPct": 8, "eDefPct": -9, "id": 149}, {"name": "Ashes Anew", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "90-110", "wDam": "0-0", "aDam": "90-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "agiReq": 25, "defReq": 30, "mr": 5, "sdPct": -10, "mdPct": -15, "hprRaw": 80, "wDamPct": 50, "id": 150}, {"name": "Asbestos", "tier": "Unique", "poison": 385, "category": "accessory", "drop": "lootchest", "hp": -375, "lvl": 80, "hprPct": -14, "ls": 65, "type": "necklace", "id": 148}, {"name": "Asher's Relic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 17, "mr": 5, "ls": -10, "ms": -10, "spd": 6, "spRegen": -6, "hprRaw": 4, "type": "bracelet", "id": 151}, {"name": "Asphalt", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "87-88", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 32, "defReq": 32, "ls": 200, "int": -5, "agi": -5, "spd": 15, "mdRaw": 115, "wDefPct": -20, "aDefPct": -20, "id": 152}, {"name": "Asphyxia", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -200, "tDef": 150, "lvl": 90, "dexReq": 75, "dex": 15, "agi": -13, "spd": -15, "sdRaw": 200, "mdRaw": 155, "aDamPct": -50, "tDamPct": 30, "id": 155}, {"name": "Assassin's Hood", "tier": "Unique", "type": "helmet", "poison": 110, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 315, "eDef": -10, "lvl": 41, "dex": 4, "eSteal": 5, "tDamPct": 5, "id": 153}, {"name": "Astigmatism", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 48, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "hprPct": -15, "mr": -5, "sdPct": 18, "mdPct": 18, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "id": 156}, {"name": "Assurance", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "30-38", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-38", "atkSpd": "SLOW", "lvl": 53, "strReq": 15, "defReq": 15, "mdPct": 10, "spd": -10, "hpBonus": 200, "fDamPct": 10, "wDamPct": -15, "eDamPct": 10, "id": 158}, {"name": "Asterisk", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "11-15", "tDam": "11-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "dexReq": 20, "agiReq": 20, "sdPct": 13, "str": -4, "def": -4, "spd": 8, "id": 157}, {"name": "Asymptote", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": -100, "tDef": 60, "eDef": 60, "lvl": 66, "strReq": 25, "dexReq": 25, "hprPct": -10, "mdPct": 10, "ls": 115, "ms": 5, "xpb": -10, "lb": 10, "hprRaw": -55, "id": 161}, {"name": "Astral Walkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 70, "wDef": -65, "tDef": 70, "eDef": -75, "lvl": 66, "dexReq": 25, "defReq": 45, "ref": 14, "dex": 5, "hprRaw": 60, "eDamPct": -15, "fDefPct": 12, "id": 159}, {"name": "Atheist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 110, "eDef": 15, "lvl": 19, "strReq": 15, "str": 7, "fDamPct": -5, "tDamPct": -5, "eDamPct": 8, "wDefPct": -5, "aDefPct": -5, "eDefPct": 8, "id": 162}, {"name": "Ataraxy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 25, "eDef": 25, "lvl": 93, "strReq": 30, "intReq": 30, "sdPct": 6, "ms": 5, "atkTier": -2, "type": "ring", "spPct3": 7, "id": 3607}, {"name": "Atlas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 94, "ls": 140, "ms": 5, "atkTier": -8, "type": "bracelet", "id": 167}, {"name": "Atoll", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 80, "wDef": 80, "tDef": -70, "eDef": -70, "lvl": 66, "intReq": 30, "defReq": 30, "sdPct": 6, "def": 4, "hprRaw": 60, "eDamPct": -18, "fDefPct": 13, "wDefPct": 14, "id": 160}, {"name": "Atroce", "tier": "Unique", "type": "chestplate", "poison": 240, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "aDef": -60, "tDef": 60, "eDef": 60, "lvl": 63, "strReq": 45, "dexReq": 45, "ref": 15, "str": 10, "dex": 10, "expd": 20, "id": 166}, {"name": "Audacity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "lvl": 9, "xpb": 10, "sdRaw": 15, "mdRaw": 13, "id": 165}, {"name": "Aura of Element", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "xpb": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 168}, {"name": "Auric", "tier": "Rare", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 80, "ls": 70, "ref": 9, "hprRaw": 60, "sdRaw": -55, "mdRaw": -60, "type": "bracelet", "id": 163}, {"name": "Australis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "34-40", "wDam": "34-40", "aDam": "34-40", "tDam": "34-40", "eDam": "34-40", "atkSpd": "FAST", "lvl": 72, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": -12, "mdPct": -12, "xpb": 12, "ref": 24, "hpBonus": 600, "spRegen": 24, "id": 171}, {"name": "Autumn Tree", "tier": "Unique", "type": "wand", "poison": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-7", "atkSpd": "SLOW", "lvl": 14, "str": 7, "id": 170}, {"name": "Aurora", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 94, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "ring", "id": 164}, {"name": "Autotomized", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 73, "agiReq": 35, "xpb": -3, "str": -3, "agi": 7, "def": -3, "spd": 12, "type": "necklace", "id": 173}, {"name": "Average Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 73, "lvl": 23, "id": 172}, {"name": "Average Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 71, "lvl": 21, "id": 177}, {"name": "Average Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 112, "lvl": 27, "id": 174}, {"name": "Awakening", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "45-72", "wDam": "45-72", "aDam": "45-72", "tDam": "45-72", "eDam": "45-72", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "id": 175}, {"name": "Average Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 86, "lvl": 25, "id": 176}, {"name": "Avocado", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-29", "aDam": "0-0", "tDam": "0-0", "eDam": "25-29", "atkSpd": "NORMAL", "lvl": 29, "strReq": 10, "intReq": 10, "str": 7, "int": 7, "hpBonus": 65, "hprRaw": 20, "id": 269}, {"name": "Azar", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "lb": 4, "type": "bracelet", "id": 180}, {"name": "Azimuth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-80", "tDam": "0-0", "eDam": "20-60", "atkSpd": "FAST", "lvl": 66, "strReq": 40, "agiReq": 45, "sdPct": -9, "mdPct": 9, "str": 7, "agi": 8, "spd": 17, "wDamPct": -20, "aDamPct": 15, "eDamPct": 12, "wDefPct": -15, "id": 178}, {"name": "Azotar", "tier": "Rare", "type": "relik", "poison": 250, "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "65-75", "fDam": "50-60", "wDam": "50-60", "aDam": "50-60", "tDam": "50-60", "eDam": "50-60", "atkSpd": "SLOW", "lvl": 64, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "ls": 140, "ms": 10, "hprRaw": -200, "fixID": true, "spRaw4": -5, "id": 181}, {"name": "Awesome Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 1, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 179}, {"name": "Azure Halo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "wDef": 150, "aDef": 150, "lvl": 91, "intReq": 60, "agiReq": 30, "hprPct": 10, "mr": 10, "xpb": 10, "ref": 23, "def": 8, "spRegen": 30, "hprRaw": 170, "tDamPct": -10, "eDamPct": -10, "fDefPct": 20, "sprintReg": 10, "id": 182}, {"name": "Ba'al's Betrayal", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -45, "lvl": 30, "ls": 23, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 185}, {"name": "Azurite", "tier": "Unique", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2675, "wDef": 90, "eDef": 80, "lvl": 92, "strReq": 35, "intReq": 35, "sdPct": 27, "mdPct": 20, "str": 7, "int": 9, "eSteal": 6, "mdRaw": 175, "tDamPct": -25, "id": 184}, {"name": "Babbling Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "36-53", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -12, "ref": 13, "int": 7, "spd": 5, "sdRaw": 30, "fDamPct": -30, "id": 183}, {"name": "Back Protector", "tier": "Unique", "type": "leggings", "thorns": 2, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 130, "wDef": -6, "lvl": 24, "strReq": 5, "def": 5, "id": 186}, {"name": "Babylon's Scale", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "10-400", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "agiReq": 65, "agi": 13, "def": -10, "expd": -13, "spd": 13, "fDamPct": -19, "aDamPct": 19, "fDefPct": -16, "aDefPct": 16, "id": 187}, {"name": "Bakteri", "tier": "Rare", "type": "boots", "poison": 680, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": -50, "wDef": -70, "aDef": -50, "tDef": 65, "eDef": 90, "lvl": 77, "strReq": 50, "dexReq": 50, "ls": 140, "atkTier": -1, "hprRaw": -120, "wDamPct": -30, "tDamPct": 45, "eDamPct": 30, "id": 191}, {"name": "Backfire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "126-149", "fDam": "149-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "137-171", "atkSpd": "SUPER_SLOW", "lvl": 69, "strReq": 30, "defReq": 30, "mdPct": 8, "ls": -105, "ms": -5, "str": 5, "expd": 14, "id": 189}, {"name": "Backlash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-185", "eDam": "85-85", "atkSpd": "SLOW", "lvl": 77, "strReq": 20, "dexReq": 35, "mdPct": 12, "ls": 180, "str": 5, "dex": 5, "hpBonus": -500, "hprRaw": -90, "id": 207}, {"name": "Bad Wolf", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1350, "aDef": -100, "tDef": 70, "lvl": 60, "dexReq": 35, "mdPct": 15, "xpb": 32, "dex": 8, "spd": 7, "mdRaw": 65, "tDamPct": 15, "id": 188}, {"name": "Ballad", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 20, "wDef": 20, "lvl": 50, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "mdPct": -10, "spRegen": 15, "id": 192}, {"name": "Balankia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 380, "lvl": 39, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 193}, {"name": "Ballista", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "125-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-150", "atkSpd": "VERY_SLOW", "lvl": 55, "strReq": 30, "mdPct": 10, "dex": -2, "def": 5, "expd": 10, "spd": -10, "id": 190}, {"name": "Balloon's Bane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "200-320", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 55, "sdPct": -15, "ls": 115, "def": 5, "expd": 15, "fDamPct": 9, "fDefPct": 15, "aDefPct": 9, "id": 194}, {"name": "Bantisu's Approach", "tier": "Unique", "type": "leggings", "sprint": 10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2500, "fDef": 10, "wDef": 10, "aDef": 80, "tDef": 10, "eDef": 10, "lvl": 86, "mr": 5, "ms": 5, "xpb": 25, "lb": 15, "str": 1, "dex": 1, "int": 1, "agi": 8, "def": 1, "spd": 10, "aDefPct": 20, "sprintReg": 10, "id": 197}, {"name": "Balm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 630, "aDef": 30, "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 10, "xpb": 6, "str": -4, "agi": 4, "spd": 6, "hprRaw": 20, "id": 195}, {"name": "Barbarian", "tier": "Unique", "type": "leggings", "sprint": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": 80, "eDef": 70, "lvl": 92, "strReq": 40, "agiReq": 30, "sdPct": -15, "mdPct": 12, "def": 9, "spd": 9, "mdRaw": 300, "tDamPct": -10, "id": 198}, {"name": "Bamboo Cuff", "tier": "Unique", "poison": 125, "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 15, "dexReq": 15, "mdRaw": 26, "tDamPct": 4, "eDamPct": 4, "fDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 196}, {"name": "Bard's Song", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "23-69", "aDam": "23-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "intReq": 45, "agiReq": 35, "sdPct": -7, "mdPct": -11, "xpb": 12, "ref": 12, "spRegen": 12, "wDamPct": 19, "aDamPct": 19, "id": 203}, {"name": "Barbed Spear", "tier": "Unique", "type": "spear", "poison": 120, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "65-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "strReq": 10, "hprPct": -10, "sdPct": -7, "id": 199}, {"name": "Barrage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 28, "dexReq": 10, "dex": 4, "tDamPct": 5, "type": "ring", "id": 201}, {"name": "Bardiche", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-170", "fDam": "0-0", "wDam": "70-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 35, "agiReq": 40, "hprPct": 25, "ref": 15, "agi": 12, "spd": 14, "spRegen": 10, "aDamPct": 18, "eDamPct": -20, "wDefPct": 23, "id": 200}, {"name": "Basaltic Schynbalds", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "wDef": 40, "eDef": 40, "lvl": 50, "strReq": 20, "intReq": 20, "hprPct": 12, "spd": -8, "wDefPct": 10, "eDefPct": 10, "id": 208}, {"name": "Andesite-hewn Bow", "displayName": "Andesite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 202}, {"name": "Andesite-hewn Relik", "displayName": "Andesite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 204}, {"name": "Andesite-hewn Shears", "displayName": "Andesite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "id": 205}, {"name": "Standard Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 445, "lvl": 50, "id": 211}, {"name": "Andesite-hewn Stick", "displayName": "Andesite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 206}, {"name": "Andesite-hewn Spear", "displayName": "Andesite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 209}, {"name": "Unfinished Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 265, "lvl": 41, "id": 210}, {"name": "Standard Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "lvl": 51, "id": 212}, {"name": "Standard Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "lvl": 52, "id": 213}, {"name": "Refined Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 560, "lvl": 54, "id": 214}, {"name": "Refined Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 590, "lvl": 55, "id": 218}, {"name": "Refined Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 530, "lvl": 53, "id": 215}, {"name": "Refined Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 56, "id": 216}, {"name": "High-Quality Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 58, "id": 220}, {"name": "High-Quality Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 735, "lvl": 59, "id": 222}, {"name": "Unfinished Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 43, "id": 223}, {"name": "Unfinished Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 285, "lvl": 42, "id": 219}, {"name": "Unfinished Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 320, "lvl": 44, "id": 225}, {"name": "Flawed Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 355, "lvl": 46, "id": 224}, {"name": "Flawed Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "lvl": 47, "id": 227}, {"name": "Flawed Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "lvl": 45, "id": 226}, {"name": "Standard Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 420, "lvl": 49, "id": 229}, {"name": "Flawed Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 400, "lvl": 48, "id": 228}, {"name": "Dim Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1540, "lvl": 81, "id": 230}, {"name": "Cloudy Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1985, "lvl": 90, "id": 233}, {"name": "Cloudy Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2040, "lvl": 91, "id": 240}, {"name": "Cloudy Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "lvl": 92, "id": 232}, {"name": "Clear Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2215, "lvl": 94, "id": 231}, {"name": "High-Quality Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 57, "id": 217}, {"name": "Clear Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2155, "lvl": 93, "id": 234}, {"name": "Clear Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2335, "lvl": 96, "id": 235}, {"name": "Clear Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2270, "lvl": 95, "id": 236}, {"name": "Brilliant Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2400, "lvl": 97, "id": 237}, {"name": "High-Quality Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "lvl": 60, "id": 221}, {"name": "Brilliant Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2460, "lvl": 98, "id": 238}, {"name": "Brilliant Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2530, "lvl": 99, "id": 242}, {"name": "Brilliant Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2600, "lvl": 100, "id": 244}, {"name": "Dim Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1630, "lvl": 83, "id": 243}, {"name": "Dim Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1680, "lvl": 84, "id": 248}, {"name": "Smoky Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1725, "lvl": 85, "id": 241}, {"name": "Dim Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1585, "lvl": 82, "id": 239}, {"name": "Smoky Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "lvl": 86, "id": 246}, {"name": "Smoky Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1830, "lvl": 87, "id": 253}, {"name": "Smoky Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1880, "lvl": 88, "id": 251}, {"name": "Diorite-hewn Bow", "displayName": "Diorite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 249}, {"name": "Diorite-hewn Shears", "displayName": "Diorite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "id": 252}, {"name": "Diorite-hewn Relik", "displayName": "Diorite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 247}, {"name": "Cloudy Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1935, "lvl": 89, "id": 245}, {"name": "Aged Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 71, "lvl": 21, "id": 256}, {"name": "Diorite-hewn Stick", "displayName": "Diorite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 255}, {"name": "Used Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 127, "lvl": 30, "id": 254}, {"name": "Used Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 148, "lvl": 32, "id": 266}, {"name": "Used Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 137, "lvl": 31, "id": 261}, {"name": "New Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 158, "lvl": 33, "id": 257}, {"name": "Diorite-hewn Spear", "displayName": "Diorite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 250}, {"name": "New Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 168, "lvl": 34, "id": 258}, {"name": "New Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 178, "lvl": 35, "id": 259}, {"name": "Shining Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 206, "lvl": 37, "id": 262}, {"name": "New Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 192, "lvl": 36, "id": 260}, {"name": "Aged Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 78, "lvl": 22, "id": 264}, {"name": "Shining Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 233, "lvl": 39, "id": 263}, {"name": "Aged Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 86, "lvl": 24, "id": 267}, {"name": "Shining Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "lvl": 38, "id": 265}, {"name": "Aged Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "lvl": 23, "id": 268}, {"name": "Shining Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 247, "lvl": 40, "id": 270}, {"name": "Worn Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 92, "lvl": 25, "id": 271}, {"name": "Worn Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 26, "id": 272}, {"name": "Worn Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 109, "lvl": 27, "id": 274}, {"name": "Worn Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 111, "lvl": 28, "id": 273}, {"name": "Granite-hewn Bow", "displayName": "Granite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "68-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 276}, {"name": "Granite-hewn Shears", "displayName": "Granite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "id": 279}, {"name": "Granite-hewn Relik", "displayName": "Granite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 277}, {"name": "Granite-hewn Spear", "displayName": "Granite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 278}, {"name": "Granite-hewn Stick", "displayName": "Granite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 281}, {"name": "Cracked Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "lvl": 61, "id": 282}, {"name": "Used Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 119, "lvl": 29, "id": 275}, {"name": "Plated Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1090, "lvl": 70, "id": 280}, {"name": "Plated Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "lvl": 71, "id": 283}, {"name": "Plated Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1165, "lvl": 72, "id": 285}, {"name": "Solid Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1205, "lvl": 73, "id": 284}, {"name": "Solid Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1280, "lvl": 75, "id": 286}, {"name": "Solid Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1320, "lvl": 76, "id": 288}, {"name": "Solid Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1240, "lvl": 74, "id": 287}, {"name": "Reinforced Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1405, "lvl": 78, "id": 289}, {"name": "Reinforced Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "lvl": 79, "id": 290}, {"name": "Reinforced Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1365, "lvl": 77, "id": 291}, {"name": "Reinforced Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1490, "lvl": 80, "id": 296}, {"name": "Cracked Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 860, "lvl": 63, "id": 293}, {"name": "Cracked Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "lvl": 62, "id": 292}, {"name": "Cracked Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 890, "lvl": 64, "id": 294}, {"name": "Thin Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 955, "lvl": 66, "id": 295}, {"name": "Thin Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "lvl": 65, "id": 299}, {"name": "Plated Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1055, "lvl": 69, "id": 297}, {"name": "Thin Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 990, "lvl": 67, "id": 300}, {"name": "Thin Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "lvl": 68, "id": 298}, {"name": "Padded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 26, "lvl": 10, "id": 305}, {"name": "Padded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 11, "id": 301}, {"name": "Plain Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3, "lvl": 1, "id": 302}, {"name": "Hard Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 36, "lvl": 13, "id": 304}, {"name": "Padded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 12, "id": 303}, {"name": "Hard Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 40, "lvl": 14, "id": 308}, {"name": "Hard Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 49, "lvl": 16, "id": 309}, {"name": "Studded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 54, "lvl": 17, "id": 306}, {"name": "Hard Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 44, "lvl": 15, "id": 307}, {"name": "Studded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 55, "lvl": 18, "id": 317}, {"name": "Plain Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 2, "id": 311}, {"name": "Studded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 19, "id": 310}, {"name": "Studded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 65, "lvl": 20, "id": 314}, {"name": "Plain Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 7, "lvl": 3, "id": 312}, {"name": "Tanned Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 14, "lvl": 6, "id": 316}, {"name": "Plain Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 9, "lvl": 4, "id": 313}, {"name": "Tanned Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 17, "lvl": 7, "id": 319}, {"name": "Tanned Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 8, "id": 318}, {"name": "Tanned Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 11, "lvl": 5, "id": 315}, {"name": "Padded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 23, "lvl": 9, "id": 321}, {"name": "Light Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 320}, {"name": "Light Birch Wood Shears", "displayName": "Light Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "id": 324}, {"name": "Light Birch Wood Stick", "displayName": "Light Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 329}, {"name": "Light Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 326}, {"name": "Light Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 322}, {"name": "Light Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 323}, {"name": "Light Jungle Wood Stick", "displayName": "Light Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 325}, {"name": "Light Jungle Wood Shears", "displayName": "Light Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 25, "id": 327}, {"name": "Light Oak Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 332}, {"name": "Light Oak Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 328}, {"name": "Light Oak Wood Shears", "displayName": "Light Oak Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "id": 331}, {"name": "Light Oak Wood Stick", "displayName": "Light Oak Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 330}, {"name": "Light Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 336}, {"name": "Light Spruce Wood Shears", "displayName": "Light Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "id": 333}, {"name": "Stone-hewn Bow", "displayName": "Stone-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "17-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 337}, {"name": "Light Spruce Wood Stick", "displayName": "Light Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 335}, {"name": "Stone-hewn Relik", "displayName": "Stone-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 339}, {"name": "Stone-hewn Shears", "displayName": "Stone-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "id": 365}, {"name": "Light Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 334}, {"name": "Stone-hewn Spear", "displayName": "Stone-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 343}, {"name": "Stone-hewn Stick", "displayName": "Stone-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 340}, {"name": "Battle Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "wDef": 60, "tDef": -30, "lvl": 50, "intReq": 35, "sdPct": 10, "mdPct": 5, "str": 4, "int": 4, "sdRaw": 45, "wDamPct": 15, "id": 344}, {"name": "Battleground Dancer", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 50, "agiReq": 60, "sdPct": -25, "mdPct": -8, "str": 6, "agi": 6, "spd": 16, "atkTier": 1, "mdRaw": 135, "id": 342}, {"name": "Bear Opener", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 47, "strReq": 35, "hprPct": -15, "sdPct": -12, "ls": 55, "xpb": 12, "str": 5, "expd": 8, "id": 346}, {"name": "Bastille", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 98, "defReq": 50, "sdPct": -5, "mdPct": -5, "ms": 10, "dex": 13, "spd": -10, "fDamPct": 17, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 338}, {"name": "Bedrock Eater", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 12, "ls": 3, "ms": 5, "id": 348}, {"name": "Bear Pelt", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 57, "lvl": 13, "sdPct": -6, "str": 4, "spd": -3, "hpBonus": 10, "mdRaw": 17, "id": 345}, {"name": "Bedruthan", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-170", "atkSpd": "NORMAL", "lvl": 92, "strReq": 45, "intReq": 55, "mr": 5, "sdPct": 12, "mdPct": 12, "ms": 5, "str": 9, "int": 9, "wDamPct": 30, "tDefPct": -25, "id": 349}, {"name": "Beauty", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "xpb": 4, "type": "necklace", "id": 347}, {"name": "Behemoth", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "110-610", "eDam": "375-535", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 40, "dexReq": 35, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 25, "spd": -20, "tDamPct": 15, "eDamPct": 15, "id": 350}, {"name": "Bejeweled Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 17, "lb": 5, "type": "bracelet", "id": 353}, {"name": "Belcon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-105", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 92, "strReq": 30, "intReq": 40, "sdPct": 8, "mdPct": 8, "str": 8, "spRegen": 30, "eDamPct": 20, "aDefPct": -30, "tDefPct": -30, "id": 354}, {"name": "Bete Noire", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2150, "tDef": 100, "eDef": 100, "lvl": 80, "strReq": 80, "dexReq": 80, "sdPct": 30, "ms": 10, "str": 20, "dex": 20, "atkTier": -7, "spRegen": -150, "hprRaw": -155, "mdRaw": 1100, "id": 352}, {"name": "Battery", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-75", "fDam": "0-0", "wDam": "50-150", "aDam": "0-0", "tDam": "0-200", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "dexReq": 60, "intReq": 60, "mr": 5, "sdPct": 15, "ms": 5, "wDamPct": 15, "tDamPct": 15, "eDamPct": -20, "eDefPct": -30, "id": 341}, {"name": "Belligerence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "lvl": 91, "sdPct": -15, "mdPct": 25, "ls": -145, "str": 8, "dex": 8, "hprRaw": 125, "id": 351}, {"name": "Bianco", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "42-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-38", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "xpb": 9, "ref": 12, "agi": 5, "spRegen": 10, "id": 355}, {"name": "Bibliotek", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "207-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 49, "xpb": 15, "lb": 15, "str": 11, "dex": 11, "int": 11, "agi": 11, "def": 11, "hpBonus": -300, "spPct2": 25, "spPct4": -24, "id": 359}, {"name": "Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 361}, {"name": "Big Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "430-900", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 90, "strReq": 55, "mdPct": 30, "str": 15, "expd": 15, "spd": -15, "eDamPct": 231, "aDefPct": -25, "id": 357}, {"name": "Birch Wood Shears", "displayName": "Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 6, "id": 360}, {"name": "Big Ol' Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-25", "atkSpd": "SLOW", "lvl": 23, "strReq": 20, "mdPct": 6, "str": 5, "agi": -4, "spd": -4, "fDamPct": 7, "eDamPct": 7, "id": 356}, {"name": "Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 358}, {"name": "Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 367}, {"name": "Bismuthinite", "tier": "Legendary", "type": "wand", "poison": 1825, "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-195", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 35, "dexReq": 55, "str": 12, "spd": 15, "tDamPct": 40, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "id": 368}, {"name": "Birch Wood Stick", "displayName": "Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 364}, {"name": "Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "lvl": 20, "classReq": "Mage", "intReq": 30, "sdPct": -25, "mdPct": -25, "int": 5, "wDamPct": 35, "id": 362}, {"name": "Black Abyss", "tier": "Unique", "type": "relik", "poison": 1414, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "690-715", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 94, "dexReq": 55, "mdPct": 15, "str": 75, "dex": -100, "spd": -12, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": 22, "eDamPct": -50, "id": 366}, {"name": "Bizzles", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-125", "fDam": "0-0", "wDam": "125-185", "aDam": "0-0", "tDam": "25-255", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 15, "ms": 5, "int": 7, "hpBonus": -850, "wDamPct": 8, "aDamPct": -25, "tDamPct": 13, "id": 363}, {"name": "Black Arrow", "tier": "Unique", "type": "bow", "poison": 2000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "283-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 40, "ls": 215, "ms": -15, "id": 370}, {"name": "Black", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "65-115", "wDam": "0-0", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "dexReq": 55, "defReq": 55, "mr": -10, "sdPct": 19, "ms": 15, "spRegen": -25, "fDamPct": 19, "wDamPct": -30, "tDamPct": 19, "aDefPct": -40, "eDefPct": -40, "id": 369}, {"name": "Black Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 72, "dexReq": 15, "mdPct": 6, "tDamPct": 6, "type": "ring", "id": 379}, {"name": "Black Sheep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "lvl": 79, "strReq": 50, "spd": 20, "eDamPct": 8, "id": 373}, {"name": "Black Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-130", "fDam": "0-0", "wDam": "0-0", "aDam": "50-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "agiReq": 10, "mdPct": 10, "ls": 135, "dex": -5, "agi": 9, "spd": 5, "aDamPct": 9, "id": 374}, {"name": "Blackened Boots", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "tDef": 20, "eDef": -15, "lvl": 41, "dexReq": 15, "sdPct": 6, "ms": 5, "dex": 4, "spRegen": -15, "wDamPct": -10, "tDamPct": 12, "id": 371}, {"name": "Blade of Purity", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "175-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "mr": 10, "sdPct": 15, "mdPct": 15, "xpb": 20, "spRegen": 20, "sdRaw": 160, "mdRaw": 165, "fDamPct": -150, "wDamPct": -150, "aDamPct": -150, "tDamPct": -150, "eDamPct": -150, "id": 377}, {"name": "Blackout", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "fDef": 6, "tDef": -6, "lvl": 22, "defReq": 5, "dex": -2, "def": 3, "fDamPct": 5, "tDamPct": -5, "type": "bracelet", "id": 372}, {"name": "Blade of Snow", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-28", "fDam": "0-0", "wDam": "12-19", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "intReq": 10, "mr": 5, "sdPct": 6, "ref": 8, "spd": -9, "aDamPct": 5, "fDefPct": -7, "aDefPct": 10, "id": 376}, {"name": "Bladeguard", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "70-100", "fDam": "35-70", "wDam": "0-0", "aDam": "35-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "agiReq": 35, "defReq": 25, "sdPct": -10, "ref": 15, "agi": 15, "def": 15, "fDefPct": 15, "aDefPct": 15, "id": 375}, {"name": "Blade of Wisdom", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 24, "intReq": 8, "mr": 5, "xpb": 8, "lb": 8, "int": 4, "wDamPct": 5, "tDamPct": -5, "id": 378}, {"name": "Bladerunners", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 40, "aDef": -20, "tDef": 20, "eDef": -40, "lvl": 53, "dexReq": 20, "intReq": 20, "hprPct": -16, "dex": 5, "int": 4, "spd": 7, "sdRaw": 35, "id": 382}, {"name": "Bleeding Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-41", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": -13, "ls": 33, "hpBonus": 50, "id": 381}, {"name": "Blank", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "hprPct": 5, "type": "necklace", "id": 383}, {"name": "Blessed Wrappings", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 5, "hprPct": 12, "xpb": 10, "def": 3, "hpBonus": 15, "id": 385}, {"name": "Blight", "tier": "Rare", "type": "wand", "poison": 1000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-20", "atkSpd": "SLOW", "lvl": 55, "eDefPct": 33, "id": 395}, {"name": "Bladestorm", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "37-50", "tDam": "22-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dex": 12, "spd": 15, "aDefPct": -7, "id": 380}, {"name": "Blightsaber", "tier": "Unique", "type": "relik", "poison": 800, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-76", "eDam": "70-76", "atkSpd": "FAST", "lvl": 91, "strReq": 33, "dexReq": 33, "sdPct": 19, "mdPct": 19, "ms": 5, "str": 8, "dex": 8, "hprRaw": -150, "spRaw1": -15, "spRaw2": 15, "id": 384}, {"name": "Blindblight", "tier": "Rare", "type": "helmet", "poison": 95, "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -3, "wDef": -3, "aDef": -3, "tDef": -3, "eDef": -3, "lvl": 29, "ls": 15, "str": 8, "dex": -4, "hprRaw": -10, "mdRaw": 36, "id": 386}, {"name": "Blind Thrust", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3725, "tDef": -300, "lvl": 90, "strReq": 95, "ms": 10, "str": 10, "atkTier": -14, "mdRaw": 1600, "eDamPct": 31, "id": 388}, {"name": "Blizzard", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "29-37", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "intReq": 35, "agiReq": 35, "sdPct": 11, "mdPct": -13, "int": 5, "spd": 10, "fDamPct": -12, "fDefPct": -17, "id": 387}, {"name": "Blood-Soaked Claws", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "mdPct": 8, "ls": 12, "hprRaw": -6, "id": 390}, {"name": "Bloodless", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 250, "lvl": 44, "hprPct": -30, "ls": 41, "hpBonus": 300, "hprRaw": -20, "id": 397}, {"name": "Block Buster", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-100", "atkSpd": "SLOW", "lvl": 76, "strReq": 35, "expd": 48, "eDefPct": -6, "id": 389}, {"name": "Bloodlust", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": -100, "aDef": -100, "tDef": 100, "eDef": 100, "lvl": 87, "strReq": 45, "dexReq": 45, "hprPct": -25, "sdPct": -7, "mdPct": 20, "ls": 240, "str": 7, "dex": 7, "int": -8, "spd": 25, "mdRaw": 190, "id": 391}, {"name": "Blossom", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-65", "atkSpd": "NORMAL", "lvl": 33, "strReq": 30, "intReq": 10, "sdPct": 10, "int": 7, "spd": -10, "eDamPct": 8, "fDefPct": -20, "id": 392}, {"name": "Bloudil", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1380, "lvl": 65, "xpb": 14, "ref": 6, "agi": 5, "spd": 14, "id": 394}, {"name": "Blue Mask", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1, "lvl": 68, "str": 12, "dex": 12, "int": 12, "agi": 12, "def": 12, "id": 393}, {"name": "Blossom Haze", "tier": "Fabled", "type": "dagger", "majorIds": ["CHERRY_BOMBS"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-185", "atkSpd": "FAST", "lvl": 87, "strReq": 65, "ms": 5, "expd": 22, "spd": -20, "atkTier": -1, "aDamPct": 25, "eDamPct": 25, "wDefPct": 26, "spRaw4": -5, "id": 3610}, {"name": "Blueberry", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 870, "wDef": 40, "tDef": -30, "lvl": 58, "ms": 5, "xpb": 16, "ref": 6, "wDamPct": 5, "id": 396}, {"name": "Blur", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "55-73", "tDam": "40-90", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "dexReq": 40, "agiReq": 40, "ms": 10, "dex": 9, "agi": 9, "spd": 14, "fDamPct": -21, "aDamPct": 14, "tDamPct": 14, "eDefPct": -18, "id": 398}, {"name": "Blues Whistle", "tier": "Unique", "type": "bow", "poison": 1500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "FAST", "lvl": 99, "strReq": 50, "ls": -295, "ms": 10, "agi": 9, "def": 9, "eDamPct": 20, "fDefPct": -30, "id": 400}, {"name": "Bob's Lost Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 880, "fDef": 30, "lvl": 58, "sdPct": 5, "mdPct": 5, "xpb": 8, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 402}, {"name": "Blushwind", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 110, "wDef": -75, "aDef": 110, "lvl": 88, "agiReq": 60, "defReq": 30, "ms": 5, "int": -25, "agi": 7, "spd": 14, "hpBonus": 3000, "fDefPct": 12, "aDefPct": 12, "spPct2": -14, "spPct3": -7, "id": 399}, {"name": "Boiler", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "30-48", "wDam": "30-48", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "hprPct": 16, "mr": 10, "int": 4, "def": 4, "fDefPct": 13, "wDefPct": 13, "id": 403}, {"name": "Bombardier", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "25-45", "fDam": "15-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "defReq": 10, "expd": 20, "spd": -10, "hpBonus": -50, "id": 405}, {"name": "Bolt", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-9", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "xpb": 5, "lb": 5, "tDamPct": 5, "id": 401}, {"name": "Bonethrasher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "56-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 83, "agiReq": 40, "sdPct": -20, "dex": 13, "int": -7, "agi": 13, "mdRaw": 75, "id": 406}, {"name": "Bolter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-110", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "dexReq": 40, "sdPct": -15, "ref": 16, "dex": 8, "mdRaw": 75, "tDamPct": 8, "aDefPct": -8, "tDefPct": 12, "id": 404}, {"name": "Booster Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2800, "wDef": 130, "aDef": 100, "lvl": 84, "intReq": 25, "agiReq": 50, "xpb": 12, "agi": 10, "spd": 35, "wDamPct": 15, "aDamPct": 15, "tDefPct": -18, "jh": 3, "id": 408}, {"name": "Boots of Blue Stone", "tier": "Unique", "type": "boots", "sprint": 13, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 82, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "sdRaw": 120, "mdRaw": 160, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "sprintReg": 13, "id": 407}, {"name": "Boots of the Sorcerer", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 96, "wDef": 5, "tDef": 10, "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "mdPct": -7, "int": 3, "wDamPct": 10, "tDamPct": 10, "id": 410}, {"name": "Boulder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": 6, "lvl": 24, "strReq": 10, "sdRaw": -2, "mdRaw": 8, "eDefPct": 5, "type": "ring", "id": 409}, {"name": "Bottled Sky", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "aDef": 150, "eDef": -100, "lvl": 95, "agiReq": 60, "ref": 10, "dex": 6, "int": -24, "agi": 6, "def": 6, "spd": 18, "wDamPct": -25, "spPct1": -7, "spPct3": -7, "spPct4": -14, "id": 446}, {"name": "Bourreau", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "ls": -2, "sdRaw": 4, "mdRaw": 4, "type": "bracelet", "id": 415}, {"name": "Bough of Fir", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 53, "strReq": 20, "intReq": 10, "mr": 5, "sdPct": 16, "lb": 16, "int": 9, "spRegen": 19, "fDamPct": -20, "wDamPct": 20, "fDefPct": -15, "eDefPct": 30, "id": 411}, {"name": "Bovine Killer", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 65, "aDef": -5, "eDef": 5, "lvl": 12, "mdPct": 15, "str": 10, "agi": -4, "id": 413}, {"name": "Bovemist Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 5, "tDef": 5, "lvl": 18, "intReq": 8, "hprPct": 8, "int": 3, "spRegen": 3, "type": "necklace", "id": 412}, {"name": "Bow of Retribution", "tier": "Unique", "type": "bow", "thorns": 18, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-20", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "ls": 39, "ms": 5, "ref": 18, "id": 414}, {"name": "Bow Of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 417}, {"name": "Bow of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 420}, {"name": "Brackenwall", "tier": "Unique", "type": "chestplate", "poison": 360, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -40, "eDef": 110, "lvl": 83, "strReq": 40, "mdPct": 13, "str": 7, "spd": -8, "mdRaw": 145, "eDamPct": 13, "fDefPct": -10, "id": 418}, {"name": "Brass Knuckle", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 20, "mdPct": 8, "str": 4, "eSteal": 3, "aDamPct": -6, "type": "ring", "id": 422}, {"name": "Brass Brand", "tier": "Legendary", "type": "dagger", "thorns": 60, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-160", "atkSpd": "FAST", "lvl": 86, "strReq": 40, "dexReq": 55, "ls": -290, "ref": 20, "dex": 25, "sdRaw": 169, "tDamPct": 40, "fDefPct": -20, "tDefPct": -20, "id": 426}, {"name": "Bravery", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 46, "strReq": 15, "agiReq": 20, "mdPct": 8, "str": 5, "spd": 6, "hpBonus": 150, "eDamPct": 8, "fDefPct": 10, "id": 419}, {"name": "Breakbeat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1800, "fDef": -40, "wDef": -20, "tDef": -20, "eDef": -20, "lvl": 79, "agiReq": 55, "sdPct": 5, "spd": 10, "mdRaw": 120, "fDamPct": 7, "wDamPct": 7, "aDamPct": 10, "tDamPct": 7, "eDamPct": 4, "id": 423}, {"name": "Breaker Bar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "280-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 25, "agiReq": 25, "str": 8, "agi": 8, "spd": 15, "fDamPct": -40, "wDamPct": -40, "aDamPct": 40, "tDamPct": -40, "eDamPct": 40, "id": 424}, {"name": "Breath of the Dragon", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "13-17", "wDam": "0-0", "aDam": "23-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 11, "defReq": 11, "agi": 6, "def": 6, "hprRaw": 9, "fDamPct": 15, "aDefPct": 15, "spRaw1": 5, "id": 428}, {"name": "Breath of the Vampire", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "35-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 35, "agiReq": 25, "ls": 190, "agi": 7, "spd": 10, "aDamPct": 5, "tDamPct": 20, "id": 427}, {"name": "Bridge of the Divide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 650, "wDef": 50, "tDef": 50, "lvl": 51, "dexReq": 20, "intReq": 20, "mr": 5, "ms": 5, "xpb": 20, "ref": 10, "wDamPct": -10, "tDamPct": 20, "wDefPct": 20, "tDefPct": -10, "id": 430}, {"name": "Brocach", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": -150, "eDef": 175, "lvl": 94, "strReq": 65, "mdPct": 10, "spd": -9, "eDamPct": 19, "aDefPct": -15, "eDefPct": 23, "id": 432}, {"name": "Breeze", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "8-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "dex": 3, "agi": 3, "spd": 5, "id": 425}, {"name": "Bright Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 15, "tDef": 3, "eDef": -3, "lvl": 5, "xpb": 6, "id": 431}, {"name": "Broken Balance", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": -500, "lvl": 50, "sdPct": 75, "mdPct": 75, "str": -7, "dex": -7, "int": -7, "agi": -7, "def": -7, "id": 433}, {"name": "Broken Gauntlet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 410, "wDef": -25, "aDef": -25, "lvl": 79, "strReq": 15, "defReq": 15, "sdPct": -5, "mdPct": 6, "type": "bracelet", "id": 434}, {"name": "Brimstone", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "110-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "defReq": 45, "hprPct": 20, "mr": -5, "mdPct": 8, "str": 10, "expd": 12, "hpBonus": 1500, "fDamPct": 8, "eDamPct": 27, "id": 429}, {"name": "Broken Cross", "tier": "Unique", "type": "spear", "thorns": 45, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-257", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "86-143", "eDam": "86-143", "atkSpd": "SUPER_SLOW", "lvl": 62, "strReq": 25, "dexReq": 15, "mdPct": 13, "xpb": 20, "lb": 10, "ref": 45, "def": -40, "hpBonus": 831, "spRegen": -13, "fDefPct": -30, "wDefPct": -30, "aDefPct": -30, "id": 435}, {"name": "Broken Harp", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 10, "sdPct": 10, "int": 4, "tDamPct": -5, "wDefPct": 10, "id": 436}, {"name": "Broken Trident", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "intReq": 10, "sdPct": 8, "mdPct": -8, "wDamPct": 5, "wDefPct": 3, "id": 438}, {"name": "Bronze-Plated Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "aDef": -5, "lvl": 26, "strReq": 10, "defReq": 10, "ref": 10, "str": 4, "def": 4, "id": 437}, {"name": "Bubble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 50, "lvl": 72, "sdPct": 4, "type": "ring", "id": 443}, {"name": "Brook", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 130, "tDef": -150, "lvl": 73, "intReq": 45, "mr": 5, "ref": 10, "fDamPct": -7, "wDamPct": 10, "wDefPct": 10, "tDefPct": -15, "id": 439}, {"name": "Brook Keeper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 460, "wDef": 30, "tDef": -20, "lvl": 49, "intReq": 15, "mr": 5, "sdPct": 10, "spd": 3, "fDamPct": -10, "wDamPct": 5, "id": 440}, {"name": "Bull", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "20-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "FAST", "lvl": 63, "mdPct": 8, "str": 5, "agi": -7, "def": 5, "hpBonus": 450, "aDamPct": -25, "fDefPct": 15, "eDefPct": 25, "id": 441}, {"name": "Bulldozer", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 20, "mdPct": 10, "expd": 20, "spd": -20, "hpBonus": -100, "mdRaw": 105, "eDamPct": 8, "id": 444}, {"name": "Bullseye", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 1, "dex": 4, "id": 449}, {"name": "Bubbline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1875, "wDef": 140, "tDef": -90, "lvl": 81, "intReq": 40, "mr": 10, "mdPct": -15, "ref": 30, "int": 8, "fDefPct": 7, "wDefPct": 15, "id": 442}, {"name": "Bumblebee", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "mdPct": 5, "xpb": 6, "id": 447}, {"name": "Burning Pants", "tier": "Rare", "type": "leggings", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": -5, "wDef": -5, "lvl": 18, "defReq": 10, "expd": 5, "spd": 8, "hpBonus": -20, "fDamPct": 7, "id": 448}, {"name": "Burn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 73, "expd": 6, "fDamPct": 8, "type": "ring", "id": 445}, {"name": "Buster Bracer", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 20, "strReq": 20, "sdPct": 10, "str": 5, "expd": 10, "hpBonus": -45, "mdRaw": 20, "type": "bracelet", "id": 451}, {"name": "Burning Torch", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "10-30", "fDam": "110-180", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 25, "sdPct": -12, "mdPct": 5, "expd": 5, "hpBonus": -90, "fDamPct": 7, "wDamPct": -30, "wDefPct": -20, "aDefPct": -5, "id": 452}, {"name": "Butcher's Clever", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-55", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "intReq": 15, "mr": 5, "int": 8, "wDamPct": 5, "tDamPct": -10, "tDefPct": -10, "id": 453}, {"name": "Burnout", "tier": "Rare", "type": "boots", "sprint": 16, "category": "armor", "drop": "NORMAL", "hp": 3200, "fDef": -80, "aDef": -80, "lvl": 96, "agiReq": 40, "defReq": 60, "mr": -5, "sdPct": -14, "def": 10, "spd": 12, "atkTier": 1, "hprRaw": 175, "fDamPct": 10, "aDamPct": 10, "sprintReg": -8, "id": 450}, {"name": "Butter Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 5, "lb": 20, "id": 457}, {"name": "Butterfly Wings", "tier": "Unique", "type": "relik", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "ref": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 454}, {"name": "Butter Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "lvl": 15, "agi": 4, "id": 455}, {"name": "Bygones", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "120-960", "wDam": "0-0", "aDam": "0-0", "tDam": "390-690", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 35, "defReq": 35, "hprPct": -30, "mdPct": 25, "ls": -290, "ms": 15, "expd": 20, "mdRaw": 610, "wDefPct": -35, "id": 456}, {"name": "Bylvis' Pitchfork", "tier": "Unique", "type": "spear", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-0", "wDam": "70-90", "aDam": "70-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 15, "wDamPct": 17, "aDamPct": 17, "tDamPct": -20, "fDefPct": -30, "tDefPct": -10, "id": 458}, {"name": "Wybel Paw", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 32, "hprPct": -100, "sdPct": -100, "mdPct": -100, "agi": 5, "spd": 35, "fixID": true, "id": 459}, {"name": "Cadence", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 94, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "xpb": 12, "lb": 12, "fDamPct": 17, "wDamPct": 17, "aDamPct": 17, "tDamPct": 17, "eDamPct": 17, "id": 461}, {"name": "Foreword", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "90-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "agiReq": 20, "xpb": 20, "lb": 20, "spd": 20, "aDamPct": 20, "aDefPct": 20, "fixID": true, "id": 460}, {"name": "Cactus", "tier": "Unique", "thorns": 12, "category": "accessory", "drop": "lootchest", "lvl": 36, "ls": -11, "type": "ring", "id": 464}, {"name": "Permafrosted Saxifrage", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "50-73", "tDam": "0-0", "eDam": "60-63", "atkSpd": "NORMAL", "lvl": 45, "strReq": 18, "agiReq": 18, "mdPct": 10, "str": 5, "agi": 5, "aDamPct": 10, "eDamPct": 10, "fDefPct": -20, "wDefPct": 20, "fixID": true, "id": 462}, {"name": "Calcined Estoc", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-99", "aDam": "0-0", "tDam": "0-0", "eDam": "90-99", "atkSpd": "NORMAL", "lvl": 68, "strReq": 40, "intReq": 40, "mr": 5, "mdPct": 15, "str": 8, "dex": -15, "spd": -15, "wDefPct": 10, "eDefPct": 10, "id": 465}, {"name": "Caffeine", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -160, "lvl": 74, "agiReq": 40, "agi": 3, "spd": 12, "hprRaw": -15, "aDamPct": 5, "type": "ring", "id": 469}, {"name": "Cage of Bones", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 80, "wDef": -100, "tDef": 60, "lvl": 57, "dexReq": 35, "defReq": 25, "hprPct": -20, "mdPct": 20, "def": 7, "spd": -10, "mdRaw": 130, "fDamPct": 15, "tDamPct": 20, "wDefPct": -20, "id": 466}, {"name": "Calcite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "fDef": 50, "lvl": 67, "defReq": 20, "mdPct": -3, "def": 13, "spd": -5, "fDamPct": 5, "fDefPct": 7, "id": 467}, {"name": "Caldera", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "36-60", "fDam": "40-85", "wDam": "55-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "sdPct": 10, "int": 5, "def": 7, "hpBonus": -1200, "fDamPct": 15, "wDamPct": 18, "tDefPct": -25, "eDefPct": -15, "id": 468}, {"name": "Calidade Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "fDef": -80, "aDef": -80, "tDef": -80, "lvl": 97, "dexReq": 55, "defReq": 50, "sdPct": -15, "mdPct": 30, "ms": 5, "dex": 5, "agi": 6, "def": 4, "atkTier": 1, "hprRaw": -145, "mdRaw": -113, "fDamPct": 10, "tDamPct": 10, "id": 471}, {"name": "Caledonia", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-455", "fDam": "180-225", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 90, "sdPct": -11, "mdPct": -11, "xpb": 15, "def": 9, "hpBonus": 825, "hprRaw": 125, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 472}, {"name": "Call to Concord", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 25, "aDef": 25, "eDef": 10, "lvl": 64, "defReq": 40, "hprPct": 15, "ref": 10, "def": 5, "spRegen": 5, "tDamPct": -8, "type": "bracelet", "id": 476}, {"name": "Calidum Aurea", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1650, "fDef": 100, "wDef": -95, "lvl": 74, "defReq": 25, "sdPct": -10, "xpb": 5, "lb": 19, "def": 5, "fDamPct": 12, "id": 470}, {"name": "Cancer\u058e", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5200, "fDef": 180, "lvl": 98, "defReq": 80, "int": 10, "def": 15, "hprRaw": 300, "wDefPct": 50, "id": 475}, {"name": "Calming Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 260, "wDef": 60, "tDef": -60, "lvl": 93, "intReq": 35, "int": 5, "wDamPct": 7, "wDefPct": 7, "type": "necklace", "id": 474}, {"name": "Canopy", "tier": "Unique", "type": "leggings", "thorns": 14, "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1300, "fDef": -100, "wDef": 80, "eDef": 60, "lvl": 69, "strReq": 30, "intReq": 30, "sdPct": 4, "ref": 8, "eDamPct": 8, "wDefPct": 10, "id": 485}, {"name": "Canyon Spirit", "tier": "Unique", "type": "wand", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "agiReq": 35, "mdPct": 12, "xpb": 10, "lb": 10, "agi": 13, "aDamPct": 19, "id": 477}, {"name": "Capricorn", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 99, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 15, "ms": 5, "int": 12, "agi": 12, "spd": 18, "id": 480}, {"name": "Capsaicin", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 700, "fDef": -40, "lvl": 52, "defReq": 20, "hprPct": -15, "sdPct": 20, "mdPct": 20, "spd": 15, "hprRaw": -40, "sdRaw": 50, "fDamPct": 20, "fDefPct": -20, "id": 483}, {"name": "Carapace", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 70, "strReq": 20, "sdPct": -10, "mdPct": 10, "str": 13, "agi": -5, "spd": -10, "hpBonus": 700, "eDamPct": 10, "aDefPct": -20, "id": 479}, {"name": "Capstone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 880, "fDef": 35, "wDef": -30, "aDef": -30, "eDef": 35, "lvl": 55, "strReq": 10, "defReq": 30, "lb": 14, "str": 4, "def": 7, "spd": -6, "fDefPct": 14, "eDefPct": 14, "id": 481}, {"name": "Cardiac Arrest", "tier": "Legendary", "type": "chestplate", "poison": 1000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "tDef": 90, "eDef": 130, "lvl": 91, "strReq": 70, "dexReq": 50, "hprPct": -40, "sdPct": 30, "agi": -20, "def": -20, "atkTier": -1, "hprRaw": -200, "spPct2": -32, "spPct3": -21, "spPct4": -24, "id": 482}, {"name": "Cardinal Ruler", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "300-370", "fDam": "65-75", "wDam": "0-0", "aDam": "0-0", "tDam": "5-135", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 88, "dexReq": 35, "defReq": 35, "hprPct": -30, "sdPct": 15, "ls": 260, "ms": 10, "dex": 16, "spd": -20, "fDamPct": 15, "tDamPct": 15, "id": 488}, {"name": "Call of the Void", "tier": "Legendary", "type": "helmet", "thorns": 65, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 56, "hprPct": 10, "ls": -75, "ref": 65, "agi": -8, "hprRaw": 50, "id": 473}, {"name": "Careless Whisper", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "165-188", "wDam": "0-0", "aDam": "165-188", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "agiReq": 40, "defReq": 40, "mr": 5, "agi": 11, "def": 11, "spd": -8, "hpBonus": 1750, "hprRaw": 125, "spPct1": -48, "id": 490}, {"name": "Carnivorous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -8, "lvl": 33, "mdPct": 6, "ls": 10, "hprRaw": 4, "mdRaw": 9, "type": "ring", "id": 484}, {"name": "Carvel's Creation", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 51, "wDef": 7, "aDef": 7, "lvl": 14, "mr": 5, "xpb": 6, "lb": 6, "spd": 9, "id": 487}, {"name": "Carrot", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1-190", "atkSpd": "VERY_SLOW", "lvl": 58, "strReq": 15, "mdPct": 25, "ls": -90, "ms": -5, "str": 13, "int": -20, "agi": -5, "eDamPct": 40, "id": 486}, {"name": "Cascade", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "18-30", "fDam": "15-30", "wDam": "15-30", "aDam": "15-30", "tDam": "15-30", "eDam": "15-30", "atkSpd": "VERY_FAST", "lvl": 98, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "mr": 10, "sdPct": 30, "str": -6, "dex": -6, "int": -6, "agi": -6, "def": -6, "expd": 30, "spd": 30, "mdRaw": 65, "id": 489}, {"name": "Carvel's Sight", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "9-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "intReq": 8, "mr": 5, "sdPct": 4, "xpb": 4, "lb": 4, "id": 495}, {"name": "Candlestick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-22", "fDam": "11-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "sdPct": 8, "int": 5, "expd": 4, "fDamPct": 10, "wDamPct": -20, "id": 478}, {"name": "Cassiterite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 50, "eDef": 50, "lvl": 71, "strReq": 30, "defReq": 30, "hprPct": 15, "mdPct": 10, "xpb": 10, "mdRaw": 150, "fDefPct": 10, "eDefPct": 10, "id": 491}, {"name": "Cataract", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-1630", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "intReq": 50, "sdPct": 15, "ls": -130, "ms": 10, "dex": -30, "int": 10, "atkTier": -1, "wDamPct": 15, "tDefPct": -30, "id": 492}, {"name": "Caterpillar", "tier": "Rare", "type": "leggings", "poison": 3500, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2885, "aDef": -110, "eDef": 130, "lvl": 92, "strReq": 55, "dexReq": 40, "xpb": 8, "str": 8, "def": 5, "spd": -8, "atkTier": -8, "eDamPct": 20, "id": 497}, {"name": "Cave In", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 21, "strReq": 18, "lb": 10, "expd": 35, "spd": -20, "hprRaw": -20, "eDamPct": 25, "spPct3": -21, "id": 493}, {"name": "Celestial", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-16", "fDam": "0-0", "wDam": "0-0", "aDam": "6-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "agiReq": 8, "mr": 5, "xpb": 5, "ref": 3, "id": 501}, {"name": "Ceiling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-120", "tDam": "0-0", "eDam": "40-80", "atkSpd": "FAST", "lvl": 70, "strReq": 30, "agiReq": 35, "sdPct": -10, "mdPct": 10, "xpb": 15, "spd": 12, "wDamPct": -17, "id": 494}, {"name": "Celebration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "xpb": 25, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 5, "id": 500}, {"name": "Cementing Arrow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "140-175", "aDam": "0-0", "tDam": "0-0", "eDam": "140-175", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 8, "agi": -12, "spd": -12, "wDamPct": 8, "eDamPct": 8, "id": 496}, {"name": "Cemented Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "160-200", "fDam": "0-0", "wDam": "360-465", "aDam": "0-0", "tDam": "0-0", "eDam": "360-465", "atkSpd": "SUPER_SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 10, "agi": -12, "spd": -12, "wDamPct": 12, "eDamPct": 12, "id": 498}, {"name": "Cementing String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 48, "strReq": 20, "intReq": 20, "sdPct": 8, "mdPct": 8, "str": 5, "agi": -8, "spd": -8, "wDamPct": 6, "eDamPct": 6, "id": 503}, {"name": "Cenote", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 40, "eDef": 40, "lvl": 68, "strReq": 50, "intReq": 50, "hprPct": 20, "str": 4, "int": 4, "hprRaw": 55, "wDefPct": 12, "eDefPct": 12, "id": 504}, {"name": "Centrifugal", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-95", "atkSpd": "SLOW", "lvl": 90, "strReq": 25, "intReq": 25, "sdPct": 6, "mdPct": 6, "ms": 5, "spd": -7, "eDamPct": 8, "aDefPct": -10, "id": 502}, {"name": "Centennial", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2125, "fDef": 100, "wDef": 100, "lvl": 80, "intReq": 20, "defReq": 20, "hprPct": 18, "mr": 5, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 499}, {"name": "Ceramic Shell Greaves", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2555, "fDef": 135, "aDef": 70, "tDef": -135, "eDef": -70, "lvl": 91, "agiReq": 25, "defReq": 45, "sdPct": -40, "int": -12, "agi": 8, "expd": 18, "spd": 15, "wDamPct": 40, "fDefPct": 12, "aDefPct": 12, "spPct1": -21, "id": 507}, {"name": "Cerid's Dynamo", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 59, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "id": 506}, {"name": "Chain Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "45-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "strReq": 50, "agiReq": 20, "sdPct": -12, "mdPct": 8, "str": 8, "agi": 4, "eDamPct": 19, "fDefPct": -9, "id": 508}, {"name": "Cerid's Precision", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "wDef": -20, "tDef": 30, "eDef": -20, "lvl": 42, "dexReq": 25, "sdPct": 10, "dex": 9, "expd": 5, "mdRaw": 60, "tDamPct": 8, "eDamPct": -10, "wDefPct": -10, "eDefPct": -10, "id": 505}, {"name": "Chain Link", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 400, "lvl": 45, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdRaw": 30, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 511}, {"name": "Chain Rule", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "wDef": 85, "tDef": -75, "eDef": 145, "lvl": 85, "strReq": 105, "hprPct": -36, "ms": 5, "sdRaw": 135, "wDamPct": -20, "tDamPct": -22, "eDamPct": 20, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3617}, {"name": "Chains of Steel", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 280, "lvl": 38, "xpb": 5, "str": 7, "hpBonus": 40, "id": 510}, {"name": "Chained Pixels", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 512, "fDef": 16, "wDef": 16, "aDef": 16, "tDef": 16, "eDef": 16, "lvl": 38, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "xpb": 16, "lb": 16, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 509}, {"name": "Chakram", "tier": "Legendary", "type": "dagger", "poison": 350, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-50", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "22-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 60, "agi": 13, "spd": 21, "atkTier": 1, "eSteal": 5, "tDamPct": 10, "tDefPct": 10, "id": 513}, {"name": "Chaleur", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "70-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 25, "hprPct": -25, "int": -5, "def": 7, "expd": 15, "sdRaw": 35, "mdRaw": 59, "fDamPct": 15, "wDefPct": -25, "id": 512}, {"name": "Chandelle", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "5-8", "fDam": "5-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "hprPct": 5, "hpBonus": 10, "id": 540}, {"name": "Chameleon", "tier": "Unique", "type": "helmet", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 750, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 57, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 9, "mdPct": 9, "ref": 9, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "spd": 9, "id": 515}, {"name": "Chaos", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 62, "sdPct": 30, "mdPct": 30, "hpBonus": 1200, "sdRaw": 70, "mdRaw": 90, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 514}, {"name": "Chaotic", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-193", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 71, "dexReq": 40, "dex": 9, "expd": 7, "spd": 7, "eDamPct": -30, "eDefPct": -30, "id": 517}, {"name": "Charm of the Magma", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 45, "eDef": 45, "lvl": 88, "classReq": "Warrior", "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 10, "xpb": 6, "lb": 6, "spd": -8, "hpBonus": 500, "type": "necklace", "id": 516}, {"name": "Charm of the Storms", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -200, "wDef": 30, "aDef": 30, "tDef": -70, "lvl": 88, "classReq": "Archer", "intReq": 40, "agiReq": 40, "mdPct": -8, "xpb": 6, "lb": 6, "agi": 5, "wDamPct": 13, "aDamPct": 13, "type": "necklace", "id": 518}, {"name": "Charm of the Tides", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": 40, "tDef": -80, "lvl": 88, "classReq": "Mage", "intReq": 40, "defReq": 40, "mr": 5, "sdPct": -21, "mdPct": -21, "xpb": 6, "lb": 6, "wDamPct": 15, "type": "necklace", "id": 520}, {"name": "Charm of the Tempest", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 25, "tDef": 25, "eDef": -60, "lvl": 88, "classReq": "Assassin", "dexReq": 40, "agiReq": 40, "hprPct": -15, "xpb": 6, "lb": 6, "mdRaw": 52, "aDamPct": 11, "tDamPct": 11, "type": "necklace", "id": 523}, {"name": "Charm of the Flea", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 15, "lvl": 20, "agiReq": 8, "ls": 4, "agi": 3, "type": "necklace", "id": 522}, {"name": "Charm of the Leech", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 100, "lvl": 50, "intReq": 15, "ls": 21, "ms": 5, "tDefPct": -7, "type": "necklace", "id": 521}, {"name": "Charm of the Tick", "tier": "Unique", "poison": 60, "category": "accessory", "drop": "lootchest", "hp": 45, "lvl": 35, "ls": 9, "type": "necklace", "id": 524}, {"name": "Charon's Left Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-13", "eDam": "10-17", "atkSpd": "SLOW", "lvl": 21, "strReq": 10, "ls": 14, "ms": -5, "str": 4, "dex": 4, "spd": -5, "tDamPct": 10, "fDefPct": -15, "id": 525}, {"name": "Charm of the Vampire", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 65, "ls": 45, "tDamPct": 5, "type": "necklace", "id": 526}, {"name": "Charybdis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "wDef": 80, "tDef": -120, "eDef": 80, "lvl": 85, "strReq": 40, "intReq": 40, "mr": 5, "sdPct": 6, "str": 5, "int": 5, "spd": -8, "mdRaw": 190, "wDamPct": 12, "eDamPct": 12, "tDefPct": -12, "id": 528}, {"name": "Chef Hamsey's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 3, "drop": "never", "hp": 2900, "fDef": -150, "wDef": -150, "tDef": 150, "lvl": 96, "hprPct": 25, "mr": 10, "int": 7, "def": 7, "spRegen": 10, "id": 527}, {"name": "Cherufe", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "75-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-75", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "defReq": 20, "ls": 50, "def": 5, "mdRaw": 145, "eDamPct": 10, "wDefPct": -18, "id": 530}, {"name": "Chief", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "4-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 14, "xpb": 7, "lb": 8, "def": 4, "hpBonus": 40, "fDamPct": 5, "id": 533}, {"name": "Chest Breaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "strReq": 30, "sdPct": 7, "mdPct": 18, "str": 7, "def": -4, "expd": 8, "hpBonus": -210, "aDefPct": -15, "id": 531}, {"name": "Chestplate of Ineptitude", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3375, "lvl": 98, "sdPct": -10, "mdPct": 10, "str": -3, "dex": -3, "int": -3, "agi": -3, "def": -3, "atkTier": 1, "sdRaw": -110, "mdRaw": 140, "id": 529}, {"name": "Chill", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -40, "fDef": -5, "wDef": 5, "aDef": 5, "lvl": 41, "intReq": 15, "spd": -3, "sdRaw": 13, "wDamPct": 5, "aDamPct": 5, "type": "ring", "id": 534}, {"name": "Chimaera", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 78, "lvl": 13, "ls": 5, "str": 7, "agi": 7, "def": 7, "id": 536}, {"name": "Chinked Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "fDef": 90, "aDef": -160, "lvl": 72, "defReq": 20, "hprPct": 12, "def": 8, "spd": -9, "hpBonus": 650, "fDefPct": 15, "aDefPct": -15, "tDefPct": 7, "eDefPct": 7, "id": 537}, {"name": "Chipped Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "never", "hp": 7, "lvl": 3, "id": 539}, {"name": "Chipped Leather Pants", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "never", "hp": 11, "lvl": 5, "id": 535}, {"name": "Chipped Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "hp": 3, "lvl": 1, "id": 541}, {"name": "Chipped Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "hp": 16, "lvl": 7, "id": 538}, {"name": "Chimney", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 760, "fDef": 55, "wDef": -55, "aDef": 55, "lvl": 52, "agiReq": 25, "defReq": 25, "hprPct": 20, "agi": 5, "def": 5, "expd": 8, "wDamPct": -15, "fDefPct": 12, "aDefPct": 12, "id": 532}, {"name": "Chlorine", "tier": "Unique", "poison": 170, "category": "accessory", "drop": "lootchest", "tDef": -20, "lvl": 64, "intReq": 15, "hprPct": -7, "sdPct": 6, "wDamPct": 5, "type": "ring", "id": 542}, {"name": "Chlorofury", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-40", "fDam": "0-0", "wDam": "35-40", "aDam": "0-0", "tDam": "0-0", "eDam": "35-40", "atkSpd": "NORMAL", "lvl": 63, "strReq": 30, "intReq": 30, "sdPct": 8, "mdPct": 8, "hpBonus": -250, "sdRaw": 60, "mdRaw": 80, "id": 545}, {"name": "Chroma Cannon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "20-60", "wDam": "20-60", "aDam": "20-60", "tDam": "20-60", "eDam": "20-60", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "hpBonus": -150, "spRegen": -30, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 543}, {"name": "Cigar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 43, "expd": 5, "fDamPct": 12, "eDamPct": 6, "id": 546}, {"name": "Chrysoprase", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-100", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "SLOW", "lvl": 59, "strReq": 25, "defReq": 25, "sdPct": -13, "mdPct": 11, "hpBonus": 300, "fDamPct": 12, "wDamPct": -15, "eDamPct": 12, "wDefPct": -15, "id": 544}, {"name": "Ciocca", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "0-0", "aDam": "10-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "agiReq": 15, "sdPct": 8, "mdPct": -5, "spd": 8, "fDefPct": -8, "eDefPct": 8, "id": 548}, {"name": "Circuit Buster", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-31", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "dexReq": 10, "hprPct": -9, "dex": 5, "sdRaw": 15, "mdRaw": 20, "id": 547}, {"name": "Cinnabar", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 90, "wDef": -75, "aDef": 90, "tDef": -75, "lvl": 77, "agiReq": 55, "defReq": 55, "hprPct": 25, "sdPct": -12, "mdPct": -12, "agi": 9, "def": 9, "expd": 30, "hprRaw": 80, "fDefPct": 15, "aDefPct": 15, "id": 550}, {"name": "Cirrus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 40, "aDef": 70, "tDef": -90, "eDef": -70, "lvl": 69, "agiReq": 50, "ms": 5, "agi": 7, "spd": 12, "wDamPct": 6, "aDamPct": 10, "wDefPct": 10, "aDefPct": 6, "id": 553}, {"name": "Clairvoyance", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "intReq": 55, "sdPct": 20, "ms": 10, "ref": 20, "dex": 13, "spRegen": 5, "wDefPct": 14, "tDefPct": 14, "id": 551}, {"name": "Circuit Flights", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "43-60", "tDam": "52-74", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 66, "dexReq": 25, "agiReq": 25, "ls": -169, "xpb": 12, "mdRaw": 75, "aDamPct": 18, "tDamPct": 18, "eDefPct": 24, "id": 549}, {"name": "Clap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "mdPct": 4, "mdRaw": 4, "type": "ring", "id": 552}, {"name": "Clarity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 12, "int": 3, "type": "ring", "id": 556}, {"name": "Cleanshear", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 875, "lvl": 63, "dexReq": 60, "ls": 75, "ref": 3, "dex": 8, "spd": 6, "mdRaw": 100, "eDamPct": -10, "id": 554}, {"name": "Cleansing Flame", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "8-16", "fDam": "45-55", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 20, "defReq": 20, "mr": 5, "def": 8, "spd": -10, "hpBonus": 200, "wDamPct": 15, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 560}, {"name": "Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 5, "xpb": 3, "id": 557}, {"name": "Clash Hook", "tier": "Legendary", "type": "spear", "thorns": 34, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "5-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 10, "xpb": 10, "agi": 7, "spd": 5, "id": 555}, {"name": "Clearwater", "tier": "Unique", "type": "bow", "poison": -200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "intReq": 55, "hprPct": 20, "mr": 5, "int": 9, "spRegen": 5, "wDefPct": 14, "tDefPct": -8, "id": 558}, {"name": "Clerical", "tier": "Rare", "type": "leggings", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "wDef": 195, "tDef": -110, "lvl": 94, "intReq": 60, "mr": 5, "sdPct": -50, "mdPct": -60, "ref": 25, "int": 10, "wDamPct": 40, "tDamPct": -25, "wDefPct": 25, "id": 3605}, {"name": "Clay", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 50, "lvl": 73, "mdPct": 6, "type": "ring", "id": 559}, {"name": "Clock Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "xpb": 8, "id": 563}, {"name": "Cloud Cover", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "aDef": 80, "tDef": -70, "lvl": 72, "intReq": 15, "agiReq": 40, "ms": 5, "agi": 8, "spd": 6, "hprRaw": 60, "fDamPct": -11, "wDamPct": 8, "wDefPct": 11, "id": 561}, {"name": "Cloud Nine", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "30-100", "aDam": "10-10", "tDam": "50-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "intReq": 40, "mdPct": -11, "ref": 20, "dex": 8, "int": 8, "fDamPct": -40, "fDefPct": 15, "wDefPct": 25, "aDefPct": 20, "tDefPct": 25, "eDefPct": 15, "id": 564}, {"name": "Cloudbreaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-65", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "35-52", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "agiReq": 25, "dex": 7, "agi": 7, "spd": 20, "fDamPct": -5, "aDamPct": 20, "tDamPct": 20, "eDamPct": -10, "id": 562}, {"name": "Clovis Leg Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "fDef": -40, "aDef": 15, "eDef": 15, "lvl": 46, "strReq": 20, "agiReq": 20, "sdPct": -20, "mdPct": 8, "spd": 8, "mdRaw": 65, "aDamPct": 10, "eDamPct": 10, "id": 565}, {"name": "Cloudburst", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "aDef": 10, "lvl": 19, "agiReq": 20, "def": -5, "spd": 12, "mdRaw": 30, "aDamPct": 15, "id": 568}, {"name": "Cnidocyte", "tier": "Unique", "type": "leggings", "poison": 450, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 70, "aDef": -80, "tDef": -80, "eDef": 90, "lvl": 78, "strReq": 45, "intReq": 25, "hprPct": -16, "sdPct": 6, "mdPct": 6, "str": 7, "tDefPct": -20, "id": 566}, {"name": "Cluster", "tier": "Legendary", "type": "bow", "poison": 800, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-240", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "ls": 585, "ms": 10, "expd": 65, "eSteal": 10, "id": 567}, {"name": "Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "fDef": 15, "wDef": -15, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 3, "def": 4, "expd": 8, "spd": -5, "hpBonus": 70, "id": 570}, {"name": "Coba", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 80, "wDef": -70, "tDef": 80, "eDef": -100, "lvl": 78, "dexReq": 45, "defReq": 40, "sdPct": 7, "ls": 125, "xpb": 10, "lb": 15, "dex": 4, "hpBonus": -150, "spRegen": -5, "id": 569}, {"name": "Corase Torc", "displayName": "Coarse Torc", "tier": "Unique", "poison": 80, "category": "accessory", "drop": "lootchest", "hp": 55, "aDef": -20, "eDef": 20, "lvl": 43, "strReq": 15, "str": 3, "eDamPct": 7, "type": "necklace", "id": 571}, {"name": "Coat of Byakko", "tier": "Unique", "type": "chestplate", "thorns": 20, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -100, "aDef": 75, "eDef": 75, "lvl": 85, "strReq": 30, "agiReq": 30, "mdPct": -10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 220, "aDamPct": 10, "eDamPct": 10, "id": 574}, {"name": "Cobra", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "dexReq": 15, "xpb": 6, "lb": 6, "dex": 4, "eSteal": 6, "mdRaw": 23, "aDamPct": 6, "id": 573}, {"name": "Cockleburr", "tier": "Unique", "type": "dagger", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-155", "atkSpd": "SLOW", "lvl": 96, "strReq": 45, "ls": 290, "ms": 5, "spd": -8, "mdRaw": 190, "eDamPct": 7, "fDefPct": -10, "aDefPct": 12, "id": 575}, {"name": "Coconut\u058e", "displayName": "Coconut", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-105", "aDam": "0-0", "tDam": "0-0", "eDam": "90-105", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 20, "intReq": 15, "hprPct": 10, "mdPct": 12, "str": 7, "spd": -10, "id": 576}, {"name": "Coeur de Lion", "tier": "Rare", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-75", "fDam": "30-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 30, "hprPct": 15, "mr": 5, "def": 10, "hpBonus": 600, "fDefPct": 20, "wDefPct": -20, "id": 572}, {"name": "Cognizance", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "lvl": 49, "intReq": 40, "str": -4, "int": 10, "def": -4, "wDamPct": 7, "eDamPct": -7, "fDefPct": -7, "wDefPct": 7, "id": 580}, {"name": "Coiled Briar", "tier": "Rare", "thorns": 11, "category": "accessory", "drop": "lootchest", "fDef": -15, "lvl": 90, "mdPct": 5, "ref": -6, "spd": -5, "eDamPct": 8, "type": "ring", "id": 578}, {"name": "Cold Integrity", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "24-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 74, "intReq": 55, "agiReq": 40, "mr": 5, "int": 15, "hpBonus": -1500, "spRegen": 15, "sdRaw": 800, "wDamPct": 72, "aDefPct": 30, "id": 579}, {"name": "Col Legno", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-35", "eDam": "30-35", "atkSpd": "FAST", "lvl": 48, "strReq": 24, "dexReq": 24, "ls": -50, "def": -10, "mdRaw": 52, "tDamPct": 10, "eDamPct": 10, "id": 577}, {"name": "Cold Wave", "tier": "Fabled", "majorIds": ["FLASHFREEZE"], "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 75, "intReq": 40, "sdPct": 6, "spd": -10, "wDamPct": 8, "fDefPct": -14, "type": "ring", "id": 3556}, {"name": "Collector", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "necklace", "id": 583}, {"name": "Comfort", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 6, "hpBonus": 8, "hprRaw": 2, "mdRaw": -3, "type": "bracelet", "id": 588}, {"name": "Columns", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 50, "aDef": -5, "eDef": 5, "lvl": 11, "str": 4, "def": 4, "spd": -5, "hpBonus": 20, "id": 584}, {"name": "Collier Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "fDef": 7, "wDef": -5, "lvl": 14, "hprPct": 8, "def": 3, "hpBonus": 15, "id": 582}, {"name": "Concentration", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 8, "mr": 5, "type": "ring", "id": 581}, {"name": "Conclave Crossfire", "tier": "Rare", "type": "relik", "poison": 99, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "12-15", "wDam": "0-0", "aDam": "0-0", "tDam": "12-15", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 13, "defReq": 13, "str": -10, "dex": 15, "expd": -100, "aDamPct": -50, "eDamPct": -50, "id": 587}, {"name": "Conductor", "tier": "Legendary", "type": "leggings", "thorns": 9, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "wDef": -10, "tDef": -10, "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 14, "dex": 8, "expd": 7, "tDamPct": 16, "id": 585}, {"name": "Conflagrate", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1800, "fDef": 180, "lvl": 84, "defReq": 90, "ls": 260, "int": -16, "def": 16, "mdRaw": 285, "fDamPct": 50, "wDefPct": -30, "spRaw3": -5, "id": 589}, {"name": "Conductor's Baton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "27-37", "aDam": "0-0", "tDam": "27-37", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 25, "intReq": 35, "sdPct": 12, "ls": -120, "ms": 5, "dex": 5, "int": 7, "eDefPct": -12, "id": 600}, {"name": "Conference Call", "tier": "Legendary", "type": "relik", "poison": 1111, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-30", "fDam": "72-78", "wDam": "0-0", "aDam": "0-0", "tDam": "72-78", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 94, "dexReq": 47, "defReq": 47, "ls": 350, "ms": 10, "str": -15, "dex": 15, "expd": -100, "fDamPct": 15, "tDamPct": 15, "aDefPct": -70, "eDefPct": -70, "id": 591}, {"name": "Conrupt", "tier": "Rare", "type": "helmet", "poison": 600, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2950, "wDef": -100, "aDef": -100, "tDef": 110, "eDef": 110, "lvl": 99, "strReq": 50, "dexReq": 50, "mdPct": 15, "ls": 295, "str": 8, "dex": 8, "spRegen": -20, "hprRaw": -125, "tDamPct": 20, "eDamPct": 20, "id": 590}, {"name": "Conspirator's Trickpockets", "tier": "Fabled", "type": "leggings", "majorIds": ["CHERRY_BOMBS"], "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": -80, "eDef": -80, "lvl": 78, "classReq": "Assassin", "agiReq": 65, "mr": 5, "expd": 23, "eSteal": 5, "sdRaw": 140, "aDamPct": 19, "tDamPct": -58, "wDefPct": -20, "spRaw4": 5, "id": 3551}, {"name": "Contrail", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 10, "aDef": 50, "lvl": 94, "agiReq": 45, "agi": 4, "spd": 10, "aDamPct": 8, "type": "bracelet", "id": 597}, {"name": "Collier's Guard", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "fDef": 75, "wDef": -40, "aDef": -40, "lvl": 64, "defReq": 25, "hprPct": 21, "agi": -2, "def": 7, "expd": 5, "spd": -7, "hpBonus": 275, "id": 598}, {"name": "Contamination", "tier": "Legendary", "type": "bow", "poison": 1000, "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-30", "atkSpd": "SLOW", "lvl": 51, "sdPct": -15, "expd": 65, "spd": 6, "id": 593}, {"name": "Convallaria", "tier": "Legendary", "type": "leggings", "poison": 300, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -65, "eDef": 55, "lvl": 55, "strReq": 40, "ls": 75, "spd": -8, "mdRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 594}, {"name": "Cooler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -30, "wDef": 40, "aDef": 25, "tDef": -30, "lvl": 50, "intReq": 20, "ms": 5, "ref": 12, "int": 5, "spd": -11, "sdRaw": 55, "fDamPct": -5, "id": 596}, {"name": "Cool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 8, "sdPct": 4, "agi": 3, "type": "bracelet", "id": 592}, {"name": "Copper-Alloy Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-38", "fDam": "8-14", "wDam": "0-0", "aDam": "0-0", "tDam": "8-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "dexReq": 10, "defReq": 10, "sdPct": 5, "ms": 5, "fDamPct": 12, "tDamPct": 12, "eDefPct": -15, "id": 601}, {"name": "Copper-Alloy Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "fDef": 8, "wDef": -10, "tDef": 8, "eDef": -10, "lvl": 38, "dexReq": 10, "defReq": 10, "mdPct": 8, "hprRaw": 15, "fDamPct": 5, "wDamPct": -7, "tDamPct": 5, "eDamPct": -7, "id": 599}, {"name": "Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "fDef": -8, "tDef": -8, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 9, "ref": 5, "fDamPct": 6, "tDamPct": 8, "id": 605}, {"name": "Centipede", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 80, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "sdPct": -1000, "spd": 24, "atkTier": 2, "eSteal": 8, "fixID": true, "id": 604}, {"name": "Air Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": -50, "aDef": 300, "lvl": 80, "agiReq": 70, "aDamPct": 85, "fixID": true, "id": 602}, {"name": "Earth Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "aDef": -80, "eDef": 330, "lvl": 80, "strReq": 70, "eDamPct": 85, "fixID": true, "id": 603}, {"name": "Copper Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "73-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "73-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "strReq": 40, "dexReq": 35, "ms": 10, "tDamPct": 12, "eDamPct": 25, "fDefPct": -20, "wDefPct": -20, "tDefPct": -15, "id": 595}, {"name": "Fire Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 350, "wDef": -100, "lvl": 80, "defReq": 70, "fDamPct": 85, "fixID": true, "id": 608}, {"name": "Rainbow Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 80, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "fDamPct": 85, "wDamPct": 85, "aDamPct": 85, "tDamPct": 85, "eDamPct": 85, "fixID": true, "id": 606}, {"name": "Thunder Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "tDef": 320, "eDef": -70, "lvl": 80, "dexReq": 70, "tDamPct": 85, "fixID": true, "id": 609}, {"name": "Dust Skaters", "tier": "Rare", "type": "boots", "poison": 800, "thorns": 18, "sprint": 12, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2375, "aDef": 55, "eDef": -80, "lvl": 87, "agiReq": 55, "sdPct": 18, "agi": 8, "spd": 24, "mdRaw": 210, "eDamPct": 15, "aDefPct": 45, "fixID": true, "sprintReg": 12, "id": 611}, {"name": "Corrupted Nii Mukluk", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2275, "fDef": 100, "tDef": -50, "lvl": 78, "defReq": 65, "def": 10, "fDamPct": 20, "fDefPct": 10, "fixID": true, "id": 610, "set": "Corrupted Nii"}, {"name": "Water Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "wDef": 340, "tDef": -90, "lvl": 80, "intReq": 70, "wDamPct": 85, "fixID": true, "id": 615}, {"name": "Dune Storm", "tier": "Rare", "type": "helmet", "sprint": 28, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -1300, "aDef": 260, "eDef": 190, "lvl": 87, "strReq": 60, "agiReq": 70, "str": 12, "agi": 16, "spd": 36, "mdRaw": 520, "aDamPct": 56, "eDamPct": 48, "fixID": true, "id": 607}, {"name": "Golden Scarab", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "tDef": 80, "lvl": 88, "dexReq": 80, "sdPct": 24, "mdPct": 24, "ms": 10, "xpb": 16, "lb": 32, "dex": 8, "spd": 8, "eSteal": 8, "tDamPct": 8, "eDamPct": -64, "fixID": true, "id": 613}, {"name": "Infidel", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-875", "fDam": "0-0", "wDam": "0-1000", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 50, "intReq": 45, "sdPct": 20, "ms": 10, "dex": 5, "int": 10, "sdRaw": 285, "tDamPct": 30, "fDefPct": -70, "fixID": true, "id": 612}, {"name": "Judas", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-45", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 60, "mdPct": 33, "ls": -1085, "ms": 10, "lb": 30, "dex": 10, "spRegen": -30, "sdRaw": 125, "wDamPct": -70, "tDamPct": 20, "fixID": true, "id": 619}, {"name": "Lion's Pelt", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "aDef": -70, "tDef": 100, "eDef": 120, "lvl": 89, "strReq": 60, "mdPct": 15, "ls": 310, "str": 8, "eDamPct": 20, "eDefPct": 40, "fixID": true, "id": 614}, {"name": "Plague", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "500-720", "fDam": "500-720", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 55, "defReq": 45, "ls": 700, "ms": 15, "ref": 30, "def": 10, "expd": 30, "tDamPct": 15, "fDefPct": 30, "wDefPct": -40, "aDefPct": 35, "tDefPct": 25, "fixID": true, "id": 617}, {"name": "Manna", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "150-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 55, "intReq": 40, "mr": 10, "sdPct": 15, "str": 5, "int": 5, "hpBonus": 1800, "hprRaw": 175, "eDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "id": 616}, {"name": "Sacramentalia", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "aDef": 20, "tDef": 20, "lvl": 89, "strReq": 50, "intReq": 40, "mr": 10, "sdPct": -12, "spRegen": 10, "hprRaw": 50, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 618}, {"name": "Corrupted Nii Shako", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1650, "fDef": 50, "wDef": 50, "tDef": -50, "lvl": 70, "intReq": 50, "defReq": 50, "hprPct": 30, "mr": 5, "fDefPct": 15, "wDefPct": 15, "fixID": true, "id": 624, "set": "Corrupted Nii"}, {"name": "Corrupted Uth Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2850, "fDef": 150, "wDef": -70, "lvl": 86, "defReq": 75, "def": 10, "fDamPct": 15, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 620, "set": "Corrupted Uth"}, {"name": "Ghoul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "75-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "agiReq": 55, "ls": 235, "ms": 10, "agi": 10, "spd": 20, "aDamPct": 10, "tDamPct": 14, "fixID": true, "id": 621}, {"name": "Nest", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "NORMAL", "lvl": 76, "strReq": 20, "mdPct": 10, "xpb": 15, "fDamPct": -15, "aDamPct": -15, "tDamPct": -15, "eDamPct": 35, "fixID": true, "id": 623}, {"name": "Corrupted Nii Plate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1625, "wDef": 100, "tDef": -75, "lvl": 74, "intReq": 65, "int": 10, "wDamPct": 20, "wDefPct": 10, "fixID": true, "id": 622, "set": "Corrupted Nii"}, {"name": "Salticidae", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "315-815", "tDam": "0-0", "eDam": "95-495", "atkSpd": "SUPER_SLOW", "lvl": 76, "strReq": 30, "agiReq": 40, "sdPct": -10, "agi": 30, "spd": 42, "fixID": true, "jh": 3, "id": 676}, {"name": "Scytodidae", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "180-230", "fDam": "0-0", "wDam": "130-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "intReq": 40, "mr": 10, "ms": 10, "def": -20, "sdRaw": 130, "fDefPct": -10, "fixID": true, "id": 625}, {"name": "Vanguard", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 77, "sdPct": 10, "mdPct": 10, "xpb": 15, "lb": 10, "type": "bracelet", "fixID": true, "id": 626}, {"name": "Argos", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3900, "lvl": 86, "defReq": 50, "sdPct": -65, "ls": 275, "def": 15, "atkTier": -1, "fDamPct": 100, "fDefPct": 20, "fixID": true, "id": 630}, {"name": "Achilles", "tier": "Legendary", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3600, "fDef": 200, "wDef": -850, "aDef": 200, "tDef": 200, "eDef": 250, "lvl": 86, "strReq": 40, "defReq": 20, "str": 7, "def": 15, "mdRaw": 380, "fDamPct": 15, "eDamPct": 15, "fDefPct": 40, "eDefPct": 500, "fixID": true, "id": 627}, {"name": "Drain", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 375, "lvl": 85, "ls": 200, "xpb": 10, "spRegen": -75, "type": "necklace", "fixID": true, "id": 631}, {"name": "Corrupted Uth Plume", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "wDef": -60, "aDef": 150, "lvl": 82, "agiReq": 75, "agi": 10, "spd": 20, "aDamPct": 15, "fixID": true, "id": 632, "set": "Corrupted Uth"}, {"name": "Black Catalyst", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -325, "lvl": 83, "xpb": -5, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": -5, "type": "ring", "fixID": true, "id": 628, "set": "Black Catalyst"}, {"name": "Tophet", "tier": "Legendary", "type": "leggings", "poison": 666, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3050, "fDef": 100, "wDef": -120, "tDef": 100, "lvl": 85, "dexReq": 40, "ms": 10, "str": 5, "dex": 8, "def": 5, "expd": 35, "fDamPct": 25, "wDamPct": -15, "tDamPct": 20, "eDamPct": 20, "eDefPct": 25, "fixID": true, "id": 635}, {"name": "Prognosticum", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 84, "intReq": 40, "ms": 10, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 634}, {"name": "Coronium", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "wDef": -40, "tDef": 30, "lvl": 50, "dexReq": 20, "defReq": 15, "hprPct": -8, "xpb": 8, "def": 5, "expd": 12, "wDamPct": -10, "tDamPct": 10, "id": 638}, {"name": "Coriolis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "aDef": 55, "eDef": -60, "lvl": 58, "agiReq": 35, "ref": 6, "agi": 4, "spd": 12, "aDamPct": 11, "aDefPct": 8, "eDefPct": -10, "id": 633}, {"name": "Brace of the Ninth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "113-119", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "intReq": 55, "mr": 10, "ref": 20, "int": 40, "spd": -20, "wDamPct": 15, "fixID": true, "id": 636}, {"name": "Desperation", "tier": "Rare", "type": "dagger", "thorns": -100, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-76", "wDam": "0-0", "aDam": "0-160", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 91, "agiReq": 35, "defReq": 50, "hprPct": 50, "ls": 360, "ref": -100, "str": -20, "spd": 35, "hpBonus": -1000, "wDamPct": -20, "fixID": true, "id": 637}, {"name": "Closure", "tier": "Rare", "type": "bow", "poison": 1500, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "120-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-355", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "dexReq": 35, "defReq": 45, "ms": 15, "xpb": 15, "ref": 15, "sdRaw": 145, "fDamPct": 80, "aDamPct": -100, "aDefPct": -20, "fixID": true, "id": 643}, {"name": "Final Compulsion", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "270-315", "fDam": "130-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 35, "defReq": 50, "hprPct": -100, "mdPct": 40, "ls": 290, "spd": -10, "hpBonus": 2875, "tDamPct": -20, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 640}, {"name": "Pulse Stopper", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 20, "eDef": 20, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": -10, "sdPct": 10, "ls": 130, "sdRaw": 50, "type": "necklace", "fixID": true, "id": 642}, {"name": "Peaceful Rest", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "16-24", "fDam": "52-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 55, "defReq": 45, "sdPct": 35, "int": 8, "spd": -25, "atkTier": -30, "spRegen": 100, "wDamPct": 30, "tDamPct": -30, "fDefPct": 40, "wDefPct": 40, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "id": 644}, {"name": "Pulse Starter", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 650, "fDef": 35, "tDef": 35, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": 10, "hprRaw": 80, "fDamPct": 7, "tDamPct": 7, "type": "necklace", "fixID": true, "id": 641}, {"name": "Rune of Safe Passage", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": -25, "wDef": -30, "aDef": -25, "lvl": 92, "spd": 7, "spRegen": 5, "fDefPct": 15, "wDefPct": 10, "aDefPct": 15, "type": "ring", "fixID": true, "id": 645}, {"name": "Corrupted Uth Sandals", "tier": "Set", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3400, "fDef": 75, "wDef": -80, "aDef": 75, "lvl": 90, "agiReq": 85, "defReq": 85, "ref": 20, "spd": 30, "fixID": true, "id": 646, "set": "Corrupted Uth"}, {"name": "The Crossing", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "tDef": -75, "eDef": -75, "lvl": 93, "mr": -10, "spRegen": 10, "sdRaw": 425, "wDamPct": -20, "fixID": true, "id": 651}, {"name": "Corrupted Witherhead's Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "37-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-170", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 74, "dexReq": 75, "agiReq": 10, "sdPct": 20, "dex": 10, "spd": -15, "spRegen": -10, "aDamPct": 14, "tDamPct": 7, "fixID": true, "id": 667}, {"name": "Depth", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "45-55", "fDam": "30-45", "wDam": "0-0", "aDam": "55-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "agiReq": 40, "defReq": 20, "def": 5, "spd": 10, "hpBonus": 900, "fDamPct": 12, "aDamPct": 12, "fixID": true, "id": 649}, {"name": "Bane", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 120, "lvl": 72, "dexReq": 50, "dex": 17, "expd": 30, "mdRaw": 125, "fixID": true, "id": 647}, {"name": "Demonio", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "90-110", "fDam": "130-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 71, "defReq": 60, "ls": 190, "xpb": 10, "str": 5, "expd": 30, "eDamPct": 20, "fixID": true, "id": 648}, {"name": "Nightmare", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "defReq": 70, "hprPct": 30, "ls": 255, "agi": 12, "fDamPct": 10, "wDamPct": -20, "aDamPct": 15, "fixID": true, "id": 650}, {"name": "Gaze from the Snowbank", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3200, "wDef": -50, "aDef": -75, "lvl": 92, "strReq": 75, "ls": -240, "ms": 20, "spd": -12, "atkTier": -2, "eSteal": 8, "mdRaw": 700, "eDamPct": 40, "fixID": true, "id": 694}, {"name": "Destructor", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "460-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "dexReq": 50, "sdPct": -15, "mdPct": 35, "expd": 100, "spd": -100, "mdRaw": 315, "tDamPct": 10, "eDamPct": 25, "fixID": true, "id": 652}, {"name": "Wall Breaker", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "225-335", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-1125", "atkSpd": "SUPER_SLOW", "lvl": 72, "strReq": 80, "sdPct": -60, "mdPct": 65, "str": 10, "expd": 100, "spd": -20, "aDamPct": 15, "fixID": true, "id": 654}, {"name": "Corruption Seal", "tier": "Unique", "type": "boots", "poison": 675, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2650, "wDef": -90, "aDef": -90, "tDef": 90, "eDef": 90, "lvl": 92, "strReq": 40, "dexReq": 40, "ls": 205, "ms": 5, "str": 7, "dex": 7, "spRegen": -10, "hprRaw": -125, "tDamPct": 23, "eDamPct": 23, "id": 655}, {"name": "Cotton Swab", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "130-138", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 83, "agiReq": 40, "agi": 40, "fDefPct": -50, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 656}, {"name": "Void", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "aDef": 80, "lvl": 73, "agiReq": 60, "xpb": 15, "lb": 15, "int": -10, "spd": 15, "aDamPct": 15, "fixID": true, "id": 653}, {"name": "Cosmium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 450, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 657}, {"name": "Couteau", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "66-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 56, "sdPct": -5, "mdPct": 10, "str": 8, "dex": 8, "id": 662}, {"name": "Countdown", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-52", "fDam": "10-62", "wDam": "10-62", "aDam": "0-72", "tDam": "0-72", "eDam": "20-52", "atkSpd": "FAST", "lvl": 84, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": -15, "sdPct": 15, "mdPct": 15, "hprRaw": -290, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "id": 661}, {"name": "Coursing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1250, "wDef": -60, "eDef": -60, "lvl": 68, "dexReq": 25, "dex": 7, "expd": 10, "mdRaw": 105, "wDamPct": -7, "tDamPct": 13, "eDamPct": -7, "id": 659}, {"name": "Coyote Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 67, "dexReq": 20, "dex": 5, "agi": 3, "mdRaw": 16, "type": "necklace", "id": 663}, {"name": "Crack the Skies", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-160", "tDam": "80-110", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 100, "dexReq": 35, "agiReq": 50, "sdPct": 15, "dex": 7, "agi": 13, "spd": 15, "aDamPct": 10, "tDamPct": 12, "eDefPct": -16, "id": 664}, {"name": "Cracklers", "tier": "Unique", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 80, "wDef": -115, "tDef": 50, "lvl": 86, "defReq": 35, "hprPct": 30, "ls": 200, "def": 12, "expd": 20, "atkTier": -7, "mdRaw": 750, "fDamPct": 15, "tDamPct": 10, "wDefPct": -10, "id": 668}, {"name": "Coyopa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "52-96", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 25, "mr": -5, "sdPct": 12, "ls": 60, "ms": 5, "dex": 4, "expd": 15, "id": 660}, {"name": "Crackshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "149-149", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 11, "ms": 5, "xpb": 15, "id": 669}, {"name": "Crash", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -215, "wDef": -50, "tDef": 30, "eDef": 40, "lvl": 63, "strReq": 20, "dexReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "spd": -5, "type": "necklace", "id": 692}, {"name": "Crafted Gem", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "1-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 44, "xpb": 15, "lb": 12, "id": 665}, {"name": "Crater Print", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "wDef": -80, "aDef": -120, "eDef": 120, "lvl": 93, "strReq": 70, "sdPct": 19, "ms": 5, "str": 10, "spd": -15, "hprRaw": 155, "mdRaw": 255, "eDamPct": 15, "id": 671}, {"name": "Creek", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "wDef": 50, "tDef": -50, "lvl": 54, "intReq": 20, "mr": 5, "ref": 7, "spd": -10, "spRegen": 10, "wDefPct": 20, "id": 670}, {"name": "Crescendo", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 45, "wDef": 45, "lvl": 57, "intReq": 30, "defReq": 30, "hprPct": 22, "mr": 5, "sdPct": -15, "mdPct": -15, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "id": 673}, {"name": "Creeper Mask", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "thorns": 5, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 14, "expd": 5, "fixID": true, "id": 672}, {"name": "Crescent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-145", "fDam": "0-0", "wDam": "115-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "intReq": 50, "mr": 5, "xpb": 12, "spRegen": 10, "wDamPct": 15, "wDefPct": 15, "tDefPct": -10, "id": 677}, {"name": "Crestfallen", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -90, "lvl": 99, "strReq": 50, "agiReq": 40, "sdPct": 10, "mdPct": -15, "ms": 10, "sdRaw": 170, "fDamPct": -20, "tDamPct": -20, "id": 675}, {"name": "Cross", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "41-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "sdPct": -4, "mdPct": -3, "xpb": 10, "lb": 5, "id": 674}, {"name": "Cross-aegis", "displayName": "Cross-Aegis", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-105", "fDam": "31-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 30, "hprPct": 19, "def": 9, "spd": -12, "hpBonus": 450, "hprRaw": 32, "fDefPct": 13, "wDefPct": -30, "aDefPct": 13, "tDefPct": 12, "eDefPct": 12, "id": 678}, {"name": "Crimson", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-90", "fDam": "95-110", "wDam": "95-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 30, "ls": 436, "ms": -5, "int": 13, "def": 13, "hprRaw": 207, "aDefPct": 35, "tDefPct": 35, "eDefPct": 35, "id": 679}, {"name": "Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 42, "sdPct": 20, "mdPct": 20, "str": 7, "spd": -20, "id": 681}, {"name": "Crossroad Killer", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "314-486", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "194-686", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "dexReq": 70, "sdPct": -15, "mdPct": 19, "dex": 14, "def": -5, "eDefPct": -10, "id": 680}, {"name": "Crowbeak", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "21-24", "tDam": "14-36", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "sdPct": 5, "agi": 5, "spd": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": -6, "tDefPct": -6, "eDefPct": -6, "id": 682}, {"name": "Crown of Suzaku", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 2100, "fDef": 250, "wDef": -90, "aDef": 250, "lvl": 88, "strReq": 40, "dexReq": 40, "ls": 165, "ms": 5, "str": 5, "dex": 5, "agi": -5, "def": -5, "expd": 20, "spd": -9, "eSteal": 8, "tDamPct": 14, "eDamPct": 14, "id": 683}, {"name": "Crustacean", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "35-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "mr": 5, "hpBonus": 25, "id": 729}, {"name": "Crwth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "65-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "95-120", "atkSpd": "VERY_FAST", "lvl": 83, "strReq": 35, "defReq": 35, "mr": 5, "ms": -5, "spd": -10, "fDamPct": 23, "eDamPct": 23, "aDefPct": -15, "id": 687}, {"name": "Cruel Sun", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-85", "fDam": "75-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 24, "defReq": 15, "mdPct": 20, "ls": 20, "def": 10, "expd": 30, "hprRaw": -10, "fDamPct": 15, "spRaw1": 10, "id": 684}, {"name": "Crust Crusher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "195-210", "fDam": "210-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-270", "atkSpd": "VERY_SLOW", "lvl": 99, "strReq": 35, "defReq": 35, "sdPct": -8, "mdPct": 20, "str": 10, "def": 10, "expd": 20, "spd": -15, "id": 685}, {"name": "Cryoseism", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "241-275", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "intReq": 70, "mr": 10, "mdPct": -35, "int": 15, "spd": -10, "wDamPct": 25, "spRaw1": 5, "spRaw3": -5, "spRaw4": 5, "id": 686}, {"name": "Crystal", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1575, "wDef": 110, "aDef": 110, "tDef": -70, "eDef": -70, "lvl": 69, "intReq": 45, "agiReq": 45, "mr": 10, "ref": 50, "int": 9, "agi": 9, "spd": 10, "id": 688}, {"name": "Crystal Senbon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "77-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 690}, {"name": "Crystal Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 28, "strReq": 3, "dexReq": 3, "intReq": 3, "agiReq": 3, "defReq": 3, "ref": 5, "type": "necklace", "id": 689}, {"name": "Crystal Thorn", "tier": "Rare", "type": "wand", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "NORMAL", "lvl": 80, "strReq": 30, "intReq": 30, "mr": 10, "mdPct": 5, "ref": 12, "aDefPct": -10, "tDefPct": -10, "id": 693}, {"name": "Culex", "tier": "Rare", "type": "leggings", "poison": 172, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 585, "aDef": -20, "tDef": -25, "lvl": 50, "agiReq": 20, "ls": 60, "agi": 9, "id": 695}, {"name": "Cue Stick", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "220-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "150-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 50, "mdPct": 12, "ms": 5, "dex": 16, "eSteal": 5, "tDefPct": 77, "id": 691}, {"name": "Cumulus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1225, "wDef": 30, "aDef": 60, "tDef": -80, "lvl": 70, "agiReq": 40, "agi": 8, "spd": 9, "wDamPct": 10, "id": 701}, {"name": "Curador Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3300, "fDef": 120, "wDef": 120, "tDef": -150, "lvl": 99, "intReq": 45, "defReq": 45, "hprPct": 20, "ls": 255, "ms": 10, "dex": 8, "int": 5, "def": 5, "expd": -30, "hprRaw": 160, "eDamPct": -20, "id": 698}, {"name": "Curse", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "9-11", "aDam": "0-0", "tDam": "0-0", "eDam": "9-11", "atkSpd": "VERY_FAST", "lvl": 38, "strReq": 5, "hprPct": 12, "mr": 5, "ls": -20, "int": 7, "tDamPct": -10, "eDamPct": 10, "wDefPct": 10, "tDefPct": -10, "id": 697}, {"name": "Cursed Spike", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-185", "atkSpd": "FAST", "lvl": 80, "strReq": 45, "hprPct": -30, "hpBonus": -1700, "spRegen": -15, "eDefPct": 6, "id": 699}, {"name": "Cursed Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 18, "mr": -10, "ms": 20, "xpb": 10, "lb": 10, "spRegen": -5, "aDefPct": -15, "id": 702}, {"name": "Cursed Jackboots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 80, "tDef": 50, "lvl": 66, "dexReq": 20, "intReq": 20, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 120, "wDamPct": 12, "tDamPct": 12, "eDefPct": -35, "fixID": true, "id": 3630}, {"name": "Cyanine", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 90, "tDef": -120, "lvl": 73, "intReq": 55, "mdPct": -17, "int": 5, "wDamPct": 25, "tDefPct": -12, "id": 700}, {"name": "Cyclo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 21, "dexReq": 4, "agiReq": 8, "dex": 4, "agi": 8, "spd": 10, "sdRaw": 23, "mdRaw": 26, "id": 705}, {"name": "Cyclone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-45", "fDam": "0-0", "wDam": "0-0", "aDam": "30-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "agiReq": 25, "defReq": 40, "agi": 10, "spd": 25, "hprRaw": -150, "mdRaw": 45, "fDamPct": 30, "fDefPct": 8, "aDefPct": 8, "id": 703}, {"name": "Cyclops' Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "intReq": 10, "hprPct": -8, "mr": 5, "sdPct": 6, "int": 7, "sdRaw": 15, "id": 704}, {"name": "Cypress", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "9-57", "aDam": "0-0", "tDam": "0-0", "eDam": "16-50", "atkSpd": "SLOW", "lvl": 35, "strReq": 18, "intReq": 18, "sdPct": 10, "mdPct": 10, "str": 4, "int": 4, "wDamPct": 8, "eDamPct": 8, "aDefPct": -19, "id": 706}, {"name": "Czytash's Compass", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 20, "lvl": 55, "lb": 6, "agi": 4, "spd": 4, "type": "bracelet", "id": 707}, {"name": "Butterfly", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 70, "lvl": 24, "agiReq": 10, "agi": 12, "spd": 6, "aDefPct": 10, "fixID": true, "id": 709}, {"name": "Widow", "tier": "Rare", "type": "relik", "poison": 2400, "thorns": 55, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "42-43", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "dexReq": 40, "defReq": 30, "ls": 220, "ref": 30, "str": 40, "fixID": true, "spPct1": 105, "id": 708}, {"name": "Brise", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 135, "lvl": 24, "intReq": 12, "mr": 5, "sdPct": 15, "int": 5, "fixID": true, "id": 710}, {"name": "Garoth's Hope", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 160, "fDef": 15, "wDef": -20, "lvl": 26, "spd": -5, "fDamPct": 30, "fDefPct": 20, "fixID": true, "id": 713}, {"name": "Field", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 8, "wDef": 10, "aDef": 4, "tDef": 2, "eDef": 6, "lvl": 30, "fDamPct": 6, "wDamPct": 5, "aDamPct": 7, "tDamPct": 8, "eDamPct": 9, "type": "ring", "fixID": true, "id": 712}, {"name": "Gold Digger", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 120, "lvl": 25, "xpb": 10, "lb": 30, "spd": 3, "fixID": true, "id": 714}, {"name": "Mud", "tier": "Legendary", "type": "boots", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 280, "eDef": 20, "lvl": 28, "strReq": 15, "mdPct": 38, "str": 6, "spd": -10, "fixID": true, "id": 711}, {"name": "Nauticals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "75-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-140", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 45, "intReq": 60, "mr": 15, "sdPct": -25, "mdPct": -25, "ms": 15, "dex": 15, "int": 15, "spd": -10, "wDamPct": 30, "fixID": true, "id": 715}, {"name": "Vitre", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 26, "int": 5, "def": -5, "type": "bracelet", "fixID": true, "id": 716}, {"name": "Black Amaranth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-250", "atkSpd": "SLOW", "lvl": 95, "strReq": 60, "str": 10, "hpBonus": 1500, "hprRaw": -150, "eDamPct": 30, "eDefPct": 30, "fixID": true, "spRaw1": -10, "id": 718}, {"name": "Dying Lobelia", "tier": "Legendary", "poison": 1150, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 97, "strReq": 65, "hprPct": -20, "mdPct": 13, "wDamPct": -25, "type": "bracelet", "fixID": true, "id": 719}, {"name": "Forest Aconite", "tier": "Rare", "type": "dagger", "poison": 3300, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "strReq": 70, "hpBonus": -1000, "aDefPct": -25, "fixID": true, "spPct4": 28, "rainbowRaw": 1275, "id": 720}, {"name": "Flashfire Gauntlet", "tier": "Set", "thorns": 6, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 40, "lvl": 94, "defReq": 40, "def": 4, "hprRaw": 90, "type": "bracelet", "fixID": true, "id": 722, "set": "Flashfire"}, {"name": "Yellow Rose", "tier": "Rare", "type": "wand", "thorns": 80, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-925", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 95, "dexReq": 60, "mdPct": 15, "ls": 400, "str": 30, "int": 30, "agi": -30, "def": -30, "fixID": true, "id": 723}, {"name": "Flashfire Knuckle", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 450, "fDef": 10, "wDef": -30, "lvl": 94, "defReq": 40, "ls": 90, "sdRaw": -50, "type": "ring", "fixID": true, "id": 724, "set": "Flashfire"}, {"name": "Royal Hydrangea", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "150-175", "aDam": "140-185", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 65, "ref": 50, "int": 15, "agi": 25, "wDamPct": -25, "aDamPct": -25, "fixID": true, "spPct1": -105, "id": 721}, {"name": "Salpinx", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "113-167", "fDam": "0-0", "wDam": "0-0", "aDam": "113-167", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "agiReq": 77, "mr": -35, "ls": -277, "ms": 35, "agi": 21, "aDamPct": 21, "fixID": true, "spPct2": -54, "spPct3": -34, "id": 726}, {"name": "Paranoia", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "81-81", "fDam": "80-80", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "agiReq": 35, "defReq": 35, "mr": -5, "ls": 200, "ms": 10, "spd": 15, "hprRaw": -100, "fixID": true, "spPct1": -28, "id": 730}, {"name": "Byte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 91, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "type": "ring", "fixID": true, "id": 727}, {"name": "Anti-Static", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "tDef": 200, "eDef": 300, "lvl": 91, "strReq": 80, "ref": 15, "str": 10, "def": 8, "eDamPct": 15, "fDefPct": 10, "wDefPct": 5, "aDefPct": 15, "tDefPct": 30, "eDefPct": 20, "fixID": true, "id": 725}, {"name": "Discharge", "tier": "Rare", "type": "chestplate", "thorns": 15, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2800, "wDef": -100, "tDef": -50, "eDef": -150, "lvl": 91, "dexReq": 80, "dex": 10, "mdRaw": 155, "wDamPct": 10, "tDamPct": 70, "fixID": true, "id": 728}, {"name": "Compiler", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "500-685", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 55, "mdPct": 20, "xpb": 20, "str": 20, "dex": 20, "int": 20, "agi": 20, "def": 20, "eDamPct": 20, "fixID": true, "id": 856}, {"name": "Hardcore", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-149", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 75, "ms": 5, "mdRaw": 90, "tDamPct": -20, "eDamPct": 30, "wDefPct": -20, "aDefPct": -35, "fixID": true, "spRaw3": -10, "id": 733}, {"name": "Heat Sink", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3750, "fDef": 160, "lvl": 92, "agiReq": 55, "defReq": 45, "hprPct": 25, "ls": 400, "agi": 10, "def": 5, "spd": 15, "fDamPct": 15, "aDefPct": 20, "fixID": true, "sprintReg": 10, "id": 732}, {"name": "Megabyte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 92, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "type": "bracelet", "fixID": true, "id": 737}, {"name": "Packet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "65-185", "fDam": "0-0", "wDam": "0-0", "aDam": "155-155", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "agiReq": 50, "sdPct": 10, "agi": 5, "expd": 100, "spd": 10, "sdRaw": 210, "aDamPct": 15, "fixID": true, "id": 735}, {"name": "Sawtooth", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "20-45", "fDam": "10-35", "wDam": "10-35", "aDam": "10-35", "tDam": "10-35", "eDam": "10-35", "atkSpd": "SUPER_FAST", "lvl": 91, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 20, "mdPct": 20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 736}, {"name": "Wick", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "58-90", "fDam": "0-0", "wDam": "0-0", "aDam": "30-55", "tDam": "20-65", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "dexReq": 55, "agiReq": 45, "ms": 10, "ref": 30, "agi": 7, "spd": 25, "aDamPct": 15, "eDamPct": -25, "tDefPct": 20, "fixID": true, "id": 741}, {"name": "Sine", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2550, "wDef": 60, "tDef": 75, "lvl": 93, "dexReq": 75, "intReq": 75, "ms": 15, "dex": 15, "int": 15, "wDamPct": 15, "tDamPct": 15, "aDefPct": -45, "fixID": true, "id": 734}, {"name": "Ensa's Faith", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "fDef": -30, "wDef": 60, "lvl": 73, "intReq": 25, "hprPct": 23, "mr": 5, "xpb": 10, "ref": 10, "spRegen": 15, "type": "necklace", "id": 2263}, {"name": "Gale's Sight", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 2000, "fDef": -140, "aDef": 210, "tDef": 140, "lvl": 80, "agiReq": 60, "xpb": 30, "ref": 30, "dex": 7, "agi": 10, "spd": 20, "aDamPct": 15, "aDefPct": 25, "spRaw2": -15, "jh": 2, "id": 2265}, {"name": "Cerid's Ingenuity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 630, "fDef": 50, "wDef": 50, "aDef": 30, "lvl": 45, "intReq": 15, "defReq": 20, "hprPct": 18, "mr": 5, "fDamPct": 23, "wDamPct": 23, "tDefPct": -18, "eDefPct": -23, "id": 2262}, {"name": "Remikas' Authority", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "hp": 350, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 66, "defReq": 60, "str": 3, "dex": 2, "int": 3, "agi": 2, "def": 6, "type": "bracelet", "id": 2267}, {"name": "Rycar's Elation", "tier": "Legendary", "poison": 340, "category": "accessory", "drop": "DUNGEON", "hp": -140, "lvl": 59, "str": 7, "hprRaw": -25, "type": "ring", "id": 2266}, {"name": "Ohms' Rage", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 440, "aDef": 20, "tDef": 50, "lvl": 52, "dexReq": 40, "mr": -5, "mdPct": 30, "ms": -5, "tDamPct": 30, "wDefPct": -45, "eDefPct": -55, "spPct2": -14, "spPct3": -10, "id": 2264}, {"name": "Kindled Orchid", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": -80, "eDef": -80, "lvl": 96, "dexReq": 50, "defReq": 45, "hprPct": -30, "mr": -5, "mdPct": 10, "ls": 265, "def": 10, "atkTier": 1, "sdRaw": -75, "fixID": true, "id": 740}, {"name": "Ra", "tier": "Legendary", "category": "accessory", "drop": "dungeon", "wDef": -20, "lvl": 36, "hprPct": 12, "hprRaw": 12, "fDamPct": 6, "type": "bracelet", "id": 739}, {"name": "Tisaun's Valor", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 3075, "lvl": 87, "strReq": 50, "defReq": 60, "mdPct": 15, "xpb": 20, "str": 15, "def": 10, "atkTier": 1, "id": 2268}, {"name": "Rat Skull", "tier": "Unique", "type": "helmet", "poison": 4, "category": "armor", "slots": 1, "drop": "dungeon", "hp": 40, "aDef": 3, "lvl": 10, "spd": 8, "id": 744}, {"name": "Scorpion Tail", "tier": "Rare", "type": "leggings", "poison": 135, "category": "armor", "slots": 1, "drop": "dungeon", "restrict": "Untradable", "hp": 250, "lvl": 36, "spd": 5, "id": 738}, {"name": "Witherhead's Bow", "tier": "Legendary", "type": "bow", "poison": 40, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "3-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-17", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 12, "ms": 5, "agi": -3, "sdRaw": 8, "id": 742}, {"name": "Vertebra", "tier": "Unique", "category": "accessory", "drop": "dungeon", "lvl": 8, "def": 4, "hpBonus": 8, "type": "bracelet", "id": 743}, {"name": "Arakadicus' Body", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "dungeon", "hp": 145, "aDef": -10, "eDef": 15, "lvl": 21, "xpb": 10, "lb": 10, "str": 5, "dex": 5, "agi": 10, "spd": 10, "tDamPct": 15, "eDamPct": 15, "id": 745}, {"name": "Silkwrap", "tier": "Rare", "category": "accessory", "drop": "dungeon", "hp": 15, "lvl": 17, "defReq": 5, "mdPct": -3, "spd": -3, "hprRaw": 4, "type": "ring", "id": 747}, {"name": "Spider's Eye Pendant", "tier": "Rare", "category": "accessory", "drop": "dungeon", "lvl": 20, "mdPct": 8, "dex": 4, "type": "necklace", "id": 746}, {"name": "Spider Bracelet", "tier": "Unique", "poison": 18, "category": "accessory", "drop": "dungeon", "eDef": 5, "lvl": 19, "agi": 4, "type": "bracelet", "id": 748}, {"name": "Spiderweb String", "tier": "Unique", "type": "bow", "poison": 57, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "40-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 17, "ls": 15, "spd": -6, "id": 752}, {"name": "Webstring", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "16-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "14-16", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "dexReq": 5, "ms": 5, "dex": 7, "spd": -6, "eSteal": 3, "id": 749}, {"name": "Blasphemy", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "wDef": 30, "lvl": 50, "intReq": 40, "ls": 55, "ms": 30, "xpb": 10, "fixID": true, "id": 751}, {"name": "Brainfreeze", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 550, "wDef": 20, "aDef": 20, "lvl": 46, "sdPct": 18, "mdPct": 18, "int": -10, "spRegen": 10, "fixID": true, "id": 756}, {"name": "Criistal", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 49, "xpb": 15, "lb": 10, "spd": 5, "type": "necklace", "fixID": true, "id": 757}, {"name": "Heartbreak", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 550, "tDef": 30, "lvl": 49, "dexReq": 50, "dex": 5, "atkTier": 1, "tDamPct": 10, "fixID": true, "id": 753}, {"name": "Iron Foot", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "lvl": 49, "strReq": 35, "mdPct": 25, "str": 8, "spd": -10, "eDamPct": 15, "fDefPct": -10, "eDefPct": 20, "fixID": true, "id": 758}, {"name": "Hearthfire", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 48, "defReq": 30, "ls": 50, "def": 7, "fDefPct": 45, "fixID": true, "id": 754}, {"name": "Shade", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 450, "aDef": 40, "lvl": 48, "agiReq": 30, "agi": 10, "spd": 20, "fDamPct": -10, "wDamPct": -10, "aDamPct": 25, "tDamPct": -10, "eDamPct": -10, "fixID": true, "id": 755}, {"name": "Vapor", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 45, "intReq": 35, "fDamPct": 15, "wDamPct": -10, "fDefPct": 15, "type": "ring", "fixID": true, "id": 760}, {"name": "Barbed", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "dexReq": 50, "mdPct": 10, "ref": 20, "def": 5, "tDamPct": 15, "tDefPct": 10, "fixID": true, "id": 759}, {"name": "Cuthroat", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-65", "fDam": "65-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "defReq": 40, "ls": 75, "def": 5, "hpBonus": 980, "fixID": true, "id": 761}, {"name": "Jungle Spirit", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 45, "agi": 10, "spd": 10, "aDamPct": 22, "fixID": true, "id": 764}, {"name": "Granite Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 800, "lvl": 55, "strReq": 40, "sdPct": -30, "mdPct": 40, "spd": -15, "eDamPct": 10, "fixID": true, "id": 763}, {"name": "Fetish", "tier": "Rare", "type": "leggings", "poison": 250, "thorns": 10, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 30, "lvl": 55, "dexReq": 35, "dex": 5, "spd": 5, "mdRaw": 90, "tDamPct": 10, "fixID": true, "id": 762}, {"name": "Lobotomy", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 640, "aDef": 40, "lvl": 54, "agiReq": 35, "int": -20, "agi": 5, "spd": 10, "aDamPct": 25, "fixID": true, "id": 768}, {"name": "Molten Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 80, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 56, "defReq": 30, "hprPct": 10, "str": 4, "fDamPct": 15, "eDamPct": 15, "fixID": true, "id": 765}, {"name": "Sacrificial", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "79-95", "eDam": "80-85", "atkSpd": "NORMAL", "lvl": 55, "strReq": 30, "dexReq": 30, "ls": 85, "ms": 5, "tDamPct": 10, "eDamPct": 10, "fixID": true, "spRaw1": -5, "id": 770}, {"name": "Admiral", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 45, "wDef": 45, "aDef": 45, "tDef": 45, "eDef": 45, "lvl": 67, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "xpb": 15, "lb": 20, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "fixID": true, "id": 771}, {"name": "Whirlwind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "55-80", "fDam": "0-0", "wDam": "0-0", "aDam": "50-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "agiReq": 40, "sdPct": 7, "ref": 40, "spd": 10, "aDamPct": 6, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 767}, {"name": "Piranha", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "dungeon", "restrict": "Untradable", "hp": 470, "wDef": 20, "lvl": 56, "intReq": 35, "ms": 10, "dex": 5, "agi": 5, "wDamPct": 25, "fixID": true, "id": 766}, {"name": "Algaa", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-330", "atkSpd": "VERY_SLOW", "lvl": 64, "strReq": 40, "lb": 10, "str": 5, "int": 5, "wDamPct": 16, "fixID": true, "id": 774}, {"name": "Grounder", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "SLOW", "lvl": 64, "strReq": 40, "sdPct": -5, "mdPct": 10, "xpb": 18, "tDamPct": 10, "fixID": true, "id": 769}, {"name": "Ouragan", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "35-50", "fDam": "0-0", "wDam": "40-80", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 35, "mr": 10, "sdPct": 15, "agi": 4, "spd": 5, "aDamPct": 10, "fixID": true, "id": 772}, {"name": "Redbeard's Hand Cannon", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "960-1223", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 66, "strReq": 10, "lb": 30, "expd": 40, "spd": -20, "eSteal": 10, "fixID": true, "id": 776}, {"name": "The Evolved", "tier": "Legendary", "type": "bow", "poison": 3500, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 75, "hprPct": -80, "str": 25, "hpBonus": 2250, "mdRaw": 550, "fixID": true, "spRaw1": -20, "id": 777}, {"name": "Gaping Cavity", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "fDef": -80, "lvl": 100, "dexReq": 10, "ls": 1200, "ms": 20, "fixID": true, "id": 775}, {"name": "Rumble", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "6-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 64, "dexReq": 40, "mdPct": 10, "ls": 105, "eSteal": 5, "fDamPct": -10, "wDamPct": -10, "tDamPct": 15, "fixID": true, "id": 778}, {"name": "The Exploited", "tier": "Legendary", "type": "dagger", "majorIds": ["GREED"], "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "45-65", "wDam": "0-0", "aDam": "25-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "agiReq": 40, "defReq": 65, "sdPct": -30, "spd": 12, "eSteal": 10, "mdRaw": 135, "fixID": true, "spRaw4": -15, "id": 779}, {"name": "The Forsaken", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-100", "fDam": "0-0", "wDam": "28-65", "aDam": "28-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "intReq": 60, "agiReq": 60, "mr": -15, "ms": 15, "int": 10, "spd": 15, "sdRaw": 210, "tDamPct": 30, "fDefPct": -50, "eDefPct": -50, "fixID": true, "id": 780}, {"name": "The Watched", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "57-63", "wDam": "45-50", "aDam": "57-63", "tDam": "57-63", "eDam": "57-63", "atkSpd": "FAST", "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "sdPct": -25, "hpBonus": 5000, "wDamPct": 35, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "spRaw1": -5, "id": 783}, {"name": "Sprout", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-130", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 30, "sdPct": -25, "mdPct": 25, "spd": -25, "eDamPct": 12, "fixID": true, "id": 786}, {"name": "Clunderthap", "tier": "Rare", "type": "wand", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 20, "xpb": 20, "dex": 5, "hpBonus": -50, "tDamPct": 20, "fixID": true, "id": 784}, {"name": "Writhing Growth", "tier": "Legendary", "type": "leggings", "poison": 998, "thorns": 51, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4204, "fDef": 129, "tDef": 97, "eDef": 106, "lvl": 100, "strReq": 49, "dexReq": 31, "defReq": 37, "agi": -43, "atkTier": -6, "mdRaw": 1997, "fixID": true, "spPct1": 23, "spPct2": 15, "spPct3": 32, "spPct4": 23, "id": 782}, {"name": "Chaser", "tier": "Legendary", "type": "bow", "poison": 150, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-24", "fDam": "0-0", "wDam": "0-0", "aDam": "39-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "agiReq": 30, "agi": 10, "spd": 30, "fixID": true, "id": 785}, {"name": "Hashr Claw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-50", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 39, "dexReq": 30, "xpb": 10, "spd": 10, "sdRaw": 40, "wDamPct": 10, "fixID": true, "id": 790}, {"name": "Dune Beast Jaw", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 400, "lvl": 36, "strReq": 15, "mdPct": 10, "str": 10, "spd": 5, "fixID": true, "id": 787}, {"name": "Miasma", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-40", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 35, "ls": 39, "ms": 15, "agi": 3, "spd": 10, "fixID": true, "id": 802}, {"name": "Jaw Breaker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-135", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "mdPct": 10, "xpb": 10, "str": 8, "expd": 15, "spd": -5, "fixID": true, "id": 788}, {"name": "Springtrap", "tier": "Legendary", "type": "chestplate", "thorns": 65, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "eDef": 50, "lvl": 39, "hprPct": -25, "ref": 50, "expd": 40, "fixID": true, "id": 791}, {"name": "Tremolo", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "35-36", "tDam": "34-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 13, "agiReq": 13, "xpb": 11, "lb": 11, "str": -11, "dex": 11, "agi": 11, "fixID": true, "jh": 1, "id": 750}, {"name": "Sol", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-30", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 15, "hprPct": 12, "ref": 10, "hpBonus": 360, "hprRaw": 21, "eDamPct": 10, "fixID": true, "id": 794}, {"name": "Corpse", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-9", "atkSpd": "SLOW", "lvl": 8, "mdPct": 6, "lb": 6, "str": 1, "fixID": true, "id": 793}, {"name": "Defibrillator", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "4-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-15", "eDam": "0-0", "atkSpd": "FAST", "lvl": 9, "dex": 4, "mdRaw": 9, "tDamPct": 7, "fixID": true, "id": 792}, {"name": "Knee", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 38, "lvl": 9, "xpb": 5, "agi": 5, "fixID": true, "id": 797}, {"name": "Macabre", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "untradable", "nDam": "10-12", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "ls": 6, "def": 3, "fDamPct": 6, "fixID": true, "id": 798}, {"name": "Serpent's Kiss", "tier": "Rare", "type": "wand", "poison": 40, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "agi": 3, "fixID": true, "id": 795}, {"name": "Ribcage", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 58, "wDef": -3, "aDef": -3, "eDef": 5, "lvl": 12, "hprRaw": 5, "eDamPct": 6, "fixID": true, "id": 796}, {"name": "Sketiq", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "1-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "agi": 3, "spd": 5, "aDamPct": 6, "fixID": true, "id": 800}, {"name": "Skull Breaker", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "40-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 10, "sdPct": -6, "mdPct": 8, "spd": -3, "fixID": true, "id": 801}, {"name": "Fangs", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "sdPct": 7, "ms": 5, "xpb": 6, "int": 2, "fixID": true, "id": 799}, {"name": "Stale", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "sdPct": 10, "int": 3, "wDamPct": 6, "fixID": true, "id": 803}, {"name": "Witherhead's Talisman", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 12, "sdPct": 5, "xpb": 8, "lb": 5, "type": "necklace", "fixID": true, "id": 804}, {"name": "Hourglass", "tier": "Rare", "type": "relik", "poison": 135, "thorns": 18, "category": "weapon", "drop": "never", "restrict": "untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "agi": 4, "fixID": true, "spPct1": 105, "id": 805}, {"name": "Iklaj", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "9-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "agiReq": 5, "str": -3, "dex": 2, "agi": 4, "spd": 10, "tDamPct": 8, "fixID": true, "id": 812}, {"name": "Abdomen", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 20, "agi": 4, "spd": 7, "fixID": true, "id": 806, "set": "Spider"}, {"name": "Maul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "86-114", "atkSpd": "SUPER_SLOW", "lvl": 21, "strReq": 10, "mr": -5, "mdPct": 10, "spd": -6, "fixID": true, "id": 807}, {"name": "Cephalothorax", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 75, "lvl": 16, "dex": 4, "spd": 7, "fixID": true, "id": 809, "set": "Spider"}, {"name": "Spinneret", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 95, "lvl": 19, "dex": 3, "agi": 3, "spd": 7, "fixID": true, "id": 808, "set": "Spider"}, {"name": "Stingy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "wDef": -5, "lvl": 20, "wDamPct": -8, "tDamPct": 17, "fixID": true, "id": 813}, {"name": "Spider Ring", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 3, "lvl": 18, "ls": 3, "spd": 3, "type": "ring", "fixID": true, "id": 811}, {"name": "Sting", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "10-18", "fDam": "14-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "defReq": 5, "ls": 10, "fixID": true, "id": 814}, {"name": "Web Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 50, "fDef": -10, "eDef": 5, "lvl": 22, "ls": 16, "ms": 10, "spd": -10, "eDamPct": 5, "fixID": true, "id": 810}, {"name": "Abolition", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "50-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "defReq": 15, "ls": 38, "xpb": 22, "lb": 22, "fDamPct": 10, "fixID": true, "id": 816}, {"name": "Black Ripper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 250, "wDef": -10, "lvl": 30, "dexReq": 15, "mdRaw": 43, "tDamPct": 20, "fixID": true, "id": 820}, {"name": "Cathedral", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "14-24", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "agiReq": 20, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "aDefPct": 10, "fixID": true, "id": 817}, {"name": "Damnation", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "defReq": 20, "xpb": 10, "def": 4, "mdRaw": 70, "fDamPct": 32, "fixID": true, "id": 818}, {"name": "Dead Samurai's Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": 10, "wDef": 10, "aDef": 12, "lvl": 27, "agiReq": 10, "xpb": 8, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fixID": true, "id": 819}, {"name": "Hymn of the Dead", "tier": "Legendary", "type": "wand", "poison": 220, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "spd": 10, "aDamPct": 20, "fixID": true, "id": 823}, {"name": "Death's Reach", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "42-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "44-55", "atkSpd": "SLOW", "lvl": 29, "strReq": 10, "sdPct": -20, "mdPct": 20, "str": 4, "spd": -50, "eDamPct": 35, "fixID": true, "id": 822}, {"name": "Sanies", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-42", "fDam": "0-0", "wDam": "20-42", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 15, "sdPct": 40, "ms": -10, "wDamPct": 5, "eDamPct": 10, "fixID": true, "id": 821}, {"name": "Putrid", "tier": "Rare", "type": "wand", "poison": 60, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "14-18", "aDam": "0-0", "tDam": "0-0", "eDam": "16-22", "atkSpd": "NORMAL", "lvl": 28, "spd": -3, "hpBonus": 150, "fixID": true, "id": 825}, {"name": "Thriller", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "6-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 28, "dexReq": 20, "ms": 5, "spd": 8, "hpBonus": -100, "sdRaw": 40, "tDamPct": 13, "tDefPct": 13, "fixID": true, "id": 824}, {"name": "Styx's Grab", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "0-0", "wDam": "20-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "intReq": 12, "sdPct": 20, "ls": 24, "ms": 10, "fixID": true, "id": 826}, {"name": "Dalaam", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1480, "fDef": -75, "aDef": 75, "tDef": -75, "eDef": 75, "lvl": 67, "strReq": 30, "agiReq": 30, "mdPct": 10, "str": 10, "agi": 10, "spd": 10, "eDamPct": 10, "aDefPct": 10, "id": 828}, {"name": "Damasse", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 2, "lb": 6, "int": 3, "hpBonus": 3, "id": 827}, {"name": "Dance Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "fDef": -10, "aDef": 15, "eDef": -10, "lvl": 46, "agiReq": 20, "agi": 5, "spd": 11, "fDamPct": -5, "aDamPct": 5, "eDamPct": -5, "id": 829}, {"name": "Web Spitter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "13-26", "fDam": "0-0", "wDam": "14-20", "aDam": "10-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "agi": 3, "spd": 10, "aDamPct": 6, "fixID": true, "id": 815}, {"name": "Dancing Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-55", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "agiReq": 45, "ref": 15, "agi": 10, "spd": 15, "aDamPct": 15, "fDefPct": -15, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 832}, {"name": "Dancer's Rhythm", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-75", "fDam": "0-0", "wDam": "0-0", "aDam": "20-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "agiReq": 20, "agi": 7, "def": -5, "spd": 15, "id": 830}, {"name": "Dandelion", "tier": "Unique", "type": "chestplate", "thorns": 12, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "wDef": 5, "aDef": -6, "eDef": 5, "lvl": 22, "hprPct": 15, "sdRaw": 10, "id": 831}, {"name": "Dapper Trilby", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "lvl": 9, "xpb": 5, "lb": 4, "int": 3, "id": 833}, {"name": "Dark Ambience", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "ls": 5, "lb": 7, "id": 835}, {"name": "Dark Channeler", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "wDef": 90, "aDef": -100, "tDef": 90, "eDef": -100, "lvl": 93, "dexReq": 45, "intReq": 45, "mr": 5, "sdPct": 7, "ms": 5, "spRegen": -5, "sdRaw": 148, "wDamPct": 16, "tDamPct": 16, "aDefPct": -40, "eDefPct": -40, "id": 834}, {"name": "Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-14", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 6, "ms": 5, "eDefPct": -5, "id": 839}, {"name": "Dark Mage Robes", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "wDef": 30, "tDef": 30, "lvl": 52, "dexReq": 15, "intReq": 15, "mr": 5, "sdPct": 10, "mdPct": -10, "ms": 5, "wDamPct": 12, "tDamPct": 12, "fDefPct": -10, "aDefPct": -10, "eDefPct": -10, "id": 841}, {"name": "Dark Shroud", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "aDef": 50, "tDef": 70, "lvl": 82, "dexReq": 15, "agiReq": 50, "sdPct": -15, "mdPct": -20, "ms": 5, "ref": 30, "dex": 15, "agi": 35, "spd": 25, "aDefPct": 40, "id": 836}, {"name": "Karma", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "intReq": 25, "mr": 10, "sdPct": 108, "int": 6, "wDamPct": 10, "aDamPct": 20, "fixID": true, "id": 789}, {"name": "Darkiron Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "defReq": 5, "def": 4, "spd": -3, "hprRaw": 5, "type": "ring", "id": 837}, {"name": "Darkiron Scrap", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 25, "lvl": 3, "def": 7, "spd": -4, "hprRaw": 3, "id": 838}, {"name": "Darksteel Full Helm", "tier": "Rare", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "fDef": 100, "wDef": -120, "tDef": 100, "eDef": -80, "lvl": 90, "dexReq": 45, "defReq": 45, "ref": 15, "str": 10, "dex": 10, "def": 10, "spd": 15, "atkTier": -15, "mdRaw": 1050, "fDamPct": 15, "wDamPct": -15, "tDamPct": 15, "id": 840}, {"name": "Darksteel Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 450, "fDef": 40, "wDef": -30, "tDef": 40, "eDef": -30, "lvl": 96, "dexReq": 20, "defReq": 40, "dex": 5, "def": 4, "spd": -7, "hpBonus": 200, "type": "ring", "id": 862}, {"name": "Darkiron Zweihander", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-125", "fDam": "50-125", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 36, "agiReq": 15, "defReq": 25, "mdPct": 10, "ls": 39, "def": 7, "wDamPct": -15, "fDefPct": 20, "aDefPct": 20, "id": 843}, {"name": "Daybreak", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-50", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 40, "dexReq": 10, "defReq": 15, "hprPct": 10, "sdPct": 15, "lb": 10, "spd": -15, "atkTier": -1, "hpBonus": 125, "wDamPct": -15, "id": 881}, {"name": "Dart Frog's Skin", "tier": "Unique", "type": "boots", "poison": 3000, "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "fDef": 60, "aDef": -130, "eDef": 70, "lvl": 85, "strReq": 40, "defReq": 35, "sdPct": -10, "mdPct": -50, "ref": 20, "str": 4, "agi": 7, "spd": 12, "atkTier": -1, "tDefPct": -20, "id": 874}, {"name": "Darkweaver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "250-380", "aDam": "0-0", "tDam": "250-380", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 89, "dexReq": 40, "intReq": 40, "mr": -15, "sdPct": 19, "ms": 10, "ref": 17, "spd": -10, "wDamPct": 17, "tDamPct": 17, "eDefPct": -17, "id": 842}, {"name": "Dart Sling", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "sdPct": 6, "dex": 4, "id": 844}, {"name": "Dead Man's Flats", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "fDef": 40, "wDef": -75, "aDef": 30, "lvl": 55, "agiReq": 25, "defReq": 25, "hprPct": -10, "mdPct": 9, "spd": -9, "fDamPct": 12, "aDefPct": 11, "id": 845}, {"name": "Death Growl", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "str": 6, "id": 851}, {"name": "Deathbringer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-120", "eDam": "82-100", "atkSpd": "SLOW", "lvl": 83, "strReq": 35, "dexReq": 35, "mr": -5, "sdPct": 16, "mdPct": 22, "ls": 205, "ms": 5, "spd": -7, "hprRaw": -95, "id": 849}, {"name": "Dead Sands", "tier": "Legendary", "type": "leggings", "poison": 145, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 32, "hprPct": -35, "mdPct": 12, "ls": 26, "hpBonus": -100, "fDefPct": 15, "wDefPct": -20, "id": 847}, {"name": "Death's Toe", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "eDef": -35, "lvl": 49, "dexReq": 10, "ls": 28, "ms": 10, "id": 846}, {"name": "Decoder Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "intReq": 8, "sdPct": 6, "xpb": 9, "lb": 6, "type": "ring", "id": 855}, {"name": "Deathsplinter", "tier": "Unique", "type": "wand", "poison": 1420, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-170", "eDam": "0-170", "atkSpd": "SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "ls": 725, "ms": 5, "str": 25, "dex": 25, "hprRaw": -500, "aDefPct": -30, "id": 850}, {"name": "Deepwood Root", "tier": "Unique", "type": "wand", "thorns": 6, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "50-75", "atkSpd": "SLOW", "lvl": 86, "strReq": 30, "intReq": 35, "mr": 5, "sdPct": 10, "wDamPct": 8, "fDefPct": -20, "eDefPct": 12, "id": 848}, {"name": "Defiance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "aDef": 50, "lvl": 60, "agiReq": 40, "defReq": 40, "sdPct": -8, "mdPct": -8, "agi": 8, "def": 8, "spd": -12, "wDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 854}, {"name": "Deja Vu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "82-94", "wDam": "82-94", "aDam": "82-94", "tDam": "7-7", "eDam": "7-7", "atkSpd": "NORMAL", "lvl": 86, "strReq": 32, "dexReq": 32, "ls": 100, "lb": 25, "spd": 15, "hprRaw": -100, "fDamPct": -21, "wDamPct": -21, "aDamPct": -21, "tDamPct": 51, "eDamPct": 51, "id": 853}, {"name": "Delirium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "aDef": -200, "tDef": 125, "eDef": 70, "lvl": 87, "strReq": 50, "dexReq": 60, "mdPct": 14, "ls": -275, "ms": 5, "str": 13, "spd": 50, "tDamPct": 22, "eDamPct": 22, "id": 857}, {"name": "Demeter", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -90, "aDef": 50, "eDef": 40, "lvl": 68, "strReq": 35, "agiReq": 35, "agi": 7, "def": -8, "spd": 8, "mdRaw": 165, "fDamPct": -40, "eDamPct": 16, "aDefPct": 12, "id": 859}, {"name": "Deluge", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 700, "lvl": 56, "strReq": 45, "dexReq": 15, "mdPct": 12, "dex": 4, "mdRaw": 100, "tDamPct": 12, "eDamPct": 6, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 852}, {"name": "Dematerialized", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-61", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "intReq": 15, "agiReq": 40, "mr": 5, "ms": 5, "agi": 8, "spd": 16, "hpBonus": -180, "fDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 861}, {"name": "Demon Seeker", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "sdPct": 20, "xpb": 20, "lb": 20, "ref": 10, "id": 858}, {"name": "Demon Tide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2625, "fDef": 65, "wDef": -200, "tDef": 65, "lvl": 87, "dexReq": 65, "defReq": 45, "sdPct": -45, "mdPct": -40, "int": 10, "fDamPct": 10, "wDamPct": 20, "tDamPct": 10, "spPct1": -21, "spPct2": -14, "spPct3": -17, "spPct4": -21, "id": 860}, {"name": "Demon's Will", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-145", "fDam": "90-170", "wDam": "0-0", "aDam": "0-0", "tDam": "90-170", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "dexReq": 35, "defReq": 35, "ls": 440, "ms": 10, "expd": 5, "spRegen": -5, "sdRaw": 135, "fDamPct": 12, "tDamPct": 15, "wDefPct": -12, "aDefPct": -12, "id": 863}, {"name": "Depressing Shears", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 865}, {"name": "Depressing Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 864}, {"name": "Depressing Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 867}, {"name": "Deracine", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "mdPct": -20, "int": 5, "hpBonus": -50, "wDamPct": 12, "wDefPct": 10, "id": 869}, {"name": "Depressing Stick", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 866}, {"name": "Derecho", "tier": "Rare", "sprint": 9, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -60, "lvl": 85, "agiReq": 65, "agi": 13, "aDamPct": -7, "type": "necklace", "id": 3603}, {"name": "Dern's Desolation", "tier": "Rare", "type": "spear", "poison": 100, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-24", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "dexReq": 15, "mr": 5, "ms": 5, "aDamPct": -15, "id": 868}, {"name": "Dern's Shadow", "tier": "Rare", "type": "spear", "poison": 24, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "id": 873}, {"name": "Despair", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-80", "fDam": "0-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "dexReq": 25, "defReq": 25, "hprPct": -13, "sdPct": 13, "ls": 75, "ms": 5, "spRegen": -7, "wDamPct": -13, "id": 872}, {"name": "Deserter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "55-105", "tDam": "0-0", "eDam": "65-95", "atkSpd": "NORMAL", "lvl": 90, "strReq": 35, "agiReq": 35, "xpb": 8, "str": 16, "agi": 16, "spd": 8, "wDamPct": -20, "aDamPct": 12, "eDefPct": 12, "id": 870}, {"name": "Requiem", "displayName": "Desperado", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "12-40", "fDam": "13-91", "wDam": "0-0", "aDam": "0-0", "tDam": "22-30", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 40, "defReq": 50, "ms": 10, "agi": -10, "hpBonus": -1250, "sdRaw": 115, "fDamPct": 23, "wDamPct": -25, "tDamPct": 12, "eDefPct": -20, "id": 871}, {"name": "Detlas' Legacy", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "10-15", "aDam": "0-0", "tDam": "5-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 12, "mdPct": -5, "xpb": 8, "dex": 5, "int": 5, "wDamPct": 7, "id": 875}, {"name": "Determination", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 78, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 30, "sdPct": -30, "mdPct": -30, "spRegen": 10, "hprRaw": 120, "id": 877}, {"name": "Detlas' Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 172, "wDef": 20, "tDef": -15, "lvl": 29, "intReq": 5, "defReq": 5, "xpb": 15, "lb": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": -5, "id": 879}, {"name": "Detlas' Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-5", "fDam": "0-0", "wDam": "1-3", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 7, "mr": 5, "xpb": 6, "int": 4, "id": 876}, {"name": "Deux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "fDef": -80, "wDef": 150, "aDef": -80, "tDef": 150, "eDef": -80, "lvl": 81, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 5, "mdPct": -20, "ms": 10, "str": -4, "dex": 6, "int": 6, "agi": -4, "def": -4, "spRegen": 5, "id": 913}, {"name": "Devilish", "tier": "Rare", "poison": 192, "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": -15, "lvl": 52, "dexReq": 5, "defReq": 10, "ls": 29, "expd": 5, "hpBonus": -90, "spRegen": -5, "type": "bracelet", "id": 884}, {"name": "Devil's Scissor", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-24", "fDam": "16-24", "wDam": "0-0", "aDam": "0-0", "tDam": "16-24", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "dexReq": 10, "defReq": 10, "mdPct": 5, "ls": 25, "str": 7, "id": 878}, {"name": "Devotion", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 15, "lvl": 58, "hprPct": 5, "sdPct": 5, "spRegen": 5, "mdRaw": -16, "type": "necklace", "id": 883}, {"name": "Dhoruba", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "dexReq": 40, "ms": 10, "xpb": 15, "lb": 15, "str": -8, "dex": 8, "aDefPct": -30, "tDefPct": 15, "eDefPct": 15, "id": 882}, {"name": "Diablo", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-80", "fDam": "60-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "strReq": 10, "defReq": 30, "sdPct": -24, "mdPct": 36, "def": 7, "expd": 33, "spd": -10, "fDamPct": 25, "wDamPct": -50, "wDefPct": -30, "id": 888}, {"name": "Devoreuse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "hprPct": 10, "mr": 5, "ls": 41, "ms": 5, "int": -3, "wDamPct": -15, "id": 880}, {"name": "Diaminar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-70", "fDam": "320-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "defReq": 50, "ls": 315, "def": 8, "spd": -5, "hpBonus": 1500, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 886}, {"name": "Diamond Sky", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "xpb": 8, "lb": 18, "id": 885}, {"name": "Diamond Dust", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2375, "lvl": 93, "xpb": 19, "lb": 34, "ref": 19, "fDefPct": -11, "wDefPct": -11, "aDefPct": -11, "tDefPct": -11, "eDefPct": -11, "id": 887}, {"name": "Digested Dagger", "tier": "Unique", "type": "dagger", "poison": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "str": 3, "dex": 3, "id": 892}, {"name": "Diet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 17, "agiReq": 5, "str": -2, "agi": 4, "spd": 6, "type": "ring", "id": 890}, {"name": "Diode", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "lvl": 24, "dexReq": 10, "ref": 6, "dex": 5, "spd": 4, "tDamPct": 10, "id": 891}, {"name": "Dionaea", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3850, "fDef": 80, "eDef": 110, "lvl": 96, "strReq": 40, "defReq": 40, "sdPct": -8, "mdPct": 12, "ls": 225, "mdRaw": 195, "wDefPct": 25, "aDefPct": -15, "tDefPct": -10, "id": 889}, {"name": "Diorite Boots", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "fDef": 20, "wDef": -40, "eDef": 15, "lvl": 40, "strReq": 25, "defReq": 15, "mdPct": 12, "def": 8, "expd": 6, "fDamPct": 12, "eDamPct": 12, "wDefPct": -24, "id": 894}, {"name": "Disappeared", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -50, "aDef": 10, "lvl": 26, "agiReq": 8, "agi": 7, "type": "necklace", "id": 895}, {"name": "Dirge", "tier": "Unique", "type": "wand", "poison": 485, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "55-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "strReq": 20, "agiReq": 10, "ls": 110, "str": 7, "agi": -2, "aDamPct": -10, "eDamPct": 20, "id": 893}, {"name": "Disco", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 27, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spd": 11, "id": 896}, {"name": "Discordant", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 92, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 897}, {"name": "Discord", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 370, "fDef": -15, "wDef": -15, "aDef": -15, "eDef": -30, "lvl": 40, "dexReq": 40, "sdPct": 6, "mdPct": 6, "dex": 7, "expd": 10, "spd": 6, "tDamPct": 20, "id": 899}, {"name": "Dislocater", "tier": "Legendary", "type": "dagger", "thorns": 7, "category": "weapon", "drop": "NORMAL", "nDam": "31-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "sdPct": -10, "mdPct": 12, "str": 7, "id": 900}, {"name": "Discotek", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-33", "wDam": "23-33", "aDam": "23-33", "tDam": "23-33", "eDam": "23-33", "atkSpd": "FAST", "lvl": 49, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "sdPct": 15, "mdPct": 15, "spd": 10, "hpBonus": -300, "spPct1": 25, "spPct3": -24, "jh": 1, "id": 898}, {"name": "Dissector", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "ls": 55, "xpb": 5, "lb": 5, "spd": 5, "id": 902}, {"name": "Djinni", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "140-170", "wDam": "0-0", "aDam": "160-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "agiReq": 35, "defReq": 40, "hprPct": 20, "sdPct": 16, "mdPct": -30, "lb": 15, "hprRaw": 160, "fDamPct": 25, "id": 904}, {"name": "Dizzy Spell", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 120, "tDef": -120, "eDef": 120, "lvl": 88, "strReq": 50, "agiReq": 50, "mr": -10, "ls": 215, "ms": 10, "str": 9, "agi": 9, "spd": 16, "mdRaw": 215, "id": 901}, {"name": "Dofotri", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 1, "spd": 5, "type": "ring", "id": 905}, {"name": "Dolomite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "aDef": -50, "eDef": 50, "lvl": 57, "strReq": 35, "sdPct": -10, "mdPct": 12, "lb": 7, "expd": 15, "spd": -10, "eDamPct": 8, "id": 903}, {"name": "Doppler", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": -45, "aDef": 30, "tDef": 30, "eDef": -45, "lvl": 50, "dexReq": 25, "agiReq": 25, "sdPct": 4, "def": -5, "spd": 15, "aDamPct": 12, "tDamPct": 12, "fDefPct": -13, "id": 907}, {"name": "Doomsday", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "strReq": 40, "dexReq": 15, "mr": -5, "mdPct": 10, "ms": 5, "dex": 8, "wDamPct": -20, "eDamPct": 20, "id": 906}, {"name": "Double Vision", "tier": "Fabled", "quest": "Realm of Light V - The Realm of Light", "majorIds": ["LIGHTWEIGHT"], "sprint": 11, "category": "accessory", "drop": "never", "hp": -750, "aDef": -50, "lvl": 79, "xpb": 17, "agi": 3, "spd": 11, "type": "bracelet", "sprintReg": 11, "jh": 3, "id": 3581}, {"name": "Dorian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-106", "fDam": "100-106", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "defReq": 45, "hprPct": 15, "sdPct": 12, "mdPct": -10, "ls": -105, "def": 8, "hprRaw": 45, "wDamPct": -19, "id": 909}, {"name": "Doubt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "530-600", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "560-670", "atkSpd": "SUPER_SLOW", "lvl": 93, "strReq": 35, "defReq": 50, "mdPct": 15, "fDamPct": 35, "wDamPct": -55, "aDamPct": -55, "tDamPct": -25, "fDefPct": 25, "wDefPct": 15, "tDefPct": 15, "eDefPct": 20, "id": 935}, {"name": "Downfall", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -600, "wDef": -35, "aDef": -35, "lvl": 98, "strReq": 60, "defReq": 55, "str": 6, "spd": 12, "mdRaw": 70, "fDamPct": 8, "eDamPct": 8, "type": "ring", "id": 910}, {"name": "Paradox", "displayName": "Dragon Dance", "tier": "Rare", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "fDef": 30, "wDef": 30, "aDef": 150, "tDef": 30, "eDef": -150, "lvl": 98, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 15, "sdPct": 21, "mdPct": -50, "ls": -235, "ms": 5, "str": -99, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 20, "hprRaw": -195, "sdRaw": 145, "eDefPct": -20, "jh": 1, "id": 2092}, {"name": "Dragon Hide Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 510, "fDef": 50, "wDef": -50, "lvl": 47, "defReq": 25, "sdPct": 5, "lb": 5, "str": 7, "def": 7, "expd": 3, "fDamPct": 10, "wDamPct": -50, "fDefPct": 10, "wDefPct": -20, "id": 912}, {"name": "Dragon Fang", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "4-18", "fDam": "22-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "defReq": 15, "xpb": 5, "def": 7, "expd": 10, "fDamPct": 10, "wDamPct": -20, "fDefPct": 10, "id": 908}, {"name": "Dragon Hide Plate", "tier": "Rare", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2000, "fDef": 100, "lvl": 82, "hprPct": 20, "mr": 5, "xpb": 20, "def": 10, "expd": 20, "fDamPct": 20, "fDefPct": 20, "id": 911}, {"name": "Dragon Slayer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-80", "fDam": "60-70", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 79, "defReq": 40, "xpb": 7, "hpBonus": 500, "fDamPct": 5, "aDamPct": 10, "id": 914}, {"name": "Dragon Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": 30, "wDef": -20, "lvl": 57, "defReq": 10, "sdPct": 5, "lb": 15, "fDamPct": 7, "wDamPct": -10, "id": 915}, {"name": "Dragon's Tongue", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-110", "wDam": "70-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 55, "defReq": 55, "hprPct": 46, "mr": 10, "sdPct": -24, "mdPct": -24, "int": 10, "def": 10, "hprRaw": 131, "tDamPct": -45, "eDamPct": -45, "id": 918}, {"name": "Draken", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "tDef": 70, "eDef": -100, "lvl": 70, "dexReq": 65, "ms": 10, "str": -7, "dex": 9, "tDamPct": 18, "eDamPct": -12, "tDefPct": 10, "eDefPct": -12, "id": 919}, {"name": "Drale's Hide", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "eDef": 5, "lvl": 9, "mdPct": 4, "str": 4, "spd": 6, "id": 917}, {"name": "Dread", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "sdPct": 4, "dex": 3, "spd": 4, "hpBonus": -18, "id": 921}, {"name": "Dravarden", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 950, "fDef": 30, "wDef": 30, "tDef": 30, "lvl": 56, "dexReq": 15, "intReq": 15, "defReq": 15, "hprPct": 20, "mr": 5, "sdPct": 15, "dex": 7, "int": 7, "def": 7, "aDamPct": -40, "eDamPct": -40, "aDefPct": -25, "eDefPct": -25, "id": 916}, {"name": "Dreamcloud", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 70, "wDef": 70, "aDef": 70, "tDef": 70, "eDef": 70, "lvl": 88, "intReq": 30, "agiReq": 30, "hprPct": 20, "mr": 10, "hprRaw": 160, "fDamPct": -8, "wDamPct": -2, "aDamPct": -2, "tDamPct": -8, "eDamPct": -5, "id": 922}, {"name": "Drifter", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-62", "fDam": "0-0", "wDam": "36-88", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 62, "intReq": 30, "dex": -4, "int": 8, "agi": 4, "spd": 13, "sdRaw": 70, "wDamPct": 12, "wDefPct": 17, "tDefPct": -20, "id": 925}, {"name": "Drizzling Doublet", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 375, "tDef": -30, "lvl": 56, "intReq": 40, "mr": 10, "mdPct": -10, "ms": 10, "xpb": 15, "int": 5, "wDamPct": 7, "wDefPct": 7, "tDefPct": -20, "id": 923}, {"name": "Druid's Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "wDef": 20, "eDef": 20, "lvl": 65, "strReq": 5, "intReq": 5, "wDamPct": 5, "eDamPct": 5, "wDefPct": 10, "eDefPct": 10, "type": "ring", "id": 924}, {"name": "Droplets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-95", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 40, "mr": 10, "xpb": 8, "ref": 15, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 926}, {"name": "Dune Sandals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -15, "wDef": -15, "aDef": 20, "eDef": 15, "lvl": 33, "agiReq": 10, "str": 4, "spd": 7, "wDamPct": -10, "aDamPct": 9, "eDamPct": 12, "id": 928}, {"name": "Dunesweeper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "110-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 92, "strReq": 25, "agiReq": 35, "lb": 12, "spd": 15, "mdRaw": 155, "tDamPct": -6, "eDamPct": 19, "aDefPct": 19, "id": 930}, {"name": "Drumstick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "34-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "agiReq": 30, "dex": 13, "mdRaw": 41, "aDamPct": 25, "id": 927}, {"name": "Drifting Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "50-100", "aDam": "15-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "intReq": 25, "agiReq": 25, "xpb": 9, "int": 4, "agi": 5, "spd": 11, "fDamPct": -20, "aDamPct": 15, "wDefPct": 15, "aDefPct": 18, "id": 920}, {"name": "DuskHelm", "displayName": "Duskhelm", "tier": "Unique", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "fDef": 10, "wDef": -7, "lvl": 26, "ref": 5, "fDamPct": -15, "wDamPct": 15, "fDefPct": 5, "wDefPct": -5, "id": 929}, {"name": "Durum's Journey", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 550, "fDef": -20, "wDef": 15, "tDef": -25, "eDef": 30, "lvl": 48, "mr": 5, "sdPct": -15, "xpb": 15, "int": 7, "spd": 10, "hpBonus": 70, "hprRaw": 25, "aDefPct": -15, "id": 932}, {"name": "Dusk Painter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": -5, "sdPct": 7, "mdPct": 7, "ls": 12, "ms": 10, "hprRaw": -8, "id": 931}, {"name": "Dust Bowl", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 500, "aDef": 20, "eDef": 15, "lvl": 51, "strReq": 20, "agiReq": 15, "str": 7, "spd": 10, "sdRaw": -30, "aDamPct": 10, "eDamPct": 12, "id": 939}, {"name": "Dust Devil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -10, "lvl": 88, "agiReq": 30, "spd": 8, "aDamPct": 9, "eDamPct": 9, "type": "ring", "id": 937}, {"name": "DuskShield", "displayName": "Duskshield", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "wDef": 15, "tDef": 15, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -5, "ref": 8, "fDamPct": -8, "eDamPct": -8, "wDefPct": 6, "tDefPct": 6, "id": 934}, {"name": "Dust", "tier": "Rare", "type": "chestplate", "poison": 105, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "aDef": -15, "lvl": 32, "hprPct": -9, "agi": 5, "aDamPct": 8, "eDamPct": 4, "wDefPct": -6, "id": 933}, {"name": "Dusty Staff", "tier": "Unique", "type": "wand", "poison": 80, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "12-16", "atkSpd": "SLOW", "lvl": 26, "strReq": 8, "lb": 12, "aDefPct": -4, "eDefPct": 7, "id": 938}, {"name": "Dying Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "131-141", "aDam": "121-151", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 38, "agiReq": 38, "sdPct": 20, "ls": -217, "int": 10, "agi": 10, "spd": 10, "wDamPct": 15, "aDamPct": 15, "id": 941}, {"name": "Dynamic", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 7, "eDef": -7, "lvl": 28, "dexReq": 10, "dex": 4, "mdRaw": 5, "tDamPct": 6, "type": "bracelet", "id": 940}, {"name": "Dysnomia", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": -40, "aDef": -40, "lvl": 52, "strReq": 25, "dexReq": 40, "hprPct": -40, "ms": 10, "spd": 10, "wDamPct": -20, "eDamPct": 10, "id": 944}, {"name": "Earth Breaker", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "fDef": 90, "aDef": -150, "eDef": 90, "lvl": 90, "strReq": 50, "defReq": 40, "ls": 220, "str": 9, "def": 8, "expd": 25, "atkTier": -10, "mdRaw": 1150, "fDamPct": 31, "eDamPct": 15, "id": 942}, {"name": "Earth Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-200", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 943}, {"name": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 945}, {"name": "Earthquake", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-114", "fDam": "80-149", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-149", "atkSpd": "SUPER_SLOW", "lvl": 60, "strReq": 25, "defReq": 25, "sdPct": -10, "mdPct": 10, "expd": 25, "spd": -15, "fDamPct": 10, "eDamPct": 10, "wDefPct": -15, "id": 948}, {"name": "Earth Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-190", "atkSpd": "VERY_SLOW", "lvl": 60, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 949}, {"name": "Earth Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-70", "atkSpd": "SLOW", "lvl": 55, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 946}, {"name": "Earthsky Equinox", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "100-165", "tDam": "0-0", "eDam": "120-145", "atkSpd": "FAST", "lvl": 98, "strReq": 50, "agiReq": 50, "mdPct": 15, "str": 16, "agi": 16, "spd": 15, "atkTier": 1, "tDefPct": -30, "id": 947}, {"name": "Dusty Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "agi": 3, "type": "ring", "id": 936}, {"name": "Eater", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "ls": 3, "type": "ring", "id": 952}, {"name": "Ebrithil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "intReq": 40, "sdPct": 4, "int": 5, "spRegen": 8, "type": "necklace", "id": 950}, {"name": "Ebb and Flow", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-24", "fDam": "0-0", "wDam": "46-54", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 37, "intReq": 20, "mr": 5, "sdPct": 11, "str": -5, "dex": -5, "int": 14, "agi": -5, "def": -5, "spRegen": 16, "wDamPct": 11, "id": 951}, {"name": "Echolocation", "tier": "Unique", "type": "relik", "poison": 111, "thorns": -10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "39-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 35, "ls": 18, "ref": -10, "id": 954}, {"name": "Eclipse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "10-30", "wDam": "10-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "intReq": 22, "defReq": 22, "hprPct": 15, "hprRaw": 20, "sdRaw": -10, "mdRaw": -13, "fDefPct": 10, "wDefPct": 10, "id": 956}, {"name": "Ectoplasm", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "wDef": 55, "aDef": 55, "tDef": -100, "lvl": 63, "intReq": 40, "mr": 5, "sdPct": 10, "mdPct": -15, "ms": 10, "spd": -15, "wDefPct": 10, "aDefPct": -10, "id": 957}, {"name": "Echo", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 22, "agiReq": 8, "agi": 3, "aDamPct": 7, "type": "ring", "id": 955}, {"name": "Edgy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 12, "mdPct": 6, "dex": 3, "type": "bracelet", "id": 953}, {"name": "Effervescence", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "0-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 24, "mr": 5, "sdPct": 22, "int": 8, "hprRaw": -14, "id": 958}, {"name": "Efilim Sage Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 60, "eDef": 60, "lvl": 77, "strReq": 30, "intReq": 40, "mr": 5, "sdPct": 7, "mdPct": -10, "xpb": 10, "str": 7, "int": 7, "spRegen": 10, "hprRaw": 60, "id": 961}, {"name": "Efteling", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "wDef": 50, "aDef": 50, "tDef": -200, "lvl": 94, "intReq": 60, "agiReq": 60, "mr": -25, "sdPct": 30, "ls": 175, "ms": 10, "spd": 16, "sdRaw": 150, "wDamPct": 20, "aDamPct": 20, "id": 959}, {"name": "Egression", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 100, "eDef": -100, "lvl": 73, "agiReq": 60, "sdPct": -45, "mdPct": -45, "xpb": 15, "agi": 13, "spd": 23, "aDamPct": 70, "id": 960}, {"name": "Ehwaz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 39, "agiReq": 10, "agi": 3, "spd": 10, "type": "ring", "id": 962}, {"name": "Eil", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": 13, "hpBonus": 500, "id": 963}, {"name": "Ekeloch", "tier": "Unique", "type": "boots", "poison": 455, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1310, "aDef": -150, "tDef": 150, "lvl": 69, "tDamPct": 5, "id": 966}, {"name": "Electric Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 140, "tDef": 30, "eDef": -30, "lvl": 54, "dexReq": 20, "mdPct": 5, "dex": 4, "tDamPct": 8, "type": "necklace", "id": 965}, {"name": "Ein", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 1, "sdPct": 1, "mdPct": 1, "sdRaw": 1, "mdRaw": 1, "type": "ring", "id": 973}, {"name": "Electrolytic", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-47", "fDam": "0-0", "wDam": "14-58", "aDam": "0-0", "tDam": "3-69", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 33, "intReq": 33, "sdPct": 10, "mdPct": -10, "ms": 5, "sdRaw": 70, "fDamPct": -20, "aDamPct": -20, "eDamPct": -20, "id": 968}, {"name": "Electrocharge Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "tDef": 60, "eDef": -60, "lvl": 61, "dexReq": 50, "ms": -5, "dex": 7, "spd": 10, "atkTier": 1, "hprRaw": -60, "mdRaw": 90, "tDamPct": 10, "eDefPct": -30, "id": 967}, {"name": "Electrophorus", "tier": "Unique", "type": "helmet", "poison": 300, "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 60, "eDef": -60, "lvl": 64, "intReq": 40, "sdRaw": 74, "tDamPct": 12, "id": 971}, {"name": "Eitr", "tier": "Rare", "type": "leggings", "poison": 415, "category": "armor", "drop": "NORMAL", "hp": 1430, "fDef": 65, "wDef": -50, "tDef": 55, "eDef": -70, "lvl": 66, "dexReq": 15, "defReq": 30, "mr": -5, "def": 4, "fDamPct": 16, "wDamPct": -18, "tDamPct": 13, "id": 964}, {"name": "Eleven", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "hprPct": 11, "mdPct": 11, "sdRaw": 11, "id": 996}, {"name": "Eliminere", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-83", "eDam": "0-213", "atkSpd": "SUPER_FAST", "lvl": 87, "strReq": 35, "dexReq": 35, "hprPct": -140, "sdPct": 20, "mdPct": 20, "expd": 25, "hpBonus": -1370, "hprRaw": -135, "id": 991}, {"name": "Electrum", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "tDef": 45, "eDef": -90, "lvl": 58, "dexReq": 35, "intReq": 25, "sdPct": 6, "sdRaw": 75, "fDamPct": -20, "wDamPct": 8, "aDamPct": -20, "tDamPct": 8, "eDamPct": -30, "id": 969}, {"name": "Embers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-30", "fDam": "11-19", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "defReq": 10, "hprPct": 13, "ls": 17, "fDamPct": 7, "wDamPct": -9, "id": 974}, {"name": "Emerald Chopper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "150-250", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "agiReq": 25, "defReq": 35, "lb": 25, "expd": 25, "eSteal": 7, "fDamPct": 40, "id": 970}, {"name": "Emerald Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-80", "atkSpd": "SLOW", "lvl": 72, "lb": 25, "eSteal": 10, "sdRaw": -50, "mdRaw": -65, "id": 975}, {"name": "Elven Moccasins", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 8, "lvl": 3, "hprPct": 8, "id": 972}, {"name": "Emotion", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-30", "fDam": "24-28", "wDam": "23-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "intReq": 12, "defReq": 10, "mr": 5, "sdPct": -5, "mdPct": -5, "ls": -8, "int": 12, "agi": -5, "def": 10, "hprRaw": 8, "id": 977}, {"name": "Empire Builder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 8, "drop": "NORMAL", "nDam": "50-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 978}, {"name": "Enchanter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "3-5", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "str": -3, "int": 4, "id": 976}, {"name": "End of Limits", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-150", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "strReq": 60, "dexReq": 40, "mr": -5, "sdPct": 11, "mdPct": 16, "ls": -205, "xpb": 10, "sdRaw": 75, "mdRaw": 100, "eDamPct": 16, "id": 979}, {"name": "Enderman's Feet", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": -30, "aDef": -60, "tDef": 80, "lvl": 62, "dexReq": 30, "sdPct": 6, "ref": 12, "dex": 8, "wDamPct": -5, "tDamPct": 6, "tDefPct": 10, "id": 981}, {"name": "Endurance", "tier": "Rare", "type": "chestplate", "thorns": 65, "category": "armor", "drop": "NORMAL", "hp": 2050, "wDef": -150, "lvl": 79, "def": 7, "hprRaw": 65, "fDamPct": 15, "wDamPct": -10, "id": 980}, {"name": "Enduzskam", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "wDef": 50, "tDef": 80, "eDef": -90, "lvl": 83, "dexReq": 35, "intReq": 35, "mr": 5, "sdPct": 14, "dex": 9, "wDamPct": 12, "tDamPct": 16, "eDamPct": -14, "eDefPct": -10, "id": 986}, {"name": "Endotherm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "fDef": 80, "aDef": 80, "lvl": 71, "agiReq": 40, "defReq": 40, "hprPct": 25, "sdPct": -20, "mdPct": -20, "hpBonus": 300, "hprRaw": 75, "fDefPct": 14, "aDefPct": 14, "id": 982}, {"name": "Enmity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -80, "eDef": -40, "lvl": 100, "strReq": 60, "ms": 10, "dex": 4, "spd": 8, "sdRaw": 53, "mdRaw": 55, "fDefPct": -18, "wDefPct": -18, "aDefPct": -18, "type": "bracelet", "id": 983}, {"name": "Ensa's Failure", "tier": "Rare", "poison": 450, "thorns": 11, "category": "accessory", "drop": "lootchest", "hp": -250, "lvl": 98, "strReq": 40, "dexReq": 40, "spRegen": -15, "tDamPct": 11, "eDamPct": 11, "wDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 984}, {"name": "Ensa's Resolve", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "0-0", "wDam": "120-155", "aDam": "100-175", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "intReq": 40, "agiReq": 35, "hprPct": 30, "mr": 10, "xpb": 19, "ref": 15, "agi": 7, "spRegen": 11, "mdRaw": -95, "fDefPct": 12, "wDefPct": 20, "id": 990}, {"name": "Enzan's Lucky Charm", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 3, "xpb": 3, "eSteal": 1, "type": "bracelet", "id": 988}, {"name": "Ensa's Ideals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "wDef": 100, "aDef": 100, "lvl": 84, "intReq": 45, "agiReq": 40, "hprPct": 15, "mr": 5, "xpb": 15, "ref": 15, "int": 7, "hpBonus": 962, "spRegen": 25, "hprRaw": 115, "wDefPct": 15, "aDefPct": 15, "id": 985}, {"name": "Entanglement", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": 70, "aDef": -100, "tDef": 70, "lvl": 89, "dexReq": 50, "intReq": 45, "mr": -5, "sdPct": 25, "ms": -5, "dex": 10, "int": 10, "wDamPct": 9, "tDamPct": 9, "wDefPct": 9, "tDefPct": 9, "id": 3612}, {"name": "Equalizer", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1555, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 86, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "mr": 5, "sdPct": 18, "mdPct": 18, "ls": 155, "ms": 5, "ref": 18, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "hprRaw": 105, "id": 989}, {"name": "Equilibrium", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 24, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 987}, {"name": "Erhu", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "60-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "agiReq": 15, "mr": 5, "xpb": 15, "ref": 10, "agi": 7, "spRegen": 10, "fDamPct": -10, "wDamPct": 10, "tDamPct": -10, "id": 995}, {"name": "Equinox", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -22, "lvl": 88, "intReq": 33, "defReq": 33, "expd": 6, "spRegen": 6, "fDamPct": 9, "wDamPct": 9, "type": "ring", "id": 994}, {"name": "Erratio", "tier": "Legendary", "type": "chestplate", "poison": 61, "thorns": 11, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 413, "lvl": 35, "dexReq": 6, "agiReq": 12, "ls": 55, "ref": 3, "spRegen": -2, "hprRaw": -6, "mdRaw": 16, "aDamPct": 4, "aDefPct": 13, "id": 993}, {"name": "Errant", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "fDef": -60, "aDef": 60, "lvl": 95, "agiReq": 45, "sdPct": 7, "spd": 8, "fDamPct": -5, "aDamPct": 5, "fDefPct": -10, "type": "necklace", "id": 992}, {"name": "Eruption", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-160", "atkSpd": "VERY_SLOW", "lvl": 49, "strReq": 30, "defReq": 10, "sdPct": -15, "mdPct": 25, "str": 7, "def": 9, "expd": 25, "spd": -15, "hpBonus": 550, "fDamPct": 20, "id": 997}, {"name": "Esclavage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 93, "strReq": 15, "defReq": 45, "xpb": 7, "lb": 5, "str": 5, "dex": -1, "def": 5, "spd": -4, "type": "bracelet", "id": 999}, {"name": "Espoir", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 7, "lb": 7, "spRegen": 3, "type": "ring", "id": 1000}, {"name": "Esper's Focus", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "400-505", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 84, "intReq": 40, "mr": 5, "mdPct": -40, "xpb": 15, "hpBonus": -700, "wDamPct": 30, "id": 998}, {"name": "Estuarine", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "71-85", "aDam": "0-0", "tDam": "0-0", "eDam": "100-110", "atkSpd": "NORMAL", "lvl": 71, "strReq": 28, "intReq": 32, "mr": 5, "mdPct": -20, "int": 8, "spd": -12, "mdRaw": 130, "wDamPct": 35, "eDefPct": 30, "id": 1002}, {"name": "Essence Bastion", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-165", "fDam": "110-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 40, "spd": -10, "hpBonus": 1385, "spRegen": 10, "hprRaw": 125, "id": 1001}, {"name": "Eternity's Edge", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "340-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "340-340", "eDam": "340-340", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 35, "dexReq": 35, "ms": 10, "str": 16, "dex": 16, "spd": -16, "sdRaw": 140, "spRaw2": -10, "id": 1004}, {"name": "Ethereal", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-22", "fDam": "0-0", "wDam": "44-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "intReq": 60, "mr": 10, "sdPct": 25, "mdPct": -20, "int": 7, "agi": 7, "spRegen": 10, "wDamPct": 7, "aDamPct": 19, "eDamPct": -30, "tDefPct": -20, "id": 1003}, {"name": "Etikal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "8-12", "wDam": "8-12", "aDam": "8-12", "tDam": "8-12", "eDam": "8-12", "atkSpd": "SLOW", "lvl": 35, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 5, "lb": 5, "id": 1005}, {"name": "Euthanasia", "tier": "Rare", "type": "dagger", "poison": 100, "category": "weapon", "drop": "NORMAL", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "spRegen": -10, "hprRaw": -8, "sdRaw": 32, "id": 1008}, {"name": "Evalach", "tier": "Rare", "type": "leggings", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "lvl": 27, "defReq": 12, "hprPct": 18, "ref": 4, "def": 8, "spd": -7, "wDamPct": -6, "wDefPct": -6, "id": 1010}, {"name": "Evanescent", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-150", "fDam": "0-0", "wDam": "55-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 52, "intReq": 30, "agiReq": 20, "mr": 5, "mdPct": -40, "ms": 5, "agi": 10, "spd": 15, "wDamPct": 15, "aDamPct": 20, "id": 1006}, {"name": "Evening Primrose", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": 60, "wDef": -40, "aDef": -40, "tDef": 60, "eDef": -40, "lvl": 67, "dexReq": 30, "defReq": 30, "hprPct": 12, "def": 13, "spd": -15, "hpBonus": -500, "hprRaw": 70, "fDamPct": 15, "tDamPct": 15, "id": 1015}, {"name": "Evaporator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 60, "intReq": 20, "defReq": 35, "spd": -8, "aDamPct": -18, "aDefPct": -13, "id": 1009}, {"name": "Euouae", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -75, "lvl": 75, "dexReq": 30, "agiReq": 60, "dex": 5, "agi": 9, "spd": 6, "fDamPct": -15, "tDamPct": 5, "type": "bracelet", "id": 1007}, {"name": "Event Horizon", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-140", "eDam": "0-140", "atkSpd": "VERY_FAST", "lvl": 99, "strReq": 55, "dexReq": 55, "hpBonus": 5000, "wDamPct": -35, "fDefPct": -76, "wDefPct": -76, "aDefPct": -76, "tDefPct": -76, "eDefPct": -76, "id": 1012}, {"name": "Example", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "int": 8, "type": "bracelet", "id": 3626}, {"name": "Executioner Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "lvl": 75, "mdPct": 27, "ls": 265, "ms": 10, "hpBonus": 115, "sdRaw": 150, "id": 1013}, {"name": "Exhaustion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": 140, "wDef": -65, "lvl": 90, "defReq": 70, "hprPct": 35, "mr": -5, "ls": 345, "def": 7, "spd": -20, "atkTier": -1, "hpBonus": 500, "hprRaw": 150, "fDefPct": 18, "id": 1014}, {"name": "Exion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 21, "tDef": 3, "eDef": -6, "lvl": 5, "mr": 5, "spd": 6, "sdRaw": 4, "id": 1018}, {"name": "Facedown", "tier": "Unique", "type": "helmet", "thorns": -15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 89, "dexReq": 55, "sdPct": 20, "mdPct": 20, "xpb": 15, "ref": -15, "dex": 10, "agi": -5, "tDamPct": 15, "id": 1017}, {"name": "Exosphere", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 81, "dexReq": 24, "agiReq": 24, "mr": 5, "sdPct": 18, "ref": 18, "spRegen": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": 6, "tDefPct": 6, "id": 1016}, {"name": "Facile", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 99, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 8, "sdPct": 6, "mdPct": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "ring", "id": 1019}, {"name": "Facetious", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 40, "tDef": -20, "lvl": 98, "strReq": 50, "sdPct": 7, "mdPct": -6, "spd": 5, "wDamPct": 5, "type": "bracelet", "id": 1020}, {"name": "Faith Healer", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "wDef": 65, "aDef": 65, "lvl": 78, "intReq": 40, "agiReq": 40, "hprPct": 15, "sdPct": -15, "mdPct": -15, "spRegen": 20, "hprRaw": 75, "wDefPct": 10, "aDefPct": 10, "id": 1021}, {"name": "Faith of the Bovemist", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 45, "int": 4, "spRegen": 15, "tDefPct": 7, "type": "ring", "id": 1023}, {"name": "Faded", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 190, "lvl": 39, "xpb": 15, "ref": 5, "spRegen": 3, "id": 1024}, {"name": "Fatigue", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "spd": -6, "mdRaw": 26, "id": 1029}, {"name": "Fate's Shear", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "45-50", "aDam": "0-0", "tDam": "0-0", "eDam": "65-105", "atkSpd": "SUPER_FAST", "lvl": 97, "strReq": 45, "intReq": 50, "ms": 5, "spRegen": 10, "hprRaw": -300, "sdRaw": 180, "mdRaw": 85, "wDamPct": 15, "eDamPct": 15, "fDefPct": -35, "id": 1026}, {"name": "Fault Lines", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-130", "atkSpd": "VERY_SLOW", "lvl": 32, "strReq": 15, "defReq": 15, "mdPct": 18, "str": 8, "agi": -10, "def": 8, "spd": -15, "fDamPct": 18, "aDamPct": -20, "eDamPct": 18, "aDefPct": -20, "id": 1025}, {"name": "Faustian Contract", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "0-0", "tDam": "175-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "dexReq": 50, "defReq": 40, "hprPct": -25, "mr": -10, "sdPct": 30, "ms": 10, "expd": 20, "spd": -20, "atkTier": -1, "mdRaw": 550, "id": 1027}, {"name": "Ex Nihilo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "fDef": -100, "wDef": -100, "lvl": 98, "strReq": 50, "agiReq": 50, "sdPct": 25, "ls": 280, "int": 15, "def": -15, "spd": 15, "mdRaw": 235, "fDamPct": -40, "id": 1011}, {"name": "Featherweight", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 8, "agi": 4, "spd": 11, "id": 1031}, {"name": "Feedback", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 45, "ref": 25, "dex": 17, "hprRaw": -90, "tDamPct": 16, "eDamPct": -16, "wDefPct": -8, "id": 1028}, {"name": "Fehu", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 97, "xpb": 7, "lb": 13, "type": "ring", "id": 1033}, {"name": "Feithid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "fDef": -5, "lvl": 40, "agiReq": 20, "ls": 20, "agi": 7, "spd": 7, "aDamPct": 7, "id": 1032}, {"name": "Female Pirate Wig", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "hp": 3075, "lvl": 98, "xpb": 10, "lb": 15, "spd": 5, "eSteal": 3, "fixID": true, "id": 1037}, {"name": "Favian's Wing", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": -10, "tDef": -15, "lvl": 36, "agiReq": 20, "spd": 12, "aDamPct": 5, "type": "bracelet", "id": 1030}, {"name": "Fenmask", "tier": "Legendary", "type": "helmet", "thorns": 80, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": 105, "eDef": 140, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 30, "mr": 5, "ref": -40, "wDamPct": 18, "eDamPct": 18, "id": 1035}, {"name": "Fermion", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "sdPct": -7, "mdPct": -7, "ref": 15, "spRegen": 15, "id": 1034}, {"name": "Fern", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "2-6", "atkSpd": "VERY_FAST", "lvl": 16, "hprPct": 8, "ls": 11, "hpBonus": 40, "id": 1036}, {"name": "Fever Dream", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "39-39", "fDam": "39-39", "wDam": "0-0", "aDam": "39-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 35, "defReq": 35, "mr": -5, "sdPct": 28, "mdPct": 28, "str": 10, "dex": 10, "fDefPct": -26, "wDefPct": -33, "aDefPct": -26, "id": 1041}, {"name": "Fibreglass", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-50", "tDam": "0-0", "eDam": "10-40", "atkSpd": "FAST", "lvl": 51, "strReq": 17, "agiReq": 17, "sdPct": -10, "mdPct": 10, "mdRaw": 46, "fDefPct": -30, "id": 1039}, {"name": "Fierte", "tier": "Legendary", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "55-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "defReq": 35, "ref": 8, "def": 8, "hpBonus": 700, "fDamPct": 13, "wDefPct": -20, "id": 1040}, {"name": "Fierce Thunder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 39, "dexReq": 20, "sdPct": 7, "mdPct": 7, "xpb": 8, "spd": 15, "wDamPct": 20, "tDefPct": 10, "eDefPct": -25, "id": 1038}, {"name": "Fiery Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1043}, {"name": "Fiery Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1045}, {"name": "Fiery Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1042}, {"name": "Fiery Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1044}, {"name": "Fiery Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1048}, {"name": "Fiery Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": -40, "lvl": 69, "defReq": 25, "hprPct": 12, "def": 4, "fDamPct": 7, "type": "necklace", "id": 1047}, {"name": "Fighting Spirit", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": 15, "sdPct": 12, "mdPct": 12, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1046}, {"name": "Fingertrap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 55, "dex": -1, "hprRaw": -5, "mdRaw": 26, "type": "ring", "id": 1049}, {"name": "Finesse", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 89, "dexReq": 25, "intReq": 25, "dex": 5, "int": 4, "sdRaw": 35, "type": "ring", "id": 1050}, {"name": "Fire Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-100", "fDam": "70-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 440, "hprRaw": 40, "fDamPct": 10, "fDefPct": 20, "id": 1055}, {"name": "Fire Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-90", "fDam": "70-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 770, "hprRaw": 65, "fDamPct": 10, "fDefPct": 20, "id": 1053}, {"name": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1052}, {"name": "Fireball", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "lvl": 86, "defReq": 30, "sdPct": 5, "expd": 4, "fDamPct": 8, "wDamPct": -10, "type": "ring", "id": 1051}, {"name": "Fire Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 590, "hprRaw": 50, "fDamPct": 10, "fDefPct": 20, "id": 1068}, {"name": "Firecloud", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 38, "def": 3, "mdRaw": 13, "fDamPct": 4, "type": "ring", "id": 1057}, {"name": "Firesworn", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "61-82", "fDam": "61-82", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "defReq": 25, "sdPct": 61, "mdPct": 15, "hprRaw": -36, "fDamPct": 20, "fDefPct": -25, "id": 1060}, {"name": "Firequake", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 70, "wDef": -85, "aDef": -85, "eDef": 70, "lvl": 63, "strReq": 40, "defReq": 30, "xpb": 6, "str": 5, "expd": 26, "hprRaw": -65, "fDamPct": 21, "eDamPct": 21, "id": 1058}, {"name": "Firefly", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 65, "wDef": -70, "aDef": 50, "lvl": 66, "agiReq": 20, "defReq": 20, "hprPct": 20, "ls": 105, "agi": 5, "spd": 6, "fDamPct": 8, "aDefPct": 8, "id": 1054}, {"name": "Fishscale", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2525, "fDef": 80, "wDef": 80, "tDef": -180, "lvl": 93, "intReq": 40, "defReq": 40, "ms": 10, "spd": 7, "sdRaw": 175, "fDamPct": 15, "wDamPct": 15, "aDefPct": -15, "tDefPct": -30, "id": 1059}, {"name": "Fission Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-74", "fDam": "0-74", "wDam": "0-0", "aDam": "0-0", "tDam": "0-74", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "defReq": 25, "sdPct": 5, "mdPct": 5, "ls": 150, "expd": 33, "hprRaw": -70, "fDamPct": 5, "wDamPct": -143, "tDamPct": 5, "id": 1063}, {"name": "Flameshot Hilt", "tier": "Legendary", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "1100-1300", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "defReq": 60, "mdPct": 15, "def": 20, "expd": 45, "fDamPct": 25, "wDamPct": -150, "fDefPct": 35, "spRaw3": -15, "id": 1062}, {"name": "Firestorm Bellows", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-95", "fDam": "45-135", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "agiReq": 50, "defReq": 50, "mdPct": 15, "int": -8, "expd": 30, "spd": 20, "hpBonus": 750, "hprRaw": -125, "fDamPct": 15, "wDefPct": -33, "id": 1056}, {"name": "Fissure", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-170", "atkSpd": "VERY_SLOW", "lvl": 48, "strReq": 40, "sdPct": -9, "mdPct": 18, "str": 10, "expd": 26, "spd": -10, "fDamPct": 25, "aDamPct": -10, "eDamPct": 11, "aDefPct": -12, "id": 1061}, {"name": "Flamiche", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-24", "fDam": "18-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "defReq": 25, "hprPct": 16, "def": 7, "hpBonus": 250, "fDefPct": 10, "wDefPct": -5, "id": 1064}, {"name": "Flaming Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "6-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "hpBonus": 16, "id": 1065}, {"name": "Flaming Fangs", "tier": "Unique", "type": "dagger", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-68", "fDam": "32-42", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -3, "def": 10, "expd": 5, "sdRaw": 50, "id": 1066}, {"name": "Flash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "36-100", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "dexReq": 50, "agiReq": 20, "ms": 5, "dex": 4, "agi": 8, "spd": 20, "hpBonus": -400, "id": 1069}, {"name": "Flare Blitz", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "73-87", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "defReq": 24, "mdPct": 10, "ls": 40, "def": 8, "hpBonus": -100, "hprRaw": -15, "fDamPct": 8, "id": 1067}, {"name": "Flashing Boots", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "aDef": 60, "tDef": 100, "eDef": -200, "lvl": 87, "dexReq": 30, "agiReq": 15, "ref": 20, "int": -40, "spd": 8, "spPct1": -17, "spPct2": -10, "spPct3": -17, "spPct4": -10, "id": 1070}, {"name": "Flawed Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 58, "lvl": 17, "id": 1074}, {"name": "Flawed Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 44, "lvl": 15, "id": 1071}, {"name": "Flawless Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "77-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1075}, {"name": "Flawless Andesite Shears", "displayName": "Flawless Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "id": 1076}, {"name": "Flawed Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 35, "lvl": 13, "id": 1073}, {"name": "Flawless Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "130-154", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1077}, {"name": "Flawless Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "80-109", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1078}, {"name": "Flawed Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 31, "lvl": 11, "id": 1072}, {"name": "Flawless Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "49-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1080}, {"name": "Flawless Andesite Stick", "displayName": "Flawless Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1083}, {"name": "Flawless Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "63-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1079}, {"name": "Flawless Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1085}, {"name": "Flawless Birch Stick", "displayName": "Flawless Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1082}, {"name": "Flawless Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 155, "lvl": 33, "id": 1084}, {"name": "Flawless Birch Shears", "displayName": "Flawless Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "29-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "id": 1081}, {"name": "Flawless Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "lvl": 31, "id": 1089}, {"name": "Flawless Chain Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 192, "lvl": 37, "id": 1086}, {"name": "Flawless Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 176, "lvl": 35, "id": 1087}, {"name": "Flawless Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "178-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1092}, {"name": "Flawless Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "104-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1088}, {"name": "Flawless Diorite Shears", "displayName": "Flawless Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "id": 1090}, {"name": "Flawless Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "112-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1091}, {"name": "Flawless Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "213-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1097}, {"name": "Flawless Diorite Stick", "displayName": "Flawless Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "47-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1095}, {"name": "Flawless Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1093}, {"name": "Flawless Granite Shears", "displayName": "Flawless Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "id": 1094}, {"name": "Flawless Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "150-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1096}, {"name": "Flawless Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1098}, {"name": "Flawless Granite Stick", "displayName": "Flawless Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1099}, {"name": "Flawless Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1101}, {"name": "Flawless Jungle Shears", "displayName": "Flawless Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "id": 1122}, {"name": "Flawless Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1100}, {"name": "Flawless Jungle Stick", "displayName": "Flawless Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1103}, {"name": "Flawless Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "56-72", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1104}, {"name": "Flawless Light Birch Shears", "displayName": "Flawless Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "id": 1107}, {"name": "Flawless Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1102}, {"name": "Flawless Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "37-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1108}, {"name": "Flawless Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1110}, {"name": "Flawless Light Birch Stick", "displayName": "Flawless Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1106}, {"name": "Flawless Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1105}, {"name": "Flawless Light Jungle Shears", "displayName": "Flawless Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "id": 1111}, {"name": "Flawless Light Jungle Stick", "displayName": "Flawless Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1109}, {"name": "Flawless Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1112}, {"name": "Flawless Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1113}, {"name": "Flawless Light Oak Shears", "displayName": "Flawless Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "id": 1118}, {"name": "Flawless Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1114}, {"name": "Flawless Light Oak Stick", "displayName": "Flawless Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1117}, {"name": "Flawless Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1115}, {"name": "Flawless Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1119}, {"name": "Flawless Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "67-69", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1125}, {"name": "Flawless Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1123}, {"name": "Flawless Light Spruce Stick", "displayName": "Flawless Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1120}, {"name": "Flawless Light Spruce Shears", "displayName": "Flawless Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "id": 1116}, {"name": "Flawless Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1121}, {"name": "Flawless Oak Shears", "displayName": "Flawless Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "id": 1126}, {"name": "Flawless Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1127}, {"name": "Flawless Oak Stick", "displayName": "Flawless Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1129}, {"name": "Flawless Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1130}, {"name": "Flawless Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1128}, {"name": "Flawless Spruce Shears", "displayName": "Flawless Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "42-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "id": 1132}, {"name": "Flawless Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "63-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1131}, {"name": "Flawless Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "90-106", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1137}, {"name": "Flawless Spruce Stick", "displayName": "Flawless Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1134}, {"name": "Flawless Stone Shears", "displayName": "Flawless Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "id": 1135}, {"name": "Flawless Stone Stick", "displayName": "Flawless Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1133}, {"name": "Flawless Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "55-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1136}, {"name": "Fleet", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "wDef": 15, "aDef": 15, "tDef": -20, "lvl": 43, "intReq": 10, "agiReq": 20, "mdPct": -8, "xpb": 9, "int": 5, "spd": 14, "mdRaw": -45, "aDamPct": 7, "wDefPct": 11, "aDefPct": 10, "id": 1140}, {"name": "Flex", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -95, "aDef": 40, "eDef": 50, "lvl": 72, "strReq": 70, "mr": -5, "mdPct": 12, "str": 8, "int": -6, "agi": 5, "hpBonus": 400, "mdRaw": 130, "id": 1139}, {"name": "Flood Bath", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-156", "wDam": "147-159", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "intReq": 30, "defReq": 30, "sdPct": -11, "mdPct": -11, "hpBonus": 661, "fDamPct": 33, "wDamPct": 33, "aDamPct": -33, "tDamPct": -33, "eDamPct": -33, "spPct3": -23, "id": 1143}, {"name": "Flintlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-150", "fDam": "40-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-170", "atkSpd": "SLOW", "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 7, "str": 25, "def": 25, "expd": 40, "spd": -7, "wDefPct": -14, "id": 1142}, {"name": "Floodgate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "intReq": 55, "sdPct": 10, "int": 13, "fDamPct": -40, "wDamPct": 10, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 1141}, {"name": "Fluffster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-95", "fDam": "0-0", "wDam": "0-0", "aDam": "85-140", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "agiReq": 15, "hprPct": 19, "xpb": 5, "ref": 10, "spd": 15, "hpBonus": 300, "id": 1144}, {"name": "Hero's End", "displayName": "Flummox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 115, "wDef": -130, "tDef": 115, "eDef": -100, "lvl": 94, "dexReq": 40, "defReq": 40, "hprPct": 25, "mdPct": -15, "ls": 245, "def": 9, "sdRaw": 175, "fDamPct": 14, "tDamPct": 14, "eDamPct": -35, "id": 1354}, {"name": "Flawless Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "51-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1138}, {"name": "Fluffy Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 10, "mdPct": -15, "def": 8, "hpBonus": 125, "fDefPct": 8, "aDefPct": 8, "id": 1148}, {"name": "Fluorescence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "lvl": 82, "hprPct": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spd": 20, "eSteal": 6, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 88}, {"name": "Flux and Flow", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "dexReq": 10, "sdPct": 5, "sdRaw": 27, "wDamPct": 13, "tDamPct": 5, "spPct1": 14, "id": 1145}, {"name": "Fluorine", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -1, "lvl": 9, "mdPct": 7, "expd": 2, "type": "necklace", "id": 1146}, {"name": "Foam Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "aDef": 10, "tDef": -45, "lvl": 66, "intReq": 15, "sdPct": 6, "xpb": 6, "wDamPct": 4, "type": "bracelet", "id": 1149}, {"name": "Flush", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 30, "spd": 8, "wDamPct": 20, "tDefPct": -20, "id": 1147}, {"name": "Fog", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 30, "tDef": -25, "eDef": -40, "lvl": 68, "intReq": 10, "agiReq": 25, "wDamPct": 4, "aDamPct": 7, "wDefPct": 4, "aDefPct": 7, "type": "bracelet", "id": 1151}, {"name": "Follow The Wind", "displayName": "Follow the Wind", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 50, "eDef": 40, "lvl": 90, "agiReq": 60, "mdPct": -10, "xpb": 10, "ref": 10, "spd": 18, "eDamPct": -10, "type": "bracelet", "id": 1153}, {"name": "Fog of Creation", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "165-200", "fDam": "55-60", "wDam": "55-60", "aDam": "55-60", "tDam": "55-60", "eDam": "55-60", "atkSpd": "SLOW", "lvl": 100, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprRaw": 200, "sdRaw": 140, "mdRaw": 180, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1182}, {"name": "Foot Warmers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 30, "lvl": 48, "defReq": 10, "hprPct": 15, "xpb": 6, "def": 5, "spd": -5, "fDamPct": 7, "wDefPct": 6, "aDefPct": 6, "id": 1150}, {"name": "Foreboding", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 93, "dexReq": 50, "mdPct": 5, "xpb": 5, "dex": 7, "eDamPct": -20, "type": "bracelet", "id": 1154}, {"name": "Fortitude", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 40, "fDef": 5, "wDef": -8, "lvl": 28, "defReq": 12, "mdPct": -6, "def": 5, "spd": -6, "hpBonus": 25, "hprRaw": 6, "type": "bracelet", "id": 1156}, {"name": "Forgotten", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 36, "lvl": 12, "lb": 7, "str": 2, "dex": 3, "int": 2, "agi": 1, "def": 3, "id": 1152}, {"name": "Fractured", "tier": "Legendary", "thorns": 6, "category": "accessory", "drop": "lootchest", "hp": 300, "fDef": 30, "wDef": -60, "tDef": 20, "lvl": 95, "dexReq": 40, "defReq": 40, "ls": 165, "int": -4, "hpBonus": 150, "type": "ring", "id": 1161}, {"name": "Fragment", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "30-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 94, "dexReq": 40, "agiReq": 40, "mdPct": 18, "ms": -5, "aDamPct": 14, "tDamPct": 14, "fDefPct": -30, "wDefPct": -25, "eDefPct": -15, "id": 1159}, {"name": "Fourchette", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 5, "hprPct": 11, "id": 1157}, {"name": "Frenzy", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "39-109", "fDam": "0-0", "wDam": "0-0", "aDam": "29-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 50, "spd": 23, "atkTier": 1, "mdRaw": 50, "fDefPct": -10, "wDefPct": -10, "aDefPct": -5, "tDefPct": -10, "eDefPct": -10, "id": 1164}, {"name": "Frenzied Mockery", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2727, "fDef": 95, "wDef": -135, "aDef": -75, "tDef": 115, "lvl": 90, "dexReq": 50, "defReq": 40, "sdPct": 20, "ms": 5, "hpBonus": -400, "sdRaw": 144, "fDamPct": 14, "tDamPct": 14, "fDefPct": -50, "tDefPct": -50, "id": 1158}, {"name": "Founder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "aDef": -50, "eDef": 50, "lvl": 97, "strReq": 25, "defReq": 35, "hprPct": 12, "str": 5, "def": 4, "spd": -6, "hpBonus": 270, "type": "necklace", "id": 1155}, {"name": "Frigid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1270, "fDef": -75, "wDef": 75, "aDef": 75, "tDef": -75, "lvl": 74, "intReq": 35, "agiReq": 35, "mr": 5, "int": 4, "agi": 4, "wDamPct": 12, "aDamPct": 12, "fDefPct": -11, "tDefPct": -11, "id": 1160}, {"name": "Frontier", "tier": "Unique", "type": "relik", "thorns": 10, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "363-369", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "182-184", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 45, "hprPct": 20, "hpBonus": 800, "aDefPct": 15, "eDefPct": 20, "id": 1163}, {"name": "Frontliner", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 50, "aDef": 50, "lvl": 82, "agiReq": 60, "defReq": 60, "ls": 190, "ms": 5, "agi": 9, "def": 15, "wDamPct": -25, "fDefPct": 30, "wDefPct": -30, "aDefPct": 30, "id": 1162}, {"name": "Frostbite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 60, "aDef": 60, "lvl": 63, "intReq": 40, "agiReq": 30, "hprPct": -35, "ms": 10, "wDamPct": 15, "aDamPct": 15, "fDefPct": -20, "id": 1166}, {"name": "Frozen Brook", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-80", "fDam": "0-0", "wDam": "30-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "intReq": 20, "mr": 5, "sdPct": 12, "ref": 10, "int": 10, "agi": -5, "spd": -20, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 1168}, {"name": "Flawless Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1124}, {"name": "Frustration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-77", "fDam": "39-39", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "defReq": 35, "expd": 15, "hpBonus": 300, "hprRaw": -90, "fDamPct": 10, "eDamPct": 17, "wDefPct": -12, "id": 1167}, {"name": "Frosted Leggings", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "wDef": 60, "lvl": 57, "intReq": 30, "ms": 5, "int": 7, "spd": -5, "fDamPct": -15, "wDamPct": 20, "fDefPct": -35, "wDefPct": 30, "id": 1165}, {"name": "Full Charge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "490-605", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "mr": 5, "sdPct": 13, "ls": 305, "ms": -15, "spd": -15, "id": 1172}, {"name": "Fulmine Belt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "aDef": -50, "tDef": 100, "eDef": -50, "lvl": 83, "dexReq": 40, "sdPct": 14, "mdPct": 14, "dex": 6, "expd": 14, "aDamPct": -10, "tDamPct": 10, "tDefPct": 10, "id": 1169}, {"name": "Fyrespit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "115-160", "fDam": "120-180", "wDam": "45-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "intReq": 35, "defReq": 30, "mr": 5, "xpb": 8, "hpBonus": 1500, "hprRaw": 100, "fDamPct": 10, "wDamPct": 15, "id": 1173}, {"name": "Funnel", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 7, "ls": 2, "xpb": 5, "id": 1171}, {"name": "Fuse", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 50, "lvl": 75, "hprRaw": 30, "type": "ring", "id": 1170}, {"name": "Gert Bow", "displayName": "Gert Shootstick Tossflinger", "tier": "Legendary", "type": "bow", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1350-1750", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 79, "strReq": 70, "sdPct": -60, "mdPct": 30, "atkTier": -1, "mdRaw": 710, "fixID": true, "id": 1219}, {"name": "Gert Boots", "displayName": "Gert Shakestomper Toefeet", "tier": "Rare", "type": "boots", "quest": "The Hunger of Gerts Part 1", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1800, "aDef": -80, "eDef": 70, "lvl": 78, "strReq": 60, "mdPct": 50, "expd": 40, "spd": -15, "atkTier": -1, "mdRaw": 300, "fixID": true, "id": 1174}, {"name": "Gert Knife", "displayName": "Gert Swingpoke Cuttyrock", "tier": "Legendary", "type": "dagger", "quest": "The Hunger of Gerts Part 2", "poison": 800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "22-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "strReq": 30, "dexReq": 40, "mr": -10, "atkTier": 1, "tDamPct": 20, "fixID": true, "id": 1176}, {"name": "Gert Hammer", "displayName": "Gert Rock Smashbanger", "tier": "Legendary", "type": "spear", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "450-550", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "strReq": 40, "hprPct": -30, "str": 5, "eDamPct": 65, "fixID": true, "id": 1175}, {"name": "Gert Relik", "displayName": "Gert Bangswing Manypointystick", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NEVER", "restrict": "Untradable", "nDam": "650-880", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 55, "agiReq": 35, "sdPct": -300, "ms": 10, "xpb": 6, "atkTier": -1, "mdRaw": 410, "eDamPct": 20, "fixID": true, "id": 421}, {"name": "Gert Leggings", "displayName": "Gert Bumpstump Legcovercloth", "tier": "Rare", "type": "leggings", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 70, "eDef": 70, "lvl": 78, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 8, "str": 4, "agi": 4, "fixID": true, "id": 1191}, {"name": "Gert Super Special Magic Ultistick", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "sdPct": -1, "id": 1177}, {"name": "Gert Wand", "displayName": "Gert Whooshy Bonkpole", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "140-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 40, "agiReq": 40, "sdPct": -45, "mdPct": 30, "spd": 7, "wDamPct": -20, "aDamPct": 30, "fixID": true, "id": 1179}, {"name": "Reinforced Gert Chestplate", "displayName": "Gert Veryhard Chestclothes", "tier": "Rare", "type": "chestplate", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2425, "fDef": 110, "wDef": -70, "lvl": 78, "defReq": 40, "sdPct": -15, "mdPct": 12, "def": 6, "eDamPct": 15, "fixID": true, "id": 1178}, {"name": "Gale's Force", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-123", "fDam": "0-0", "wDam": "0-0", "aDam": "100-123", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "agiReq": 55, "xpb": 15, "ref": 15, "dex": 7, "agi": 13, "spd": 30, "spRegen": 15, "aDamPct": 25, "eDamPct": -50, "id": 1180}, {"name": "Gale Rider", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "14-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "agiReq": 15, "lb": 12, "agi": 8, "def": -5, "spd": 20, "hpBonus": -60, "aDefPct": 11, "id": 1186}, {"name": "Galloping Spurs", "tier": "Fabled", "type": "boots", "majorIds": ["CAVALRYMAN"], "thorns": 10, "category": "armor", "drop": "NORMAL", "hp": 560, "eDef": 20, "lvl": 40, "strReq": 25, "mdPct": 8, "xpb": 15, "spd": 10, "eDamPct": 15, "id": 1187}, {"name": "Galaxy Piercer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "hprPct": 5, "sdPct": 5, "dex": 3, "id": 1183}, {"name": "Galena", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": 60, "wDef": -80, "lvl": 59, "defReq": 45, "mdPct": -15, "ls": 60, "def": 5, "spd": -20, "hpBonus": 200, "hprRaw": 50, "fDamPct": 8, "id": 1181}, {"name": "Galvanization", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": -80, "wDef": 60, "tDef": 60, "eDef": -80, "lvl": 83, "dexReq": 30, "intReq": 30, "hprPct": -12, "mr": 5, "sdPct": 12, "ms": 5, "fDamPct": -15, "wDamPct": 15, "tDamPct": 15, "eDamPct": -15, "fDefPct": -14, "id": 1185}, {"name": "Gargantuan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 15, "sdPct": -10, "mdPct": 20, "str": 7, "spd": -10, "hpBonus": 50, "id": 1188}, {"name": "Garnet", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "20-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 54, "intReq": 20, "defReq": 35, "sdPct": 10, "mdPct": -10, "def": 7, "hprRaw": -48, "fDamPct": 18, "id": 1184}, {"name": "Garnet Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": 20, "lvl": 67, "defReq": 20, "def": 4, "hprRaw": 18, "fDefPct": 6, "type": "ring", "id": 1189}, {"name": "Gavel's Memory", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-30", "fDam": "0-0", "wDam": "0-0", "aDam": "14-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "agi": 4, "spd": 15, "wDamPct": 15, "eDefPct": -15, "id": 1190}, {"name": "Geis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 850, "wDef": -90, "lvl": 54, "strReq": 40, "dexReq": 40, "ms": 10, "xpb": 25, "int": -15, "agi": -10, "def": -10, "hprRaw": 40, "tDamPct": 15, "eDamPct": 15, "id": 1192}, {"name": "Gemini", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 4550, "lvl": 95, "dexReq": 55, "agiReq": 55, "sdPct": -10, "mdPct": -10, "ls": 310, "ms": 10, "dex": 10, "agi": 10, "spd": 15, "eSteal": 8, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "id": 1194}, {"name": "Gearbox Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "xpb": 20, "lb": 10, "id": 1193}, {"name": "Genoxyde", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-310", "fDam": "0-0", "wDam": "0-0", "aDam": "290-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "agiReq": 30, "defReq": 40, "ls": 290, "expd": 15, "spd": 12, "hpBonus": -1000, "fDamPct": 20, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1196}, {"name": "Geothermal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -10, "eDef": 10, "lvl": 38, "strReq": 10, "defReq": 5, "hprPct": 10, "mdPct": 6, "fDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 1200}, {"name": "Gert Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MzY1MTUwOTY5NzcsInByb2ZpbGVJZCI6IjA3NmVjZDVhMzEzMzRjMzRiOTEyNDBhNTQ5MGY0YzgwIiwicHJvZmlsZU5hbWUiOiJibWFucnVsZXMiLCJpc1B1YmxpYyI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhZWUyZjMwMTE2MzhjOTllNDI4NTk2NjRhZWIxM2RlYWRhOGRmZDZiM2ZkYmQ2YmNhNTEzNWE3ZTBlNiJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1300, "fDef": -40, "eDef": 40, "lvl": 75, "id": 1198}, {"name": "Genesis", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 78, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": 35, "spRegen": 10, "hprRaw": 140, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1195}, {"name": "Gestation", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "21-33", "atkSpd": "SLOW", "lvl": 23, "strReq": 10, "xpb": 15, "str": 5, "spd": -8, "hpBonus": 60, "hprRaw": 25, "spPct1": 14, "spRaw3": -5, "id": 1197}, {"name": "Geyser", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "fDef": 65, "wDef": 65, "aDef": 65, "lvl": 74, "intReq": 35, "agiReq": 35, "defReq": 35, "mr": 10, "mdPct": -20, "agi": 7, "expd": 19, "spd": 15, "hprRaw": 100, "tDamPct": -100, "aDefPct": 15, "id": 1203}, {"name": "Ghostly Blades", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-17", "aDam": "13-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 40, "intReq": 15, "agiReq": 15, "mdPct": -10, "ms": 10, "str": -5, "int": 7, "agi": 7, "spd": 10, "spRegen": 5, "sdRaw": 30, "id": 1206}, {"name": "Giant's Bracer", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "lvl": 42, "strReq": 20, "mdPct": 19, "str": 12, "dex": -2, "agi": -2, "spd": -7, "sdRaw": -70, "mdRaw": 90, "id": 1199}, {"name": "Ghost", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 25, "lvl": 77, "intReq": 5, "agiReq": 15, "sdPct": 5, "agi": 5, "spd": 6, "spRegen": 5, "type": "ring", "id": 1201}, {"name": "Giant Step", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "lvl": 37, "hprPct": 25, "mr": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 10, "id": 1207}, {"name": "Giant Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 68, "mdPct": 15, "xpb": 9, "id": 1204}, {"name": "Gibyeong", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "75-115", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "intReq": 40, "defReq": 50, "mr": 5, "sdPct": 7, "ref": 13, "int": 8, "def": 9, "hprRaw": 140, "fDamPct": 25, "eDamPct": -15, "id": 1202}, {"name": "Ginto", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 28, "sdPct": 9, "lb": 18, "int": 4, "fDefPct": -6, "id": 1210}, {"name": "Gilded Cuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 24, "lb": 8, "type": "bracelet", "id": 1205}, {"name": "Gilded Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 24, "xpb": 8, "lb": 12, "id": 1211}, {"name": "Glare", "tier": "Legendary", "type": "wand", "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-40", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "dexReq": 15, "xpb": 10, "ref": 40, "sdRaw": 50, "fDamPct": 10, "eDamPct": -15, "id": 1209}, {"name": "Glitchtean", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-117", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "sdPct": -18, "mdPct": -16, "xpb": 6, "lb": 10, "ref": 13, "sdRaw": 115, "mdRaw": 70, "id": 1215}, {"name": "Glissando", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "drop": "NORMAL", "nDam": "0-7", "fDam": "0-7", "wDam": "0-7", "aDam": "0-7", "tDam": "0-7", "eDam": "0-7", "atkSpd": "FAST", "lvl": 92, "spd": 10, "eSteal": 10, "sdRaw": 1170, "mdRaw": 750, "sprintReg": 10, "jh": 1, "id": 1214}, {"name": "Glacial Crest", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "20-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 20, "mr": 5, "sdPct": 8, "mdPct": 15, "ls": 36, "hpBonus": -75, "hprRaw": -15, "fDamPct": -30, "aDamPct": 15, "id": 1208}, {"name": "Glitz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 34, "lb": 8, "type": "ring", "id": 1212}, {"name": "Glowing Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-6", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 15, "hprPct": 12, "hpBonus": 15, "spRegen": 1, "id": 1218}, {"name": "Gnarl", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 20, "sdPct": 12, "mdPct": 12, "ms": -10, "str": 7, "spd": -5, "aDefPct": -12, "eDefPct": 12, "id": 1216}, {"name": "Glowstone Killer", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-47", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "56-73", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "xpb": 17, "str": -3, "dex": 7, "tDamPct": 12, "id": 1221}, {"name": "Gloomstone", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -25, "aDef": -15, "eDef": -10, "lvl": 85, "dexReq": 60, "sdPct": 6, "spd": 4, "spRegen": -5, "sdRaw": 25, "tDamPct": 6, "type": "ring", "id": 1213}, {"name": "Gnir", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "hp": 220, "wDef": 25, "lvl": 85, "strReq": 30, "intReq": 20, "str": 4, "spd": -7, "hprRaw": 25, "type": "ring", "id": 1217}, {"name": "Gnocchi", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 74, "lvl": 17, "mr": 5, "sdPct": 8, "mdPct": -5, "xpb": 8, "spRegen": 3, "id": 1234}, {"name": "Goliath", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": 4, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 19, "defReq": 12, "hprRaw": 5, "id": 1225}, {"name": "Golden Pants of Fortune", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 19, "xpb": 5, "lb": 15, "dex": 3, "agi": 3, "id": 1220}, {"name": "Golden Embrace", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 116, "lvl": 19, "sdPct": -6, "mdPct": -6, "ref": 4, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1222}, {"name": "Gospel", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "agiReq": 20, "xpb": 10, "spRegen": 10, "aDamPct": 5, "type": "necklace", "id": 1223}, {"name": "Goswhit", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 50, "lvl": 48, "defReq": 40, "hprPct": 10, "def": 5, "spd": -12, "hprRaw": 23, "fDamPct": 8, "wDamPct": -10, "id": 1224}, {"name": "Grandfather", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 20, "mr": 5, "ms": 5, "hpBonus": -24, "id": 1230}, {"name": "Gouttes", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 8, "tDef": -4, "lvl": 38, "intReq": 20, "sdPct": 6, "int": 4, "type": "ring", "id": 1226}, {"name": "Grateful Dead", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "835-835", "fDam": "0-0", "wDam": "3-3", "aDam": "3-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 83, "intReq": 35, "agiReq": 35, "mr": 5, "ms": 5, "def": -10, "wDefPct": 15, "aDefPct": 15, "tDefPct": 20, "id": 1228}, {"name": "Granite Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 20, "aDef": 60, "eDef": 20, "lvl": 63, "strReq": 45, "defReq": 5, "def": 9, "expd": 26, "spd": -9, "hpBonus": 400, "mdRaw": 130, "wDefPct": -25, "aDefPct": 20, "eDefPct": 20, "id": 1227}, {"name": "Graviton Lance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "355-355", "aDam": "0-0", "tDam": "255-455", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "dexReq": 36, "intReq": 36, "ms": -5, "str": -20, "dex": 55, "int": 55, "agi": -20, "def": -20, "id": 1232}, {"name": "Great Brace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 150, "fDef": 20, "wDef": -20, "lvl": 51, "defReq": 25, "hprPct": 5, "hprRaw": 18, "wDamPct": -7, "fDefPct": 7, "type": "bracelet", "id": 1233}, {"name": "Gravity", "tier": "Legendary", "type": "chestplate", "majorIds": ["MAGNET"], "thorns": 30, "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 5500, "fDef": 250, "wDef": 250, "aDef": 250, "tDef": 250, "eDef": 250, "lvl": 100, "strReq": 55, "dexReq": 55, "intReq": 55, "agiReq": 55, "defReq": 55, "ls": 295, "ms": 5, "ref": 30, "spd": -25, "atkTier": -1, "hprRaw": 200, "sdRaw": -105, "id": 1231}, {"name": "Great Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 40, "xpb": 5, "hpBonus": 125, "type": "necklace", "id": 1236}, {"name": "Greaves of the Veneer", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4000, "fDef": 200, "wDef": 65, "aDef": 65, "eDef": 200, "lvl": 89, "strReq": 30, "defReq": 60, "mr": 5, "def": 20, "spd": -10, "hpBonus": 1500, "hprRaw": 200, "wDamPct": -5, "aDamPct": -15, "tDamPct": -15, "wDefPct": 50, "aDefPct": 40, "tDefPct": 40, "id": 1237}, {"name": "Grenouille", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-75", "fDam": "0-0", "wDam": "20-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "intReq": 30, "sdPct": 8, "mdPct": -8, "agi": 5, "spd": 5, "aDamPct": 8, "id": 1241}, {"name": "Green Helmet", "tier": "Unique", "type": "helmet", "poison": 200, "category": "armor", "drop": "NORMAL", "hp": 1850, "eDef": 60, "lvl": 80, "xpb": 20, "eSteal": 2, "eDamPct": 20, "eDefPct": 20, "id": 1235}, {"name": "Gridlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "dexReq": 25, "intReq": 25, "ms": 10, "spd": -15, "wDamPct": 10, "tDamPct": 10, "eDefPct": -25, "id": 1242}, {"name": "Griffin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "40-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "intReq": 60, "agiReq": 30, "mr": 10, "sdPct": 8, "mdPct": -15, "int": 10, "spd": 15, "fDamPct": -20, "wDamPct": 19, "id": 1240}, {"name": "Green Perfection", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-25", "fDam": "11-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "lb": 6, "str": 5, "eSteal": 5, "eDamPct": 10, "id": 1238}, {"name": "Grillface", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3400, "fDef": 175, "aDef": 150, "eDef": -150, "lvl": 87, "agiReq": 55, "defReq": 70, "int": -20, "agi": 15, "expd": 25, "hprRaw": 192, "mdRaw": 240, "fDamPct": 20, "aDamPct": 20, "wDefPct": -40, "id": 1239}, {"name": "Griswold's Edge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "mr": 5, "mdPct": 7, "xpb": 7, "lb": 7, "dex": 7, "spd": 7, "tDamPct": 7, "id": 1255}, {"name": "Grip of the Land", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2350, "fDef": 140, "wDef": -120, "eDef": 140, "lvl": 88, "strReq": 55, "defReq": 45, "hprPct": 65, "str": 7, "def": 7, "spd": -15, "hprRaw": -65, "fDamPct": 12, "eDamPct": 12, "fDefPct": 12, "eDefPct": 12, "id": 1244}, {"name": "Groundshakers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "aDef": -80, "eDef": 80, "lvl": 72, "strReq": 35, "mr": -5, "mdPct": 7, "lb": 10, "str": 5, "sdRaw": -55, "mdRaw": 165, "eDamPct": 10, "eDefPct": 10, "id": 1245}, {"name": "Guacamole", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "128-131", "aDam": "0-0", "tDam": "0-0", "eDam": "128-131", "atkSpd": "NORMAL", "lvl": 88, "strReq": 30, "intReq": 30, "mr": 5, "str": 17, "int": 17, "hpBonus": 940, "hprRaw": 110, "spRaw4": -5, "id": 1243}, {"name": "Gust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -5, "aDef": 5, "lvl": 20, "agiReq": 5, "spd": 5, "aDamPct": 5, "type": "bracelet", "id": 1246}, {"name": "Gungnir", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "xpb": 25, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1247}, {"name": "Gwydion", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "NORMAL", "lvl": 69, "strReq": 20, "intReq": 45, "sdPct": 12, "mdPct": -12, "int": 7, "eSteal": 5, "wDamPct": 20, "aDamPct": -12, "aDefPct": -12, "id": 1248}, {"name": "Gypsum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "aDef": -20, "eDef": 20, "lvl": 37, "strReq": 25, "sdPct": -12, "expd": 5, "spd": -10, "mdRaw": 70, "eDamPct": 8, "id": 1250}, {"name": "Abyss-Imbued Leggings", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3400, "wDef": 175, "aDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "intReq": 40, "agiReq": 40, "ls": 425, "ms": 20, "dex": -30, "def": -30, "sdRaw": 265, "mdRaw": 320, "wDamPct": 20, "aDamPct": 20, "eDamPct": 20, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1252}, {"name": "Ambertoise Shell", "set": "Earth Hive", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3000, "fDef": 100, "wDef": 150, "tDef": 150, "eDef": 100, "lvl": 88, "strReq": 30, "defReq": 30, "hprPct": 25, "mdPct": 20, "ms": 5, "str": 5, "agi": 10, "def": 5, "fDefPct": 20, "wDefPct": 25, "tDefPct": 25, "eDefPct": 20, "fixID": true, "id": 1251}, {"name": "Boreal-Patterned Aegis", "displayName": "Anima-Infused Cuirass", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 200, "wDef": 200, "tDef": 200, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "mr": 10, "str": -30, "agi": -30, "fDamPct": 20, "wDamPct": 20, "tDamPct": 20, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "fixID": true, "spRaw1": -5, "spRaw3": -5, "spRaw4": -5, "id": 1249}, {"name": "Beetle Aegis", "set": "Earth Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": -60, "aDef": -60, "tDef": 120, "eDef": 120, "lvl": 91, "strReq": 55, "dexReq": 45, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 9, "dex": 9, "agi": -6, "def": -6, "tDamPct": 30, "eDamPct": 30, "fixID": true, "id": 1253}, {"name": "Bottled Thunderstorm", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 81, "dexReq": 20, "agiReq": 20, "dex": 6, "agi": 6, "aDamPct": 10, "tDamPct": 10, "type": "necklace", "fixID": true, "id": 1254}, {"name": "Breezehands", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 85, "dexReq": 55, "agiReq": 55, "spd": 5, "atkTier": 1, "type": "ring", "fixID": true, "id": 1257}, {"name": "Chaos-Woven Greaves", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "poison": 2250, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "wDef": 100, "tDef": 100, "eDef": 100, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "sdPct": 50, "mdPct": 50, "ms": 15, "agi": -30, "def": -30, "wDamPct": 30, "tDamPct": 30, "eDamPct": 30, "wDefPct": 5, "tDefPct": 5, "eDefPct": 5, "fixID": true, "id": 1256}, {"name": "Grindcore", "tier": "Rare", "type": "relik", "poison": 100, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "24-28", "eDam": "20-28", "atkSpd": "SLOW", "lvl": 25, "strReq": 10, "dexReq": 10, "ls": -15, "str": 4, "dex": 4, "mdRaw": 52, "spPct1": 18, "id": 1261}, {"name": "Cinderchain", "set": "Fire Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2875, "fDef": 150, "wDef": -150, "tDef": 150, "eDef": -150, "lvl": 98, "dexReq": 30, "defReq": 60, "sdPct": 10, "dex": 10, "def": 7, "expd": 25, "atkTier": -1, "mdRaw": 420, "fDamPct": 45, "aDamPct": -65, "tDamPct": 40, "eDamPct": -65, "fixID": true, "id": 1259}, {"name": "Clockwork", "set": "Fire Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 60, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 97, "defReq": 60, "hprPct": 20, "ref": 20, "type": "bracelet", "fixID": true, "id": 1258}, {"name": "Coral Ring", "set": "Water Hive", "tier": "Rare", "poison": -365, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 800, "wDef": 50, "lvl": 93, "hprPct": 10, "mr": 5, "dex": -4, "type": "ring", "fixID": true, "id": 1262}, {"name": "Contrast", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "poison": 750, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "lvl": 100, "mr": 10, "ls": 200, "spd": 15, "hprRaw": 150, "type": "necklace", "fixID": true, "id": 1260}, {"name": "Dupliblaze", "set": "Fire Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 40, "wDef": -80, "lvl": 98, "defReq": 60, "def": 6, "expd": 18, "fDamPct": 24, "wDefPct": -12, "type": "bracelet", "fixID": true, "id": 1265}, {"name": "Hephaestus-Forged Greaves", "displayName": "Eden-Blessed Guards", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4600, "fDef": 300, "wDef": 300, "aDef": 300, "lvl": 100, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 50, "mr": 20, "str": -30, "dex": -30, "spRegen": 25, "hprRaw": 325, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "fixID": true, "id": 1263}, {"name": "Elder Oak Roots", "set": "Earth Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": 120, "eDef": 120, "lvl": 90, "strReq": 40, "intReq": 30, "hprPct": 20, "mr": 10, "sdPct": 15, "spd": -12, "hprRaw": 200, "wDamPct": 20, "eDamPct": 20, "aDefPct": -25, "fixID": true, "id": 1266}, {"name": "Elysium-Engraved Aegis", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "fDef": 200, "aDef": 200, "eDef": 200, "lvl": 100, "strReq": 40, "agiReq": 40, "defReq": 40, "mdPct": 15, "dex": -30, "int": -30, "spd": 20, "hprRaw": 275, "mdRaw": 500, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1264}, {"name": "Flashstep", "set": "Air Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "aDef": 100, "lvl": 85, "agiReq": 50, "agi": 12, "spd": 40, "aDamPct": 15, "fDefPct": -20, "fixID": true, "id": 1270}, {"name": "Gaea-Hewn Boots", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5000, "fDef": 225, "wDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "intReq": 40, "defReq": 40, "mr": 15, "sdPct": 15, "dex": -30, "agi": -30, "expd": 20, "hprRaw": 300, "fDamPct": 10, "wDamPct": 10, "eDamPct": 10, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 1268}, {"name": "Golemlus Core", "set": "Earth Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1225, "fDef": 50, "wDef": -30, "aDef": 50, "tDef": -30, "eDef": 50, "lvl": 90, "strReq": 25, "defReq": 25, "spd": -6, "hprRaw": 110, "tDamPct": -10, "eDamPct": 8, "type": "necklace", "fixID": true, "id": 1271}, {"name": "Gale's Freedom", "set": "Air Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2225, "aDef": 120, "tDef": 120, "lvl": 87, "dexReq": 30, "agiReq": 30, "sdPct": 20, "xpb": 20, "ref": 20, "dex": 7, "int": 12, "agi": 7, "spd": 20, "fixID": true, "id": 1269}, {"name": "Hephaestus-Forged Sabatons", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 250, "aDef": 250, "tDef": 250, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "ls": 500, "ms": 20, "str": -30, "int": -30, "spd": 25, "fDamPct": 10, "aDamPct": 10, "tDamPct": 10, "fDefPct": 25, "aDefPct": 25, "tDefPct": 25, "fixID": true, "spPct3": -28, "id": 1272}, {"name": "Humbark Moccasins", "set": "Earth Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "aDef": -100, "tDef": 80, "eDef": 80, "lvl": 89, "strReq": 50, "dexReq": 50, "sdPct": -20, "mdPct": 15, "ls": 210, "agi": 10, "spd": 15, "atkTier": 1, "fixID": true, "id": 1273}, {"name": "Infused Hive Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1274}, {"name": "Infused Hive Bow", "tier": "Legendary", "type": "bow", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "250-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1276}, {"name": "Infused Hive Relik", "tier": "Legendary", "type": "relik", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "260-290", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1277}, {"name": "Insulated Plate Mail", "set": "Thunder Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 150, "wDef": 100, "aDef": 100, "tDef": 150, "eDef": 150, "lvl": 83, "dexReq": 55, "defReq": 55, "ls": 270, "def": 10, "spd": -15, "atkTier": -1, "tDamPct": -15, "wDefPct": 30, "tDefPct": 40, "eDefPct": 40, "fixID": true, "spPct3": -17, "spPct4": -17, "id": 1279}, {"name": "Infused Hive Spear", "tier": "Legendary", "type": "spear", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "160-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1275}, {"name": "Infused Hive Wand", "tier": "Legendary", "type": "wand", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "125-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1278}, {"name": "Lightning Flash", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 82, "sdPct": 10, "dex": 5, "spd": 12, "eDamPct": -5, "type": "necklace", "fixID": true, "id": 1296}, {"name": "Intensity", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 425, "lvl": 100, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "type": "ring", "fixID": true, "id": 1280}, {"name": "Mantlewalkers", "set": "Fire Hive", "tier": "Rare", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "fDef": 125, "eDef": 150, "lvl": 97, "strReq": 25, "defReq": 50, "str": 7, "def": 7, "expd": 50, "fDamPct": 40, "wDamPct": -20, "eDamPct": 40, "fixID": true, "id": 1281}, {"name": "Moon Pool Circlet", "set": "Water Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 35, "lvl": 94, "intReq": 65, "mr": 10, "int": 3, "spRegen": 10, "type": "ring", "fixID": true, "id": 1282}, {"name": "Obsidian-Framed Helmet", "tier": "Legendary", "type": "helmet", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 225, "tDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "dexReq": 40, "defReq": 40, "ls": 450, "ms": 15, "int": -30, "agi": -30, "atkTier": -14, "mdRaw": 2000, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 20, "tDefPct": 20, "eDefPct": 20, "fixID": true, "id": 1283}, {"name": "Pride of the Aerie", "set": "Air Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2450, "fDef": -70, "aDef": 140, "eDef": 140, "lvl": 84, "strReq": 40, "agiReq": 50, "hprPct": 28, "str": 14, "agi": 7, "spd": 21, "atkTier": 1, "tDefPct": -35, "eDefPct": 21, "fixID": true, "id": 1286}, {"name": "Silt of the Seafloor", "set": "Water Hive", "tier": "Rare", "type": "boots", "thorns": 35, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3250, "wDef": 240, "aDef": -70, "tDef": -70, "eDef": 200, "lvl": 93, "strReq": 30, "intReq": 40, "mr": 10, "ms": 10, "ref": 30, "str": 8, "int": 15, "spd": -12, "fDefPct": 40, "wDefPct": 30, "eDefPct": 40, "fixID": true, "id": 1285}, {"name": "Soulflare", "set": "Fire Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 150, "wDef": 125, "tDef": -125, "lvl": 99, "intReq": 40, "defReq": 50, "mr": 10, "ls": 440, "ms": 10, "int": 10, "def": 10, "spRegen": 33, "wDefPct": 20, "tDefPct": -25, "fixID": true, "id": 1287}, {"name": "Sparkling Visor", "set": "Thunder Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2000, "tDef": 125, "lvl": 80, "dexReq": 45, "sdPct": 20, "ms": 15, "xpb": 20, "ref": 20, "tDamPct": 20, "tDefPct": 15, "eDefPct": -25, "fixID": true, "id": 1288}, {"name": "Sparkweaver", "set": "Fire Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3850, "fDef": 150, "tDef": 200, "lvl": 96, "defReq": 50, "ms": 15, "dex": 20, "def": 10, "wDamPct": -15, "fDefPct": 20, "tDefPct": 30, "fixID": true, "id": 1289}, {"name": "Stillwater Blue", "set": "Water Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2500, "wDef": 180, "tDef": -100, "lvl": 95, "intReq": 60, "mr": 20, "ref": 30, "int": 10, "spRegen": 15, "wDamPct": 25, "tDamPct": -20, "wDefPct": 20, "fixID": true, "id": 1290}, {"name": "Static-charged Leggings", "displayName": "Static-Charged Leggings", "set": "Thunder Hive", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2050, "tDef": 100, "eDef": -100, "lvl": 82, "dexReq": 55, "hprPct": -40, "ls": 175, "ref": 20, "atkTier": 1, "tDamPct": 40, "wDefPct": -25, "eDefPct": -15, "fixID": true, "id": 1293}, {"name": "Subur Clip", "set": "Earth Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 89, "strReq": 30, "def": -2, "spd": 10, "mdRaw": 105, "eDamPct": 12, "type": "bracelet", "fixID": true, "id": 1291}, {"name": "Trench Scourer", "set": "Water Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2450, "wDef": 130, "tDef": 100, "lvl": 94, "dexReq": 35, "intReq": 50, "ms": 20, "xpb": 40, "lb": 40, "eSteal": 5, "wDamPct": 25, "tDamPct": 25, "fixID": true, "id": 1294}, {"name": "Thunderous Step", "set": "Thunder Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": -80, "tDef": 125, "lvl": 81, "dexReq": 45, "agiReq": 30, "agi": 15, "def": -5, "spd": 16, "sdRaw": 235, "mdRaw": 400, "eDamPct": -25, "fixID": true, "id": 1297}, {"name": "Twilight-Gilded Cloak", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "aDef": 175, "tDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "dexReq": 40, "agiReq": 40, "sdPct": -40, "int": -30, "def": -30, "spd": 20, "atkTier": 2, "mdRaw": 90, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "fixID": true, "id": 1295}, {"name": "Vortex Bracer", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 400, "fDef": -40, "aDef": 40, "lvl": 86, "agiReq": 30, "spd": 10, "sdRaw": 65, "mdRaw": 85, "aDamPct": 12, "type": "bracelet", "fixID": true, "id": 1298}, {"name": "Whitecap Crown", "set": "Water Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2300, "wDef": 150, "tDef": -120, "lvl": 92, "intReq": 75, "int": 10, "sdRaw": 250, "fDamPct": -10, "wDamPct": 20, "tDefPct": -20, "fixID": true, "id": 1299}, {"name": "Turbine Greaves", "set": "Air Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 100, "aDef": 100, "lvl": 86, "ref": 25, "agi": 7, "def": 7, "spd": 20, "mdRaw": 275, "fDefPct": 20, "aDefPct": 20, "fixID": true, "sprintReg": 16, "id": 1292}, {"name": "Hailstone", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "wDef": 40, "aDef": 40, "tDef": -80, "lvl": 56, "intReq": 30, "agiReq": 30, "sdPct": 10, "mdPct": -10, "spd": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": -10, "id": 1300}, {"name": "Hairy Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4, "lvl": 1, "dex": 3, "id": 1302}, {"name": "Halbert", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "36-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "sdPct": -6, "mdPct": 6, "lb": 6, "str": 8, "spd": -6, "id": 1303}, {"name": "Hammer of the Forge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-180", "fDam": "190-390", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-390", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 25, "defReq": 25, "str": 7, "def": 7, "spd": -15, "hpBonus": 750, "fDamPct": 15, "wDamPct": -15, "eDamPct": 15, "wDefPct": -15, "id": 1304}, {"name": "Hammer of the Blacksmith", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "23-46", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "126-183", "atkSpd": "SUPER_SLOW", "lvl": 30, "strReq": 25, "sdPct": -15, "mdPct": 22, "spd": -7, "mdRaw": 105, "eDamPct": 15, "aDefPct": -12, "id": 1306}, {"name": "Hamsey's Brilliance", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 720, "fDef": 30, "wDef": 30, "lvl": 96, "intReq": 30, "defReq": 30, "mdPct": -7, "ms": 5, "int": 4, "spd": -10, "hprRaw": 60, "tDefPct": -10, "type": "bracelet", "id": 1308}, {"name": "Hallfred's Greed", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "spRegen": -3, "eSteal": 6, "type": "bracelet", "id": 1301}, {"name": "Handcuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 33, "strReq": 5, "defReq": 5, "mdPct": 7, "str": 4, "dex": -2, "def": 4, "spd": -4, "type": "bracelet", "id": 1305}, {"name": "Handmade Bucie Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-58", "fDam": "34-56", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "xpb": 7, "lb": 7, "str": 5, "hpBonus": 200, "eDamPct": 10, "wDefPct": -6, "id": 1310}, {"name": "Harbinger of Fate", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "130-130", "wDam": "0-0", "aDam": "0-0", "tDam": "100-160", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "dexReq": 40, "defReq": 40, "dex": 13, "def": 13, "expd": 40, "spRegen": -20, "hprRaw": -100, "fDamPct": 20, "tDamPct": 20, "id": 1313}, {"name": "Haqherphix", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-32", "eDam": "11-21", "atkSpd": "SUPER_FAST", "lvl": 42, "strReq": 30, "dexReq": 30, "mr": -10, "ms": 20, "xpb": 9, "expd": 17, "mdRaw": 20, "id": 1309}, {"name": "Hard Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "51-57", "wDam": "51-57", "aDam": "51-57", "tDam": "51-57", "eDam": "51-57", "atkSpd": "FAST", "lvl": 96, "strReq": 23, "dexReq": 23, "intReq": 23, "agiReq": 23, "defReq": 23, "mr": 5, "sdPct": 15, "mdPct": 15, "ms": 5, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "fDefPct": -25, "wDefPct": -25, "aDefPct": -25, "tDefPct": -25, "eDefPct": -25, "id": 1311}, {"name": "Hard Hat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 180, "lvl": 31, "defReq": 10, "ref": 4, "def": 7, "hpBonus": 50, "id": 1307}, {"name": "Hardline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 20, "wDef": -20, "aDef": -20, "eDef": 35, "lvl": 51, "strReq": 25, "defReq": 25, "sdPct": -8, "mdPct": 8, "str": 4, "spd": -8, "hpBonus": 325, "fDamPct": 6, "id": 1316}, {"name": "Harsh Noise", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 6, "expd": 15, "eSteal": 2, "sdRaw": 15, "id": 1312}, {"name": "Harwrol", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-50", "fDam": "0-0", "wDam": "0-0", "aDam": "60-85", "tDam": "0-0", "eDam": "60-85", "atkSpd": "FAST", "lvl": 97, "strReq": 55, "agiReq": 55, "mdPct": 19, "str": 13, "agi": 13, "spd": 23, "hpBonus": 2500, "wDamPct": -25, "tDamPct": -25, "fDefPct": 25, "tDefPct": 25, "id": 1315}, {"name": "Haze", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "20-50", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 20, "defReq": 20, "agi": 10, "def": 10, "hpBonus": 350, "wDefPct": -15, "id": 1320}, {"name": "Head Knocker", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 18, "sdPct": -12, "mdPct": 4, "int": -3, "spd": -4, "mdRaw": 36, "eDamPct": 4, "id": 1319}, {"name": "Heart of Fire", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 35, "wDef": -35, "lvl": 52, "defReq": 30, "hpBonus": 150, "hprRaw": 35, "fDamPct": 5, "wDamPct": -15, "fDefPct": 10, "id": 1317}, {"name": "Heartache", "tier": "Unique", "type": "spear", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-80", "fDam": "0-0", "wDam": "140-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "intReq": 40, "ls": -175, "ref": 12, "int": 10, "sdRaw": 115, "wDamPct": 20, "tDamPct": -20, "id": 1321}, {"name": "Hearts Club", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-32", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hprPct": 10, "sdPct": -5, "hpBonus": 20, "hprRaw": 5, "id": 1318}, {"name": "Heat Death", "tier": "Fabled", "type": "wand", "majorIds": ["FLASHFREEZE"], "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "36-38", "aDam": "26-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "intReq": 55, "agiReq": 35, "mr": 5, "ls": 110, "hpBonus": -500, "sdRaw": 110, "spPct4": -28, "id": 3557}, {"name": "Heartstrings", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "62-90", "fDam": "30-50", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "agiReq": 20, "defReq": 30, "hprPct": 20, "ls": 140, "xpb": 10, "def": 7, "hprRaw": 60, "fDefPct": 10, "aDefPct": 15, "id": 1322}, {"name": "Heat Burst", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-54", "fDam": "76-80", "wDam": "0-0", "aDam": "76-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "agiReq": 20, "defReq": 20, "sdPct": -15, "ls": 95, "fDamPct": 32, "wDamPct": -35, "aDamPct": 32, "id": 1323}, {"name": "Heatwave", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "400-750", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "defReq": 55, "def": 15, "fDamPct": 30, "wDamPct": -20, "fDefPct": 15, "wDefPct": -20, "id": 1324}, {"name": "Heatwind", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-26", "fDam": "23-31", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "agiReq": 20, "defReq": 30, "hprPct": 20, "agi": 5, "spd": 10, "aDamPct": 6, "fDefPct": 10, "id": 1326}, {"name": "Heavenly Wisp", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 25, "agiReq": 25, "mr": 10, "xpb": 10, "spd": 10, "spRegen": 10, "tDamPct": -20, "tDefPct": -20, "id": 1327}, {"name": "Heaven's Gate", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "20-66", "aDam": "20-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "agiReq": 30, "sdPct": 15, "mdPct": -10, "spd": 13, "spRegen": 25, "wDamPct": 12, "aDamPct": 12, "id": 1325}, {"name": "Heliophilia", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": 6, "lvl": 8, "hprPct": 20, "xpb": 12, "hpBonus": 30, "hprRaw": 10, "id": 1329}, {"name": "Heliophobia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 80, "tDef": -65, "lvl": 60, "intReq": 25, "ms": 10, "lb": 15, "ref": 12, "spRegen": 5, "sdRaw": 75, "tDamPct": -18, "tDefPct": -8, "id": 1332}, {"name": "HellRaiser", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "30-35", "fDam": "26-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "defReq": 10, "expd": 5, "fDamPct": 10, "wDamPct": -30, "id": 1328}, {"name": "Hell's Scream", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "120-200", "wDam": "0-0", "aDam": "80-240", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "agiReq": 35, "defReq": 35, "ls": 255, "str": -8, "agi": 10, "expd": 20, "spd": 18, "eDamPct": -100, "fDefPct": 30, "aDefPct": 30, "id": 1330}, {"name": "Hell Walk", "tier": "Unique", "type": "boots", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 140, "wDef": -160, "lvl": 67, "spd": -8, "fDefPct": 22, "id": 1333}, {"name": "Hellion", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 380, "fDef": 40, "wDef": -40, "lvl": 91, "defReq": 45, "ls": 85, "def": 4, "fDamPct": 6, "wDamPct": -8, "type": "ring", "id": 1334}, {"name": "Heavensent", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "54-66", "aDam": "54-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "intReq": 17, "agiReq": 17, "mr": 5, "xpb": 10, "int": 15, "agi": 15, "def": -8, "spd": 10, "id": 1331}, {"name": "Hellkite's Beak", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-130", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 25, "defReq": 25, "sdPct": 11, "mdPct": 11, "int": -6, "expd": 8, "spRegen": -6, "fDamPct": 8, "wDamPct": -8, "tDamPct": 8, "wDefPct": -20, "id": 1336}, {"name": "Hellbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-110", "fDam": "120-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "SLOW", "lvl": 76, "strReq": 10, "defReq": 40, "mdPct": 4, "spd": -3, "hpBonus": 300, "fDamPct": 3, "eDamPct": 7, "id": 1335}, {"name": "Hellkite's Wing", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-48", "wDam": "0-0", "aDam": "0-0", "tDam": "32-72", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "dexReq": 10, "defReq": 20, "sdPct": 9, "mdPct": 9, "ms": 5, "int": -5, "spRegen": -5, "fDamPct": 7, "wDamPct": -10, "tDamPct": 10, "wDefPct": -15, "id": 1337}, {"name": "Helm of Andesite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": 20, "wDef": -40, "eDef": 20, "lvl": 49, "strReq": 20, "agiReq": 10, "mdPct": 12, "str": 8, "expd": 6, "fDamPct": 12, "eDamPct": 10, "fDefPct": -5, "wDefPct": -15, "eDefPct": -5, "id": 1338}, {"name": "Hellstrand", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "230-290", "fDam": "150-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "defReq": 55, "hprPct": 25, "mr": 5, "sdPct": 15, "ls": 655, "dex": 13, "spRegen": -25, "wDamPct": -40, "aDefPct": 30, "id": 1341}, {"name": "Helm of Darkness", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "tDef": 15, "lvl": 35, "sdPct": 12, "ref": 30, "spd": 5, "tDamPct": 10, "id": 1339}, {"name": "Helm of the Dead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 390, "aDef": -30, "tDef": 20, "eDef": 15, "lvl": 44, "strReq": 5, "dexReq": 5, "hprPct": 15, "ls": 27, "str": 7, "agi": -5, "aDamPct": -10, "tDefPct": 5, "eDefPct": 5, "id": 1340}, {"name": "Helmet of Blue Stone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1050, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 62, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 7, "fDamPct": -5, "wDamPct": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": -5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1346}, {"name": "Helmet of Intelligence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 13, "lvl": 6, "int": 4, "id": 1344}, {"name": "Helter Skelter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "19-29", "tDam": "19-29", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "dexReq": 10, "agiReq": 5, "atkTier": 1, "hpBonus": -40, "sdRaw": -45, "aDamPct": 11, "tDamPct": 11, "spRaw2": -5, "jh": 1, "id": 1342}, {"name": "Heracul", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "580-840", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-225", "atkSpd": "VERY_SLOW", "lvl": 77, "strReq": 90, "mdPct": 30, "str": 20, "def": -10, "expd": 30, "spd": -20, "fDefPct": -8, "wDefPct": -6, "aDefPct": -10, "tDefPct": -4, "eDefPct": -2, "id": 1345}, {"name": "Helmet of Wisdom", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 12, "xpb": 3, "int": 5, "id": 1343}, {"name": "Hero's Beginning", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": 3, "wDef": 3, "aDef": 3, "tDef": 3, "eDef": 3, "lvl": 27, "strReq": 15, "sdPct": 5, "mdPct": 7, "str": 3, "spRegen": 3, "mdRaw": 33, "id": 1375}, {"name": "Hertz", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "tDef": 8, "eDef": -10, "lvl": 23, "dexReq": 10, "mdPct": 6, "tDamPct": 14, "id": 1349}, {"name": "Heroism", "tier": "Rare", "type": "helmet", "thorns": 31, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 120, "wDef": 50, "aDef": 120, "tDef": 50, "eDef": 50, "lvl": 96, "agiReq": 60, "defReq": 60, "hprPct": -143, "ls": 300, "ref": 31, "agi": 10, "def": 10, "spd": 23, "hpBonus": 1000, "hprRaw": -10, "id": 1348}, {"name": "Hesperium", "tier": "Fabled", "type": "bow", "majorIds": ["FISSION"], "poison": 600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "239-239", "fDam": "94-239", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "94-239", "atkSpd": "VERY_SLOW", "lvl": 65, "strReq": 50, "defReq": 40, "hprPct": 30, "dex": -20, "expd": 12, "atkTier": 1, "sdRaw": -165, "tDefPct": -60, "id": 3642}, {"name": "Heura", "tier": "Unique", "type": "chestplate", "thorns": 34, "category": "armor", "drop": "NORMAL", "hp": 3025, "fDef": -110, "wDef": 80, "eDef": 110, "lvl": 96, "strReq": 50, "mdPct": 8, "str": 8, "spd": -7, "mdRaw": 180, "eDamPct": 15, "fDefPct": -20, "wDefPct": 10, "id": 1350}, {"name": "Hetusol", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4200, "fDef": 180, "wDef": 80, "tDef": -160, "eDef": -100, "lvl": 98, "defReq": 55, "hprPct": 60, "mr": 10, "def": 10, "spd": -10, "spRegen": 15, "hprRaw": 100, "tDamPct": -30, "eDamPct": -20, "id": 1347}, {"name": "Hewa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-140", "fDam": "0-0", "wDam": "0-0", "aDam": "172-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "agiReq": 40, "ms": 10, "xpb": 15, "lb": 15, "agi": 8, "def": -8, "fDefPct": 15, "wDefPct": -30, "aDefPct": 15, "id": 1351}, {"name": "Hickory Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-80", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "defReq": 35, "sdPct": 6, "mdPct": 10, "def": 7, "hprRaw": 80, "fDefPct": 10, "wDefPct": -8, "aDefPct": 10, "id": 1355}, {"name": "Hiker's Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "aDef": -5, "eDef": 7, "lvl": 20, "strReq": 7, "mdPct": 7, "str": 4, "sdRaw": -8, "id": 1358}, {"name": "Hidden", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 7, "type": "ring", "id": 1353}, {"name": "Hilltop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "aDef": -7, "eDef": 15, "lvl": 33, "mdPct": 6, "spd": -4, "mdRaw": 46, "eDefPct": 6, "id": 1356}, {"name": "Hilt", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "8-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "xpb": 6, "sdRaw": -6, "mdRaw": -8, "id": 1357}, {"name": "Hirudo", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "74-120", "aDam": "0-0", "tDam": "0-0", "eDam": "84-110", "atkSpd": "NORMAL", "lvl": 82, "strReq": 30, "intReq": 25, "hprPct": 30, "ms": 5, "xpb": 13, "mdRaw": 130, "tDamPct": -17, "tDefPct": -17, "id": 1359}, {"name": "Holiday Spirit", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-22", "fDam": "30-36", "wDam": "30-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "intReq": 15, "defReq": 20, "mr": 15, "mdPct": -10, "lb": 20, "hprRaw": 45, "fixID": true, "id": 1362}, {"name": "Hollow", "tier": "Unique", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1500, "lvl": 75, "strReq": 40, "agiReq": 40, "ls": 110, "agi": 7, "spd": 8, "mdRaw": 140, "eDamPct": 10, "id": 1363}, {"name": "Hollow Branch", "tier": "Unique", "type": "wand", "poison": 560, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "ms": 5, "hpBonus": -250, "sdRaw": 65, "wDamPct": 12, "aDamPct": -12, "eDamPct": 12, "id": 1360}, {"name": "Holocene", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-110", "atkSpd": "SLOW", "lvl": 49, "strReq": 25, "fDamPct": -8, "wDamPct": -8, "aDamPct": -8, "tDamPct": -8, "eDamPct": 15, "spRaw4": -5, "id": 1361}, {"name": "Holy Greaves", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "wDef": 25, "tDef": 25, "eDef": -30, "lvl": 40, "hprPct": 20, "mr": 5, "ref": 15, "int": 9, "hpBonus": 75, "spRegen": 5, "eDefPct": -8, "id": 1365}, {"name": "Hope", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "mr": 5, "xpb": 18, "lb": 16, "id": 1364}, {"name": "Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "13-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "agiReq": 10, "xpb": 7, "dex": 4, "spd": 7, "aDamPct": 4, "tDamPct": 6, "id": 1367}, {"name": "Horizon", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": -100, "aDef": 100, "eDef": 120, "lvl": 90, "strReq": 60, "agiReq": 45, "mdPct": -10, "ref": 15, "dex": 5, "agi": 10, "spd": 14, "atkTier": 1, "hprRaw": 150, "sdRaw": -160, "id": 1366}, {"name": "Hornblende", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 340, "aDef": -15, "eDef": 20, "lvl": 40, "strReq": 5, "mdPct": 8, "str": 5, "fDamPct": 10, "eDefPct": 12, "id": 1369}, {"name": "Hostage", "tier": "Unique", "type": "spear", "quest": "Prison Story", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "str": 3, "spd": -3, "hpBonus": 10, "id": 1371}, {"name": "Hunter", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 23, "dexReq": 12, "xpb": 4, "lb": 5, "spd": 4, "eDamPct": -6, "id": 1373}, {"name": "Hothead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": 5, "lvl": 15, "mdPct": 8, "expd": 8, "hprRaw": 5, "id": 1368}, {"name": "Hunger", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 110, "lvl": 17, "mdPct": 10, "ls": 9, "ms": 5, "hprRaw": -7, "id": 1370}, {"name": "Hexed Amulet", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 51, "xpb": 16, "lb": 16, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": 5, "eSteal": 5, "type": "necklace", "id": 1352}, {"name": "Hydra", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-66", "fDam": "77-99", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "defReq": 55, "hprPct": 33, "ls": 160, "hpBonus": 777, "hprRaw": 99, "id": 1376}, {"name": "Hypercane", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-44", "wDam": "11-33", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "intReq": 25, "defReq": 25, "sdPct": 10, "fDamPct": 12, "wDamPct": 12, "tDefPct": -20, "eDefPct": -20, "id": 1372}, {"name": "Icarus", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -20, "aDef": 20, "lvl": 36, "agiReq": 15, "ref": 10, "agi": 5, "spd": 12, "fDamPct": -12, "aDamPct": 6, "fDefPct": -10, "id": 1378}, {"name": "Hysteria", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "fDef": 70, "wDef": -100, "tDef": 80, "eDef": -100, "lvl": 86, "dexReq": 55, "defReq": 20, "hprPct": 40, "mr": -5, "mdPct": 7, "ms": 10, "dex": 4, "def": 8, "spd": 10, "atkTier": -1, "fDamPct": 18, "tDamPct": 20, "id": 1374}, {"name": "Ice Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "0-0", "wDam": "12-42", "aDam": "2-52", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "intReq": 30, "agiReq": 30, "dex": -10, "int": 8, "agi": 8, "spd": 9, "wDamPct": 10, "aDamPct": 10, "tDamPct": -20, "tDefPct": -20, "id": 1380}, {"name": "Ice Band", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": 25, "lvl": 56, "intReq": 15, "ref": 9, "spd": -3, "wDamPct": 5, "type": "bracelet", "id": 1377}, {"name": "Ife", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": 25, "lvl": 59, "intReq": 10, "agiReq": 25, "mdPct": -9, "xpb": 6, "spd": 10, "hpBonus": 150, "spRegen": 10, "fDamPct": -14, "fDefPct": -10, "id": 1387}, {"name": "Ice Climbing Boots", "tier": "Rare", "type": "boots", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 440, "wDef": 30, "tDef": -40, "eDef": 10, "lvl": 43, "strReq": 5, "intReq": 10, "xpb": 8, "spd": -3, "sdRaw": 35, "fDamPct": -10, "wDamPct": 12, "eDamPct": 10, "id": 1379}, {"name": "Ignition", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-55", "fDam": "85-135", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "defReq": 65, "sdPct": -10, "mdPct": 10, "ls": 435, "def": 15, "expd": 40, "fDamPct": 20, "wDamPct": -30, "wDefPct": -30, "id": 1382}, {"name": "Ignatius", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "70-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "defReq": 25, "hprPct": 5, "def": 5, "hpBonus": 150, "hprRaw": 25, "fDamPct": 10, "fDefPct": 10, "id": 1381}, {"name": "Ik-El-Van", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "48-75", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 35, "hprPct": 16, "mr": 5, "sdPct": 10, "mdPct": -15, "ls": -120, "ms": 10, "tDamPct": -25, "tDefPct": -25, "id": 1383}, {"name": "Electro Mage's Boots", "tier": "Rare", "type": "boots", "quest": "The Envoy Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2400, "tDef": 80, "lvl": 89, "dexReq": 90, "xpb": 10, "dex": 10, "spd": 15, "tDamPct": 17, "eDefPct": -30, "spRaw1": -5, "spRaw2": 5, "spRaw3": -5, "id": 1386}, {"name": "Impact Winter", "tier": "Fabled", "type": "leggings", "majorIds": ["FLASHFREEZE"], "poison": 270, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "fDef": -90, "aDef": -90, "lvl": 66, "strReq": 40, "intReq": 25, "sdPct": 14, "ms": 10, "hprRaw": -75, "wDamPct": 15, "eDamPct": 24, "fDefPct": -20, "id": 3558}, {"name": "Impeccable Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "450-517", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1384}, {"name": "Impeccable Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "258-271", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1390}, {"name": "Impeccable Andesite Shears", "displayName": "Impeccable Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "id": 1388}, {"name": "Impeccable Andesite Stick", "displayName": "Impeccable Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "115-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1389}, {"name": "Impeccable Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "292-345", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1391}, {"name": "Impeccable Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "250-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1394}, {"name": "Impeccable Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "184-196", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1392}, {"name": "Impeccable Birch Shears", "displayName": "Impeccable Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "id": 1393}, {"name": "Impeccable Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "146-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1397}, {"name": "Impeccable Birch Stick", "displayName": "Impeccable Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1398}, {"name": "Impeccable Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "310-367", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1404}, {"name": "Impeccable Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "485-543", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1395}, {"name": "Impeccable Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "275-287", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1399}, {"name": "Impeccable Diorite Shears", "displayName": "Impeccable Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "158-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "id": 1396}, {"name": "Impeccable Diorite Stick", "displayName": "Impeccable Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1400}, {"name": "Impeccable Granite Shears", "displayName": "Impeccable Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "162-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1492}, {"name": "Impeccable Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "500-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1403}, {"name": "Impeccable Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1401}, {"name": "Impeccable Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "320-375", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1402}, {"name": "Impeccable Granite Stick", "displayName": "Impeccable Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1405}, {"name": "Impeccable Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-305", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1406}, {"name": "Impeccable Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "204-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1407}, {"name": "Impeccable Jungle Shears", "displayName": "Impeccable Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "id": 1423}, {"name": "Impeccable Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "163-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1409}, {"name": "Impeccable Jungle Stick", "displayName": "Impeccable Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1411}, {"name": "Impeccable Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-219", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1410}, {"name": "Impeccable Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1408}, {"name": "Impeccable Light Birch Shears", "displayName": "Impeccable Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "id": 1414}, {"name": "Illuminite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 725, "tDef": 60, "lvl": 55, "dexReq": 15, "intReq": 20, "sdPct": 15, "ms": 5, "xpb": 15, "ref": 5, "wDamPct": 10, "tDamPct": 5, "tDefPct": -10, "eDefPct": -10, "id": 1385}, {"name": "Impeccable Light Birch Stick", "displayName": "Impeccable Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "76-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1413}, {"name": "Impeccable Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1412}, {"name": "Impeccable Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "198-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1415}, {"name": "Impeccable Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1417}, {"name": "Impeccable Light Jungle Shears", "displayName": "Impeccable Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 98, "id": 1416}, {"name": "Impeccable Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-184", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1422}, {"name": "Impeccable Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "131-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1418}, {"name": "Impeccable Light Jungle Stick", "displayName": "Impeccable Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1420}, {"name": "Impeccable Light Oak Shears", "displayName": "Impeccable Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "id": 1421}, {"name": "Impeccable Light Oak Stick", "displayName": "Impeccable Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-81", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1427}, {"name": "Impeccable Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1419}, {"name": "Impeccable Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-226", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1425}, {"name": "Impeccable Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "116-132", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1424}, {"name": "Impeccable Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "168-174", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1426}, {"name": "Impeccable Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "132-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1431}, {"name": "Impeccable Light Spruce Shears", "displayName": "Impeccable Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "id": 1430}, {"name": "Impeccable Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "175-181", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1432}, {"name": "Impeccable Light Spruce Stick", "displayName": "Impeccable Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1429}, {"name": "Impeccable Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "235-263", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1428}, {"name": "Impeccable Oak Shears", "displayName": "Impeccable Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "107-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "id": 1433}, {"name": "Impeccable Oak Stick", "displayName": "Impeccable Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1434}, {"name": "Impeccable Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "149-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1435}, {"name": "Impeccable Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "270-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1437}, {"name": "Impeccable Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "197-208", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1439}, {"name": "Impeccable Spruce Shears", "displayName": "Impeccable Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "id": 1436}, {"name": "Impeccable Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "154-215", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1438}, {"name": "Impeccable Spruce Stick", "displayName": "Impeccable Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1440}, {"name": "Impeccable Stone Shears", "displayName": "Impeccable Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-163", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "id": 1441}, {"name": "Impeccable Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-491", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1444}, {"name": "Impeccable Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "243-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1443}, {"name": "Impeccable Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1449}, {"name": "Imperious", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "385-385", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "agiReq": 55, "int": 30, "agi": 15, "spd": 25, "eSteal": 8, "aDamPct": 15, "aDefPct": 15, "id": 1442}, {"name": "Impeccable Stone Stick", "displayName": "Impeccable Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1450}, {"name": "Impudent", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "agiReq": 25, "str": 5, "agi": 4, "mdRaw": 37, "type": "ring", "id": 1445}, {"name": "Incandescent", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "fDef": 30, "wDef": 30, "eDef": -50, "lvl": 50, "intReq": 20, "defReq": 20, "hprPct": 13, "xpb": 11, "ref": 17, "fDefPct": 8, "wDefPct": 8, "id": 1452}, {"name": "Impure Morph-Gold", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 125, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1447}, {"name": "Incendiary", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 255, "fDef": 40, "wDef": -30, "lvl": 71, "dexReq": 20, "defReq": 30, "xpb": 6, "expd": 8, "mdRaw": 39, "fDamPct": 6, "wDefPct": -12, "type": "necklace", "id": 1448}, {"name": "Impulse", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-229", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "126-371", "eDam": "126-371", "atkSpd": "SUPER_SLOW", "lvl": 53, "strReq": 25, "dexReq": 25, "mr": -35, "mdPct": 12, "ls": 110, "ms": 30, "int": -5, "hprRaw": -75, "tDamPct": 14, "eDamPct": 14, "id": 1446}, {"name": "Incense Burner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-46", "fDam": "31-51", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "defReq": 15, "xpb": 10, "def": 5, "spd": -5, "hpBonus": 70, "spRegen": 10, "hprRaw": 10, "id": 1453}, {"name": "Incinerator", "tier": "Unique", "type": "bow", "poison": 500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "121-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "defReq": 30, "def": 7, "fDamPct": 18, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 1451}, {"name": "Infatuation", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "27-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "agiReq": 5, "defReq": 25, "hprPct": 15, "ls": 48, "int": -5, "hpBonus": 450, "spRegen": 5, "sdRaw": -60, "aDamPct": 18, "id": 1456}, {"name": "Infected Band", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "lootchest", "hp": -60, "lvl": 65, "hprPct": -8, "ls": 30, "type": "bracelet", "id": 1454}, {"name": "Inferna Flamewreath", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "330-350", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 80, "sdPct": 10, "hprRaw": -200, "fDamPct": 20, "wDamPct": -50, "wDefPct": -30, "spRaw1": -5, "spRaw3": -5, "id": 1457}, {"name": "Infernal Impulse", "tier": "Fabled", "type": "leggings", "majorIds": ["RALLY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": 95, "wDef": -80, "aDef": -80, "tDef": 65, "lvl": 73, "dexReq": 20, "defReq": 55, "mr": -5, "sdPct": 16, "wDamPct": -30, "fDefPct": -14, "tDefPct": 18, "jh": 1, "id": 3599}, {"name": "Infilak", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-77", "fDam": "55-77", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "defReq": 50, "expd": 99, "spd": 10, "mdRaw": 188, "id": 1455}, {"name": "Ingrainment", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 230, "fDef": -40, "wDef": 90, "eDef": 90, "lvl": 59, "strReq": 30, "intReq": 40, "hprPct": 30, "ls": 46, "spd": -25, "hprRaw": 55, "fDamPct": -50, "tDamPct": -50, "eDefPct": 10, "id": 1460}, {"name": "Iniquity", "tier": "Rare", "poison": 395, "category": "accessory", "drop": "lootchest", "wDef": -40, "aDef": -60, "tDef": 60, "eDef": 40, "lvl": 74, "strReq": 30, "dexReq": 25, "dex": 4, "spRegen": -8, "wDamPct": -10, "tDamPct": 6, "eDamPct": 6, "type": "bracelet", "id": 1461}, {"name": "Inmate Outfit", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1550, "lvl": 72, "id": 773}, {"name": "Influence", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "54-66", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "hprPct": 14, "mdPct": 15, "ls": 46, "xpb": 19, "spRegen": -19, "tDamPct": 15, "id": 1458}, {"name": "Insulation", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 240, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 60, "fDamPct": -4, "tDamPct": -4, "type": "bracelet", "id": 1463}, {"name": "Interference", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-158", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "dexReq": 28, "ls": -38, "dex": 7, "sdRaw": 56, "tDamPct": 9, "eDefPct": -21, "spRaw3": -5, "id": 1462}, {"name": "Ionian", "tier": "Unique", "type": "dagger", "poison": 488, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 69, "strReq": 25, "sdPct": -5, "str": 5, "wDamPct": -15, "eDamPct": 12, "wDefPct": -10, "id": 1467}, {"name": "Inundatio", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 35, "tDef": 30, "eDef": -65, "lvl": 88, "dexReq": 15, "intReq": 65, "sdPct": 5, "mdPct": -10, "sdRaw": 35, "wDamPct": 6, "eDefPct": -10, "type": "necklace", "id": 1464}, {"name": "Iodide", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1180, "tDef": 70, "eDef": -60, "lvl": 73, "dexReq": 20, "intReq": 15, "sdPct": 12, "int": 4, "wDamPct": 7, "tDamPct": 10, "id": 1465}, {"name": "Iris", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-32", "fDam": "28-32", "wDam": "28-32", "aDam": "28-32", "tDam": "28-32", "eDam": "28-32", "atkSpd": "SLOW", "lvl": 85, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "sdPct": -10, "mdPct": -10, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "id": 1468}, {"name": "Iron Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 10, "def": 4, "spd": -3, "type": "bracelet", "id": 1471}, {"name": "Iron Grippers", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "20-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "200-400", "eDam": "250-350", "atkSpd": "VERY_SLOW", "lvl": 84, "strReq": 35, "dexReq": 35, "ms": 5, "str": 10, "spd": -10, "mdRaw": 390, "tDamPct": 25, "eDamPct": 20, "id": 1469}, {"name": "Iron Knuckle", "tier": "Legendary", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-9", "atkSpd": "SUPER_FAST", "lvl": 15, "strReq": 5, "xpb": 8, "str": 5, "def": 5, "eDamPct": 10, "id": 1470}, {"name": "Iron Incrusted Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 42, "wDef": -2, "eDef": 5, "lvl": 9, "def": 3, "spd": -7, "hpBonus": 10, "aDefPct": -5, "eDefPct": 10, "id": 1472}, {"name": "Iron Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "aDef": -2, "eDef": 5, "lvl": 12, "spd": -5, "hpBonus": 12, "eDamPct": 5, "id": 1476}, {"name": "Iron String", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "47-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 5, "sdPct": -3, "mdPct": 8, "str": 5, "agi": -2, "id": 1473}, {"name": "Iron Scrap", "tier": "Unique", "type": "chestplate", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": 30, "aDef": -40, "eDef": 30, "lvl": 48, "strReq": 10, "defReq": 15, "mdPct": 8, "spd": -5, "id": 1475}, {"name": "Irradiation", "tier": "Unique", "type": "wand", "poison": 487, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-41", "aDam": "0-0", "tDam": "17-72", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 28, "intReq": 28, "hprPct": -23, "dex": 8, "int": 5, "wDamPct": 20, "eDamPct": -30, "eDefPct": -15, "id": 1474}, {"name": "Ironclad", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 30, "eDef": 30, "lvl": 66, "strReq": 25, "defReq": 40, "mdPct": 14, "def": 9, "expd": 10, "wDamPct": -10, "wDefPct": -18, "id": 1478}, {"name": "Isaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-3", "fDam": "0-0", "wDam": "6-9", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "wDamPct": 10, "id": 1480}, {"name": "Island Chain", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-132", "fDam": "0-0", "wDam": "140-155", "aDam": "0-0", "tDam": "0-0", "eDam": "140-155", "atkSpd": "SLOW", "lvl": 83, "strReq": 40, "intReq": 40, "mr": 10, "mdPct": -20, "int": 10, "spd": -20, "hpBonus": 2500, "hprRaw": 165, "spRaw1": -5, "id": 1477}, {"name": "Ivory", "tier": "Legendary", "type": "dagger", "poison": -1000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-130", "fDam": "0-0", "wDam": "0-0", "aDam": "55-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 35, "ms": 10, "ref": 30, "agi": 13, "spRegen": 25, "hprRaw": 225, "tDamPct": -40, "fDefPct": 30, "tDefPct": 30, "id": 1479}, {"name": "Ivy", "tier": "Unique", "type": "bow", "poison": 50, "thorns": 6, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-16", "atkSpd": "SLOW", "lvl": 17, "id": 1481}, {"name": "Ivory Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "155-185", "fDam": "15-20", "wDam": "15-20", "aDam": "15-20", "tDam": "15-20", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 75, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1483}, {"name": "Infinity", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "FAST", "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1459}, {"name": "Jackal Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 24, "hprPct": 9, "hprRaw": 4, "type": "necklace", "id": 1482}, {"name": "Jackpot", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 77, "lvl": 77, "xpb": 7, "lb": 7, "eSteal": 7, "type": "necklace", "id": 1484}, {"name": "Jade Talon", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "108-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "mdPct": 19, "ms": 5, "str": 3, "dex": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1487}, {"name": "Jate", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 17, "sdPct": 8, "xpb": 4, "ref": 5, "id": 1486}, {"name": "Jag", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "lootchest", "lvl": 4, "mdRaw": 3, "type": "ring", "id": 1485}, {"name": "Javelin", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "dex": 4, "mdRaw": 8, "id": 1491}, {"name": "Jera", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 55, "xpb": 10, "lb": 40, "id": 1488}, {"name": "Jiandan Handwraps", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 83, "strReq": 40, "defReq": 40, "mdPct": 10, "xpb": 10, "hpBonus": 827, "mdRaw": 45, "type": "bracelet", "id": 1489}, {"name": "Jewel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1645, "fDef": 100, "wDef": -80, "lvl": 76, "sdPct": 7, "xpb": 10, "ref": 5, "fDamPct": -20, "wDamPct": 10, "id": 1490}, {"name": "Jike", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 16, "lb": 4, "spd": 5, "mdRaw": 14, "id": 1495}, {"name": "Jilted", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 45, "defReq": 30, "def": 5, "hpBonus": 100, "spRegen": -5, "fDamPct": 4, "fDefPct": 6, "id": 1497}, {"name": "Jingu Headband", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "wDef": 6, "tDef": 6, "eDef": -12, "lvl": 33, "dexReq": 10, "intReq": 10, "ms": 5, "xpb": 11, "wDamPct": 8, "tDamPct": 8, "eDefPct": -10, "id": 1494}, {"name": "Joker", "tier": "Rare", "type": "spear", "poison": 120, "thorns": 1, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-40", "wDam": "0-0", "aDam": "0-40", "tDam": "0-0", "eDam": "0-40", "atkSpd": "NORMAL", "lvl": 45, "strReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "ref": 1, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "expd": 1, "spRegen": 1, "eSteal": 1, "id": 1493}, {"name": "Jolt of Inspiration", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "11-14", "aDam": "0-0", "tDam": "13-22", "eDam": "0-0", "atkSpd": "FAST", "lvl": 40, "dexReq": 10, "intReq": 15, "mr": 5, "sdPct": 8, "ms": 5, "xpb": 10, "int": 4, "tDefPct": -15, "eDefPct": -18, "id": 1498}, {"name": "Juneberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "65-90", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 30, "agiReq": 30, "mr": 5, "sdPct": 10, "int": 8, "agi": 7, "spd": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": -14, "id": 1500}, {"name": "Jungle Sludge", "tier": "Unique", "type": "helmet", "poison": 265, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "eDef": 50, "lvl": 60, "hprPct": -15, "hpBonus": -275, "wDamPct": 11, "tDefPct": -7, "id": 1499}, {"name": "Jungle Artifact", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "140-210", "fDam": "70-210", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-280", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 21, "defReq": 21, "mdPct": 14, "str": 9, "agi": -7, "expd": 14, "spd": -21, "sdRaw": -77, "fDamPct": 14, "id": 1496}, {"name": "Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1505}, {"name": "Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1502}, {"name": "Jungle Wood Shears", "displayName": "Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "id": 1501}, {"name": "Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1511}, {"name": "Jungle Wood Stick", "displayName": "Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1504}, {"name": "Juniper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 26, "strReq": 8, "hprRaw": 4, "eDamPct": 4, "type": "ring", "id": 1503}, {"name": "Justice", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": 50, "wDef": -30, "tDef": -30, "lvl": 96, "defReq": 40, "hprPct": 12, "def": 5, "fDamPct": 8, "type": "bracelet", "id": 1507}, {"name": "Kaas' Fur", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 40, "lvl": 40, "intReq": 15, "mr": 10, "sdPct": -12, "ms": 5, "tDefPct": -10, "id": 1506}, {"name": "Kanata", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-32", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 20, "spd": 6, "eSteal": 3, "aDamPct": 6, "id": 1509}, {"name": "Kamikaze", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "20-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 27, "defReq": 18, "sdPct": 10, "mdPct": 12, "ls": -8, "agi": 7, "def": -3, "expd": 10, "fDamPct": 5, "wDamPct": -10, "id": 1517}, {"name": "Kapok", "tier": "Rare", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": -60, "wDef": 60, "tDef": -60, "eDef": 60, "lvl": 64, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "wDamPct": 8, "eDamPct": 8, "tDefPct": -15, "id": 1510}, {"name": "Kaleidoscope", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 47, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 10, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "id": 1508}, {"name": "Karabiner", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-48", "fDam": "23-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 5, "defReq": 25, "hprPct": 18, "lb": 8, "agi": 5, "def": 4, "spd": 6, "aDamPct": 10, "aDefPct": 10, "id": 1512}, {"name": "Karraska", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "aDef": -7, "lvl": 24, "strReq": 8, "sdPct": -5, "mdPct": 12, "str": 8, "agi": -2, "spd": -4, "hpBonus": 35, "eDamPct": 10, "aDefPct": -5, "eDefPct": 5, "id": 1513}, {"name": "Katana", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "74-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "dex": 7, "spd": 10, "sdRaw": -20, "mdRaw": 46, "id": 1514}, {"name": "Katoa's Warmth", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 185, "fDef": 15, "lvl": 23, "hprPct": 45, "hpBonus": 75, "spRegen": 10, "sdRaw": -25, "mdRaw": -26, "id": 1515}, {"name": "Kayde", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 10, "spRegen": 7, "type": "bracelet", "id": 1516}, {"name": "Kaze", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 91, "agiReq": 75, "agi": 5, "spd": 15, "aDefPct": 11, "type": "ring", "id": 1520}, {"name": "Keen Measure", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-18", "fDam": "0-0", "wDam": "11-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "intReq": 5, "mr": 5, "dex": 3, "int": 3, "spd": -4, "spPct2": -14, "id": 1519}, {"name": "Keeper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 4, "type": "bracelet", "id": 1518}, {"name": "Kekkai", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 66, "agiReq": 30, "ref": 11, "spd": -10, "fDamPct": -30, "wDefPct": 10, "aDefPct": 25, "tDefPct": 10, "eDefPct": 10, "id": 1521}, {"name": "Kelight's Gauntlet", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 435, "wDef": -15, "aDef": -15, "lvl": 69, "strReq": 40, "mdPct": 7, "str": 4, "mdRaw": 18, "wDefPct": -7, "aDefPct": -7, "type": "bracelet", "id": 1522}, {"name": "Kelight's Shield", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 75, "wDef": -60, "aDef": -45, "tDef": 75, "eDef": 60, "lvl": 64, "defReq": 40, "hprPct": 25, "xpb": 10, "def": 9, "hpBonus": 550, "fDefPct": 22, "wDefPct": -8, "tDefPct": 22, "id": 1535}, {"name": "Kelvik", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "fDef": 15, "lvl": 40, "defReq": 15, "def": 5, "spd": -6, "hpBonus": 80, "fDamPct": 8, "wDamPct": -7, "fDefPct": 10, "aDefPct": 5, "id": 1523}, {"name": "Kenaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-71", "fDam": "28-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 20, "ref": 13, "hpBonus": 150, "spRegen": 3, "fDamPct": 8, "wDamPct": -5, "wDefPct": -10, "id": 1526}, {"name": "Kelight's Toothbrush", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-9", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "mdPct": 5, "xpb": 4, "lb": 9, "eDamPct": -5, "eDefPct": -5, "id": 1538}, {"name": "Kernel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -150, "wDef": -60, "lvl": 94, "dexReq": 55, "intReq": 10, "int": 4, "sdRaw": 55, "wDamPct": -8, "tDamPct": 4, "type": "necklace", "id": 1524}, {"name": "Kickback", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -75, "aDef": 140, "eDef": -75, "lvl": 99, "agiReq": 80, "mdPct": 13, "str": 5, "agi": 5, "def": 5, "spd": 12, "mdRaw": 260, "aDamPct": 22, "wDefPct": -13, "tDefPct": -13, "jh": 1, "id": 1525}, {"name": "Kickers", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 10, "mdPct": 6, "hpBonus": -6, "id": 1529}, {"name": "Kilauea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "FAST", "lvl": 68, "strReq": 30, "defReq": 25, "sdPct": 7, "str": 5, "expd": 15, "spd": 12, "hpBonus": -750, "mdRaw": 115, "id": 1528}, {"name": "Kilij", "tier": "Legendary", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-5", "tDam": "0-0", "eDam": "2-4", "atkSpd": "FAST", "lvl": 40, "strReq": 20, "agiReq": 20, "sdPct": -30, "spd": 20, "mdRaw": 90, "aDamPct": 20, "tDamPct": -80, "eDamPct": 20, "id": 1531}, {"name": "Kilpkonn", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "wDef": 25, "tDef": -15, "lvl": 37, "defReq": 12, "ref": 6, "def": 10, "spd": -12, "hpBonus": 40, "hprRaw": 16, "id": 1527}, {"name": "King of Hearts", "tier": "Rare", "type": "wand", "poison": -25000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 75, "defReq": 65, "mr": 15, "hpBonus": 3692, "hprRaw": 200, "sdRaw": -25000, "mdRaw": -25000, "wDamPct": 81, "spRaw1": -5, "id": 1533}, {"name": "Kindle", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "lvl": 62, "defReq": 60, "hprPct": 7, "sdPct": -20, "mdPct": -20, "def": 9, "spRegen": 8, "hprRaw": 60, "fDefPct": 8, "id": 1532}, {"name": "King of Blocks", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "SLOW", "lvl": 73, "strReq": 20, "xpb": 15, "lb": 10, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "id": 1534}, {"name": "Kitten Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-75", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "sdPct": -6, "mdPct": -4, "dex": 13, "spd": 8, "mdRaw": 52, "id": 1530}, {"name": "Kivilu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-690", "wDam": "0-690", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "intReq": 45, "defReq": 45, "hprPct": 15, "mr": 10, "int": 20, "def": -20, "hpBonus": -3900, "hprRaw": 465, "fDamPct": 31, "wDamPct": 31, "id": 1537}, {"name": "Kizuato", "tier": "Unique", "type": "chestplate", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 80, "wDef": -70, "aDef": -70, "tDef": 80, "lvl": 74, "dexReq": 20, "defReq": 20, "ls": 140, "def": 3, "expd": 11, "id": 1536}, {"name": "Knight Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": 10, "wDef": -5, "aDef": -5, "eDef": 10, "lvl": 33, "strReq": 12, "defReq": 12, "hprPct": 20, "sdPct": -5, "mdPct": 10, "fDamPct": 10, "eDamPct": 10, "id": 1540}, {"name": "Knucklebones", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 99, "ls": -1835, "ms": -200, "xpb": 25, "lb": 25, "expd": 20, "atkTier": 2, "spRegen": -50, "eSteal": 5, "type": "bracelet", "id": 1539}, {"name": "Kolkhaar", "tier": "Unique", "type": "spear", "poison": 245, "category": "weapon", "drop": "NORMAL", "nDam": "21-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "13-33", "eDam": "17-29", "atkSpd": "SLOW", "lvl": 43, "strReq": 25, "dexReq": 25, "mdPct": -60, "spd": -7, "atkTier": 2, "spRegen": -10, "id": 1543}, {"name": "Kratke", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 58, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 1542}, {"name": "Krakem", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "343-503", "fDam": "0-0", "wDam": "137-229", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 55, "intReq": 25, "mdPct": 9, "str": 5, "int": 9, "sdRaw": 80, "fDamPct": -16, "eDamPct": 20, "id": 1541}, {"name": "Krolton's Cruelty", "tier": "Rare", "poison": 500, "category": "accessory", "drop": "lootchest", "fDef": 40, "wDef": -80, "tDef": 60, "lvl": 88, "strReq": 40, "dexReq": 70, "str": 5, "dex": 5, "hprRaw": -70, "mdRaw": 55, "type": "bracelet", "id": 1544}, {"name": "Kuuichi", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 6, "tDef": -2, "lvl": 11, "xpb": 6, "int": 5, "sdRaw": 10, "id": 1563}, {"name": "Kuiper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-5", "fDam": "9-17", "wDam": "9-17", "aDam": "9-17", "tDam": "9-17", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "hpBonus": -39, "id": 1545}, {"name": "Bronze Basic Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "eSteal": 5, "type": "bracelet", "fixID": true, "id": 1546}, {"name": "Bronze Basic Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "spRegen": 10, "type": "necklace", "fixID": true, "id": 1547}, {"name": "Diamond Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 65, "lvl": 95, "strReq": 100, "mdPct": 16, "str": 6, "eDamPct": 16, "eDefPct": 5, "type": "bracelet", "fixID": true, "id": 1548}, {"name": "Bronze Basic Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 12, "lb": 12, "type": "ring", "fixID": true, "id": 1549}, {"name": "Diamond Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 80, "lvl": 95, "strReq": 100, "str": 12, "eDamPct": 10, "eDefPct": 16, "type": "necklace", "fixID": true, "id": 1550}, {"name": "Diamond Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 100, "mdPct": 14, "str": 7, "expd": 12, "spd": -5, "mdRaw": 95, "type": "ring", "fixID": true, "id": 1552}, {"name": "Diamond Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "type": "bracelet", "fixID": true, "id": 1554}, {"name": "Diamond Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "type": "necklace", "fixID": true, "id": 1553}, {"name": "Diamond Fusion Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 7, "mdPct": 7, "ref": 10, "hpBonus": 500, "type": "ring", "fixID": true, "id": 1551}, {"name": "Diamond Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "mr": 5, "ms": 5, "int": 5, "wDamPct": 10, "wDefPct": 10, "type": "ring", "fixID": true, "id": 1556}, {"name": "Diamond Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 80, "lvl": 95, "intReq": 100, "mr": 10, "ref": 15, "int": 7, "sdRaw": 55, "type": "necklace", "fixID": true, "id": 1558}, {"name": "Diamond Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "sdPct": 8, "ms": 15, "int": 7, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 1555}, {"name": "Diamond Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 80, "lvl": 95, "defReq": 100, "def": 8, "expd": 15, "fDamPct": 14, "fDefPct": 7, "type": "bracelet", "fixID": true, "id": 1557}, {"name": "Diamond Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 120, "lvl": 95, "defReq": 100, "hprPct": 20, "def": 12, "fDamPct": 8, "fDefPct": 20, "type": "necklace", "fixID": true, "id": 1561}, {"name": "Diamond Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -450, "tDef": 100, "lvl": 95, "dexReq": 100, "sdPct": 8, "dex": 7, "sdRaw": 60, "tDamPct": 16, "tDefPct": 10, "type": "bracelet", "fixID": true, "id": 1559}, {"name": "Diamond Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": 60, "lvl": 95, "defReq": 100, "hprPct": 16, "sdPct": -5, "mdPct": -2, "def": 3, "hprRaw": 110, "fDefPct": 7, "type": "ring", "fixID": true, "id": 1562}, {"name": "Diamond Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 95, "dexReq": 100, "spd": 5, "atkTier": 1, "mdRaw": 29, "tDamPct": 6, "type": "necklace", "fixID": true, "id": 1560}, {"name": "Diamond Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 135, "lvl": 95, "agiReq": 100, "agi": 7, "spd": 18, "aDamPct": 8, "aDefPct": 12, "type": "bracelet", "fixID": true, "id": 1566}, {"name": "Diamond Static Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 70, "lvl": 95, "dexReq": 100, "hprPct": -10, "dex": 10, "tDamPct": 16, "type": "ring", "fixID": true, "id": 1564}, {"name": "Diamond Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 100, "lvl": 95, "agiReq": 100, "ref": 16, "agi": 12, "spd": 16, "aDamPct": 8, "aDefPct": 16, "type": "necklace", "fixID": true, "id": 1565}, {"name": "Gold Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 75, "mdPct": 12, "str": 4, "eDamPct": 11, "type": "bracelet", "fixID": true, "id": 1569}, {"name": "Diamond Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 50, "lvl": 95, "agiReq": 100, "agi": 5, "spd": 12, "aDamPct": 18, "aDefPct": 7, "type": "ring", "fixID": true, "id": 1568}, {"name": "Gold Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 75, "str": 9, "eDamPct": 7, "eDefPct": 12, "type": "necklace", "fixID": true, "id": 1567}, {"name": "Gold Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 35, "aDef": 35, "tDef": 35, "eDef": 35, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "lb": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "type": "bracelet", "fixID": true, "id": 1572}, {"name": "Gold Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 75, "mdPct": 11, "str": 5, "expd": 8, "spd": -4, "mdRaw": 80, "type": "ring", "fixID": true, "id": 1570}, {"name": "Gold Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "sdPct": 6, "ms": 10, "int": 5, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 1577}, {"name": "Gold Fusion Ring", "tier": "Legendary", "thorns": 7, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 4, "mdPct": 4, "ref": 7, "hpBonus": 375, "type": "ring", "fixID": true, "id": 1571}, {"name": "Gold Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "type": "necklace", "fixID": true, "id": 1573}, {"name": "Gold Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 65, "lvl": 95, "intReq": 75, "mr": 5, "ref": 5, "int": 5, "sdRaw": 40, "type": "necklace", "fixID": true, "id": 1583}, {"name": "Gold Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 775, "fDef": 50, "lvl": 95, "defReq": 75, "hprPct": 12, "sdPct": -3, "def": 2, "hprRaw": 70, "fDefPct": 4, "type": "ring", "fixID": true, "id": 1578}, {"name": "Gold Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 65, "lvl": 95, "defReq": 75, "def": 5, "expd": 5, "fDamPct": 9, "fDefPct": 4, "type": "bracelet", "fixID": true, "id": 1576}, {"name": "Gold Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 825, "fDef": 90, "lvl": 95, "defReq": 75, "hprPct": 10, "def": 9, "fDamPct": 5, "fDefPct": 15, "type": "necklace", "fixID": true, "id": 1575}, {"name": "Gold Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 40, "lvl": 95, "dexReq": 75, "spd": 2, "mdRaw": 25, "tDamPct": 4, "type": "necklace", "fixID": true, "id": 1580}, {"name": "Gold Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 75, "lvl": 95, "dexReq": 75, "sdPct": 5, "dex": 5, "sdRaw": 40, "tDamPct": 12, "tDefPct": 7, "type": "bracelet", "fixID": true, "id": 1581}, {"name": "Gold Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 105, "lvl": 95, "agiReq": 75, "agi": 4, "spd": 14, "aDamPct": 6, "aDefPct": 10, "type": "bracelet", "fixID": true, "id": 1585}, {"name": "Gold Static Ring", "tier": "Legendary", "thorns": 4, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 75, "hprPct": -7, "dex": 8, "tDamPct": 12, "type": "ring", "fixID": true, "id": 1579}, {"name": "Gold Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 35, "lvl": 95, "agiReq": 75, "agi": 3, "spd": 9, "aDamPct": 14, "aDefPct": 5, "type": "ring", "fixID": true, "id": 1582}, {"name": "Legendary Medallion", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 100, "type": "necklace", "id": 1587}, {"name": "Gold Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 75, "lvl": 95, "agiReq": 75, "ref": 8, "agi": 8, "spd": 12, "aDamPct": 4, "aDefPct": 10, "type": "necklace", "fixID": true, "id": 1626}, {"name": "Silver Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 2, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 1589}, {"name": "Silver Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 50, "str": 6, "eDamPct": 5, "eDefPct": 8, "type": "necklace", "fixID": true, "id": 1586}, {"name": "Silver Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 20, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 3, "spd": -3, "mdRaw": 65, "type": "ring", "fixID": true, "id": 1588}, {"name": "Silver Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "lb": 6, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 1584}, {"name": "Silver Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "type": "necklace", "fixID": true, "id": 1590}, {"name": "Silver Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "sdPct": 3, "ms": 5, "int": 4, "wDamPct": 5, "type": "bracelet", "fixID": true, "id": 1593}, {"name": "Silver Fusion Ring", "tier": "Legendary", "thorns": 5, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 3, "mdPct": 3, "ref": 5, "hpBonus": 250, "type": "ring", "fixID": true, "id": 1591}, {"name": "Silver Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "ms": 5, "int": 3, "wDamPct": 5, "wDefPct": 5, "type": "ring", "fixID": true, "id": 1594}, {"name": "Silver Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 50, "int": 3, "sdRaw": 35, "type": "necklace", "fixID": true, "id": 1592}, {"name": "Gold Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "mr": 5, "int": 4, "wDamPct": 7, "wDefPct": 7, "type": "ring", "fixID": true, "id": 1574}, {"name": "Silver Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 95, "defReq": 50, "def": 3, "fDamPct": 6, "fDefPct": 2, "type": "bracelet", "fixID": true, "id": 1595}, {"name": "Silver Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 750, "fDef": 70, "lvl": 95, "defReq": 50, "def": 6, "fDefPct": 10, "type": "necklace", "fixID": true, "id": 1599}, {"name": "Silver Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 40, "lvl": 95, "defReq": 50, "hprPct": 8, "def": 1, "hprRaw": 40, "type": "ring", "fixID": true, "id": 1596}, {"name": "Silver Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 90, "lvl": 95, "agiReq": 50, "agi": 2, "spd": 10, "aDamPct": 4, "aDefPct": 8, "type": "bracelet", "fixID": true, "id": 1600}, {"name": "Silver Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 95, "dexReq": 50, "mdRaw": 20, "tDamPct": 2, "type": "necklace", "fixID": true, "id": 1598}, {"name": "Silver Static Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -210, "tDef": 30, "lvl": 95, "dexReq": 50, "dex": 6, "tDamPct": 8, "type": "ring", "fixID": true, "id": 1602}, {"name": "Silver Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 60, "lvl": 95, "agiReq": 50, "ref": 4, "agi": 4, "spd": 10, "aDefPct": 5, "type": "necklace", "fixID": true, "id": 1603}, {"name": "Silver Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 20, "lvl": 95, "agiReq": 50, "agi": 1, "spd": 6, "aDamPct": 10, "aDefPct": 3, "type": "ring", "fixID": true, "id": 1601}, {"name": "Lacerator", "tier": "Unique", "type": "dagger", "poison": 195, "category": "weapon", "drop": "NORMAL", "nDam": "17-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "ls": 23, "dex": 7, "id": 1604}, {"name": "Laen's Curiosity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 6, "lvl": 25, "intReq": 12, "xpb": 8, "int": 5, "type": "bracelet", "id": 1605}, {"name": "Lake", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 23, "int": 3, "sdRaw": 5, "wDamPct": 2, "wDefPct": 5, "type": "ring", "id": 1606}, {"name": "Laoc Alcher", "tier": "Unique", "type": "bow", "poison": 665, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "114-800", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-343", "eDam": "0-343", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 35, "dexReq": 35, "hprPct": 25, "mr": -10, "ls": 220, "hpBonus": -1350, "hprRaw": 50, "mdRaw": 455, "id": 1608}, {"name": "Lapis Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 59, "intReq": 35, "mr": 5, "sdRaw": -25, "type": "necklace", "id": 1607}, {"name": "Largo", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 36, "strReq": 25, "mdPct": 10, "str": 8, "dex": -12, "expd": 20, "spd": -15, "mdRaw": 175, "id": 1609}, {"name": "Silver Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 50, "sdPct": 3, "dex": 3, "sdRaw": 25, "tDamPct": 8, "tDefPct": 5, "type": "bracelet", "fixID": true, "id": 1597}, {"name": "Last Perdition", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "320-330", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 30, "defReq": 30, "mr": -5, "dex": 10, "hpBonus": -500, "fDamPct": 15, "tDamPct": 15, "wDefPct": -10, "id": 1610}, {"name": "Lasting", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 63, "spd": -5, "spRegen": 5, "hprRaw": 33, "type": "bracelet", "id": 1611}, {"name": "Latchkey", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 77, "def": 8, "type": "bracelet", "id": 1612}, {"name": "Layton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "65-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "intReq": 40, "xpb": 10, "int": 15, "sdRaw": 120, "id": 1613}, {"name": "Lazybones", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "265-335", "fDam": "0-0", "wDam": "110-145", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "hprPct": 12, "mr": 5, "xpb": 15, "spd": -12, "id": 1617}, {"name": "Lead", "tier": "Unique", "poison": 235, "category": "accessory", "drop": "lootchest", "hp": -75, "eDef": 20, "lvl": 62, "strReq": 15, "str": 4, "int": -1, "spd": -4, "type": "ring", "id": 1615}, {"name": "Leaning Log", "tier": "Unique", "type": "wand", "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "135-180", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 35, "mdPct": 8, "str": 7, "int": 7, "hpBonus": 1200, "aDamPct": -20, "tDamPct": -20, "id": 1616}, {"name": "Leadlights", "tier": "Rare", "type": "boots", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3125, "lvl": 95, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "spRegen": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "fDefPct": 11, "wDefPct": 11, "aDefPct": 11, "tDefPct": 11, "eDefPct": 11, "id": 1614}, {"name": "Leather Face", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "lvl": 13, "xpb": 3, "lb": 4, "def": 3, "tDefPct": 5, "id": 1621}, {"name": "Leech Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "ls": 7, "def": 3, "id": 1620}, {"name": "Lecade's Rank", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 79, "mdPct": 8, "xpb": 8, "type": "bracelet", "id": 1618}, {"name": "Led Balloon", "tier": "Unique", "type": "relik", "sprint": -12, "category": "weapon", "drop": "NORMAL", "nDam": "97-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "51-57", "atkSpd": "SUPER_SLOW", "lvl": 23, "strReq": 10, "mdPct": 6, "spd": 5, "aDamPct": 10, "eDefPct": 8, "id": 1622}, {"name": "Leech Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "lvl": 20, "ls": 8, "id": 1623}, {"name": "Leg of the Scared", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": 80, "eDef": -60, "lvl": 66, "agiReq": 25, "agi": 5, "spd": 15, "aDamPct": 10, "id": 1619}, {"name": "Leggings of Desolation", "tier": "Rare", "type": "leggings", "poison": 800, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2400, "fDef": 50, "wDef": -200, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 89, "dexReq": 40, "defReq": 40, "hprPct": -20, "sdPct": 20, "mdPct": 20, "ls": 240, "ms": 10, "spRegen": -50, "wDamPct": -20, "id": 1627}, {"name": "Legendary Smasher", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-125", "fDam": "25-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "def": 4, "expd": 65, "wDamPct": -15, "wDefPct": -5, "id": 1624}, {"name": "Leggings of Haste", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "aDef": 60, "lvl": 79, "agiReq": 80, "sdPct": -20, "spd": 15, "atkTier": 1, "mdRaw": 120, "aDamPct": 15, "fDefPct": -50, "id": 1625}, {"name": "Leggings of Restoration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 60, "wDef": 60, "aDef": -60, "tDef": -60, "lvl": 74, "intReq": 20, "defReq": 20, "hprPct": 25, "mr": 5, "sdPct": -7, "mdPct": -7, "spRegen": 5, "hprRaw": 80, "id": 1629}, {"name": "Leictreach Makani", "tier": "Rare", "type": "leggings", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 150, "tDef": 150, "lvl": 95, "dexReq": 60, "agiReq": 60, "sdPct": 19, "ms": 5, "ref": 35, "dex": 15, "agi": 15, "spd": 27, "atkTier": 1, "aDamPct": 32, "tDamPct": 32, "eDefPct": -60, "id": 1632}, {"name": "Leggings of the Halt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 300, "lvl": 36, "defReq": 20, "spd": -19, "fDefPct": 10, "wDefPct": 10, "aDefPct": -5, "tDefPct": 10, "eDefPct": 10, "id": 1628}, {"name": "Leikkuri", "tier": "Rare", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-83", "fDam": "25-33", "wDam": "0-0", "aDam": "30-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "agiReq": 30, "defReq": 10, "agi": 7, "def": 7, "spd": 11, "fDefPct": 12, "wDefPct": -10, "aDefPct": 8, "id": 1630}, {"name": "Lemon Legs", "tier": "Legendary", "type": "leggings", "poison": 35, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "tDef": 15, "eDef": -5, "lvl": 18, "mdPct": 15, "xpb": 7, "dex": 7, "sdRaw": 15, "tDamPct": 10, "eDamPct": -12, "eDefPct": -10, "id": 1633}, {"name": "Lethality", "tier": "Unique", "type": "relik", "poison": 575, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-32", "fDam": "30-32", "wDam": "0-0", "aDam": "0-0", "tDam": "30-32", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 110, "ms": -10, "expd": 15, "id": 1635}, {"name": "Leo", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4200, "fDef": 200, "wDef": -200, "lvl": 93, "sdPct": -30, "mdPct": -30, "hpBonus": 1400, "hprRaw": 200, "fDamPct": 30, "id": 1631}, {"name": "Lerteco", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "eDef": -50, "lvl": 78, "dexReq": 50, "mdPct": 5, "str": -10, "dex": 13, "mdRaw": 135, "tDamPct": 5, "tDefPct": 5, "id": 1637}, {"name": "Ley Lines", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1975, "wDef": 90, "tDef": 90, "eDef": -175, "lvl": 82, "intReq": 50, "mr": 10, "xpb": 8, "hpBonus": -550, "spRegen": 8, "sdRaw": 120, "id": 1636}, {"name": "Lichcall", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 20, "sdPct": 15, "mdPct": 11, "ms": 5, "wDamPct": -30, "aDamPct": -15, "id": 1638}, {"name": "Libella", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 32, "agi": 4, "spd": 4, "aDamPct": 4, "type": "ring", "id": 1639}, {"name": "Libra", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3150, "lvl": 91, "strReq": 33, "dexReq": 33, "intReq": 33, "agiReq": 33, "defReq": 33, "mr": 5, "str": 7, "dex": 7, "int": 7, "agi": 7, "def": 7, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 1641}, {"name": "Lichclaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 20, "sdPct": 11, "mdPct": 15, "ls": 135, "wDefPct": -20, "aDefPct": -10, "id": 1640}, {"name": "Lichenwal", "tier": "Unique", "type": "boots", "poison": 245, "thorns": 7, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "aDef": -80, "eDef": 120, "lvl": 84, "strReq": 40, "str": 10, "expd": 15, "hprRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 1644}, {"name": "Ligfamblawende", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-111", "fDam": "200-244", "wDam": "0-0", "aDam": "167-277", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "agiReq": 40, "defReq": 35, "ls": 260, "agi": 8, "def": 8, "hpBonus": 800, "fDamPct": 10, "wDamPct": -25, "fDefPct": 20, "aDefPct": 20, "id": 1643}, {"name": "Life Extractor", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "32-46", "fDam": "32-46", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "ls": 35, "lb": 5, "hpBonus": 46, "fDefPct": 5, "wDefPct": -10, "id": 1642}, {"name": "Light Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 1647}, {"name": "Light Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 1646}, {"name": "Light Kaekell", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "aDef": 15, "tDef": 15, "lvl": 55, "dexReq": 25, "agiReq": 25, "sdPct": 10, "mdPct": 10, "dex": 4, "agi": 4, "spd": 10, "aDamPct": 10, "tDamPct": 10, "eDefPct": -30, "id": 1648}, {"name": "Light Oak Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 1645}, {"name": "Lightning Edge", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "72-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-145", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 94, "dexReq": 50, "ls": 245, "ms": 5, "dex": 9, "hprRaw": -120, "tDamPct": 12, "tDefPct": 10, "eDefPct": -15, "id": 1686}, {"name": "Light Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 1651}, {"name": "Limbo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-275", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1200", "eDam": "385-385", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 45, "dexReq": 45, "mr": -20, "mdPct": 25, "str": 9, "dex": 13, "hprRaw": -250, "aDamPct": 50, "tDamPct": 15, "eDamPct": 20, "id": 1655}, {"name": "Lightningrod", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-67", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 30, "intReq": 35, "sdPct": 8, "dex": 8, "wDamPct": 23, "fDefPct": -20, "tDefPct": 30, "id": 1649}, {"name": "Lightshow", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "19-23", "wDam": "18-25", "aDam": "17-26", "tDam": "16-27", "eDam": "20-22", "atkSpd": "SUPER_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 70, "spRegen": 20, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 1650}, {"name": "Liquified Sun", "displayName": "Liquefied Sun", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-90", "fDam": "80-85", "wDam": "0-0", "aDam": "0-0", "tDam": "45-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "dexReq": 45, "defReq": 35, "ref": 20, "def": 10, "hpBonus": 1731, "wDamPct": -20, "eDamPct": -20, "fDefPct": 25, "tDefPct": 25, "id": 1654}, {"name": "Lithium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 14, "xpb": 5, "hprRaw": 2, "type": "necklace", "id": 1652}, {"name": "Little Inferno", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "wDef": -20, "lvl": 27, "defReq": 15, "sdPct": 20, "mdPct": 10, "expd": 25, "fDamPct": 15, "wDefPct": -25, "id": 1653}, {"name": "Little Machine", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "13-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-8", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "dex": 4, "sdRaw": 13, "mdRaw": 13, "spPct1": 18, "id": 1658}, {"name": "Lizard", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 18, "lvl": 18, "fDamPct": 5, "type": "ring", "id": 1656}, {"name": "Loaded Question", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "140-165", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 70, "ms": 10, "int": -10, "def": -15, "sdRaw": 240, "mdRaw": 140, "tDamPct": 30, "fDefPct": -30, "wDefPct": -30, "id": 1660}, {"name": "Loam", "tier": "Unique", "type": "wand", "poison": 180, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-15", "atkSpd": "NORMAL", "lvl": 39, "strReq": 10, "intReq": 5, "int": 5, "wDamPct": 10, "tDamPct": -5, "eDefPct": 7, "id": 1657}, {"name": "Lockpick\u058e", "displayName": "Lockpick", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "14-21", "tDam": "14-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "agiReq": 15, "dex": 7, "spd": 10, "eSteal": 5, "eDamPct": -12, "eDefPct": -12, "id": 1659}, {"name": "Lodestone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "wDef": 10, "eDef": -15, "lvl": 56, "intReq": 25, "mr": -5, "sdPct": 11, "xpb": 10, "sdRaw": 30, "tDamPct": 6, "type": "ring", "id": 1665}, {"name": "Log Suit", "tier": "Unique", "type": "chestplate", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 21, "fDef": -3, "eDef": 5, "lvl": 6, "spd": -2, "id": 1662}, {"name": "Locrian", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "28-33", "aDam": "22-33", "tDam": "17-55", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 15, "intReq": 20, "agiReq": 15, "ls": 115, "ms": 15, "dex": 7, "int": 9, "agi": 7, "sdRaw": 125, "fDefPct": -40, "eDefPct": -40, "id": 1661}, {"name": "Logistics", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "wDef": 90, "tDef": 90, "eDef": -120, "lvl": 81, "dexReq": 50, "intReq": 40, "mdPct": -55, "dex": 8, "int": 8, "wDamPct": 40, "tDamPct": 40, "spRaw1": 5, "spRaw3": 5, "spRaw4": -5, "id": 1663}, {"name": "Lost Soul", "tier": "Rare", "type": "spear", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "70-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "agiReq": 50, "ls": 260, "spd": 7, "mdRaw": 110, "aDamPct": 8, "aDefPct": 9, "id": 1668}, {"name": "Long Bow", "tier": "Unique", "type": "bow", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "SLOW", "lvl": 38, "strReq": 25, "hprPct": 15, "lb": 5, "str": 7, "agi": -5, "spd": -10, "aDefPct": -15, "eDefPct": 10, "id": 1664}, {"name": "Topaz Staff", "displayName": "Lonesome", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "190-270", "tDam": "0-0", "eDam": "240-320", "atkSpd": "SUPER_SLOW", "lvl": 91, "strReq": 35, "agiReq": 30, "sdPct": -25, "mdPct": 19, "ms": -5, "spd": 12, "spRegen": -10, "aDefPct": 15, "id": 1667}, {"name": "Luas", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 3, "spd": 5, "type": "bracelet", "id": 1666}, {"name": "Lucky Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "lvl": 28, "lb": 10, "spRegen": 3, "eSteal": 3, "id": 1670}, {"name": "Lumina", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "285-350", "fDam": "0-0", "wDam": "0-0", "aDam": "300-335", "tDam": "640-680", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 80, "dexReq": 45, "agiReq": 35, "spd": 25, "atkTier": -1, "hpBonus": -1250, "mdRaw": 875, "aDamPct": 20, "tDamPct": 30, "wDefPct": -30, "id": 1671}, {"name": "Lullaby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 34, "intReq": 10, "hprPct": 10, "mr": 5, "mdPct": -6, "spd": -5, "wDamPct": 7, "id": 1669}, {"name": "Luminiferous Aether", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "tDef": 110, "eDef": -110, "lvl": 92, "dexReq": 60, "mdPct": -15, "dex": 10, "atkTier": 1, "hprRaw": 125, "mdRaw": 130, "tDamPct": 10, "id": 3627}, {"name": "Lucky Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 30, "lvl": 31, "lb": 5, "eSteal": 2, "type": "necklace", "id": 1672}, {"name": "Luminis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 52, "intReq": 30, "ms": 5, "sdRaw": 15, "tDamPct": 6, "type": "necklace", "id": 1673}, {"name": "Lurrun", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 100, "aDef": 80, "tDef": -70, "eDef": -70, "lvl": 77, "agiReq": 40, "defReq": 40, "hprPct": 14, "mdPct": -8, "ref": 9, "spd": 16, "fDamPct": 6, "aDamPct": 6, "wDefPct": -10, "id": 1676}, {"name": "Luster Purge", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-18", "fDam": "0-0", "wDam": "40-48", "aDam": "35-53", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "intReq": 25, "agiReq": 25, "sdPct": 15, "ref": -20, "hpBonus": 400, "mdRaw": -58, "wDamPct": 15, "aDamPct": 15, "spRaw3": -5, "id": 1677}, {"name": "Lunar Spine", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "616-616", "fDam": "0-0", "wDam": "0-210", "aDam": "0-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "intReq": 50, "agiReq": 50, "mr": -330, "sdPct": 66, "mdPct": 66, "ls": -370, "ms": 110, "atkTier": -66, "hprRaw": -333, "wDamPct": 33, "aDamPct": 33, "id": 1674}, {"name": "Lustrous", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "50-150", "fDam": "140-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "170-240", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 40, "defReq": 30, "mdPct": 10, "str": 7, "int": -12, "hpBonus": -2400, "mdRaw": 280, "fDamPct": 12, "eDamPct": 12, "wDefPct": -30, "id": 1678}, {"name": "Luto Aquarum", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "5-5", "aDam": "0-0", "tDam": "0-0", "eDam": "190-220", "atkSpd": "SLOW", "lvl": 98, "strReq": 50, "intReq": 40, "ls": 269, "ms": 15, "spd": -25, "hpBonus": 3000, "mdRaw": 169, "wDamPct": 40, "eDefPct": 20, "spPct3": -22, "id": 1680}, {"name": "Lycoris", "tier": "Legendary", "type": "boots", "poison": 155, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 15, "tDef": 15, "eDef": -40, "lvl": 39, "dexReq": 15, "intReq": 15, "sdPct": 12, "ls": -33, "hpBonus": -150, "wDamPct": 10, "tDamPct": 10, "id": 1679}, {"name": "Lydian", "tier": "Rare", "type": "spear", "poison": 450, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-70", "atkSpd": "SLOW", "lvl": 39, "strReq": 25, "spd": -12, "aDamPct": -10, "eDamPct": 10, "id": 1681}, {"name": "Lust", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "15-65", "wDam": "10-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 10, "mr": 5, "hprRaw": 15, "fDefPct": 10, "wDefPct": 10, "id": 1675}, {"name": "Cracked Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3560}, {"name": "Cracked Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3559}, {"name": "Cracked Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3563}, {"name": "Cracked Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3562}, {"name": "Cracked Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3561}, {"name": "Aftershock", "tier": "Mythic", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1245-1430", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 80, "sdPct": -20, "str": 20, "def": 20, "hpBonus": 1850, "eDamPct": 20, "eDefPct": 20, "spPct4": -28, "id": 1684}, {"name": "Alkatraz", "tier": "Mythic", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1350-1500", "atkSpd": "SUPER_SLOW", "lvl": 94, "strReq": 110, "mdPct": 40, "str": 40, "dex": -10, "int": -10, "agi": -10, "def": -10, "expd": 40, "eDamPct": 40, "id": 1683}, {"name": "Apocalypse", "tier": "Mythic", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-680", "fDam": "255-475", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "defReq": 95, "hprPct": -125, "ls": 666, "int": -20, "def": 35, "expd": 150, "spRegen": -20, "wDamPct": -50, "fDefPct": 20, "wDefPct": -50, "id": 1685}, {"name": "Az", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "110-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-250", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "dexReq": 80, "xpb": 15, "int": 15, "def": 15, "fDamPct": 40, "wDamPct": 40, "spPct1": -23, "id": 1689}, {"name": "Crusade Sabatons", "tier": "Mythic", "type": "boots", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5050, "fDef": 200, "eDef": 125, "lvl": 90, "strReq": 60, "defReq": 70, "hprPct": 31, "str": 20, "def": 30, "spd": -15, "hpBonus": 2500, "fDefPct": 20, "eDefPct": 30, "id": 1696}, {"name": "Discoverer", "tier": "Mythic", "type": "chestplate", "category": "armor", "drop": "lootchest", "lvl": 89, "xpb": 15, "lb": 154, "id": 1694}, {"name": "Grandmother", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-595", "atkSpd": "SLOW", "lvl": 95, "strReq": 110, "hprPct": -35, "sdPct": 21, "mdPct": 21, "xpb": 15, "lb": 25, "str": 15, "agi": 55, "spd": -6, "hprRaw": -605, "id": 1704}, {"name": "Hero", "tier": "Mythic", "type": "spear", "majorIds": ["HERO"], "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "120-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "agiReq": 110, "hprPct": 40, "mdPct": 40, "str": 20, "agi": 30, "spd": 40, "id": 1708}, {"name": "Archangel", "tier": "Mythic", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "165-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 69, "agiReq": 70, "hprPct": 30, "agi": 15, "def": 10, "spd": 41, "hpBonus": 1900, "hprRaw": 120, "id": 1688}, {"name": "Ignis", "tier": "Mythic", "type": "bow", "majorIds": ["ALTRUISM"], "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-210", "fDam": "160-235", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "defReq": 105, "hprPct": 40, "def": 20, "hpBonus": 4000, "hprRaw": 345, "fDamPct": 10, "fDefPct": 100, "aDefPct": 50, "spPct4": -35, "id": 1706}, {"name": "Moontower", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4150, "fDef": 75, "wDef": 125, "aDef": 125, "tDef": 225, "eDef": 75, "lvl": 95, "intReq": 70, "agiReq": 80, "str": -10, "dex": -10, "int": 35, "agi": 60, "def": -40, "spd": 25, "wDefPct": 40, "aDefPct": 40, "id": 1709}, {"name": "Quetzalcoatl", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "25-45", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "50-70", "atkSpd": "VERY_FAST", "lvl": 103, "strReq": 70, "agiReq": 70, "ls": 1423, "spd": 28, "sdRaw": 270, "mdRaw": 95, "wDamPct": -80, "jh": 2, "id": 3644}, {"name": "Singularity", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 15, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-275", "wDam": "150-250", "aDam": "100-300", "tDam": "75-325", "eDam": "175-225", "atkSpd": "SUPER_SLOW", "lvl": 99, "strReq": 42, "dexReq": 42, "intReq": 42, "agiReq": 42, "defReq": 42, "sdPct": 10, "mdPct": 15, "dex": 35, "spd": -40, "hprRaw": 250, "sdRaw": 222, "mdRaw": 444, "id": 1715}, {"name": "Stratiformis", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-175", "fDam": "0-0", "wDam": "0-0", "aDam": "170-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "agiReq": 115, "sdPct": 12, "mdPct": 12, "ref": 12, "agi": 25, "spd": 76, "hpBonus": -2000, "id": 1765}, {"name": "Sunstar", "tier": "Mythic", "type": "relik", "thorns": 30, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "375-545", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 115, "ls": 625, "ref": 90, "mdRaw": 577, "wDamPct": -30, "tDamPct": 20, "id": 1720}, {"name": "Mach", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-46", "fDam": "0-0", "wDam": "0-0", "aDam": "12-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 56, "agiReq": 25, "defReq": 10, "agi": 8, "expd": 12, "spd": 15, "atkTier": 1, "hprRaw": 30, "fDamPct": 20, "id": 1728}, {"name": "Warchief", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5225, "fDef": -100, "wDef": -100, "aDef": -100, "tDef": -150, "eDef": -150, "lvl": 98, "strReq": 80, "dexReq": 80, "mdPct": 40, "str": 20, "dex": 10, "expd": 35, "spd": -15, "mdRaw": 315, "tDamPct": 50, "eDamPct": 40, "id": 1725}, {"name": "Macht", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 5, "mdPct": 5, "str": 3, "type": "bracelet", "id": 1731}, {"name": "Maelstrom", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-90", "aDam": "40-100", "tDam": "60-110", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 15, "mdPct": 15, "dex": 8, "int": 8, "agi": 8, "spd": 20, "hpBonus": -550, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "id": 1727}, {"name": "Magic Bounce", "tier": "Unique", "type": "relik", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-37", "fDam": "30-37", "wDam": "30-37", "aDam": "30-37", "tDam": "30-37", "eDam": "30-37", "atkSpd": "FAST", "lvl": 78, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": 10, "xpb": 10, "lb": 10, "ref": 35, "expd": 35, "spRaw2": -5, "id": 1732}, {"name": "Magellan's Sail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "wDef": 70, "aDef": 60, "eDef": -80, "lvl": 75, "intReq": 45, "agiReq": 40, "mr": 5, "spd": 16, "hprRaw": -90, "wDamPct": 14, "aDamPct": 9, "id": 1730}, {"name": "Magicant", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "5-15", "wDam": "5-15", "aDam": "5-15", "tDam": "5-15", "eDam": "5-15", "atkSpd": "NORMAL", "lvl": 41, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 1735}, {"name": "Magma Rod", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "74-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "defReq": 40, "str": 5, "expd": 25, "hprRaw": -35, "fDamPct": 20, "wDamPct": -30, "fDefPct": 20, "wDefPct": -30, "eDefPct": 10, "id": 1739}, {"name": "Magma Chalice", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "110-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "strReq": 40, "defReq": 30, "hprPct": 31, "expd": 15, "hpBonus": 2335, "eDamPct": 20, "fDefPct": 20, "aDefPct": -15, "eDefPct": 20, "id": 1734}, {"name": "Magmarizer", "tier": "Unique", "type": "dagger", "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-110", "fDam": "60-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-70", "atkSpd": "NORMAL", "lvl": 93, "strReq": 30, "defReq": 35, "sdPct": -15, "hpBonus": 3200, "hprRaw": 120, "fDefPct": 15, "eDefPct": 15, "id": 1736}, {"name": "Magmawalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 775, "fDef": 15, "eDef": 40, "lvl": 56, "strReq": 15, "defReq": 15, "hprPct": 20, "str": 4, "def": 7, "expd": 8, "spd": -8, "aDamPct": -8, "fDefPct": 25, "eDefPct": 25, "id": 1738}, {"name": "Magmatic Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "wDef": -130, "lvl": 72, "strReq": 40, "defReq": 50, "mdPct": 22, "str": 9, "def": 10, "expd": 19, "fDamPct": 28, "eDamPct": 28, "wDefPct": -34, "id": 1733}, {"name": "Magnet Repulsor", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3225, "fDef": -100, "wDef": 100, "tDef": -175, "eDef": -100, "lvl": 96, "dexReq": 55, "intReq": 60, "mdPct": -20, "ms": 10, "int": 5, "expd": 12, "sdRaw": 205, "tDefPct": -20, "id": 3597}, {"name": "Magnus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "355-535", "fDam": "445-600", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "intReq": 40, "defReq": 30, "sdPct": 15, "expd": 33, "wDamPct": 20, "aDamPct": -20, "fDefPct": 10, "wDefPct": 10, "id": 1737}, {"name": "Magnitude", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 50, "mdPct": 10, "ms": 5, "str": 7, "expd": 5, "fDamPct": -20, "aDamPct": -20, "eDamPct": 15, "id": 1740}, {"name": "Mail of the Sweltering", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": -120, "aDef": 30, "lvl": 60, "agiReq": 20, "defReq": 20, "ls": 75, "def": 5, "expd": 3, "hprRaw": 40, "aDamPct": 10, "fDefPct": 12, "id": 1741}, {"name": "Maji", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-95", "fDam": "0-0", "wDam": "110-138", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 83, "intReq": 40, "ls": 200, "xpb": 15, "lb": 15, "dex": -8, "int": 8, "hprRaw": 100, "wDefPct": 15, "tDefPct": 15, "eDefPct": -30, "id": 1742}, {"name": "Major", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "mdRaw": 9, "type": "ring", "id": 1743}, {"name": "Malachite", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 20, "eDef": 20, "lvl": 75, "strReq": 10, "dexReq": 10, "str": 3, "dex": 3, "sdRaw": 35, "mdRaw": 31, "type": "ring", "id": 1744}, {"name": "Maltic's Old Spear", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "xpb": 10, "str": 7, "dex": 7, "id": 1749}, {"name": "Malfunction", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-50", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "dexReq": 20, "intReq": 20, "hprPct": -20, "sdPct": 14, "ms": 5, "xpb": 10, "hpBonus": -150, "tDamPct": 12, "wDefPct": -20, "tDefPct": -20, "id": 1745}, {"name": "Maltic's Aid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 1746}, {"name": "Manablast", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "180-215", "aDam": "0-0", "tDam": "180-215", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 20, "mdPct": -20, "ms": -15, "expd": 20, "sdRaw": 231, "mdRaw": -235, "id": 1748}, {"name": "Mama Zomble's Memory", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1747}, {"name": "Manaflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 80, "eDef": -80, "lvl": 78, "intReq": 50, "mr": 5, "sdPct": 10, "mdPct": -13, "ls": -75, "str": -5, "int": 7, "wDamPct": 10, "eDamPct": -10, "id": 1751}, {"name": "Mangrove", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": -65, "wDef": 50, "eDef": 50, "lvl": 52, "strReq": 30, "intReq": 30, "hprPct": 10, "mr": 5, "spd": -11, "hprRaw": 30, "wDefPct": 8, "eDefPct": 8, "id": 1750}, {"name": "Maple", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "43-57", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "NORMAL", "lvl": 58, "str": 7, "hprRaw": 40, "eDamPct": 8, "fDefPct": -5, "id": 1752}, {"name": "Marble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 90, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 48, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "sdPct": 5, "sdRaw": 12, "type": "ring", "id": 1754}, {"name": "Marble Forest", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "133-136", "tDam": "0-0", "eDam": "133-136", "atkSpd": "NORMAL", "lvl": 87, "strReq": 30, "agiReq": 30, "str": 15, "dex": -15, "agi": 15, "def": -15, "fDamPct": -25, "aDamPct": 25, "tDamPct": -25, "eDamPct": 25, "fDefPct": -20, "aDefPct": 20, "tDefPct": -20, "eDefPct": 20, "id": 1753}, {"name": "Marrow", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "lvl": 65, "hprPct": 24, "mdPct": -4, "hprRaw": 60, "fDamPct": 7, "id": 1757}, {"name": "Marius' Lament", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -25, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": -25, "lvl": 49, "dexReq": 5, "intReq": 5, "agiReq": 5, "ls": 29, "agi": 5, "spRegen": 10, "type": "bracelet", "id": 1756}, {"name": "Marsh Runner", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": 75, "tDef": -60, "lvl": 58, "intReq": 20, "xpb": 8, "ref": 12, "int": 5, "wDamPct": 7, "tDamPct": -4, "id": 1755}, {"name": "Marsh Waders", "tier": "Rare", "type": "leggings", "poison": 788, "thorns": 22, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 100, "aDef": -100, "tDef": -60, "eDef": 60, "lvl": 86, "strReq": 20, "intReq": 20, "mr": 5, "str": 8, "spd": -7, "wDamPct": 15, "id": 1758}, {"name": "Marvel", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -100, "wDef": 15, "aDef": 15, "eDef": -25, "lvl": 72, "intReq": 50, "agiReq": 10, "sdPct": 11, "mdPct": -8, "ref": 14, "spd": 8, "type": "ring", "id": 1761}, {"name": "Martyr", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 15, "aDef": 15, "lvl": 77, "agiReq": 30, "defReq": 30, "hprPct": -12, "sdPct": 8, "mdPct": 12, "hprRaw": -36, "type": "ring", "id": 1829}, {"name": "Mask of the Spirits", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjdlODQ5MGMwZjk3ZTU5ZTJjNjA5MzI3MjVmMTAyMzVlOTdiNzQ0YmRhYjU5ODcwMmEwYjJlNzk5MGRlMzA0YyJ9fX0= ", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 3649}, {"name": "Masochist", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -40, "eDef": 30, "lvl": 59, "strReq": 30, "hprPct": 40, "sdPct": -45, "mdPct": 35, "ls": -230, "ms": -5, "xpb": 15, "str": 7, "eDamPct": 12, "id": 1759}, {"name": "Master", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 11, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "necklace", "id": 1760}, {"name": "Matchbook", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -60, "lvl": 83, "defReq": 65, "def": 13, "expd": 12, "fDamPct": -7, "type": "necklace", "id": 3622}, {"name": "Mazurka", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "1-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 73, "dexReq": 35, "dex": 5, "hpBonus": -750, "sdRaw": 101, "mdRaw": 54, "tDamPct": 15, "id": 1762}, {"name": "Meanderthal", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "eDef": 20, "lvl": 29, "strReq": 12, "mdPct": 10, "xpb": 10, "str": 9, "def": 9, "spd": -10, "id": 1766}, {"name": "Mech Core", "tier": "Rare", "quest": "Desperate Metal", "category": "accessory", "drop": "never", "fDef": 50, "wDef": -25, "lvl": 86, "defReq": 35, "hprPct": 10, "mr": -5, "int": -5, "def": 8, "hpBonus": 630, "hprRaw": 75, "type": "necklace", "id": 1861}, {"name": "Medico", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 17, "hprPct": 14, "hpBonus": 22, "hprRaw": 6, "id": 1768}, {"name": "Meep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "lvl": 59, "sdPct": -6, "mdPct": -6, "agi": 5, "spd": 11, "type": "ring", "id": 1767}, {"name": "Meditation Robe", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 10, "tDef": -25, "lvl": 35, "intReq": 25, "mr": 5, "mdPct": -10, "ms": 5, "xpb": 10, "wDamPct": 12, "tDefPct": -10, "id": 1769}, {"name": "Meikyo Shisui", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1500, "wDef": 60, "lvl": 66, "intReq": 60, "mr": 10, "ref": 10, "int": 7, "spd": -15, "spRegen": 10, "hprRaw": 40, "id": 1770}, {"name": "Melody", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 6, "lvl": 48, "agiReq": 24, "mdPct": 4, "agi": 3, "spd": 2, "sdRaw": 14, "type": "ring", "id": 1774}, {"name": "Melange", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-11", "fDam": "10-12", "wDam": "9-13", "aDam": "7-15", "tDam": "6-16", "eDam": "8-14", "atkSpd": "NORMAL", "lvl": 31, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "sdPct": 7, "mdPct": 7, "xpb": 7, "lb": 7, "spd": 7, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 1771}, {"name": "Melon Cutter", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-160", "atkSpd": "NORMAL", "lvl": 58, "strReq": 30, "mdPct": 20, "str": 10, "hpBonus": -350, "eDamPct": 10, "id": 1772}, {"name": "Melted Ruby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 10, "mr": 5, "sdPct": 9, "hpBonus": 25, "wDamPct": -5, "id": 1773}, {"name": "Meltok", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "3-5", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "hprPct": 10, "xpb": 4, "id": 1778}, {"name": "Meltsteel Greaves", "tier": "Unique", "type": "leggings", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 90, "wDef": -50, "aDef": -50, "lvl": 77, "strReq": 30, "defReq": 30, "mdPct": 11, "str": 5, "expd": 8, "spd": -8, "id": 1777}, {"name": "Memento", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "wDef": 150, "tDef": -150, "lvl": 92, "intReq": 80, "mr": 10, "sdPct": 15, "ls": -600, "xpb": 20, "spRegen": 15, "sdRaw": 120, "id": 1775}, {"name": "Mercury Bomb", "tier": "Legendary", "type": "relik", "poison": 1530, "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "42-48", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "dexReq": 35, "defReq": 35, "hprPct": -100, "ls": 30, "ms": -5, "def": 12, "expd": 39, "tDamPct": 20, "id": 1781}, {"name": "Mender", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "fDef": 60, "wDef": 60, "tDef": -80, "lvl": 61, "intReq": 30, "defReq": 20, "hprPct": 30, "int": 5, "def": 4, "tDamPct": -20, "fDefPct": 10, "wDefPct": 12, "id": 1776}, {"name": "Meridian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-32", "fDam": "0-0", "wDam": "14-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 5, "mr": 5, "xpb": 12, "int": 7, "wDamPct": 5, "id": 1784}, {"name": "Mercy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 71, "hprPct": 15, "sdPct": -2, "mdPct": -2, "xpb": 8, "type": "ring", "id": 1780}, {"name": "Mesosphere", "tier": "Rare", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": -70, "aDef": 70, "tDef": 90, "eDef": -90, "lvl": 91, "dexReq": 50, "agiReq": 25, "mr": 5, "ms": 5, "ref": 15, "agi": 5, "spd": 11, "sdRaw": 145, "mdRaw": 190, "tDamPct": 13, "id": 1785}, {"name": "Mesarock Arch", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 10, "xpb": 10, "lb": 10, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "id": 1782}, {"name": "Meteoric Aegis", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "mr": 10, "xpb": 10, "ref": 15, "id": 1783}, {"name": "Meteoric Arch", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 3, "hprRaw": 35, "sdRaw": 60, "id": 1786}, {"name": "Meteorite", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "10-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-25", "atkSpd": "FAST", "lvl": 40, "strReq": 10, "defReq": 10, "mdPct": 15, "expd": 10, "wDefPct": -10, "aDefPct": -10, "id": 1800}, {"name": "Midnight Bell", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "6-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "agi": 7, "spd": 5, "fDefPct": -5, "id": 1788}, {"name": "Mighty Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 15, "id": 1787}, {"name": "Mind Rot", "tier": "Rare", "type": "helmet", "poison": 420, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1700, "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 70, "hprPct": -12, "mr": -5, "ls": 115, "ms": 10, "int": -6, "hpBonus": -150, "mdRaw": 130, "id": 1792}, {"name": "Millennium", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 63, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 3, "hprRaw": 60, "sdRaw": 120, "id": 1789}, {"name": "Mind Cracker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "sdPct": 3, "int": 1, "type": "ring", "id": 1790}, {"name": "Minor", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "sdRaw": 7, "type": "ring", "id": 1791}, {"name": "Minus", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "75-99", "eDam": "84-90", "atkSpd": "SLOW", "lvl": 42, "strReq": 18, "dexReq": 18, "spd": -10, "hpBonus": -185, "spRegen": -15, "spRaw1": -5, "spRaw3": -5, "id": 1794}, {"name": "Mirror", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 56, "ref": 14, "type": "ring", "id": 1793}, {"name": "Mirror's Edge", "tier": "Fabled", "type": "leggings", "sprint": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 63, "agiReq": 60, "ref": 30, "agi": 20, "spd": 25, "spPct2": -42, "sprintReg": 100, "jh": 1, "id": 1795}, {"name": "Misericorde", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-25", "fDam": "14-15", "wDam": "14-15", "aDam": "14-15", "tDam": "14-15", "eDam": "14-15", "atkSpd": "NORMAL", "lvl": 42, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "mr": -10, "sdPct": -12, "mdPct": 10, "ls": 55, "ms": 15, "hprRaw": -28, "id": 1797}, {"name": "Mirror Shard", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-55", "aDam": "0-0", "tDam": "61-85", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "intReq": 30, "sdPct": 22, "ms": 5, "lb": 12, "ref": 30, "hprRaw": -71, "eDefPct": -25, "id": 1796}, {"name": "Misconduct", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "46-100", "aDam": "0-0", "tDam": "20-126", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "intReq": 40, "hprPct": -30, "sdPct": 20, "ms": 10, "spd": 12, "hpBonus": -1100, "hprRaw": -140, "id": 1799}, {"name": "Hornet", "displayName": "Missile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "43-55", "fDam": "0-0", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "agiReq": 25, "defReq": 35, "mdPct": 15, "ls": -260, "expd": 50, "spd": 20, "mdRaw": 80, "fDamPct": 40, "tDamPct": -20, "eDamPct": 19, "id": 1809}, {"name": "Misfit", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "81-83", "eDam": "81-83", "atkSpd": "SUPER_FAST", "lvl": 96, "strReq": 60, "dexReq": 60, "mr": -5, "mdPct": 20, "ms": -15, "lb": 15, "expd": 25, "tDamPct": 15, "eDamPct": 15, "spRaw4": -10, "id": 1798}, {"name": "Mist", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 56, "intReq": 20, "agiReq": 30, "sdPct": -10, "mdPct": -10, "xpb": 8, "ref": 8, "agi": 7, "spd": 4, "id": 1802}, {"name": "Mist Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-24", "fDam": "0-0", "wDam": "0-0", "aDam": "7-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "agiReq": 10, "ms": 5, "agi": 4, "wDamPct": 5, "aDamPct": 5, "id": 1801}, {"name": "Mistral", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "fDef": -80, "aDef": 80, "lvl": 85, "intReq": 30, "agiReq": 50, "mr": 5, "sdPct": 20, "mdPct": -20, "ref": 16, "spd": 16, "aDamPct": 20, "id": 1806}, {"name": "Mistweaver", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "69-75", "fDam": "0-0", "wDam": "69-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 20, "agiReq": 25, "agi": 5, "aDamPct": 20, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": -15, "id": 1807}, {"name": "Mistpuff", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": 20, "aDef": 30, "tDef": -60, "lvl": 53, "intReq": 15, "agiReq": 20, "ref": 9, "int": 4, "agi": 5, "def": -3, "spd": 9, "eDamPct": -12, "id": 1804}, {"name": "Mithril Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "fDef": -5, "wDef": -5, "aDef": -5, "tDef": -5, "lvl": 39, "strReq": 20, "mdPct": 5, "xpb": 5, "def": 10, "id": 1805}, {"name": "Mitten", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "hpBonus": 5, "hprRaw": 1, "id": 1811}, {"name": "Missing", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2500, "lvl": 80, "dexReq": 40, "defReq": 40, "ls": 195, "ms": 10, "int": -23, "eSteal": 10, "spPct1": -14, "spPct3": -7, "id": 1803}, {"name": "Mixolydian", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "agiReq": 25, "agi": 7, "spd": 15, "aDamPct": 10, "id": 1812}, {"name": "Moisture", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 15, "aDef": 20, "tDef": -50, "lvl": 51, "intReq": 30, "agiReq": 30, "mdPct": -20, "xpb": 15, "ref": 10, "spd": 10, "sdRaw": 40, "wDamPct": 8, "aDamPct": 10, "id": 1808}, {"name": "Molten Flow", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2425, "fDef": 120, "wDef": -130, "eDef": 50, "lvl": 84, "defReq": 50, "hprPct": 30, "str": 6, "def": 6, "spd": -8, "hprRaw": 110, "fDamPct": 16, "eDamPct": 14, "fDefPct": 6, "aDefPct": 20, "eDefPct": 18, "id": 1816}, {"name": "Molotov", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "35-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 21, "defReq": 20, "hprPct": -15, "mdPct": 12, "def": 5, "expd": 20, "fDamPct": 8, "id": 1810}, {"name": "Mercenary Hood", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "fDef": 4, "tDef": 6, "eDef": -8, "lvl": 19, "dexReq": 5, "hprPct": 15, "dex": 3, "mdRaw": 20, "id": 1779}, {"name": "Monk's Cowl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 2, "tDef": 2, "lvl": 12, "hprPct": 10, "xpb": 6, "spRegen": 10, "id": 1814}, {"name": "Momentum", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 79, "strReq": 50, "ms": 5, "str": 5, "dex": 4, "spd": -8, "atkTier": -1, "mdRaw": 275, "type": "bracelet", "id": 1813}, {"name": "Monk's Battle Staff", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "110-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-75", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 29, "sdPct": -10, "mdPct": 10, "spd": 3, "sdRaw": -45, "mdRaw": 130, "aDefPct": -12, "id": 1815}, {"name": "Montefiore", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1340, "lvl": 64, "hprPct": 25, "ms": -5, "spRegen": 5, "hprRaw": 65, "id": 1821}, {"name": "Moonsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-75", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 73, "dexReq": 10, "defReq": 20, "hprPct": 12, "xpb": 8, "int": -3, "expd": 5, "wDamPct": -15, "tDamPct": 10, "wDefPct": -5, "aDefPct": 5, "id": 1820}, {"name": "Morning Star", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-140", "fDam": "80-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "mdPct": 10, "ref": 15, "spRegen": 5, "wDamPct": -5, "aDamPct": 10, "fDefPct": 10, "aDefPct": 5, "id": 1822}, {"name": "Moonbeam", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": 80, "tDef": -80, "lvl": 89, "intReq": 60, "mr": 10, "sdPct": 8, "xpb": 12, "int": 8, "spRegen": 12, "wDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 1817}, {"name": "Mortar", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "aDef": -5, "eDef": 10, "lvl": 28, "strReq": 10, "mdPct": 10, "str": 4, "expd": 2, "aDamPct": -10, "eDamPct": 7, "id": 1819}, {"name": "Mosaic", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-60", "wDam": "40-60", "aDam": "40-60", "tDam": "40-60", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 76, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -9, "mdPct": -9, "hprRaw": 80, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1826}, {"name": "Moulded Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": -80, "eDef": 100, "lvl": 67, "strReq": 35, "sdPct": 7, "mdPct": 11, "expd": 12, "spd": -8, "atkTier": -1, "eDamPct": 40, "aDefPct": -20, "eDefPct": 20, "id": 1823}, {"name": "Moss", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "wDef": 65, "eDef": 65, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 25, "sdPct": -5, "mdPct": -5, "hprRaw": 100, "wDefPct": 15, "tDefPct": 25, "eDefPct": 15, "id": 1824}, {"name": "Mountain Spirit", "tier": "Rare", "type": "dagger", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "dexReq": 35, "agiReq": 35, "sdPct": 4, "xpb": 8, "dex": 5, "agi": 5, "mdRaw": 120, "aDamPct": 8, "tDamPct": 8, "id": 1825}, {"name": "Mouth of Fate", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "86-100", "tDam": "76-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 92, "dexReq": 38, "agiReq": 38, "sdPct": 9, "mdPct": 9, "dex": 9, "agi": 9, "spd": 9, "sdRaw": 135, "mdRaw": 110, "eDefPct": -30, "id": 1827}, {"name": "Mountaintop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": -70, "aDef": 70, "tDef": -150, "eDef": 150, "lvl": 92, "strReq": 35, "agiReq": 15, "mdPct": 12, "dex": 10, "spd": 8, "mdRaw": 175, "fDamPct": -12, "aDamPct": 5, "eDamPct": 5, "eDefPct": 12, "id": 1830}, {"name": "Msitu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "mr": 10, "xpb": 15, "lb": 15, "str": 8, "agi": -8, "fDefPct": -30, "aDefPct": 15, "eDefPct": 15, "id": 1828}, {"name": "Mud Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 46, "wDef": 5, "aDef": -7, "eDef": 5, "lvl": 13, "mdPct": 7, "spd": -4, "wDamPct": 4, "id": 1831}, {"name": "Muddy Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 410, "wDef": 10, "aDef": -20, "eDef": 15, "lvl": 45, "strReq": 15, "intReq": 5, "str": 7, "spd": -7, "aDamPct": -6, "fDefPct": 10, "wDefPct": 8, "tDefPct": 10, "eDefPct": 8, "id": 1833}, {"name": "Mullberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-10", "atkSpd": "NORMAL", "lvl": 11, "hprPct": 10, "xpb": 6, "hpBonus": 15, "id": 1835}, {"name": "Multitool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 76, "dex": 8, "type": "bracelet", "id": 3578}, {"name": "Murk", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 970, "wDef": 55, "tDef": -65, "lvl": 63, "intReq": 45, "sdPct": 5, "ms": 5, "spd": -6, "sdRaw": 85, "wDamPct": 5, "tDamPct": 8, "eDamPct": -6, "tDefPct": -8, "id": 1837}, {"name": "Mudskipper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "wDef": 60, "aDef": 60, "tDef": -100, "eDef": 60, "lvl": 70, "strReq": 25, "intReq": 25, "agiReq": 25, "sdPct": 7, "mdPct": 7, "str": 4, "agi": 4, "spd": 8, "wDamPct": 8, "tDefPct": -10, "id": 1832}, {"name": "Muskeg", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "aDef": -55, "eDef": 45, "lvl": 53, "strReq": 30, "intReq": 30, "mr": 5, "agi": -4, "spd": -8, "wDamPct": 12, "eDamPct": 12, "aDefPct": -10, "id": 1836}, {"name": "Muscle Shirt", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "lvl": 25, "strReq": 15, "str": 8, "id": 1834}, {"name": "Mustard Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 90, "fDef": -10, "wDef": 5, "eDef": 5, "lvl": 22, "strReq": 3, "intReq": 3, "expd": 3, "wDamPct": 5, "eDefPct": 5, "id": 1838}, {"name": "Mycelium Plating", "tier": "Unique", "type": "leggings", "poison": 720, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3025, "wDef": -60, "aDef": -80, "eDef": 130, "lvl": 96, "strReq": 50, "ls": -100, "ms": -5, "str": 7, "hprRaw": 150, "aDamPct": -15, "eDamPct": 20, "eDefPct": 12, "id": 1839}, {"name": "Mystic Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "wDef": 10, "tDef": -10, "lvl": 22, "intReq": 10, "mr": 5, "int": 4, "sdRaw": 15, "tDamPct": -6, "id": 1841}, {"name": "Myelin", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "wDef": 120, "tDef": 50, "lvl": 87, "dexReq": 20, "intReq": 50, "sdPct": 10, "mdPct": -25, "ms": 10, "int": 7, "sdRaw": 165, "tDamPct": 8, "tDefPct": 12, "id": 1842}, {"name": "Mythical Trousers", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 500, "lvl": 42, "defReq": 25, "hprPct": 20, "mr": -5, "ls": 37, "hpBonus": 150, "hprRaw": 27, "wDamPct": -7, "aDamPct": -7, "tDamPct": -7, "eDamPct": -7, "fDefPct": 20, "id": 1843}, {"name": "Mystical Lance", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-95", "fDam": "0-0", "wDam": "0-0", "aDam": "45-45", "tDam": "45-45", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "agiReq": 40, "sdPct": 7, "mdPct": 7, "dex": 18, "agi": 18, "def": -22, "fDamPct": -96, "fDefPct": -41, "id": 1844}, {"name": "Abyssal Amulet", "tier": "Legendary", "quest": "Eye of the Storm", "poison": 450, "category": "accessory", "drop": "never", "fDef": 30, "tDef": 30, "lvl": 72, "hprPct": -15, "ls": 75, "spRegen": -10, "type": "necklace", "id": 1847}, {"name": "Abysso Galoshes", "tier": "Legendary", "type": "boots", "quest": "Beneath the Depths", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": 80, "lvl": 60, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 100, "wDamPct": 10, "tDamPct": 10, "eDefPct": -35, "id": 1845}, {"name": "Aerolia Boots", "tier": "Unique", "type": "boots", "quest": "Suspended Flowers", "category": "armor", "slots": 1, "drop": "never", "hp": 55, "lvl": 14, "hprPct": 15, "mr": 5, "id": 1848}, {"name": "Air Relic Dagger", "displayName": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "39-66", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 30, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 1846}, {"name": "Air Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-65", "fDam": "0-0", "wDam": "0-0", "aDam": "25-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 15, "xpb": 15, "lb": 15, "agi": 5, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 1852}, {"name": "Amulet of Rejuvenation", "tier": "Rare", "quest": "Aldorei^s Secret Part II", "poison": -20000, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 15, "sdPct": -500, "mdPct": -500, "spd": -300, "hprRaw": 750, "sdRaw": -10000, "mdRaw": -10000, "type": "necklace", "fixID": true, "id": 1850}, {"name": "Altum Spatium", "tier": "Legendary", "quest": "???\u058e", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 251, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 80, "xpb": 19, "ref": 19, "type": "necklace", "id": 1849}, {"name": "Anya's Penumbra", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 30, "tDef": 30, "lvl": 100, "int": 15, "spRegen": -14, "type": "bracelet", "spRaw2": 5, "id": 1860}, {"name": "Ancient Runic Relik", "tier": "Legendary", "type": "relik", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "290-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1851}, {"name": "Mvuke", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-72", "fDam": "90-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "defReq": 40, "mr": 10, "xpb": 15, "lb": 15, "int": -8, "def": 8, "fDefPct": 15, "wDefPct": 15, "tDefPct": -30, "id": 1840}, {"name": "Avalanche", "tier": "Rare", "type": "helmet", "quest": "Fate of the Fallen", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 225, "fDef": -20, "lvl": 43, "intReq": 20, "mr": 10, "xpb": 10, "int": 7, "fDamPct": -10, "wDamPct": 10, "aDamPct": 5, "fDefPct": -12, "id": 1853}, {"name": "Blood Moon", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "hp": 2125, "wDef": -75, "eDef": 75, "lvl": 70, "sdPct": -50, "mdPct": 50, "sdRaw": -165, "mdRaw": 215, "id": 1856}, {"name": "Bear Head", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "id": 2393, "set": "Bear"}, {"name": "Bob's Battle Chestplate", "tier": "Unique", "type": "chestplate", "quest": "Bob's Lost Soul", "category": "armor", "slots": 3, "drop": "never", "hp": 450, "lvl": 45, "sdPct": 8, "mdPct": 8, "xpb": 8, "lb": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "id": 1855}, {"name": "Black Veil", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "poison": 105, "category": "armor", "drop": "never", "hp": 570, "tDef": 30, "eDef": -30, "lvl": 51, "sdPct": 15, "ls": 49, "ms": 5, "xpb": -8, "lb": -8, "spRegen": -8, "id": 1866}, {"name": "Bob's Mythic Bow", "tier": "Legendary", "type": "bow", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "380-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1857}, {"name": "Bob's Mythic Daggers", "tier": "Legendary", "type": "dagger", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "185-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1858}, {"name": "Bob's Mythic Spear", "tier": "Legendary", "type": "spear", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "250-310", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1918}, {"name": "Bob's Mythic Wand", "tier": "Legendary", "type": "wand", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1859}, {"name": "Bovine Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 50, "eDef": 20, "lvl": 55, "mdPct": 5, "str": 7, "type": "bracelet", "id": 1862}, {"name": "Calamaro's Bow", "tier": "Rare", "type": "bow", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-27", "fDam": "0-0", "wDam": "20-31", "aDam": "11-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1863}, {"name": "Calamaro's Spear", "tier": "Rare", "type": "spear", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-22", "fDam": "0-0", "wDam": "17-25", "aDam": "7-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1870}, {"name": "Breathing Helmet II", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 300, "wDef": 40, "tDef": -40, "lvl": 40, "ref": 20, "spd": 5, "wDamPct": 15, "fixID": true, "id": 1867}, {"name": "Calamaro's Relik", "tier": "Rare", "type": "relik", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-23", "fDam": "0-0", "wDam": "25-26", "aDam": "13-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1865}, {"name": "Calamaro's Staff", "tier": "Rare", "type": "wand", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "16-22", "aDam": "6-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1871}, {"name": "Calamaro's Sword", "tier": "Rare", "type": "dagger", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "18-28", "aDam": "9-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1868}, {"name": "Clearsight Spectacles", "tier": "Legendary", "type": "helmet", "quest": "Realm of Light IV - Finding the Light", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 71, "xpb": 20, "lb": 15, "ref": 50, "int": 5, "spRegen": 25, "hprRaw": 85, "id": 1873}, {"name": "Changeling's Chestplate", "tier": "Rare", "type": "chestplate", "quest": "General's Orders", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 55, "wDef": 55, "aDef": 55, "tDef": 55, "eDef": 55, "lvl": 80, "xpb": 15, "lb": 15, "str": -1, "dex": -1, "int": -1, "agi": -1, "def": -1, "spd": 15, "hprRaw": 100, "sdRaw": 135, "mdRaw": 175, "jh": 1, "id": 1869}, {"name": "Climbing Helmet", "tier": "Unique", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 350, "aDef": 30, "eDef": 30, "lvl": 42, "xpb": 10, "lb": 10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 56, "id": 1872}, {"name": "Confusing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 99, "lvl": 18, "int": -20, "id": 1874}, {"name": "Contest Wynner Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1875}, {"name": "Dark Diadem", "tier": "Rare", "quest": "The Dark Descent", "category": "accessory", "drop": "never", "wDef": -20, "lvl": 24, "sdPct": 4, "ms": 5, "xpb": 6, "spRegen": -10, "type": "necklace", "id": 1876}, {"name": "Detective's Ring", "tier": "Rare", "quest": "Murder Mystery", "category": "accessory", "drop": "never", "lvl": 74, "sdPct": 7, "xpb": 6, "int": 7, "type": "ring", "id": 1926}, {"name": "Breathing Helmet I", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 20, "wDef": 5, "tDef": -3, "lvl": 8, "id": 1864}, {"name": "Digested Corpse", "tier": "Unique", "type": "chestplate", "poison": 480, "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": -60, "lvl": 71, "strReq": 25, "dexReq": 25, "hprPct": -140, "mdPct": 7, "hprRaw": -9, "mdRaw": 125, "id": 1878}, {"name": "Cloak of Luminosity", "tier": "Rare", "type": "chestplate", "quest": "Realm of Light III - A Headless History", "category": "armor", "drop": "never", "hp": 1280, "fDef": 40, "wDef": 75, "aDef": 40, "tDef": 75, "eDef": 40, "lvl": 64, "mr": 5, "sdPct": 15, "ms": 5, "xpb": 15, "lb": 15, "ref": 15, "spRegen": 15, "wDamPct": 5, "tDamPct": 5, "id": 1877}, {"name": "Earth Relic Dagger", "displayName": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 30, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1880}, {"name": "Dull Ancient Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1350, "lvl": 77, "id": 1881}, {"name": "Earth Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-100", "atkSpd": "SLOW", "lvl": 45, "strReq": 15, "mdPct": 15, "xpb": 15, "lb": 15, "str": 5, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1884}, {"name": "Emerald Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "42-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "xpb": 7, "lb": 23, "eSteal": 7, "id": 1883}, {"name": "Empowered Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": -50, "lvl": 77, "id": 1888}, {"name": "Fire Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "defReq": 15, "xpb": 15, "lb": 15, "def": 5, "hpBonus": 335, "hprRaw": 30, "fDamPct": 10, "fDefPct": 20, "id": 1889}, {"name": "Fire Relic Dagger", "displayName": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 30, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1887}, {"name": "Factory Helmet", "tier": "Unique", "type": "helmet", "quest": "An Iron Heart Part I", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 500, "lvl": 50, "hprPct": 15, "mr": -5, "xpb": 10, "lb": 15, "ref": 10, "def": 7, "hpBonus": 200, "id": 1886}, {"name": "Fire Wire", "tier": "Rare", "type": "leggings", "quest": "From The Mountains", "thorns": 15, "category": "armor", "slots": 1, "drop": "never", "hp": 1600, "fDef": 120, "wDef": -90, "lvl": 67, "hprPct": 35, "def": 7, "spd": -15, "hprRaw": 50, "wDamPct": -15, "fDefPct": 12, "id": 1891}, {"name": "First Steps", "tier": "Unique", "quest": "Cook Assistant", "category": "accessory", "drop": "never", "hp": 4, "lvl": 5, "xpb": 3, "spd": 5, "type": "ring", "id": 3545}, {"name": "Generator Amulet", "tier": "Rare", "quest": "Heart of Llevigar", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": -10, "tDef": 10, "eDef": -20, "lvl": 41, "sdPct": 8, "expd": 5, "sdRaw": 20, "type": "necklace", "id": 1890}, {"name": "Gernald's Amulet", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 70, "fDef": 7, "wDef": 7, "aDef": 7, "tDef": 7, "eDef": 7, "lvl": 43, "xpb": -4, "lb": 11, "type": "necklace", "id": 1893}, {"name": "Gerten Ritual Mask", "tier": "Rare", "type": "helmet", "quest": "The Hunger of Gerts Part 2", "skin": "eyJ0aW1lc3RhbXAiOjE0Mzc5NTUxMDU1MjAsInByb2ZpbGVJZCI6ImRlZDdhMmFmMTVlNjRjOWVhYjIzZWFlOTkyMzUzMDY4IiwicHJvZmlsZU5hbWUiOiJFbmVyZ3l4eGVyIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzczYzIxYjNjYWY4YTZlYWI3ZDE4MTczNGE0MzBkYjUyMWIxZGI4MzNjODk4N2RkZTI0MTE4MDIzMWU0NzgyNiJ9fX0=", "category": "armor", "slots": 1, "drop": "never", "hp": 1800, "aDef": -60, "eDef": 100, "lvl": 78, "sdPct": -10, "str": 7, "spd": -10, "mdRaw": 180, "eDamPct": 20, "aDefPct": -10, "id": 1892}, {"name": "Essren's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 50, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 15, "int": 4, "sdRaw": 20, "wDamPct": 10, "id": 1885}, {"name": "Gnome's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": -250, "aDef": 30, "eDef": -10, "lvl": 76, "agiReq": 25, "mdPct": -8, "str": -3, "agi": 5, "spd": 8, "aDamPct": 7, "eDamPct": -8, "type": "ring", "id": 1895}, {"name": "Glaciate", "tier": "Rare", "type": "leggings", "quest": "Frost Bite", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "wDef": 30, "eDef": -30, "lvl": 48, "dexReq": 20, "intReq": 25, "ms": 5, "lb": 10, "ref": 20, "dex": 7, "spd": 10, "wDamPct": 6, "tDamPct": 8, "eDefPct": -15, "id": 1897}, {"name": "Giant's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": 250, "aDef": -10, "eDef": 30, "lvl": 76, "strReq": 25, "mdPct": 7, "str": 5, "agi": -3, "spd": -8, "aDamPct": -8, "eDamPct": 7, "type": "ring", "id": 1894}, {"name": "Gnomish Topper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "eDef": 50, "lvl": 75, "agiReq": 35, "sdPct": -10, "mdPct": 5, "xpb": 10, "str": 7, "agi": 4, "spd": 15, "id": 1896}, {"name": "Guard's Uniform", "tier": "Normal", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1150, "lvl": 72, "id": 1898}, {"name": "Greaves of Honor", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "hprPct": 20, "xpb": 30, "ref": 10, "spRegen": 3, "id": 1900}, {"name": "Hallowynn Mask", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "hp": 115, "tDef": 5, "lvl": 22, "xpb": 5, "sdRaw": 15, "mdRaw": 16, "id": 1899}, {"name": "Helmet of Legends", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1000, "lvl": 68, "id": 1901}, {"name": "Helmet of Shimmering Light", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Quest Item", "hp": 1850, "lvl": 74, "id": 1902}, {"name": "Hide of Gregg'r", "tier": "Rare", "type": "chestplate", "quest": "Green Skinned Trouble", "category": "armor", "slots": 1, "drop": "never", "hp": 600, "fDef": 40, "wDef": -50, "aDef": 20, "lvl": 44, "agiReq": 10, "defReq": 15, "sdPct": -10, "mdPct": 10, "expd": 8, "spd": 8, "fDamPct": 12, "id": 1903}, {"name": "Howler Hide", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 430, "fDef": -20, "eDef": 25, "lvl": 41, "strReq": 25, "mdPct": 20, "str": 10, "expd": 8, "spd": -5, "aDamPct": 16, "id": 1908}, {"name": "Inhibitor", "tier": "Fabled", "type": "chestplate", "category": "armor", "drop": "NEVER", "lvl": 100, "mr": -15, "sdPct": -300, "mdPct": -300, "spRegen": -150, "sdRaw": -800, "mdRaw": -1000, "id": 3650}, {"name": "Lazarus' Brace", "tier": "Rare", "quest": "Lazarus Pit", "category": "accessory", "drop": "never", "hp": -250, "lvl": 69, "hprPct": 10, "xpb": 5, "hprRaw": 40, "type": "bracelet", "id": 1904}, {"name": "Mask of the Dark Curse", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 70, "wDef": -5, "tDef": 10, "lvl": 15, "mr": -5, "sdPct": 6, "ls": 7, "ms": 5, "xpb": 10, "spRegen": -5, "id": 1906}, {"name": "Mummy's Rag", "tier": "Legendary", "type": "chestplate", "quest": "Wrath of the Mummy", "thorns": 5, "category": "armor", "drop": "never", "hp": 400, "aDef": 20, "eDef": 20, "lvl": 38, "ref": 5, "spd": -20, "atkTier": 1, "spRegen": -3, "id": 1907}, {"name": "Olux's Prized Bow", "tier": "Legendary", "type": "bow", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-100", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1905}, {"name": "Olux's Prized Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "55-60", "atkSpd": "FAST", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1911}, {"name": "Olux's Prized Spear", "tier": "Legendary", "type": "spear", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "65-90", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1910}, {"name": "Olux's Prized Relik", "tier": "Legendary", "type": "relik", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-64", "fDam": "0-0", "wDam": "40-48", "aDam": "0-0", "tDam": "0-0", "eDam": "70-72", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1909}, {"name": "Olux's Prized Wand", "tier": "Legendary", "type": "wand", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-40", "fDam": "0-0", "wDam": "15-30", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1915}, {"name": "Ominous Wind", "tier": "Rare", "quest": "One Thousand Meters Under", "thorns": 10, "category": "accessory", "drop": "never", "hp": -400, "aDef": 55, "eDef": 55, "lvl": 95, "sdPct": 6, "mdPct": -4, "xpb": 10, "spd": 11, "type": "necklace", "id": 1912}, {"name": "Orc Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 900, "lvl": 64, "id": 1913}, {"name": "Upgraded Orc Mask", "tier": "Unique", "type": "helmet", "quest": "A Fighting Species", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "slots": 3, "drop": "never", "hp": 1100, "lvl": 64, "mdPct": 10, "xpb": 20, "str": 5, "def": 4, "spd": -8, "hprRaw": 65, "id": 1914}, {"name": "Ornate Shadow Cloud", "set": "Ornate Shadow", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1916}, {"name": "Ornate Shadow Cowl", "set": "Ornate Shadow", "tier": "Fabled", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1917}, {"name": "Ornate Shadow Cover", "set": "Ornate Shadow", "tier": "Fabled", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1919}, {"name": "Ornate Shadow Garb", "set": "Ornate Shadow", "tier": "Fabled", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1922}, {"name": "Pendant of Prosperity", "tier": "Rare", "quest": "Fantastic Voyage", "category": "accessory", "drop": "never", "lvl": 90, "lb": 16, "hpBonus": -100, "eSteal": 5, "type": "necklace", "id": 1923}, {"name": "Paw", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "lvl": 70, "agi": 16, "spd": 30, "fDamPct": -6, "wDamPct": -6, "aDamPct": 24, "eDamPct": -18, "id": 1920}, {"name": "Phoenix Prince's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3900, "fDef": 125, "wDef": -125, "aDef": 125, "lvl": 90, "agiReq": 35, "defReq": 35, "hprPct": 27, "agi": 9, "def": 7, "spd": 15, "spRegen": 20, "hprRaw": 205, "fDefPct": 20, "id": 1921}, {"name": "Psychomend Vest", "tier": "Rare", "type": "chestplate", "quest": "Shattered Minds", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "lvl": 70, "hprPct": 19, "sdPct": -15, "mdPct": -5, "int": -3, "hpBonus": 600, "hprRaw": 100, "id": 1925}, {"name": "Purified Helmet of the Legends", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1450, "lvl": 68, "hprPct": 20, "sdPct": 12, "mdPct": 12, "xpb": 10, "lb": 10, "spRegen": 5, "id": 1927}, {"name": "Quartron's Eye", "tier": "Rare", "quest": "Rise of the Quartron", "category": "accessory", "drop": "never", "hp": -60, "lvl": 49, "expd": 10, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "ring", "id": 1924}, {"name": "Quicksand Crossers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 235, "wDef": -20, "aDef": 10, "eDef": 10, "lvl": 34, "agiReq": 15, "lb": 10, "agi": 7, "spd": 9, "eDefPct": 12, "id": 1928}, {"name": "Raging Wind", "tier": "Rare", "quest": "Beyond the Grave", "category": "accessory", "drop": "never", "fDef": -20, "aDef": 20, "lvl": 87, "agiReq": 40, "agi": 5, "spd": 12, "aDamPct": 9, "type": "ring", "id": 1929}, {"name": "Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-22", "fDam": "20-22", "wDam": "20-22", "aDam": "20-22", "tDam": "20-22", "eDam": "20-22", "atkSpd": "NORMAL", "lvl": 45, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1932}, {"name": "Restored Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 2100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 77, "mr": 5, "xpb": 15, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 8, "id": 1934}, {"name": "Randall's Leg Plating", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 450, "lvl": 38, "defReq": 45, "sdPct": -15, "mdPct": -8, "lb": 15, "str": 4, "def": 15, "fDefPct": 17, "id": 1930}, {"name": "Ring of Generosity", "tier": "Rare", "quest": "Memory Paranoia", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 10, "hpBonus": 350, "spRegen": 5, "type": "ring", "id": 1933}, {"name": "Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -280, "lvl": 75, "xpb": 8, "lb": 12, "eSteal": 8, "type": "ring", "id": 1935}, {"name": "Pirate Queen's Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -50, "lvl": 75, "xpb": 6, "lb": 9, "eSteal": 2, "type": "ring", "id": 1936}, {"name": "Royal Blazing Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "def": 3, "hpBonus": 650, "fDamPct": 5, "type": "necklace", "fixID": true, "id": 1939}, {"name": "Royal Cyclone Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "agi": 3, "spd": 10, "aDamPct": 5, "type": "necklace", "fixID": true, "id": 1937}, {"name": "Royal Dusty Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mdPct": 8, "xpb": 5, "lb": 5, "str": 3, "eDamPct": 5, "type": "necklace", "fixID": true, "id": 1938}, {"name": "Royal Shocking Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "thorns": 5, "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "dex": 3, "mdRaw": 25, "tDamPct": 5, "type": "necklace", "fixID": true, "id": 1941}, {"name": "Royal Stormy Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mr": 5, "xpb": 5, "lb": 5, "int": 3, "wDamPct": 5, "type": "necklace", "fixID": true, "id": 1943}, {"name": "Bandit's Bangle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -15, "lvl": 36, "lb": 6, "eSteal": 4, "type": "bracelet", "id": 1942, "set": "Bandit's"}, {"name": "Bandit's Ring", "tier": "Set", "category": "accessory", "drop": "never", "hp": -20, "lvl": 32, "lb": 7, "eSteal": 3, "type": "ring", "id": 1946, "set": "Bandit's"}, {"name": "Builder's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1947, "set": "Builder's"}, {"name": "Bandit's Locket", "tier": "Set", "category": "accessory", "drop": "never", "hp": -10, "lvl": 38, "lb": 4, "eSteal": 5, "type": "necklace", "id": 1945, "set": "Bandit's"}, {"name": "Builder's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1951, "set": "Builder's"}, {"name": "Builder's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1944, "set": "Builder's"}, {"name": "Bandit's Knuckle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -25, "lvl": 34, "lb": 3, "eSteal": 6, "type": "ring", "id": 1940, "set": "Bandit's"}, {"name": "GM's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1949, "set": "GM's"}, {"name": "GM's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1953, "set": "GM's"}, {"name": "GM's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1954, "set": "GM's"}, {"name": "Builder's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1950, "set": "Builder's"}, {"name": "GM's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1948, "set": "GM's"}, {"name": "Sandshooter", "tier": "Rare", "type": "bow", "thorns": 10, "category": "weapon", "slots": 1, "drop": "never", "nDam": "25-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 15, "lb": 15, "str": 9, "wDamPct": -15, "aDamPct": 7, "id": 1952}, {"name": "Sandslasher", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "strReq": 10, "agiReq": 10, "sdPct": -5, "spd": 4, "sdRaw": -20, "mdRaw": 52, "aDamPct": 12, "eDamPct": 10, "id": 1957}, {"name": "Santa Boots", "tier": "Rare", "type": "boots", "quest": "Meaningful Holiday", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "fDef": 20, "lvl": 33, "hprPct": 20, "xpb": 15, "lb": 10, "hpBonus": 55, "aDefPct": 10, "id": 1955}, {"name": "Santa's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 260, "lvl": 32, "xpb": 15, "lb": 15, "hpBonus": 40, "hprRaw": 15, "id": 1958}, {"name": "Seekers Aid", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1959}, {"name": "Shameful Greaves", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "poison": 285, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "ls": 75, "lb": 30, "eSteal": 5, "id": 1961}, {"name": "Sodeta Boots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 3, "drop": "never", "hp": 1150, "lvl": 66, "hprPct": 14, "mr": 10, "sdPct": 22, "ls": 50, "xpb": 24, "id": 1965}, {"name": "Skeletal Legs", "tier": "Rare", "type": "leggings", "quest": "Pit of the Dead", "poison": 41, "category": "armor", "slots": 1, "drop": "never", "hp": 144, "lvl": 23, "ls": 11, "ms": 5, "def": -3, "hpBonus": -30, "id": 1962}, {"name": "Sound Proof Earmuff", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 1500, "tDef": 50, "eDef": -50, "lvl": 73, "id": 1964}, {"name": "Santa Hat", "tier": "Rare", "type": "helmet", "quest": "Craftmas Chaos", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "lvl": 30, "hprPct": 30, "xpb": 15, "lb": 15, "hpBonus": 25, "wDefPct": 10, "id": 1956}, {"name": "Shadow Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "1-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "dexReq": 10, "lb": 15, "dex": 10, "agi": 4, "spd": 10, "hpBonus": -60, "id": 1963}, {"name": "Spiketop", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NEVER", "restrict": "Untradable", "fDef": 3, "lvl": 9, "hpBonus": 92, "id": 3546}, {"name": "Sunblight Boots", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1650, "wDef": 80, "aDef": -90, "tDef": -90, "eDef": 100, "lvl": 76, "id": 1968}, {"name": "Santa's Pants", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 250, "wDef": 25, "tDef": -20, "lvl": 31, "hprPct": 20, "xpb": 10, "lb": 15, "hpBonus": 35, "fDefPct": 5, "id": 1960}, {"name": "Temporal Cage", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 20, "ms": 10, "spd": 10, "hprRaw": -7, "sdRaw": 20, "mdRaw": 26, "tDamPct": 10, "id": 1967}, {"name": "Spear of Testiness", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "90-90", "fDam": "1-10", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 3651}, {"name": "The Juggernaut", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "hp": 275, "fDef": 10, "wDef": -10, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 33, "defReq": 20, "lb": 10, "def": 9, "spd": -15, "hpBonus": 77, "id": 1969}, {"name": "The Queen's Headpiece", "tier": "Rare", "type": "helmet", "quest": "Royal Trials", "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "aDef": 100, "tDef": 75, "lvl": 98, "dexReq": 25, "agiReq": 50, "ms": 5, "agi": 9, "spd": 19, "eSteal": 7, "mdRaw": 260, "aDamPct": 12, "tDamPct": 12, "fDefPct": -25, "eDefPct": -25, "id": 1966}, {"name": "Thoracic", "tier": "Rare", "type": "chestplate", "quest": "The Sewers of Ragni", "category": "armor", "slots": 1, "drop": "never", "hp": 45, "aDef": -2, "tDef": 5, "lvl": 9, "xpb": 7, "lb": -2, "dex": 7, "mdRaw": 13, "tDamPct": 6, "id": 1971}, {"name": "Thunder Relic Dagger", "displayName": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "22-99", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "22-99", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 30, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 1972}, {"name": "Thunder Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "dexReq": 15, "ms": 5, "xpb": 15, "lb": 15, "dex": 5, "mdRaw": 59, "tDamPct": 20, "tDefPct": 10, "id": 1974}, {"name": "Treasure Boots", "tier": "Unique", "type": "boots", "quest": "Underwater", "category": "armor", "slots": 1, "drop": "never", "hp": 24, "lvl": 7, "xpb": 5, "lb": 20, "id": 1973}, {"name": "Trick", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": -10, "expd": 10, "type": "ring", "id": 1975, "set": "Hallowynn 2016"}, {"name": "Treat", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": 10, "expd": -10, "type": "ring", "id": 1970, "set": "Hallowynn 2016"}, {"name": "Vandalizer", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "50-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 10, "ls": 39, "lb": 15, "expd": 10, "eSteal": 15, "wDefPct": -15, "id": 1980}, {"name": "Troms Kid Badge", "tier": "Rare", "quest": "Out of my Mind\u058e", "category": "accessory", "drop": "never", "lvl": 63, "xpb": 4, "lb": 7, "spd": 7, "spRegen": 4, "hprRaw": 19, "type": "necklace", "id": 1976}, {"name": "Vindicator", "tier": "Fabled", "quest": "The Mercenary", "majorIds": ["MAGNET"], "category": "accessory", "drop": "never", "hp": 50, "lvl": 30, "xpb": 7, "lb": 7, "type": "bracelet", "id": 1979}, {"name": "Waist Apron", "tier": "Rare", "type": "leggings", "quest": "Infested Plants", "thorns": 8, "category": "armor", "drop": "NEVER", "hp": 30, "lvl": 7, "xpb": 5, "expd": 8, "id": 3547}, {"name": "Dodegar's Ultimate Weapon", "tier": "Legendary", "type": "dagger", "quest": "The Ultimate Weapon", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "id": 1978}, {"name": "Water Relic Dagger", "displayName": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 1977}, {"name": "Water Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-60", "fDam": "0-0", "wDam": "50-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "intReq": 15, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 5, "wDamPct": 10, "wDefPct": 20, "id": 1982}, {"name": "Wynnter Fair 2017 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1981}, {"name": "Wynnter Fair 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1983}, {"name": "Wynnterfest 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 2109}, {"name": "Nacreous", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 51, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "xpb": 9, "lb": 9, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1988}, {"name": "Yellow Content Cap of Fame", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1986}, {"name": "Necklace of a Thousand Storms", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -300, "aDef": 60, "lvl": 98, "agiReq": 50, "hprPct": -20, "str": -5, "agi": 10, "spd": 15, "fDamPct": -15, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "type": "necklace", "id": 1985}, {"name": "Naragath's Hoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "fDef": 60, "wDef": -100, "tDef": 60, "lvl": 58, "dexReq": 30, "defReq": 30, "dex": 8, "int": -6, "def": 8, "expd": 10, "spRegen": -20, "fDamPct": 15, "wDamPct": -20, "tDamPct": 15, "wDefPct": -20, "id": 1991}, {"name": "Naga Viper", "tier": "Rare", "type": "leggings", "poison": 275, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "lvl": 56, "strReq": 10, "agiReq": 10, "agi": 9, "spd": 9, "hpBonus": -125, "eSteal": 2, "eDamPct": 12, "aDefPct": -10, "id": 1984}, {"name": "Namazu", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "240-320", "fDam": "0-0", "wDam": "328-455", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 30, "intReq": 25, "str": 10, "spd": -7, "atkTier": -3, "mdRaw": 350, "eDamPct": 18, "tDefPct": -10, "id": 1989}, {"name": "Narcissist", "tier": "Fabled", "type": "relik", "majorIds": ["GEOCENTRISM"], "thorns": 50, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "225-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "600-600", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 70, "sdPct": -20, "mdPct": -20, "ref": 65, "int": -5, "spd": 30, "hprRaw": 175, "eDefPct": 25, "id": 3648}, {"name": "Narima Pasukan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 500, "lvl": 48, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 9, "wDamPct": 9, "aDamPct": 9, "tDamPct": 9, "eDamPct": 9, "id": 1994}, {"name": "Nature's Gift", "tier": "Legendary", "poison": 240, "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 20, "aDef": 20, "eDef": 20, "lvl": 61, "strReq": 30, "intReq": 20, "xpb": 5, "spRegen": 8, "hprRaw": 35, "fDefPct": -18, "type": "necklace", "id": 1987}, {"name": "Nebulous", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 99, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 9, "sdRaw": 45, "type": "bracelet", "id": 1995}, {"name": "Needle Cuff", "tier": "Unique", "thorns": 11, "category": "accessory", "drop": "lootchest", "lvl": 81, "dexReq": 20, "mdRaw": 13, "type": "bracelet", "id": 1993}, {"name": "Cancer", "displayName": "Necrosis", "tier": "Legendary", "type": "helmet", "poison": 4000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "aDef": -150, "tDef": 100, "lvl": 98, "dexReq": 120, "sdPct": -1000, "mdPct": -1000, "ls": 385, "ms": 10, "atkTier": 3, "mdRaw": -1000, "id": 1990}, {"name": "Neolithic", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "lvl": 20, "strReq": 5, "defReq": 10, "hprPct": 20, "sdPct": -10, "mdPct": 5, "str": 3, "def": 7, "hpBonus": 80, "eDamPct": 12, "id": 1997}, {"name": "Nemract's Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "lb": 5, "id": 1992}, {"name": "Neodymium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 25, "tDef": 6, "eDef": -2, "lvl": 6, "hprRaw": 4, "sdRaw": 4, "mdRaw": 5, "id": 1998}, {"name": "Nemract's Ruin", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 20, "aDef": -10, "tDef": -10, "eDef": 20, "lvl": 27, "strReq": 10, "intReq": 5, "sdPct": 12, "int": 7, "mdRaw": 52, "fDamPct": -6, "wDamPct": 10, "tDamPct": -6, "eDamPct": 12, "id": 1999}, {"name": "Nemract's Rage", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 25, "mr": 10, "sdPct": 23, "tDefPct": -25, "id": 1996}, {"name": "Neon", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "bracelet", "id": 2001}, {"name": "Nephilim", "tier": "Rare", "type": "helmet", "sprint": 16, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "lvl": 88, "dexReq": 45, "agiReq": 55, "ls": 180, "ms": 10, "ref": 20, "dex": 8, "agi": 7, "spd": 20, "atkTier": 1, "aDamPct": 15, "tDamPct": 15, "id": 2002}, {"name": "Nepta Floodbringer", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "70-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 80, "mr": 5, "sdPct": 20, "int": 13, "hpBonus": -1750, "wDamPct": 15, "tDamPct": -100, "tDefPct": -30, "id": 2000}, {"name": "Nerium Great Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "150-230", "tDam": "0-0", "eDam": "150-230", "atkSpd": "VERY_SLOW", "lvl": 85, "strReq": 35, "agiReq": 35, "mdPct": 15, "str": 10, "spd": -16, "mdRaw": 220, "aDefPct": 12, "eDefPct": 12, "id": 2014}, {"name": "Nesaak's Shadow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 730, "wDef": 50, "tDef": -30, "lvl": 54, "dexReq": 10, "agiReq": 10, "ls": 65, "lb": 8, "eSteal": 5, "aDamPct": 5, "tDamPct": 5, "id": 2003}, {"name": "Nesaak's Will", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "46-68", "fDam": "0-0", "wDam": "21-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "strReq": 10, "intReq": 10, "xpb": 11, "spd": -5, "spRegen": 3, "eDamPct": 10, "wDefPct": 10, "id": 2004}, {"name": "Nerium Long Spear", "tier": "Unique", "type": "spear", "poison": 360, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "77-97", "tDam": "0-0", "eDam": "77-97", "atkSpd": "VERY_SLOW", "lvl": 59, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 10, "str": 8, "spd": -12, "aDefPct": 10, "eDefPct": 10, "id": 2005}, {"name": "Nerium Old Spear", "tier": "Unique", "type": "spear", "poison": 180, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "24-30", "tDam": "0-0", "eDam": "24-30", "atkSpd": "VERY_SLOW", "lvl": 39, "strReq": 15, "agiReq": 15, "sdPct": -10, "mdPct": 5, "str": 5, "spd": -8, "aDefPct": 8, "eDefPct": 8, "id": 2006}, {"name": "Nether's Deep", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "40-50", "wDam": "0-0", "aDam": "0-0", "tDam": "20-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "dexReq": 25, "defReq": 35, "hprPct": 23, "ls": 225, "ms": -5, "hpBonus": 1154, "spRegen": -8, "wDamPct": -20, "tDamPct": 12, "fDefPct": 12, "wDefPct": -20, "id": 2010}, {"name": "Nether's Reach", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 100, "wDef": -80, "tDef": 100, "eDef": -120, "lvl": 95, "dexReq": 20, "defReq": 40, "hprPct": 20, "str": 8, "hpBonus": 450, "hprRaw": 140, "mdRaw": 175, "fDamPct": 7, "wDamPct": -15, "tDamPct": 7, "id": 2008}, {"name": "Nether's Scar", "tier": "Legendary", "type": "boots", "poison": 525, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 140, "aDef": -140, "tDef": 140, "eDef": -140, "lvl": 95, "dexReq": 50, "defReq": 50, "hprPct": 140, "mdPct": 10, "dex": 12, "def": 12, "expd": 15, "atkTier": 1, "hprRaw": -571, "fDamPct": 10, "tDamPct": 10, "id": 2007}, {"name": "Neuron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2150, "wDef": 100, "tDef": -150, "lvl": 95, "dexReq": 50, "intReq": 20, "mr": 10, "sdPct": 20, "dex": 7, "wDamPct": 11, "tDamPct": 11, "id": 2011}, {"name": "Neutrino", "tier": "Rare", "type": "leggings", "poison": -3000, "thorns": 23, "category": "armor", "slots": 6, "drop": "NORMAL", "hp": 3575, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 30, "ref": 23, "expd": -100, "fDefPct": 23, "wDefPct": 23, "aDefPct": 23, "tDefPct": 23, "eDefPct": 23, "id": 2015}, {"name": "Nettle", "tier": "Unique", "poison": 40, "category": "accessory", "drop": "lootchest", "lvl": 25, "strReq": 5, "hprPct": -4, "eDamPct": 4, "type": "necklace", "id": 2009}, {"name": "Nehza", "displayName": "Nezha", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": -70, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 83, "defReq": 90, "fDamPct": 7, "type": "ring", "id": 2013}, {"name": "Niflheim", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "110-120", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "intReq": 50, "mr": 10, "ms": -10, "ref": 20, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 2012}, {"name": "NightMail", "displayName": "Nightmail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": -3, "aDef": 3, "tDef": 3, "eDef": -3, "lvl": 16, "dexReq": 3, "agiReq": 3, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "aDamPct": 5, "tDamPct": 5, "id": 2016}, {"name": "Night Rush", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "182-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "agiReq": 50, "agi": 30, "spd": 25, "aDamPct": 35, "eDamPct": -20, "fDefPct": 20, "eDefPct": -20, "id": 2019}, {"name": "Nighthawk", "tier": "Fabled", "type": "helmet", "majorIds": ["HAWKEYE"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "tDef": -125, "lvl": 94, "classReq": "Archer", "mdPct": -20, "spd": 12, "hpBonus": -1000, "sdRaw": 175, "id": 2021}, {"name": "Nightlife", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-94", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 32, "defReq": 32, "hprPct": -20, "mdPct": 11, "ls": 240, "def": 11, "spd": 11, "spRegen": 11, "fDamPct": 35, "id": 2025}, {"name": "NightVest", "displayName": "Nightvest", "tier": "Unique", "type": "chestplate", "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2150, "fDef": -100, "aDef": 175, "lvl": 93, "agiReq": 50, "agi": 20, "def": -15, "spd": 15, "sprintReg": 10, "id": 2018}, {"name": "Nimble Fingers", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 41, "dexReq": 25, "mdPct": -4, "lb": 5, "dex": 4, "eSteal": 4, "type": "bracelet", "id": 2020}, {"name": "Nightshade", "tier": "Unique", "poison": 400, "category": "accessory", "drop": "lootchest", "fDef": -20, "lvl": 82, "hprRaw": -15, "type": "ring", "id": 2028}, {"name": "Nipun", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 27, "lvl": 7, "sdPct": 5, "mdPct": 5, "dex": 4, "id": 2029}, {"name": "Nightling", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "tDef": 80, "eDef": -100, "lvl": 76, "dexReq": 35, "mdPct": 5, "dex": 8, "agi": 3, "spd": 12, "mdRaw": 125, "tDamPct": 8, "eDamPct": -20, "id": 2022}, {"name": "Nimbus", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "33-88", "aDam": "55-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "intReq": 25, "agiReq": 30, "mr": 5, "xpb": 8, "int": 5, "agi": 8, "spd": 12, "fDamPct": -10, "aDamPct": 10, "id": 2024}, {"name": "Nivla's Arch", "tier": "Unique", "type": "bow", "poison": 250, "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-136", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-96", "atkSpd": "VERY_SLOW", "lvl": 45, "spd": -10, "eDamPct": 5, "id": 2026}, {"name": "Nitre", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "fDef": -20, "wDef": -30, "lvl": 55, "dexReq": 15, "defReq": 30, "hprPct": -15, "sdPct": 11, "mdPct": 5, "def": 5, "expd": 45, "wDamPct": -6, "id": 2023}, {"name": "Noble Phantasm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "85-145", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "defReq": 55, "def": 30, "hpBonus": 2700, "hprRaw": 153, "fDefPct": -60, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2027}, {"name": "Noise Stream", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-1", "wDam": "1-1", "aDam": "1-160", "tDam": "1-1", "eDam": "1-1", "atkSpd": "VERY_FAST", "lvl": 94, "agiReq": 55, "ls": 210, "ms": 5, "fDamPct": 10, "wDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fDefPct": -10, "wDefPct": -10, "tDefPct": -10, "eDefPct": -10, "id": 2030}, {"name": "Noisemaker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": -15, "aDef": 25, "eDef": -15, "lvl": 51, "agiReq": 35, "sdPct": 9, "mdPct": 9, "xpb": 12, "spd": 5, "hpBonus": -120, "aDamPct": 13, "id": 2031}, {"name": "Noctilucent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "15-25", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "intReq": 17, "agiReq": 17, "sdPct": 6, "mdPct": -8, "spd": 8, "wDamPct": 6, "aDamPct": 6, "id": 2033}, {"name": "Nordstrom", "tier": "Unique", "type": "wand", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-38", "atkSpd": "SLOW", "lvl": 49, "strReq": 15, "mdPct": 9, "agi": 5, "spd": 7, "aDamPct": 12, "wDefPct": -8, "id": 2045}, {"name": "Nightstar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 45, "mr": 5, "sdPct": 12, "xpb": 8, "spRegen": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "id": 2017}, {"name": "Nucleoken", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "sdPct": 5, "xpb": 8, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 2034}, {"name": "Nuance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -50, "eDef": -50, "lvl": 90, "dexReq": 55, "agiReq": 55, "mr": 5, "sdPct": 22, "ms": 5, "dex": 8, "agi": 8, "spd": 15, "mdRaw": 190, "aDefPct": -25, "tDefPct": -25, "sprintReg": 12, "id": 2032}, {"name": "Noun", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-360", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 64, "dexReq": 50, "ms": 5, "str": -7, "dex": 9, "tDamPct": 16, "eDamPct": -32, "id": 2037}, {"name": "Breakdown", "displayName": "Nychthemeron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2375, "wDef": -50, "tDef": -50, "eDef": -50, "lvl": 93, "strReq": 65, "dexReq": 65, "sdPct": 10, "mdPct": 70, "ls": 190, "ms": 10, "str": 10, "dex": 10, "atkTier": -10, "spRegen": -15, "tDamPct": 15, "eDamPct": 15, "id": 3595}, {"name": "Nutrition", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "necklace", "id": 2035}, {"name": "Nymeria", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "dexReq": 5, "agi": 3, "spd": 5, "id": 2040}, {"name": "Oak Wood Relik", "tier": "Normal", "type": "relik", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2038}, {"name": "Oak Wood Spear", "tier": "Normal", "type": "spear", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2041}, {"name": "Oak Wood Shears", "displayName": "Oak Wood Dagger", "tier": "Normal", "type": "dagger", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 2039}, {"name": "Oak Wood Bow", "tier": "Normal", "type": "bow", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2036}, {"name": "Oasis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-37", "fDam": "0-0", "wDam": "108-128", "aDam": "0-0", "tDam": "0-0", "eDam": "108-128", "atkSpd": "VERY_SLOW", "lvl": 51, "strReq": 18, "intReq": 18, "mr": 5, "mdPct": -12, "lb": 12, "spd": -12, "hprRaw": 24, "id": 2044}, {"name": "Oak Wood Stick", "displayName": "Oak Wood Wand", "tier": "Normal", "type": "wand", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2042}, {"name": "Obsidian", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "38-52", "atkSpd": "SLOW", "lvl": 41, "strReq": 30, "sdPct": -5, "mdPct": 8, "lb": 8, "str": 5, "spd": -6, "fDamPct": -20, "eDamPct": 8, "id": 2043}, {"name": "Ocean Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-20", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "intReq": 25, "mr": 5, "sdPct": 12, "def": -3, "sdRaw": 25, "wDamPct": 5, "tDamPct": -10, "id": 2048}, {"name": "Octahedron", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "10-40", "wDam": "15-35", "aDam": "5-45", "tDam": "0-50", "eDam": "20-30", "atkSpd": "FAST", "lvl": 91, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 16, "mdPct": -32, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "id": 2049}, {"name": "Obsidian Spire", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "105-115", "fDam": "140-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-135", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 20, "defReq": 25, "mdPct": 8, "spd": -8, "hpBonus": 500, "fDefPct": 36, "wDefPct": -24, "eDefPct": 18, "id": 2046}, {"name": "Ocelot Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 27, "mr": -5, "sdPct": 8, "mdPct": 8, "spd": 12, "id": 2047}, {"name": "October Fires", "tier": "Legendary", "type": "relik", "thorns": 55, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "730-740", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 70, "defReq": 65, "ls": 130, "ms": 5, "def": 12, "expd": 40, "hpBonus": -828, "hprRaw": 90, "wDamPct": -30, "id": 2050}, {"name": "Odyssey", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 15, "ls": -75, "ms": -5, "spd": 15, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "id": 2051}, {"name": "Ogre Faceplate", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "aDef": -110, "eDef": 75, "lvl": 83, "strReq": 30, "dexReq": 25, "mdPct": 15, "str": 9, "atkTier": -4, "mdRaw": 750, "tDamPct": 5, "eDamPct": 5, "id": 2053}, {"name": "Ohms' Wish", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 25, "agiReq": 25, "sdPct": 15, "ms": 5, "dex": 9, "agi": 7, "spd": 10, "spRegen": 10, "aDamPct": 20, "eDamPct": -20, "aDefPct": 30, "id": 2052}, {"name": "Oktavist", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "190-250", "fDam": "445-495", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 50, "mdPct": 10, "def": 16, "expd": 20, "spd": -8, "hprRaw": 150, "mdRaw": 560, "tDefPct": -15, "id": 2054}, {"name": "Okit", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 55, "fDef": 10, "wDef": -2, "lvl": 42, "fDamPct": 6, "type": "ring", "id": 2056}, {"name": "Omnitread Boots", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 90, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 15, "agiReq": 10, "spd": 20, "id": 2062}, {"name": "Old Keeper's Ring", "tier": "Legendary", "majorIds": ["GREED"], "category": "accessory", "drop": "lootchest", "hp": -109, "lvl": 82, "lb": 22, "hpBonus": -300, "hprRaw": -50, "type": "ring", "id": 2055}, {"name": "Old Maple Spear", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "57-80", "atkSpd": "SLOW", "lvl": 64, "strReq": 35, "mdPct": 10, "mdRaw": 105, "eDefPct": 15, "id": 2060}, {"name": "Olive", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": -30, "wDef": 40, "eDef": 40, "lvl": 98, "strReq": 40, "intReq": 30, "sdPct": 9, "int": 5, "eDamPct": 6, "type": "ring", "id": 2058}, {"name": "Oni Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 240, "wDef": -15, "tDef": 20, "lvl": 30, "hprPct": -15, "mdPct": 10, "ls": 19, "ms": 5, "mdRaw": 39, "tDamPct": 8, "wDefPct": -15, "id": 2059}, {"name": "Omega", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "32-116", "eDam": "32-116", "atkSpd": "SUPER_FAST", "lvl": 93, "strReq": 40, "dexReq": 40, "hprPct": -40, "sdPct": 15, "mdPct": 15, "int": -11, "agi": -11, "def": -11, "expd": -50, "sdRaw": 115, "mdRaw": 150, "id": 2057}, {"name": "One Thousand Voices", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-155", "fDam": "0-0", "wDam": "0-0", "aDam": "145-155", "tDam": "145-155", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 44, "agiReq": 44, "dex": 8, "agi": 8, "expd": 100, "hpBonus": -1250, "sdRaw": 150, "fDamPct": 45, "wDamPct": -25, "eDamPct": -25, "spPct3": -23, "id": 2063}, {"name": "Onion Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 12, "xpb": 7, "lb": 7, "type": "ring", "id": 2064}, {"name": "Opalite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "lvl": 62, "intReq": 45, "mr": 5, "sdPct": 10, "xpb": 10, "ref": 10, "spRegen": 10, "fDefPct": -5, "wDefPct": -2, "aDefPct": -5, "tDefPct": -5, "eDefPct": -5, "id": 2066}, {"name": "Ophiuchus", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "fDef": 100, "wDef": 100, "eDef": -200, "lvl": 98, "intReq": 70, "defReq": 70, "mr": 10, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "tDamPct": -20, "tDefPct": -40, "eDefPct": -15, "id": 2065}, {"name": "Onyx", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-70", "fDam": "10-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-35", "atkSpd": "SLOW", "lvl": 51, "strReq": 15, "defReq": 15, "mdPct": 8, "str": 5, "def": 5, "hpBonus": 300, "wDefPct": -12, "id": 2067}, {"name": "Orient", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-130", "wDam": "85-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "intReq": 30, "defReq": 35, "hprPct": 10, "mr": 10, "sdPct": -15, "mdPct": -15, "xpb": 15, "hprRaw": 70, "id": 2070}, {"name": "Opulenity", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 11, "xpb": 10, "lb": 25, "eSteal": 5, "id": 2068}, {"name": "Ormus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": -75, "aDef": 55, "tDef": 55, "eDef": -45, "lvl": 61, "dexReq": 45, "agiReq": 25, "sdPct": 6, "xpb": 8, "spd": 12, "sdRaw": 55, "aDamPct": 8, "tDamPct": 10, "id": 2086}, {"name": "Ormrod's Isolation", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": 5, "eDef": 10, "lvl": 33, "strReq": 5, "agiReq": 8, "mdPct": 6, "spd": 8, "hprRaw": -7, "aDamPct": 4, "type": "bracelet", "id": 2069}, {"name": "Orographine", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1350, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 73, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": -15, "mdPct": -15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": -12, "hpBonus": 400, "id": 2071}, {"name": "Ornithopter", "tier": "Fabled", "type": "helmet", "majorIds": ["FREERUNNER"], "sprint": -115, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "lvl": 86, "strReq": 35, "agiReq": 70, "str": 15, "spd": 20, "mdRaw": 330, "sprintReg": 320, "id": 3608}, {"name": "Ouroboros", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "lvl": 86, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "ls": 110, "ms": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2072}, {"name": "Outburst", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -55, "eDef": -55, "lvl": 72, "dexReq": 45, "agiReq": 45, "mr": -5, "sdPct": 13, "mdPct": 13, "dex": 9, "agi": 9, "aDamPct": 16, "tDamPct": 16, "id": 2108}, {"name": "Outrage", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": 100, "lvl": 86, "strReq": 70, "mdPct": 50, "ls": 210, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": 5, "id": 3619}, {"name": "Overcharger", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "325-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "dexReq": 70, "ls": -220, "ms": 20, "expd": 25, "spd": 10, "hpBonus": -700, "id": 2073}, {"name": "Overdrive", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "104-112", "aDam": "0-0", "tDam": "104-112", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 44, "intReq": 44, "sdPct": 1150, "mdPct": -35, "ms": 5, "atkTier": 7, "hprRaw": -100, "sdRaw": 940, "wDamPct": 10, "tDamPct": 10, "id": 2074}, {"name": "Overclocker", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "39-69", "aDam": "0-0", "tDam": "39-69", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 68, "dexReq": 45, "intReq": 45, "sdPct": 20, "ms": 10, "fDefPct": -21, "aDefPct": -21, "eDefPct": -21, "id": 2076}, {"name": "Overgrown", "tier": "Rare", "type": "wand", "poison": 650, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "NORMAL", "lvl": 96, "strReq": 55, "mr": 5, "str": 10, "spd": -25, "fDamPct": -40, "eDamPct": 19, "eDefPct": 15, "id": 2075}, {"name": "Oxalate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-0", "wDam": "20-44", "aDam": "0-0", "tDam": "0-0", "eDam": "20-44", "atkSpd": "SLOW", "lvl": 45, "strReq": 20, "intReq": 20, "hprPct": 16, "str": 5, "int": 5, "wDamPct": 9, "tDamPct": -2, "aDefPct": -15, "eDefPct": 9, "id": 2077}, {"name": "Oxford", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "hprPct": -15, "xpb": 12, "lb": 10, "ref": 10, "mdRaw": 39, "tDamPct": 10, "id": 2079}, {"name": "Overly Ironed Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 610, "lvl": 51, "lb": 10, "expd": 10, "id": 2078}, {"name": "Oxidation", "tier": "Unique", "type": "leggings", "poison": 45, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 27, "agiReq": 10, "hprPct": -10, "xpb": 3, "spd": 8, "aDamPct": 6, "id": 2080}, {"name": "Oyster", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 15, "lvl": 45, "intReq": 15, "lb": 6, "wDamPct": 5, "wDefPct": 4, "type": "necklace", "id": 2091}, {"name": "Ozoth's Breath", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 25, "lvl": 49, "defReq": 25, "dex": 5, "type": "ring", "id": 2083}, {"name": "Pacemaker", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": -10, "wDef": -10, "aDef": -10, "tDef": 50, "eDef": -20, "lvl": 51, "dexReq": 20, "xpb": 8, "spd": 6, "hpBonus": 155, "tDamPct": 15, "tDefPct": 12, "id": 2084}, {"name": "Pacifist", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 20, "eDef": 45, "lvl": 74, "intReq": 20, "agiReq": 25, "hprPct": 15, "mr": 10, "ls": -185, "ms": -10, "lb": 12, "spd": 21, "id": 2082}, {"name": "Paladin's Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-22", "fDam": "33-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-55", "atkSpd": "VERY_FAST", "lvl": 69, "strReq": 20, "defReq": 20, "str": 8, "def": 8, "mdRaw": 57, "wDefPct": -12, "id": 2085}, {"name": "Palette", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-90", "fDam": "15-15", "wDam": "15-15", "aDam": "15-15", "tDam": "15-15", "eDam": "15-15", "atkSpd": "NORMAL", "lvl": 59, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "spd": 10, "hprRaw": 50, "sdRaw": 50, "mdRaw": 65, "id": 2095}, {"name": "Pandemic", "tier": "Rare", "type": "leggings", "poison": 575, "category": "armor", "drop": "NORMAL", "hp": 1650, "lvl": 71, "hprPct": -25, "mr": -5, "ls": 135, "ms": 5, "expd": 10, "id": 2087}, {"name": "Pandemonium", "tier": "Legendary", "quest": "???\u058e", "majorIds": ["MADNESS"], "category": "accessory", "drop": "lootchest", "hp": -300, "fDef": -200, "wDef": -200, "aDef": -200, "tDef": -200, "eDef": -200, "lvl": 99, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 16, "mdPct": 16, "ls": -60, "spd": 7, "hpBonus": -1000, "spRegen": -120, "sdRaw": 55, "mdRaw": 35, "type": "bracelet", "id": 2089}, {"name": "Pangea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "80-110", "aDam": "0-0", "tDam": "0-0", "eDam": "80-110", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 18, "intReq": 18, "sdPct": 12, "mdPct": 12, "spd": -10, "wDamPct": 8, "eDamPct": 8, "id": 2090}, {"name": "Panic Attack", "tier": "Fabled", "majorIds": ["FREERUNNER"], "category": "accessory", "drop": "lootchest", "hp": -400, "lvl": 78, "strReq": 25, "dexReq": 30, "ls": 105, "str": 2, "dex": 3, "spd": 12, "spRegen": -12, "type": "bracelet", "id": 3582}, {"name": "Panorama", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 150, "lvl": 30, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 2088}, {"name": "Papyrus", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1000, "fDef": -50, "aDef": 90, "lvl": 77, "mr": 10, "xpb": 30, "sdRaw": 140, "id": 2094}, {"name": "Paradise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "xpb": 5, "lb": 5, "id": 2093}, {"name": "Ozone", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "21-43", "tDam": "0-64", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 51, "dexReq": 20, "agiReq": 20, "def": -10, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fDefPct": -20, "tDefPct": 20, "id": 2081}, {"name": "One For All", "displayName": "Paradox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2200, "fDef": -250, "aDef": 100, "tDef": -250, "eDef": 100, "lvl": 98, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "hprPct": -150, "sdPct": 24, "ls": 235, "ms": 20, "str": 5, "dex": 5, "int": -99, "agi": 5, "def": 5, "mdRaw": 260, "fDefPct": 50, "aDefPct": -50, "tDefPct": 50, "eDefPct": -50, "id": 2061}, {"name": "Paradigm Shift", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-17", "wDam": "11-17", "aDam": "11-17", "tDam": "11-17", "eDam": "11-17", "atkSpd": "FAST", "lvl": 54, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 2096}, {"name": "Parang", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "90-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "strReq": 30, "agiReq": 30, "str": 8, "spd": 9, "sdRaw": -100, "eDamPct": 15, "fDefPct": -20, "id": 2097}, {"name": "Paragon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-74", "fDam": "0-0", "wDam": "23-32", "aDam": "17-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 62, "intReq": 20, "agiReq": 20, "sdPct": 12, "mdPct": -26, "spd": 14, "tDefPct": -15, "id": 2101}, {"name": "Passus Lux", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": 120, "tDef": 120, "eDef": -110, "lvl": 73, "dexReq": 25, "intReq": 25, "mr": 10, "ms": 5, "ref": 20, "spd": -5, "spRegen": 8, "fDamPct": -10, "tDamPct": 15, "wDefPct": 30, "eDefPct": -10, "id": 2098}, {"name": "Particle Plating", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "wDef": 80, "aDef": -40, "tDef": 60, "eDef": -100, "lvl": 73, "dexReq": 40, "intReq": 45, "ms": 5, "dex": 7, "int": 7, "sdRaw": 85, "aDamPct": -12, "eDefPct": -12, "id": 2099}, {"name": "Pebble Mesh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 190, "aDef": -10, "eDef": 15, "lvl": 37, "strReq": 15, "mdPct": 10, "xpb": 11, "str": 5, "mdRaw": 49, "eDamPct": 7, "wDefPct": -5, "id": 2104}, {"name": "Pedometer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 75, "agi": 8, "type": "bracelet", "id": 3593}, {"name": "Pass Band", "tier": "Unique", "poison": 475, "thorns": 10, "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "ref": 10, "type": "bracelet", "id": 2100}, {"name": "Penance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1450, "fDef": 50, "wDef": 50, "lvl": 75, "hprPct": 12, "mr": 5, "sdPct": -15, "mdPct": -15, "xpb": 20, "spRegen": 12, "hprRaw": 50, "id": 2105}, {"name": "Pencuri", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "defReq": 35, "ls": 340, "def": 13, "hpBonus": 1400, "eSteal": 5, "fDamPct": 15, "id": 2103}, {"name": "Pelier", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "aDef": -40, "tDef": 20, "lvl": 42, "ls": 47, "lb": 25, "spRegen": 10, "mdRaw": 80, "eDefPct": 20, "id": 2102}, {"name": "Perfumed Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": -20, "lvl": 32, "intReq": 2, "wDamPct": 15, "id": 2111}, {"name": "Perun's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -75, "aDef": 50, "tDef": 50, "lvl": 59, "dexReq": 40, "agiReq": 50, "mr": -5, "sdPct": 8, "dex": 8, "agi": 8, "spd": 14, "fDamPct": -52, "aDamPct": 14, "tDamPct": 14, "fDefPct": -26, "id": 2106}, {"name": "Petrichor", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 98, "strReq": 30, "agiReq": 30, "sdPct": 12, "ms": 10, "str": 7, "agi": 7, "wDamPct": 10, "aDamPct": 10, "eDamPct": 10, "id": 2110}, {"name": "Petrified Horror", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "265-390", "eDam": "245-325", "atkSpd": "VERY_SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "mr": -20, "sdPct": 58, "mdPct": -480, "ms": 15, "str": 13, "expd": 60, "spd": -38, "mdRaw": 1050, "aDefPct": -35, "id": 2112}, {"name": "Phalanx", "tier": "Rare", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": 75, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 78, "defReq": 55, "agi": -4, "def": 13, "spd": -15, "id": 2115}, {"name": "Petrified Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 68, "defReq": 25, "hprPct": 9, "mdPct": -4, "def": 7, "spd": -5, "hpBonus": 500, "hprRaw": 65, "fDefPct": 25, "eDefPct": 25, "id": 2107}, {"name": "Phantasmagoria", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2100, "fDef": -150, "aDef": 70, "tDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "mr": 5, "sdPct": 31, "ls": -355, "ms": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": -99, "mdRaw": 200, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "fDefPct": -30, "id": 3584}, {"name": "Petrified Stick", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "str": 4, "spd": -5, "id": 2113}, {"name": "Philophilia", "tier": "Rare", "type": "leggings", "thorns": -30, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3400, "lvl": 99, "hprPct": 25, "sdPct": -15, "mdPct": -15, "ls": 245, "ref": -30, "int": -10, "hpBonus": 769, "hprRaw": 165, "id": 2117}, {"name": "Phantom Blade", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-18", "aDam": "13-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "intReq": 10, "agiReq": 10, "mr": 5, "sdPct": 8, "mdPct": -10, "ms": 5, "agi": 7, "def": -5, "sdRaw": 25, "id": 2151}, {"name": "Philosopher", "tier": "Fabled", "type": "leggings", "majorIds": ["PEACEFUL_EFFIGY"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": 15, "lvl": 36, "classReq": "Shaman", "intReq": 20, "hprPct": 15, "sdPct": -8, "mdPct": -12, "ref": 45, "def": 4, "spd": -10, "wDamPct": 15, "id": 3552}, {"name": "Phantom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-55", "tDam": "9-33", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 40, "dexReq": 19, "agiReq": 19, "str": -8, "dex": 8, "agi": 8, "def": -8, "mdRaw": 29, "id": 2114}, {"name": "Philophobia", "tier": "Rare", "type": "boots", "poison": 255, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 840, "lvl": 54, "mdPct": 10, "ref": 10, "spRegen": -3, "id": 2124}, {"name": "Phosphene", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 12, "mdPct": 12, "sdRaw": 30, "mdRaw": 39, "id": 2122}, {"name": "Phoenix", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-18", "fDam": "12-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "defReq": 30, "hprPct": 15, "sdPct": -4, "hpBonus": 100, "hprRaw": 15, "fDamPct": 7, "id": 2116}, {"name": "Phoenix Wing", "tier": "Legendary", "type": "wand", "poison": -2000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-45", "fDam": "20-50", "wDam": "0-0", "aDam": "60-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "agiReq": 40, "defReq": 55, "hprPct": 150, "agi": 15, "hpBonus": 3600, "spRegen": 20, "aDefPct": 30, "eDefPct": -20, "id": 2118}, {"name": "Phrygian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "dex": 4, "agi": 4, "spd": 5, "id": 2119}, {"name": "Photon Projector", "tier": "Unique", "type": "relik", "thorns": 25, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "150-177", "aDam": "150-177", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 25, "spd": 12, "hprRaw": 155, "wDefPct": 40, "aDefPct": 40, "id": 2120}, {"name": "Physalis", "tier": "Legendary", "type": "leggings", "poison": 577, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "aDef": -120, "tDef": 70, "eDef": 70, "lvl": 86, "strReq": 65, "dexReq": 40, "mdPct": -15, "str": 8, "dex": 8, "expd": 31, "atkTier": 1, "tDamPct": 13, "eDamPct": 13, "id": 2121}, {"name": "Pierced Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 260, "aDef": -10, "eDef": 20, "lvl": 37, "sdPct": 5, "mdPct": 5, "ref": -5, "dex": 7, "id": 2123}, {"name": "Pigman's Loincloth", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 16, "strReq": 5, "mdPct": 6, "str": 4, "mdRaw": 16, "id": 2129}, {"name": "Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 15, "dex": 7, "agi": 5, "def": -5, "eSteal": 5, "id": 2126}, {"name": "Pilot Light", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2575, "fDef": 90, "wDef": -40, "aDef": -40, "tDef": 70, "eDef": 70, "lvl": 86, "defReq": 35, "hprPct": 18, "ref": 8, "def": 5, "hpBonus": 425, "spRegen": 15, "hprRaw": 110, "aDamPct": -7, "wDefPct": -7, "id": 2128}, {"name": "Pigman's Ribbing", "tier": "Unique", "type": "chestplate", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 10, "aDef": -20, "eDef": 30, "lvl": 50, "strReq": 20, "sdPct": -15, "mdPct": 10, "eDefPct": 15, "id": 2125}, {"name": "Pin", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "xpb": 7, "dex": 4, "id": 2127}, {"name": "Pisces", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "wDef": 100, "eDef": 100, "lvl": 100, "strReq": 60, "intReq": 60, "mr": 10, "sdPct": 15, "mdPct": 15, "str": 10, "mdRaw": 235, "wDamPct": 12, "eDamPct": 12, "id": 2133}, {"name": "Pizzicato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "51-57", "fDam": "51-57", "wDam": "51-57", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 25, "defReq": 25, "mr": 10, "sdPct": -7, "mdPct": -7, "int": 7, "def": 7, "spd": 10, "hprRaw": 95, "jh": 1, "id": 2130}, {"name": "Planet Healer", "tier": "Legendary", "poison": 865, "category": "accessory", "drop": "lootchest", "lvl": 100, "hprPct": -15, "ms": 5, "hprRaw": -80, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 2134}, {"name": "Placid Step", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 40, "tDef": -30, "lvl": 52, "intReq": 45, "mr": 5, "sdPct": 10, "mdPct": -12, "int": 7, "spRegen": 10, "wDamPct": 10, "id": 2131}, {"name": "Piston String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-55", "fDam": "44-86", "wDam": "44-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "intReq": 20, "defReq": 20, "dex": -12, "hprRaw": 40, "fDamPct": 8, "wDamPct": 8, "id": 2132}, {"name": "Plankton", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 210, "wDef": 20, "tDef": -30, "lvl": 34, "intReq": 25, "sdPct": 10, "xpb": 6, "int": 4, "spd": 5, "wDamPct": 15, "tDefPct": -15, "id": 2135}, {"name": "Plasma Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "25-54", "wDam": "0-0", "aDam": "0-0", "tDam": "7-46", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 20, "defReq": 25, "hprPct": -17, "sdPct": 9, "mdPct": 9, "fDamPct": 9, "wDamPct": -10, "tDamPct": 9, "id": 2137}, {"name": "Planus Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 7, "mdPct": 5, "spd": 4, "id": 2136}, {"name": "Plasma Sabre", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "31-58", "wDam": "0-0", "aDam": "0-0", "tDam": "29-43", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "dexReq": 20, "defReq": 25, "mdPct": 12, "ls": 110, "int": -7, "hprRaw": -43, "fDamPct": 8, "tDamPct": 8, "id": 2138}, {"name": "Plasma Ray", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "99-143", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "dexReq": 25, "defReq": 20, "sdPct": 18, "mdPct": -15, "ms": 5, "dex": 7, "def": 7, "wDefPct": -12, "aDefPct": -12, "eDefPct": -12, "id": 2140}, {"name": "Plasma Shear", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "48-60", "wDam": "0-0", "aDam": "0-0", "tDam": "22-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "dexReq": 20, "defReq": 25, "dex": 9, "sdRaw": 122, "wDamPct": -15, "aDamPct": -15, "fDefPct": 12, "tDefPct": 12, "id": 2139}, {"name": "Photon", "tier": "Unique", "quest": "Realm of Light II - Taproot", "category": "accessory", "drop": "never", "lvl": 61, "mr": 5, "xpb": 8, "ref": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spd": 8, "tDamPct": 3, "type": "ring", "id": 3609}, {"name": "Plated Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "lvl": 8, "str": 4, "id": 2142}, {"name": "Poison Ivy", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 18, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "235-275", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 55, "hprPct": -20, "mdPct": 15, "str": 15, "spd": -15, "id": 2145}, {"name": "Poison Touch", "tier": "Unique", "type": "dagger", "poison": 2000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-630", "atkSpd": "VERY_SLOW", "lvl": 87, "hprRaw": -95, "wDefPct": -30, "id": 2141}, {"name": "Platinum", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 88, "xpb": -3, "lb": 12, "eSteal": 3, "type": "bracelet", "id": 2143}, {"name": "Post-Ultima", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 76, "strReq": 40, "dexReq": 25, "mdPct": 30, "str": 9, "dex": 7, "expd": 20, "mdRaw": 190, "tDamPct": 20, "eDamPct": 20, "id": 2146}, {"name": "Polaris", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "17-17", "wDam": "17-17", "aDam": "17-17", "tDam": "17-17", "eDam": "17-17", "atkSpd": "VERY_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -15, "mdPct": -15, "xpb": 15, "lb": 15, "fDamPct": 30, "wDamPct": 30, "aDamPct": 30, "tDamPct": 30, "eDamPct": 30, "id": 2144}, {"name": "Polyphemus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "wDef": 70, "aDef": -70, "tDef": -70, "eDef": 70, "lvl": 91, "strReq": 40, "intReq": 40, "sdPct": 13, "mdPct": 13, "ms": 10, "dex": 8, "sdRaw": 140, "aDamPct": -36, "aDefPct": -18, "id": 2149}, {"name": "Powder Snow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "wDef": 90, "aDef": 90, "tDef": -145, "lvl": 88, "intReq": 45, "agiReq": 45, "mr": 5, "ref": 23, "int": 8, "agi": 8, "sdRaw": 160, "wDamPct": 13, "aDamPct": 13, "wDefPct": 13, "aDefPct": 13, "id": 2148}, {"name": "Power Creep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 81, "strReq": 60, "sdPct": -12, "mdPct": 5, "eDamPct": 7, "type": "necklace", "id": 2147}, {"name": "Power Cell", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "tDef": -60, "lvl": 86, "dexReq": 65, "dex": 13, "mdRaw": 34, "tDamPct": -7, "type": "necklace", "id": 2150}, {"name": "Power Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 74, "str": 8, "type": "bracelet", "id": 2152}, {"name": "Praesidium", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "320-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 80, "sdPct": -400, "ms": -20, "ref": 50, "def": 50, "hpBonus": 4000, "fDefPct": 77, "wDefPct": 77, "aDefPct": 77, "tDefPct": 77, "eDefPct": 77, "id": 2153}, {"name": "Pragmatism", "tier": "Unique", "type": "leggings", "poison": 154, "thorns": 9, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 425, "lvl": 48, "dexReq": 10, "ms": -5, "expd": 1, "hpBonus": -70, "eSteal": 3, "mdRaw": 59, "tDamPct": 8, "id": 2154}, {"name": "Precedence", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-60", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 20, "defReq": 20, "mr": 5, "hprRaw": 65, "tDamPct": -7, "tDefPct": -7, "id": 2159}, {"name": "Precious", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -80, "lvl": 41, "xpb": 10, "int": 3, "agi": 4, "spd": 7, "spRegen": -12, "hprRaw": 12, "type": "ring", "id": 2157}, {"name": "Precision", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "160-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 32, "mdPct": 8, "expd": 5, "id": 2158}, {"name": "Presto", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "6-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 16, "agiReq": 8, "sdPct": 5, "ref": 8, "spd": 15, "fDamPct": -10, "aDefPct": 7, "id": 2160}, {"name": "Priest's Underwears", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 215, "fDef": -15, "aDef": 10, "tDef": 25, "eDef": -15, "lvl": 34, "ref": 10, "spRegen": 10, "aDamPct": 5, "id": 2163}, {"name": "Predposledni", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-60", "aDam": "40-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 40, "agiReq": 50, "mr": 5, "sdPct": 12, "mdPct": -25, "int": 10, "spd": 12, "wDamPct": 15, "tDefPct": -16, "eDefPct": -10, "id": 2161}, {"name": "Prestidigitation", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 60, "eDef": -70, "lvl": 68, "intReq": 40, "ms": 5, "str": -7, "expd": 15, "sdRaw": 65, "wDamPct": 8, "eDamPct": -17, "id": 2162}, {"name": "Prism", "tier": "Legendary", "quest": "The Realm of Light", "category": "accessory", "drop": "lootchest", "hp": -400, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 100, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "ref": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "ring", "id": 2165}, {"name": "Prismatic Pendulum", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-350", "fDam": "0-0", "wDam": "5-520", "aDam": "0-0", "tDam": "0-0", "eDam": "5-520", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 45, "mr": 5, "hpBonus": 1725, "hprRaw": 170, "aDamPct": -30, "tDamPct": -30, "wDefPct": 20, "eDefPct": 20, "id": 2166}, {"name": "Procrastination", "tier": "Legendary", "type": "relik", "majorIds": ["PEACEFUL_EFFIGY"], "category": "weapon", "drop": "NORMAL", "nDam": "1250-1875", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "sdPct": 20, "mdPct": 20, "xpb": -10, "lb": -10, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "spd": -25, "atkTier": -10, "id": 2164}, {"name": "Preipice", "displayName": "Precipice", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "63-93", "atkSpd": "FAST", "lvl": 69, "strReq": 30, "mdPct": 12, "fDefPct": -18, "wDefPct": -18, "aDefPct": 15, "tDefPct": 15, "eDefPct": 30, "id": 2156}, {"name": "Prosto Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "lvl": 42, "str": 5, "agi": -2, "def": 8, "id": 2167}, {"name": "Prosencephalon", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 80, "aDef": -120, "tDef": 80, "eDef": -120, "lvl": 94, "dexReq": 70, "intReq": 70, "hprPct": -20, "mr": 5, "ms": 5, "sdRaw": 100, "mdRaw": -350, "wDamPct": 31, "tDamPct": 31, "aDefPct": -20, "eDefPct": -20, "id": 3620}, {"name": "Prog", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "7-10", "wDam": "0-0", "aDam": "0-0", "tDam": "8-12", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 10, "defReq": 5, "ms": 10, "spRaw1": 10, "spRaw2": -5, "id": 2168}, {"name": "Proto-Shield", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 74, "defReq": 75, "def": 13, "hpBonus": 423, "fDefPct": 4, "wDefPct": 2, "aDefPct": 2, "tDefPct": 2, "eDefPct": -6, "id": 2171}, {"name": "Protolith", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 900, "eDef": 30, "lvl": 60, "strReq": 45, "mdPct": 15, "str": 4, "wDamPct": -25, "eDamPct": 15, "id": 2169}, {"name": "Prymari", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-90", "fDam": "17-33", "wDam": "17-33", "aDam": "0-0", "tDam": "17-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "dexReq": 25, "intReq": 25, "defReq": 25, "sdPct": 20, "ref": 30, "dex": 9, "int": 9, "def": 9, "hprRaw": 100, "aDamPct": -40, "eDamPct": -40, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "id": 2174}, {"name": "Prowl", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "355-455", "fDam": "0-0", "wDam": "0-0", "aDam": "210-285", "tDam": "0-0", "eDam": "355-455", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 25, "agiReq": 40, "mdPct": 12, "xpb": 10, "str": 16, "hpBonus": -750, "sdRaw": -90, "aDamPct": 15, "id": 2170}, {"name": "Psion Marker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-12", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 28, "dexReq": 20, "mr": -5, "mdPct": 20, "ms": 5, "dex": 5, "expd": 10, "tDamPct": 10, "id": 2176}, {"name": "Proxima", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "210-220", "fDam": "110-200", "wDam": "110-200", "aDam": "110-200", "tDam": "110-200", "eDam": "110-200", "atkSpd": "SUPER_SLOW", "lvl": 85, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 10, "ls": 290, "ms": -5, "xpb": 15, "hprRaw": -90, "id": 2172}, {"name": "Psychoruin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "1-22", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "dexReq": 6, "intReq": 6, "int": 5, "sdRaw": 15, "wDamPct": -3, "tDamPct": 6, "wDefPct": 6, "tDefPct": -9, "id": 2175}, {"name": "Psithurism", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": -80, "aDef": 75, "eDef": 55, "lvl": 65, "strReq": 25, "agiReq": 35, "agi": 8, "spd": 10, "tDamPct": -8, "aDefPct": 12, "eDefPct": 8, "id": 2173}, {"name": "Puff", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 50, "lvl": 79, "spd": 5, "type": "ring", "id": 2179}, {"name": "Pulsar", "tier": "Legendary", "type": "spear", "poison": -365, "thorns": 21, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-12", "fDam": "8-16", "wDam": "6-18", "aDam": "4-20", "tDam": "2-22", "eDam": "10-14", "atkSpd": "FAST", "lvl": 44, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 14, "xpb": 8, "ref": 21, "spd": -15, "mdRaw": 46, "id": 2178}, {"name": "Pulse Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "tDef": 100, "eDef": -110, "lvl": 75, "dexReq": 75, "hprPct": -40, "mdPct": 10, "ms": 15, "str": -10, "sdRaw": 95, "tDamPct": 15, "eDamPct": -77, "eDefPct": -20, "id": 2177}, {"name": "Puppet Master", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "103-137", "fDam": "0-0", "wDam": "46-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 13, "sdPct": 15, "mdPct": -33, "ms": 5, "lb": 10, "str": -5, "spPct1": -25, "id": 2182}, {"name": "Pumpkin Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 20, "id": 2180}, {"name": "Puppeteer", "tier": "Rare", "type": "chestplate", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "lvl": 74, "mdPct": 50, "ls": -130, "str": 7, "dex": -5, "agi": 7, "spd": 21, "atkTier": -1, "id": 2181}, {"name": "Pure Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "180-191", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2184}, {"name": "Pure Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "303-360", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2183}, {"name": "Pure Andesite Stick", "displayName": "Pure Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2188}, {"name": "Pure Andesite Shears", "displayName": "Pure Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "103-118", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "id": 2185}, {"name": "Pure Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "197-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2187}, {"name": "Pure Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-187", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2186}, {"name": "Pure Birch Shears", "displayName": "Pure Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "id": 2189}, {"name": "Pure Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2190}, {"name": "Pure Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-131", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2191}, {"name": "Pure Birch Stick", "displayName": "Pure Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2192}, {"name": "Pure Diorite Shears", "displayName": "Pure Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "id": 2196}, {"name": "Pure Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 700, "lvl": 57, "id": 2193}, {"name": "Pure Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "358-422", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2195}, {"name": "Pure Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "212-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2194}, {"name": "Pure Diorite Stick", "displayName": "Pure Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-119", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2197}, {"name": "Pure Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "243-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2198}, {"name": "Pure Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "225-236", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2199}, {"name": "Pure Granite Shears", "displayName": "Pure Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "id": 2204}, {"name": "Pure Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "388-455", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2201}, {"name": "Pure Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-295", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2200}, {"name": "Pure Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 520, "lvl": 53, "id": 2203}, {"name": "Pure Granite Stick", "displayName": "Pure Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2202}, {"name": "Pure Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 600, "lvl": 55, "id": 2206}, {"name": "Pure Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 440, "lvl": 51, "id": 2205}, {"name": "Pure Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "216-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2208}, {"name": "Pure Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2209}, {"name": "Pure Jungle Shears", "displayName": "Pure Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "id": 2210}, {"name": "Pure Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "133-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2213}, {"name": "Pure Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2214}, {"name": "Pure Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2207}, {"name": "Pure Jungle Stick", "displayName": "Pure Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-94", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2212}, {"name": "Pure Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2211}, {"name": "Pure Light Birch Shears", "displayName": "Pure Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "69-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "id": 2215}, {"name": "Pure Light Birch Stick", "displayName": "Pure Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "51-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2217}, {"name": "Pure Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-144", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2218}, {"name": "Pure Light Jungle Stick", "displayName": "Pure Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "66-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2222}, {"name": "Pure Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "158-188", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2216}, {"name": "Pure Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2223}, {"name": "Pure Light Jungle Shears", "displayName": "Pure Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 76, "id": 2219}, {"name": "Pure Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "98-133", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2221}, {"name": "Pure Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "106-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2220}, {"name": "Pure Light Oak Shears", "displayName": "Pure Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "id": 2226}, {"name": "Pure Light Oak Stick", "displayName": "Pure Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "44-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2227}, {"name": "Pure Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "128-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2228}, {"name": "Pure Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2224}, {"name": "Pure Light Spruce Stick", "displayName": "Pure Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "61-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2230}, {"name": "Pure Light Spruce Shears", "displayName": "Pure Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "79-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "id": 2229}, {"name": "Pure Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-86", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2225}, {"name": "Pure Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2231}, {"name": "Pure Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-108", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2235}, {"name": "Pure Oak Wood Shears", "displayName": "Pure Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "id": 2234}, {"name": "Pure Oak Wood Bow", "displayName": "Pure Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-159", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2233}, {"name": "Pure Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "194-221", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2238}, {"name": "Pure Oak Wood Spear", "displayName": "Pure Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "91-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2232}, {"name": "Pure Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2241}, {"name": "Pure Spruce Shears", "displayName": "Pure Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "88-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "id": 2236}, {"name": "Pure Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "129-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2239}, {"name": "Pure Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "249-296", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2244}, {"name": "Pure Spruce Stick", "displayName": "Pure Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "64-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2243}, {"name": "Pure Stone Shears", "displayName": "Pure Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "84-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "id": 2242}, {"name": "Pure Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "147-158", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2240}, {"name": "Pure Oak Wood Stick", "displayName": "Pure Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2237}, {"name": "Pure Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-201", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2246}, {"name": "Pyroclast", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "250-790", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "350-690", "atkSpd": "SUPER_SLOW", "lvl": 88, "strReq": 40, "defReq": 35, "expd": 15, "spd": -10, "hprRaw": -155, "mdRaw": 620, "fDamPct": 20, "eDamPct": 20, "wDefPct": -50, "aDefPct": -15, "id": 2247}, {"name": "Pure Stone Stick", "displayName": "Pure Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "71-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2248}, {"name": "Quartz Choker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "lvl": 52, "sdPct": 8, "xpb": 4, "type": "necklace", "id": 2309}, {"name": "Purgatory", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-185", "wDam": "0-0", "aDam": "0-0", "tDam": "100-235", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "defReq": 35, "hprPct": -23, "mr": -5, "sdPct": 18, "expd": 23, "fDamPct": 18, "tDamPct": 18, "id": 2245}, {"name": "Pyromaniac", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": -40, "wDef": -40, "lvl": 90, "defReq": 50, "sdPct": 11, "int": -3, "expd": 10, "spd": 7, "hprRaw": -60, "type": "necklace", "id": 2250}, {"name": "Quartz-laced Leggings", "displayName": "Quartz-Laced Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 53, "sdPct": 10, "xpb": 10, "ref": 10, "id": 2251}, {"name": "Qaxezine", "tier": "Unique", "type": "bow", "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-96", "eDam": "62-84", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "dexReq": 25, "lb": 11, "str": 14, "expd": 12, "spd": -21, "id": 2249}, {"name": "Quartzite Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "sdPct": 4, "type": "necklace", "id": 2252}, {"name": "Quartzite Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "lvl": 91, "sdPct": 20, "sdRaw": 135, "id": 2254}, {"name": "Quartzite Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-150", "fDam": "0-0", "wDam": "150-160", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "dexReq": 35, "intReq": 30, "lb": 12, "int": 8, "sdRaw": 90, "aDamPct": -23, "tDamPct": 25, "aDefPct": -16, "id": 2255}, {"name": "Quartzite Wand", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "xpb": 4, "id": 2253}, {"name": "Quasar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-40", "wDam": "0-40", "aDam": "0-40", "tDam": "0-40", "eDam": "0-40", "atkSpd": "SLOW", "lvl": 72, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 13, "wDefPct": 13, "aDefPct": 13, "tDefPct": 13, "eDefPct": 13, "id": 2257}, {"name": "Quickshot", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 20, "xpb": 11, "dex": 8, "id": 2259}, {"name": "Quickstep", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-93", "wDam": "0-0", "aDam": "84-96", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "agiReq": 30, "defReq": 25, "xpb": 7, "agi": 6, "spd": 14, "hpBonus": 600, "fDamPct": 12, "aDefPct": 10, "id": 2258}, {"name": "Quatrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 4, "lvl": 16, "hprPct": 4, "sdPct": 4, "mdPct": 4, "xpb": 4, "type": "ring", "id": 2256}, {"name": "Quill", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-80", "fDam": "0-0", "wDam": "0-0", "aDam": "75-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "agiReq": 20, "mr": 5, "sdPct": 10, "xpb": 15, "wDamPct": 16, "aDefPct": 15, "tDefPct": -20, "id": 2260}, {"name": "Quinque", "tier": "Legendary", "type": "spear", "poison": 2000, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-235", "eDam": "5-7", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "mr": -10, "spd": -20, "atkTier": 1, "sdRaw": 175, "mdRaw": 70, "eDamPct": 50, "id": 2261}, {"name": "Abrasion", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 40, "wDef": 40, "lvl": 100, "mr": 5, "sdPct": 8, "ms": 5, "spd": -37, "fDamPct": 10, "type": "necklace", "id": 3624}, {"name": "Recalcitrance", "tier": "Fabled", "category": "accessory", "drop": "never", "hp": -2600, "aDef": -45, "eDef": 65, "lvl": 100, "strReq": 45, "hprPct": 9, "str": 6, "atkTier": 1, "eDamPct": 11, "type": "necklace", "jh": 1, "id": 3601}, {"name": "Eyes on All", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": -60, "tDef": -60, "lvl": 60, "dexReq": 45, "intReq": 45, "sdPct": -11, "ms": 10, "atkTier": -6, "type": "necklace", "id": 3602}, {"name": "Homeorhesis", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": 35, "eDef": 35, "lvl": 60, "strReq": 40, "sdPct": -45, "mdPct": -45, "ms": 5, "xpb": 10, "sdRaw": 120, "mdRaw": 60, "type": "bracelet", "id": 3576}, {"name": "Cacophony", "tier": "Fabled", "thorns": 6, "category": "accessory", "drop": "never", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 80, "agiReq": 55, "ls": 115, "ref": 6, "spRegen": -8, "hprRaw": 50, "sdRaw": -45, "type": "ring", "id": 3585}, {"name": "Racer's Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 950, "lvl": 60, "agiReq": 40, "mdPct": -5, "agi": 7, "spd": 19, "sdRaw": -25, "id": 2270}, {"name": "Metamorphosis", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 20, "wDef": -100, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 80, "mr": -5, "sdPct": 20, "ms": -5, "type": "necklace", "id": 3575}, {"name": "Ragged", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": -8, "aDef": 10, "lvl": 19, "ls": 7, "def": -2, "spd": 4, "hpBonus": -8, "id": 2271}, {"name": "Raecard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 22, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "lb": 15, "hpBonus": 110, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "id": 2272}, {"name": "Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-49", "fDam": "15-19", "wDam": "12-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 15, "mr": 5, "spRegen": 5, "id": 2269}, {"name": "Ragni's Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": -30, "eDef": 60, "lvl": 50, "strReq": 20, "defReq": 5, "sdPct": -10, "mdPct": 10, "xpb": 10, "def": 7, "fDamPct": 10, "wDamPct": -25, "eDamPct": 10, "id": 2273}, {"name": "Ragni's Old Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "aDef": -10, "eDef": 20, "lvl": 39, "mdPct": 7, "xpb": 6, "id": 2275}, {"name": "Ragni's Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 3, "str": 3, "id": 2276}, {"name": "Ragon's Bracelet", "tier": "Rare", "quest": "Elemental Exercise", "category": "accessory", "drop": "never", "lvl": 10, "hpBonus": 13, "type": "bracelet", "id": 2277}, {"name": "Rainbow", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 80, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -3, "wDamPct": -3, "aDamPct": -3, "tDamPct": -3, "eDamPct": -3, "type": "ring", "id": 2274}, {"name": "Rainstorm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-95", "fDam": "0-0", "wDam": "40-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "dexReq": 35, "intReq": 30, "sdPct": 10, "ms": 5, "xpb": 7, "dex": 8, "int": 5, "tDamPct": 22, "aDefPct": -25, "id": 2280}, {"name": "Raindrop", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "wDef": 20, "lvl": 69, "intReq": 25, "mr": 5, "sdPct": -2, "mdPct": -2, "int": 5, "type": "ring", "id": 2279}, {"name": "Rapier", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "66-76", "fDam": "66-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 290, "ref": 15, "def": 12, "fDefPct": 15, "id": 2282}, {"name": "Raptor", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "44-77", "tDam": "0-0", "eDam": "66-77", "atkSpd": "VERY_FAST", "lvl": 62, "strReq": 30, "agiReq": 30, "mdPct": 12, "agi": 4, "def": -5, "spd": 15, "hpBonus": -200, "mdRaw": 65, "id": 2281}, {"name": "Rapids", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "wDef": 130, "tDef": -130, "lvl": 89, "intReq": 55, "mr": 5, "sdPct": 23, "spd": 9, "fDamPct": -15, "wDamPct": 11, "id": 2278}, {"name": "Ration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": -75, "eDef": -75, "lvl": 99, "intReq": 45, "defReq": 45, "mr": 15, "sdPct": -18, "mdPct": -18, "int": 9, "hprRaw": 150, "id": 2283}, {"name": "Rarity", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 12, "lb": 12, "spRegen": 8, "type": "ring", "id": 2284}, {"name": "Rayshyroth's Knowledge", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 66, "xpb": 12, "spRegen": 3, "type": "bracelet", "id": 2286}, {"name": "Reaction", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "tDef": 45, "eDef": -50, "lvl": 57, "dexReq": 30, "xpb": 6, "expd": 4, "sdRaw": 50, "tDamPct": 9, "wDefPct": -7, "id": 2290}, {"name": "Razor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 49, "sdPct": 5, "mdPct": 5, "str": 7, "dex": -5, "int": 7, "agi": 7, "def": 7, "spd": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": -40, "eDamPct": 20, "id": 2285}, {"name": "Reaper of Soul", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "ls": 100, "ms": 10, "agi": 7, "spRegen": 10, "eSteal": 10, "id": 2287}, {"name": "Rebellion", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "45-60", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "dexReq": 35, "defReq": 35, "sdPct": -6, "ls": 100, "int": -4, "expd": 19, "hpBonus": -230, "fDamPct": 17, "tDamPct": 17, "wDefPct": -12, "id": 2288}, {"name": "Reborn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -125, "lvl": 100, "strReq": 45, "dexReq": 45, "int": -4, "agi": -2, "def": -2, "mdRaw": 50, "tDamPct": 10, "eDamPct": 10, "type": "necklace", "id": 2289}, {"name": "Reason", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "60-85", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "intReq": 30, "defReq": 35, "mr": 5, "dex": -7, "int": 8, "def": 5, "hprRaw": 105, "tDamPct": -30, "fDefPct": 13, "wDefPct": 13, "id": 2291}, {"name": "Recharge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "lvl": 59, "mr": -45, "sdPct": 11, "mdPct": -9, "ms": 40, "sdRaw": 50, "id": 2292}, {"name": "Rectificator", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "hpBonus": 150, "fDamPct": 16, "wDamPct": 16, "aDamPct": 16, "tDamPct": 16, "eDamPct": 16, "id": 2294}, {"name": "Red Candle", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 15, "hprPct": 20, "ls": 31, "def": 7, "hpBonus": 100, "hprRaw": 15, "id": 2296}, {"name": "Red", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 25, "fDef": 4, "lvl": 30, "hpBonus": 5, "type": "ring", "id": 2293}, {"name": "Red Ko Rhu", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "fDef": -60, "aDef": 40, "eDef": 40, "lvl": 43, "str": 8, "expd": 10, "spd": -8, "eDefPct": 10, "id": 2295}, {"name": "Red String", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 12, "lvl": 16, "hprPct": 3, "xpb": 3, "spRegen": 2, "type": "ring", "id": 2297}, {"name": "Redirection", "tier": "Unique", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "tDef": 30, "eDef": -70, "lvl": 65, "dexReq": 25, "ref": 12, "dex": 4, "tDamPct": 12, "tDefPct": 12, "id": 2300}, {"name": "Refined Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "xpb": 4, "id": 2299}, {"name": "Redemption", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1475, "fDef": 50, "aDef": 50, "lvl": 71, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": -5, "ls": 120, "int": -6, "hprRaw": 40, "id": 2298}, {"name": "Refined Chainmail Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 245, "lvl": 41, "id": 2301}, {"name": "Reflection", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -17, "mdPct": -17, "ref": 25, "hprRaw": 65, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2304}, {"name": "Refined Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "lvl": 43, "id": 2302}, {"name": "Refined Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 340, "lvl": 45, "id": 2306}, {"name": "Refined Iron Chainmail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 380, "lvl": 47, "id": 2303}, {"name": "Reflex", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 14, "spd": 5, "type": "ring", "id": 2305}, {"name": "Regal Chaps", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 23, "xpb": 8, "lb": 8, "eSteal": 2, "id": 2308}, {"name": "Regulating Charge", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "57-97", "aDam": "0-0", "tDam": "57-97", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "dexReq": 35, "intReq": 35, "sdPct": 13, "ms": -10, "sdRaw": 75, "wDamPct": 9, "tDamPct": 9, "id": 2313}, {"name": "Regrets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 8, "sdPct": 12, "sdRaw": 21, "id": 2311}, {"name": "Relay", "tier": "Rare", "type": "leggings", "thorns": 8, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "tDef": 15, "eDef": -15, "lvl": 24, "dexReq": 15, "ref": 8, "str": -4, "dex": 5, "id": 2314}, {"name": "Rekkr", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4500, "fDef": 130, "eDef": 100, "lvl": 99, "strReq": 45, "defReq": 60, "mdPct": 40, "str": 13, "def": 13, "spd": -15, "fDefPct": 20, "aDefPct": 20, "eDefPct": 20, "id": 2310}, {"name": "Relend's Refrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 40, "tDef": -50, "eDef": -15, "lvl": 90, "agiReq": 50, "xpb": 7, "spd": 12, "wDamPct": 5, "type": "bracelet", "id": 2312}, {"name": "Relentless", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "58-70", "eDam": "58-70", "atkSpd": "FAST", "lvl": 70, "strReq": 35, "dexReq": 35, "agi": -10, "def": -10, "expd": 25, "atkTier": 1, "hprRaw": -69, "mdRaw": 60, "id": 2316}, {"name": "Relfect", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-100", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 10, "ms": 5, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "expd": 10, "spd": 10, "hpBonus": 1650, "id": 2315}, {"name": "Relic", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "4-10", "wDam": "2-8", "aDam": "6-8", "tDam": "1-12", "eDam": "8-10", "atkSpd": "NORMAL", "lvl": 14, "sdPct": 6, "xpb": 8, "id": 2318}, {"name": "Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "27-41", "fDam": "27-41", "wDam": "27-41", "aDam": "27-41", "tDam": "27-41", "eDam": "27-41", "atkSpd": "SLOW", "lvl": 50, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2317}, {"name": "Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "30-35", "wDam": "30-35", "aDam": "30-35", "tDam": "30-35", "eDam": "30-35", "atkSpd": "SLOW", "lvl": 60, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2319}, {"name": "Refraction", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 74, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "ls": 110, "ms": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "id": 2307}, {"name": "Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "12-17", "fDam": "12-17", "wDam": "12-17", "aDam": "12-17", "tDam": "12-17", "eDam": "12-17", "atkSpd": "NORMAL", "lvl": 55, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2320}, {"name": "Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "24-30", "fDam": "24-30", "wDam": "24-30", "aDam": "24-30", "tDam": "24-30", "eDam": "24-30", "atkSpd": "FAST", "lvl": 65, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2322}, {"name": "Remedy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1050, "fDef": 60, "wDef": 60, "tDef": -60, "eDef": -60, "lvl": 70, "intReq": 35, "defReq": 35, "hprPct": 18, "mr": 5, "sdPct": -11, "mdPct": -11, "spRegen": 18, "hprRaw": 70, "sdRaw": -40, "mdRaw": -39, "id": 2321}, {"name": "Remikas' Sanctuary", "tier": "Rare", "type": "chestplate", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "lvl": 68, "defReq": 50, "ref": 8, "def": 7, "spd": -10, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2323}, {"name": "Remikas' Righteousness", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "mr": 5, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 2325}, {"name": "Reminder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 96, "int": 8, "type": "ring", "id": 2324}, {"name": "Reminiscence", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 20, "wDef": 10, "eDef": -30, "lvl": 41, "intReq": 30, "defReq": 10, "hprPct": 8, "mr": 5, "spRegen": 8, "hprRaw": 10, "type": "bracelet", "id": 2326}, {"name": "Render", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 15, "eDef": -15, "lvl": 60, "defReq": 25, "expd": 12, "fDamPct": 10, "wDamPct": -7, "type": "ring", "id": 2328}, {"name": "Resolve", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3425, "fDef": 100, "aDef": 100, "tDef": -150, "lvl": 98, "agiReq": 40, "defReq": 40, "ms": 5, "int": -20, "agi": 7, "def": 7, "wDamPct": -15, "spPct1": -10, "spPct3": -10, "id": 2327}, {"name": "Resistance", "tier": "Unique", "type": "leggings", "thorns": 13, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "tDef": 100, "eDef": 175, "lvl": 97, "dexReq": 60, "ms": 15, "ref": 9, "tDamPct": -15, "tDefPct": 20, "eDefPct": 20, "id": 2333}, {"name": "Repulsion", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-22", "fDam": "0-0", "wDam": "33-42", "aDam": "0-0", "tDam": "33-42", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "dexReq": 30, "intReq": 30, "mr": 5, "ref": 20, "sdRaw": 55, "wDamPct": 9, "tDamPct": 9, "eDamPct": -18, "eDefPct": -23, "id": 2329}, {"name": "Reticence", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "xpb": 15, "str": 7, "sdRaw": -25, "mdRaw": 16, "id": 2331}, {"name": "Return", "tier": "Unique", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 53, "ref": 9, "type": "ring", "id": 2330}, {"name": "Retina Shooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "VERY_SLOW", "lvl": 22, "strReq": 5, "mdPct": 3, "dex": 7, "id": 2332}, {"name": "Return to Ether", "tier": "Legendary", "type": "bow", "poison": -4143, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-126", "fDam": "0-0", "wDam": "0-0", "aDam": "16-162", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 90, "intReq": 84, "agiReq": 49, "mr": 10, "mdPct": -27, "xpb": 26, "agi": 44, "spd": 22, "wDamPct": 34, "tDamPct": -149, "eDamPct": -13, "fDefPct": 45, "id": 2334}, {"name": "Reverie", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "108-144", "wDam": "108-144", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "intReq": 25, "defReq": 25, "sdPct": 24, "mdPct": -15, "int": 8, "spd": -15, "fDefPct": 24, "wDefPct": 24, "id": 2336}, {"name": "Reverb", "tier": "Unique", "type": "boots", "thorns": 19, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -90, "aDef": 50, "tDef": 50, "lvl": 64, "dexReq": 30, "agiReq": 30, "ref": 19, "mdRaw": 90, "fDefPct": -15, "aDefPct": 11, "tDefPct": 11, "id": 2335}, {"name": "Reversal", "tier": "Unique", "type": "relik", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "23-30", "tDam": "0-0", "eDam": "23-30", "atkSpd": "NORMAL", "lvl": 36, "strReq": 12, "agiReq": 12, "mdPct": 10, "ref": 30, "spd": 10, "mdRaw": 39, "id": 2340}, {"name": "Revolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "60-60", "wDam": "0-0", "aDam": "0-0", "tDam": "60-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 345, "ms": 10, "xpb": 10, "fDamPct": 9, "wDamPct": -25, "aDamPct": -25, "tDamPct": 9, "id": 2338}, {"name": "Revolutionine", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "315-327", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "defReq": 40, "mdPct": 15, "def": 15, "hpBonus": -815, "fDamPct": 20, "wDamPct": -20, "wDefPct": -20, "id": 2339}, {"name": "Rewind", "tier": "Legendary", "type": "dagger", "majorIds": ["SORCERY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-50", "fDam": "0-0", "wDam": "30-50", "aDam": "25-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "intReq": 50, "agiReq": 50, "mr": 10, "ls": 250, "ms": -15, "agi": 10, "spd": 15, "hprRaw": -200, "id": 2337}, {"name": "Rheingold", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "aDef": 70, "tDef": 50, "eDef": -60, "lvl": 66, "dexReq": 20, "agiReq": 25, "sdPct": 7, "mdPct": 12, "lb": 16, "dex": 5, "spd": 11, "fDamPct": -14, "id": 2342}, {"name": "Rhunaex", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-34", "eDam": "0-34", "atkSpd": "FAST", "lvl": 41, "strReq": 25, "dexReq": 25, "ls": 33, "dex": 5, "hprRaw": -15, "sdRaw": 25, "mdRaw": 33, "aDamPct": -19, "id": 2341}, {"name": "Ricin", "tier": "Rare", "type": "dagger", "poison": 1930, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 73, "mdPct": -50, "ms": 5, "sdRaw": 125, "id": 2343}, {"name": "Rime", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -30, "wDef": 10, "aDef": 15, "lvl": 43, "intReq": 15, "agiReq": 30, "sdPct": 7, "ms": 5, "agi": 4, "spd": -9, "aDamPct": 4, "fDefPct": -10, "type": "bracelet", "id": 2347}, {"name": "Ridge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 34, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 2345}, {"name": "Ring of Focus", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 20, "intReq": 5, "sdPct": 5, "xpb": 4, "type": "ring", "id": 2349}, {"name": "Ring of Fire", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -50, "lvl": 84, "expd": 8, "fDamPct": 11, "wDamPct": -7, "eDamPct": 8, "type": "ring", "id": 2346}, {"name": "Ringlets", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1875, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 80, "mr": 10, "xpb": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRaw4": -5, "id": 2348}, {"name": "Ringing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 265, "wDef": 20, "tDef": -20, "lvl": 41, "intReq": 20, "mr": 5, "spRegen": 5, "wDefPct": 10, "aDefPct": 5, "id": 2352}, {"name": "Ring of Strength", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "str": 3, "type": "ring", "id": 2350}, {"name": "Ripper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -6, "lvl": 46, "dexReq": 25, "xpb": 3, "dex": 3, "mdRaw": 17, "type": "ring", "id": 2351}, {"name": "Rinkaku", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": 80, "tDef": 80, "lvl": 79, "dexReq": 40, "defReq": 55, "hprPct": -20, "sdPct": 10, "ls": 110, "def": 8, "hpBonus": -400, "fDamPct": 8, "tDamPct": 8, "id": 2354}, {"name": "Rising Sun", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-150", "fDam": "60-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "defReq": 25, "xpb": 15, "spRegen": 6, "id": 2353}, {"name": "Rite Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-26", "fDam": "9-12", "wDam": "9-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 10, "defReq": 10, "sdPct": 8, "ls": 25, "lb": 8, "hpBonus": -150, "spRegen": -10, "eSteal": 4, "id": 2355}, {"name": "Riverflow", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 200, "tDef": -100, "lvl": 93, "intReq": 95, "mr": 20, "ref": 5, "spd": 7, "tDamPct": -15, "wDefPct": 20, "tDefPct": -15, "id": 2357}, {"name": "Roaming Thief", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "lvl": 28, "ls": 13, "lb": 8, "dex": 3, "eSteal": 4, "id": 2356}, {"name": "Rock Chisel", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "164-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "strReq": 25, "defReq": 35, "sdPct": -9, "lb": 19, "dex": 8, "eSteal": 3, "fDamPct": 24, "eDamPct": 7, "id": 2359}, {"name": "Robin", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-16", "fDam": "5-9", "wDam": "0-0", "aDam": "4-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 20, "sdPct": -12, "mdPct": -12, "spd": 16, "hprRaw": 30, "id": 2358}, {"name": "Rockworm", "tier": "Unique", "poison": 135, "category": "accessory", "drop": "lootchest", "lvl": 57, "mdPct": 3, "str": 4, "eDamPct": 4, "type": "ring", "id": 2361}, {"name": "Rodoroc's Pride", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3700, "fDef": 125, "wDef": -175, "eDef": 125, "lvl": 98, "strReq": 40, "defReq": 40, "mr": 10, "str": 8, "def": 8, "spd": -8, "hpBonus": 700, "fDamPct": 8, "wDamPct": 10, "aDamPct": -20, "tDamPct": -20, "eDamPct": 8, "id": 2360}, {"name": "Rollick", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 100, "tDef": -130, "lvl": 71, "intReq": 100, "sdPct": 15, "int": 7, "sdRaw": 75, "fDamPct": -30, "wDamPct": 20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "wDefPct": 20, "id": 2363}, {"name": "Ronin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "tDef": 175, "eDef": -100, "lvl": 91, "dexReq": 50, "str": -15, "dex": 20, "spd": 5, "mdRaw": 175, "tDamPct": 15, "id": 2364}, {"name": "Ronco", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-48", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 30, "sdPct": 12, "lb": 6, "dex": 5, "spd": 8, "hpBonus": -90, "eDefPct": -15, "id": 2362}, {"name": "Rosario", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-32", "atkSpd": "SLOW", "lvl": 43, "strReq": 20, "defReq": 20, "hprPct": 9, "sdPct": -20, "spd": -12, "hpBonus": 250, "hprRaw": 15, "id": 2365}, {"name": "Rot of Dernel", "tier": "Rare", "type": "wand", "poison": 2645, "thorns": 35, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-12", "eDam": "9-10", "atkSpd": "VERY_SLOW", "lvl": 83, "strReq": 15, "dexReq": 15, "ls": 300, "ms": 15, "int": -30, "hpBonus": -1850, "id": 2367}, {"name": "Rotten Wood", "tier": "Unique", "type": "wand", "poison": 1462, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "id": 2372}, {"name": "Rotary Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-100", "wDam": "50-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "intReq": 30, "defReq": 30, "ls": 225, "expd": 14, "hpBonus": 800, "tDefPct": -20, "eDefPct": -14, "id": 2366}, {"name": "Rotten", "tier": "Rare", "type": "chestplate", "poison": 160, "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 280, "fDef": -15, "eDef": 25, "lvl": 37, "id": 2369}, {"name": "Rikter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "312-670", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "330-570", "atkSpd": "SUPER_SLOW", "lvl": 84, "strReq": 55, "mdPct": 30, "expd": 25, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 2344}, {"name": "Roughcut", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 560, "aDef": -50, "tDef": 20, "eDef": 30, "lvl": 53, "strReq": 15, "mdPct": 10, "dex": 7, "mdRaw": 85, "tDamPct": 10, "eDefPct": 5, "id": 2370}, {"name": "Rounding Test", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 1, "xpb": 11, "atkTier": -1, "id": 2371}, {"name": "Runic Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 375, "lvl": 90, "sdPct": 8, "lb": 5, "type": "necklace", "id": 2375}, {"name": "Rubber", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 77, "mdRaw": 26, "type": "ring", "id": 2373}, {"name": "Rubber Rainboots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 225, "tDef": 10, "lvl": 34, "xpb": 5, "wDefPct": 20, "id": 2374}, {"name": "Rubber Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "ref": 10, "dex": -3, "agi": -3, "id": 2377}, {"name": "Running Water", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "50-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "intReq": 30, "int": 9, "spd": 15, "sprintReg": 10, "id": 2376}, {"name": "Runner's Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 24, "lvl": 9, "agi": 3, "spd": 4, "id": 2378}, {"name": "Rust", "tier": "Rare", "type": "helmet", "poison": 665, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2450, "wDef": -60, "aDef": -60, "lvl": 79, "defReq": 55, "ref": -23, "dex": 9, "tDamPct": 19, "eDamPct": 11, "id": 2399}, {"name": "Rusted Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 7, "xpb": 2, "lb": 3, "type": "bracelet", "id": 2379}, {"name": "Rusted Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 28, "wDef": 6, "tDef": -3, "lvl": 31, "wDefPct": 4, "tDefPct": -3, "type": "ring", "id": 2387}, {"name": "Rusted Root", "tier": "Legendary", "type": "relik", "poison": 900, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "190-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-200", "atkSpd": "SLOW", "lvl": 65, "strReq": 40, "dexReq": 45, "sdRaw": 130, "tDamPct": 35, "wDefPct": -40, "spRaw2": -10, "spPct3": 49, "spPct4": -42, "jh": -1, "id": 2381}, {"name": "Rycar's Bravado", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -35, "aDef": 20, "eDef": 20, "lvl": 58, "strReq": 20, "str": 7, "dex": 3, "int": -10, "agi": 3, "type": "bracelet", "id": 2380}, {"name": "Adventurer's Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 147, "lvl": 27, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2385, "set": "Adventurer's"}, {"name": "Rycar's Swagger", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 62, "strReq": 10, "agiReq": 10, "hprPct": -11, "str": 3, "agi": 5, "spd": -4, "eSteal": 2, "type": "necklace", "id": 2382}, {"name": "Adventurer's Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 135, "lvl": 26, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2383, "set": "Adventurer's"}, {"name": "Adventurer's Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 153, "lvl": 28, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2386, "set": "Adventurer's"}, {"name": "Air Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 145, "aDef": 5, "lvl": 25, "agiReq": 15, "agi": 4, "aDamPct": 7, "aDefPct": 7, "id": 2390, "set": "Air Relic"}, {"name": "Adventurer's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2384, "set": "Adventurer's"}, {"name": "Air Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 205, "aDef": 10, "lvl": 30, "agiReq": 21, "agi": 5, "aDamPct": 9, "aDefPct": 9, "id": 2391, "set": "Air Relic"}, {"name": "Beachside Conch", "tier": "Set", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "intReq": 8, "sdPct": -8, "mdPct": -12, "wDamPct": 12, "wDefPct": 8, "id": 2392, "set": "Beachside"}, {"name": "Beachside Headwrap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 75, "wDef": 6, "lvl": 17, "intReq": 5, "lb": 8, "int": 3, "wDefPct": 8, "id": 2394, "set": "Beachside"}, {"name": "Black Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 13, "ms": 5, "xpb": 5, "dex": 7, "id": 2398, "set": "Black"}, {"name": "Bear Mask", "tier": "Set", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MDkxOTUyODE1ODUsInByb2ZpbGVJZCI6IjVkYTgwMWMxNzkwYzQ3Mzc4YzhiMzk2MjM2ZDlhNzk2IiwicHJvZmlsZU5hbWUiOiJDaHVtYmxlZG9yZSIsImlzUHVibGljIjp0cnVlLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjk1YmJmOWYxNzViMWU3NmE2MWI0Y2QwYmExODNiMThjOTQ2NzAxN2Y0MWVkMTA0NmFiZjY1YTRhNjNjNGEwIn19fQ==", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "fixID": true, "id": 1854, "set": "Bear"}, {"name": "Bear Body", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "hp": 78, "lvl": 16, "mdPct": 6, "fixID": true, "id": 2396, "set": "Bear"}, {"name": "Black Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": 7, "lvl": 33, "dexReq": 10, "dex": 4, "mdRaw": 26, "id": 2395, "set": "Black"}, {"name": "Black Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 245, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 30, "lb": 10, "dex": 7, "sdRaw": 42, "id": 2397, "set": "Black"}, {"name": "Black Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 20, "dex": 5, "spd": 10, "mdRaw": 30, "id": 2400, "set": "Black"}, {"name": "Air Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 275, "aDef": 15, "lvl": 35, "agiReq": 27, "agi": 7, "aDamPct": 11, "aDefPct": 11, "id": 2389, "set": "Air Relic"}, {"name": "Bony Bow", "tier": "Set", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-36", "fDam": "0-0", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "mdPct": 8, "agi": 6, "id": 2401, "set": "Bony"}, {"name": "Champion Boots", "tier": "Set", "type": "boots", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 20, "id": 2403, "set": "Champion"}, {"name": "Bony Circlet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "aDef": 5, "lvl": 21, "agiReq": 6, "mdPct": 8, "mdRaw": 30, "id": 2402, "set": "Bony"}, {"name": "Champion Helmet", "tier": "Set", "type": "helmet", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2407, "set": "Champion"}, {"name": "Champion Chestplate", "tier": "Set", "type": "chestplate", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2405, "set": "Champion"}, {"name": "Champion Leggings", "tier": "Set", "type": "leggings", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "lb": 20, "id": 2404, "set": "Champion"}, {"name": "Clock Amulet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 86, "lb": 6, "fDefPct": 4, "wDefPct": 5, "aDefPct": 3, "tDefPct": 2, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2406, "set": "Clock"}, {"name": "Clock Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "lvl": 73, "mr": -5, "mdPct": 10, "ms": 5, "xpb": 6, "agi": 3, "spd": 6, "fixID": true, "id": 2408, "set": "Clock"}, {"name": "Clock Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 950, "lvl": 74, "sdPct": -40, "mdPct": -35, "xpb": 6, "str": -8, "dex": 3, "spd": 10, "atkTier": 1, "mdRaw": 26, "fixID": true, "id": 2410, "set": "Clock"}, {"name": "Clock Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1500, "lvl": 75, "sdPct": 25, "mdPct": 30, "xpb": 5, "str": 3, "spd": -4, "atkTier": -1, "mdRaw": 13, "fixID": true, "id": 2411, "set": "Clock"}, {"name": "Clock Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 76, "hprPct": 15, "mr": 10, "sdPct": 5, "ms": -5, "def": 3, "spd": -3, "hpBonus": 200, "fixID": true, "id": 2409, "set": "Clock"}, {"name": "Clockwork Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -25, "lvl": 80, "sdPct": 5, "lb": 6, "type": "ring", "fixID": true, "id": 2413, "set": "Clock"}, {"name": "Cosmic Vest", "tier": "Set", "type": "chestplate", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2200, "lvl": 80, "mr": 5, "xpb": 19, "spd": 15, "id": 2478, "set": "Cosmic"}, {"name": "Air Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 355, "aDef": 20, "lvl": 40, "agiReq": 42, "agi": 8, "aDamPct": 13, "aDefPct": 13, "id": 2388, "set": "Air Relic"}, {"name": "Cosmic Visor", "tier": "Set", "type": "helmet", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 80, "mr": 5, "xpb": 19, "spRegen": 19, "id": 2414, "set": "Cosmic"}, {"name": "Cosmic Walkers", "tier": "Set", "type": "boots", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1900, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2412, "set": "Cosmic"}, {"name": "Dodge Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "agiReq": 30, "hprPct": 12, "spd": 12, "type": "ring", "id": 3606, "set": "Synch Core"}, {"name": "Earth Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "eDef": 4, "lvl": 25, "strReq": 15, "str": 4, "eDamPct": 8, "eDefPct": 6, "id": 2428, "set": "Earth Relic"}, {"name": "Cosmic Ward", "tier": "Set", "type": "leggings", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2100, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2416, "set": "Cosmic"}, {"name": "Earth Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 212, "eDef": 8, "lvl": 30, "strReq": 21, "str": 5, "eDamPct": 10, "eDefPct": 8, "id": 2415, "set": "Earth Relic"}, {"name": "Earth Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "eDef": 12, "lvl": 35, "strReq": 27, "str": 7, "eDamPct": 12, "eDefPct": 10, "id": 2418, "set": "Earth Relic"}, {"name": "Earth Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "eDef": 16, "lvl": 40, "strReq": 42, "str": 8, "eDamPct": 14, "eDefPct": 12, "id": 2420, "set": "Earth Relic"}, {"name": "Fire Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "fDef": 10, "lvl": 30, "defReq": 21, "def": 5, "fDamPct": 8, "fDefPct": 10, "id": 2419, "set": "Fire Relic"}, {"name": "Fire Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 330, "fDef": 15, "lvl": 35, "defReq": 27, "def": 7, "fDamPct": 10, "fDefPct": 12, "id": 2421, "set": "Fire Relic"}, {"name": "Fire Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 170, "fDef": 5, "lvl": 25, "defReq": 15, "def": 4, "fDamPct": 6, "fDefPct": 8, "id": 2417, "set": "Fire Relic"}, {"name": "Ghostly Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 20, "eDef": -15, "lvl": 49, "intReq": 35, "mdPct": -18, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2423, "set": "Ghostly"}, {"name": "Fire Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 425, "fDef": 20, "lvl": 40, "defReq": 42, "def": 8, "fDamPct": 12, "fDefPct": 14, "id": 2422, "set": "Fire Relic"}, {"name": "Ghostly Cap", "tier": "Set", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 20, "eDef": -20, "lvl": 48, "mdPct": -6, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2424, "set": "Ghostly"}, {"name": "Ghostly Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 30, "eDef": -30, "lvl": 50, "dexReq": 45, "mdPct": -24, "ms": 5, "spRegen": 5, "tDamPct": 14, "id": 2425, "set": "Ghostly"}, {"name": "Ghostly Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 30, "eDef": -25, "lvl": 51, "intReq": 45, "mdPct": -12, "ms": 5, "spRegen": 5, "wDamPct": 14, "id": 2444, "set": "Ghostly"}, {"name": "Harden Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "hp": 888, "fDef": 20, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 84, "defReq": 30, "xpb": 5, "type": "ring", "id": 3616, "set": "Synch Core"}, {"name": "Hustle Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "strReq": 30, "sdPct": 10, "mdPct": 10, "ls": 70, "type": "ring", "id": 3623, "set": "Synch Core"}, {"name": "Horse Hoof", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 355, "fDef": -20, "aDef": 20, "lvl": 40, "agiReq": 25, "agi": 7, "spd": 10, "aDamPct": 8, "id": 2426, "set": "Horse"}, {"name": "Horse Mask", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "fDef": -20, "eDef": 20, "lvl": 42, "strReq": 25, "mdPct": 7, "str": 7, "eDamPct": 8, "id": 2427, "set": "Horse"}, {"name": "Jester Bracelet", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "lootchest", "lvl": 72, "xpb": -25, "lb": -25, "ref": 8, "type": "bracelet", "id": 2431, "set": "Jester"}, {"name": "Jester Necklace", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 54, "xpb": -25, "lb": -25, "eSteal": 4, "type": "necklace", "id": 2429, "set": "Jester"}, {"name": "Jester Ring", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 69, "ls": 50, "xpb": -25, "lb": -25, "type": "ring", "id": 2430, "set": "Jester"}, {"name": "Kaerynn's Body", "tier": "Set", "type": "chestplate", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "eDef": 120, "lvl": 78, "strReq": 45, "sdPct": 15, "mdPct": 15, "eDamPct": 20, "id": 2432, "set": "Kaerynn's"}, {"name": "Leaf Boots", "tier": "Set", "type": "boots", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 14, "eDef": 2, "lvl": 4, "hprPct": 10, "hprRaw": 1, "id": 2435}, {"name": "Leaf Cap", "tier": "Set", "type": "helmet", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "eDef": 2, "lvl": 2, "hprPct": 6, "hprRaw": 1, "id": 2438}, {"name": "Kaerynn's Mind", "tier": "Set", "type": "helmet", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "wDef": 120, "lvl": 78, "intReq": 45, "hprPct": 25, "mr": 5, "wDamPct": 20, "id": 2433, "set": "Kaerynn's"}, {"name": "Leaf Pants", "tier": "Set", "type": "leggings", "set": "Leaf", "thorns": 7, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 17, "eDef": 3, "lvl": 5, "hprPct": 8, "id": 2434}, {"name": "Mask of the Dark Vexations", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 90, "lvl": 20, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -15, "xpb": 10, "fDamPct": 7, "wDamPct": 7, "tDamPct": 7, "id": 2437, "set": "Vexing"}, {"name": "Leaf Tunic", "tier": "Set", "type": "chestplate", "set": "Leaf", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "str": 3, "hprRaw": 2, "id": 2450}, {"name": "Morph-Emerald", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 50, "lvl": 37, "strReq": 16, "dexReq": 16, "intReq": 16, "agiReq": 16, "defReq": 16, "lb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2439, "set": "Morph"}, {"name": "Morph-Iron", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 50, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 2442, "set": "Morph"}, {"name": "Morph-Gold", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 150, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spd": 10, "id": 2440, "set": "Morph"}, {"name": "Morph-Amethyst", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 87, "strReq": 41, "dexReq": 41, "intReq": 41, "agiReq": 41, "defReq": 41, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spRegen": 10, "type": "bracelet", "id": 2436, "set": "Morph"}, {"name": "Morph-Ruby", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 62, "strReq": 29, "dexReq": 29, "intReq": 29, "agiReq": 29, "defReq": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "eSteal": 5, "type": "necklace", "id": 2441, "set": "Morph"}, {"name": "Nether Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "wDef": -6, "lvl": 28, "defReq": 25, "lb": 6, "expd": 6, "fDamPct": 8, "id": 2449, "set": "Nether"}, {"name": "Morph-Steel", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 75, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2443, "set": "Morph"}, {"name": "Morph-Topaz", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 12, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2447, "set": "Morph"}, {"name": "Nether Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "fDef": 6, "wDef": -6, "lvl": 24, "defReq": 10, "lb": 9, "def": 4, "expd": 8, "id": 2446, "set": "Nether"}, {"name": "Nether Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "wDef": -6, "lvl": 25, "defReq": 15, "def": 5, "fDamPct": 6, "id": 2452, "set": "Nether"}, {"name": "Outlaw Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 370, "fDef": -30, "lvl": 39, "agiReq": 40, "ls": 31, "eSteal": 5, "mdRaw": 39, "id": 2454, "set": "Outlaw"}, {"name": "Nether Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "fDef": 10, "wDef": -6, "lvl": 27, "defReq": 20, "lb": 7, "def": 7, "expd": 6, "id": 2448, "set": "Nether"}, {"name": "Outlaw Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 325, "eDef": -20, "lvl": 36, "agiReq": 30, "ls": 29, "agi": 7, "eSteal": 5, "id": 2453, "set": "Outlaw"}, {"name": "Outlaw Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "tDef": -20, "lvl": 37, "agiReq": 35, "mdPct": 8, "ls": 29, "eSteal": 4, "id": 2451, "set": "Outlaw"}, {"name": "Outlaw Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 380, "wDef": -20, "lvl": 38, "agiReq": 35, "ls": 29, "eSteal": 4, "aDamPct": 8, "id": 2456, "set": "Outlaw"}, {"name": "Overload Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "necklace", "id": 3613, "set": "Synch Core"}, {"name": "Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2459, "set": "Relic"}, {"name": "Pigman Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "aDef": -5, "eDef": 5, "lvl": 15, "strReq": 5, "spd": -4, "eDamPct": 14, "id": 2455, "set": "Pigman"}, {"name": "Pigman Battle Hammer", "tier": "Set", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "28-36", "atkSpd": "VERY_SLOW", "lvl": 16, "strReq": 5, "str": 4, "spd": -6, "id": 2457, "set": "Pigman"}, {"name": "Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 215, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 30, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2461, "set": "Relic"}, {"name": "Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "fDef": 12, "wDef": 12, "aDef": 12, "tDef": 12, "eDef": 12, "lvl": 35, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDefPct": 9, "wDefPct": 9, "aDefPct": 9, "tDefPct": 9, "eDefPct": 9, "id": 2458, "set": "Relic"}, {"name": "Silverfish Boots", "tier": "Set", "type": "boots", "poison": 130, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 10, "aDef": 8, "eDef": 2, "lvl": 32, "agiReq": 30, "agi": 13, "id": 2462, "set": "Silverfish"}, {"name": "Silverfish Helm", "tier": "Set", "type": "helmet", "poison": 145, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 15, "aDef": 12, "eDef": 6, "lvl": 34, "agiReq": 35, "spd": 10, "id": 2463, "set": "Silverfish"}, {"name": "Skien Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 775, "lvl": 53, "sdPct": -12, "mdPct": 10, "str": 5, "spd": 5, "id": 2464, "set": "Skien's"}, {"name": "Skien Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "lvl": 55, "def": 5, "spd": 5, "sdRaw": -115, "mdRaw": 95, "id": 2465, "set": "Skien's"}, {"name": "Slime Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 715, "lvl": 51, "strReq": 15, "defReq": 35, "str": 7, "agi": -4, "def": 5, "spd": -6, "id": 2467, "set": "Slime"}, {"name": "Morph-Stardust", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 100, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 15, "hprRaw": 200, "sdRaw": 140, "mdRaw": 135, "id": 2445, "set": "Morph"}, {"name": "Skien's Fatigues", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "lvl": 57, "strReq": 35, "defReq": 35, "sdPct": -20, "mdPct": 17, "str": 8, "def": 8, "sdRaw": -140, "mdRaw": 115, "id": 2466, "set": "Skien's"}, {"name": "Slime Plate", "tier": "Set", "type": "chestplate", "poison": 290, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "eDef": 30, "lvl": 53, "strReq": 20, "defReq": 35, "spd": -6, "id": 2469, "set": "Slime"}, {"name": "Snail Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 75, "eDef": 55, "lvl": 94, "strReq": 55, "defReq": 70, "hprPct": 20, "def": 9, "spd": -7, "fDefPct": 10, "id": 2471, "set": "Snail"}, {"name": "Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "fDef": 14, "wDef": 14, "aDef": 14, "tDef": 14, "eDef": 14, "lvl": 40, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 2460, "set": "Relic"}, {"name": "Snail Leggings", "tier": "Set", "type": "leggings", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3575, "fDef": 90, "eDef": 65, "lvl": 95, "strReq": 60, "defReq": 80, "hprPct": 20, "def": 9, "spd": -7, "id": 2470, "set": "Snail"}, {"name": "Snail Mail", "tier": "Set", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3950, "fDef": 100, "eDef": 75, "lvl": 97, "strReq": 65, "defReq": 90, "hprPct": 20, "agi": -10, "fDefPct": 9, "eDefPct": 9, "id": 2473, "set": "Snail"}, {"name": "Snail Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": 60, "eDef": 45, "lvl": 93, "strReq": 50, "defReq": 60, "def": 9, "spd": -7, "hprRaw": 170, "eDefPct": 10, "id": 2468, "set": "Snail"}, {"name": "Snow Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "aDef": 15, "lvl": 42, "agiReq": 15, "hprPct": -15, "ref": 10, "aDefPct": 10, "id": 2480, "set": "Snow"}, {"name": "Snow Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 380, "wDef": 15, "lvl": 41, "intReq": 15, "hprPct": -15, "mr": 5, "wDefPct": 10, "id": 2472, "set": "Snow"}, {"name": "Spore Cap", "tier": "Set", "type": "helmet", "poison": 18, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "lvl": 13, "str": 4, "id": 2475, "set": "Spore"}, {"name": "Snow Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "wDef": 20, "aDef": 20, "lvl": 43, "intReq": 20, "agiReq": 20, "hprPct": -15, "ref": 10, "wDamPct": 8, "aDamPct": 8, "id": 2474, "set": "Snow"}, {"name": "Spore Shortsword", "tier": "Set", "type": "dagger", "poison": 36, "category": "weapon", "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 15, "expd": 10, "id": 2477, "set": "Spore"}, {"name": "Snow Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 25, "aDef": 25, "lvl": 44, "intReq": 25, "agiReq": 25, "hprPct": -15, "mr": 5, "wDefPct": 8, "aDefPct": 8, "id": 2476, "set": "Snow"}, {"name": "Synchro Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "bracelet", "id": 3604, "set": "Synch Core"}, {"name": "Thunder Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 135, "tDef": 3, "lvl": 25, "dexReq": 15, "dex": 4, "tDamPct": 10, "tDefPct": 4, "id": 2482, "set": "Thunder Relic"}, {"name": "Staff of the Dark Vexations", "tier": "Set", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "4-9", "wDam": "6-7", "aDam": "0-0", "tDam": "1-13", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -10, "dex": 4, "int": 4, "def": 4, "id": 2479, "set": "Vexing"}, {"name": "Thunder Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 260, "tDef": 9, "lvl": 35, "dexReq": 27, "dex": 7, "tDamPct": 14, "tDefPct": 8, "id": 2481, "set": "Thunder Relic"}, {"name": "Thunder Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 190, "tDef": 6, "lvl": 30, "dexReq": 21, "dex": 5, "tDamPct": 12, "tDefPct": 6, "id": 2483, "set": "Thunder Relic"}, {"name": "Thunder Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 335, "tDef": 12, "lvl": 40, "dexReq": 42, "dex": 8, "tDamPct": 16, "tDefPct": 10, "id": 2485, "set": "Thunder Relic"}, {"name": "Time Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 10, "type": "ring", "fixID": true, "id": 2488, "set": "Clock"}, {"name": "Tribal Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "lvl": 18, "lb": 8, "mdRaw": 20, "fixID": true, "id": 2491, "set": "Tribal"}, {"name": "Tribal Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 5, "agi": 3, "fixID": true, "id": 2484, "set": "Tribal"}, {"name": "Tribal Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 18, "mdPct": 10, "lb": 5, "fixID": true, "id": 2490, "set": "Tribal"}, {"name": "Tribal Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 18, "lb": 7, "agi": 2, "fixID": true, "id": 2487, "set": "Tribal"}, {"name": "Ultramarine Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 950, "wDef": 40, "tDef": -40, "lvl": 63, "intReq": 90, "mr": 5, "lb": 8, "int": 7, "wDefPct": 8, "id": 2486, "set": "Ultramarine"}, {"name": "Ultramarine Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 880, "wDef": 80, "tDef": -20, "lvl": 61, "intReq": 80, "sdPct": 7, "lb": 7, "wDefPct": 8, "id": 2489, "set": "Ultramarine"}, {"name": "Veekhat's Horns", "tier": "Set", "type": "helmet", "quest": "Cowfusion", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "eDef": 150, "lvl": 89, "mdRaw": 180, "eDamPct": 20, "id": 2492, "set": "Veekhat's"}, {"name": "Ultramarine Cape", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "tDef": -70, "lvl": 65, "intReq": 100, "mr": 10, "mdPct": -14, "lb": 9, "wDefPct": 8, "id": 2495, "set": "Ultramarine"}, {"name": "Ultramarine Crown", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 800, "wDef": 140, "lvl": 59, "intReq": 70, "lb": 6, "int": 7, "wDefPct": 8, "id": 2493, "set": "Ultramarine"}, {"name": "Villager Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "lvl": 26, "xpb": 5, "lb": 10, "id": 2498, "set": "Villager"}, {"name": "Veekhat's Udders", "tier": "Set", "type": "chestplate", "quest": "Cowfusion", "sprint": 18, "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "aDef": 150, "lvl": 89, "ms": 5, "aDamPct": 18, "id": 2494, "set": "Veekhat's"}, {"name": "Visceral Chest", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1545, "fDef": -25, "wDef": -25, "aDef": -25, "tDef": -25, "eDef": -25, "lvl": 71, "mdPct": 15, "hprRaw": 50, "mdRaw": 100, "id": 2497, "set": "Visceral"}, {"name": "Visceral Skullcap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "lvl": 68, "mdPct": 13, "ls": 80, "hprRaw": 39, "id": 2496, "set": "Visceral"}, {"name": "Villager Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 24, "xpb": 10, "lb": 5, "id": 2500, "set": "Villager"}, {"name": "Visceral Toe", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1445, "lvl": 69, "mdPct": 10, "ls": 60, "mdRaw": 75, "id": 2503, "set": "Visceral"}, {"name": "Water Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 130, "wDef": 6, "lvl": 25, "intReq": 15, "int": 4, "wDamPct": 4, "wDefPct": 10, "id": 2501, "set": "Water Relic"}, {"name": "Water Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "wDef": 18, "lvl": 35, "intReq": 27, "int": 7, "wDamPct": 8, "wDefPct": 14, "id": 2505, "set": "Water Relic"}, {"name": "Watch Bracelet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 86, "lb": 6, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2502, "set": "Clock"}, {"name": "Water Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 185, "wDef": 12, "lvl": 30, "intReq": 21, "int": 5, "wDamPct": 6, "wDefPct": 12, "id": 2504, "set": "Water Relic"}, {"name": "Water Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 320, "wDef": 24, "lvl": 40, "intReq": 42, "int": 8, "wDamPct": 10, "wDefPct": 16, "id": 2506, "set": "Water Relic"}, {"name": "Reciprocator", "tier": "Rare", "type": "relik", "thorns": 40, "category": "weapon", "slots": 1, "drop": "never", "nDam": "240-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "ref": 40, "agi": 10, "def": -10, "spd": -10, "wDamPct": 15, "fixID": true, "spRaw1": -5, "id": 2509}, {"name": "Ablution", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 12, "mr": 5, "int": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "tDefPct": -10, "fixID": true, "id": 2507}, {"name": "Ciel", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "28-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 50, "ms": 5, "xpb": 10, "dex": 5, "tDamPct": 22, "tDefPct": 8, "fixID": true, "id": 2508}, {"name": "Ahms' Remains", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "hp": 2550, "aDef": -120, "eDef": 90, "lvl": 97, "strReq": 65, "sdPct": 15, "mdPct": 12, "ms": 10, "str": 8, "sdRaw": 205, "eDamPct": 10, "aDefPct": -15, "fixID": true, "id": 2512}, {"name": "Earth Drift", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "70-101", "tDam": "0-0", "eDam": "32-50", "atkSpd": "VERY_FAST", "lvl": 95, "strReq": 50, "agiReq": 30, "mdPct": 12, "str": 4, "agi": 8, "spd": 12, "sdRaw": -45, "mdRaw": 50, "eDamPct": 20, "fixID": true, "id": 2511}, {"name": "Highrise", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "120-142", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "agiReq": 50, "ms": 5, "hpBonus": -1200, "aDamPct": 20, "fDefPct": -20, "fixID": true, "jh": 2, "id": 2513}, {"name": "Fallbreakers", "tier": "Rare", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 3600, "fDef": 120, "wDef": 110, "aDef": 80, "tDef": 100, "eDef": 90, "lvl": 95, "defReq": 40, "ref": 15, "def": 10, "hprRaw": 195, "fDefPct": 10, "wDefPct": 15, "aDefPct": 30, "tDefPct": 20, "eDefPct": 25, "fixID": true, "id": 2519}, {"name": "Island Sniper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "425-845", "fDam": "0-0", "wDam": "0-0", "aDam": "400-425", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 96, "agiReq": 55, "mdPct": 15, "ms": 5, "dex": 7, "hpBonus": -1750, "tDamPct": 10, "fixID": true, "id": 2514}, {"name": "Restorator", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-60", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "defReq": 55, "hprPct": 40, "str": 7, "def": 4, "hpBonus": 2500, "hprRaw": 230, "wDefPct": 20, "eDefPct": 15, "fixID": true, "id": 2515}, {"name": "Shard of Sky", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-160", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "agiReq": 55, "dex": 6, "agi": 10, "spd": 16, "aDamPct": 16, "aDefPct": 8, "fixID": true, "id": 2521}, {"name": "Stormcloud", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-60", "fDam": "0-0", "wDam": "145-170", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 55, "mr": 10, "mdPct": -30, "int": 10, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "fixID": true, "id": 2520}, {"name": "Skyfloat", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "never", "hp": 2750, "fDef": 50, "wDef": -150, "aDef": 150, "eDef": -50, "lvl": 94, "agiReq": 50, "mr": 10, "agi": 8, "def": 12, "spd": 15, "hprRaw": 230, "fixID": true, "jh": 1, "id": 2518}, {"name": "Vagabond's Disgrace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "200-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "300-340", "eDam": "300-340", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 65, "dexReq": 70, "mdPct": 30, "eSteal": 5, "wDamPct": -50, "tDamPct": 20, "eDamPct": 20, "wDefPct": -50, "fixID": true, "spPct4": 35, "id": 2522}, {"name": "Stalactite", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2875, "wDef": -70, "aDef": -100, "tDef": 140, "eDef": 140, "lvl": 96, "strReq": 60, "dexReq": 50, "ls": 285, "lb": 10, "tDamPct": 14, "eDamPct": 14, "aDefPct": -12, "fixID": true, "spPct1": -14, "spPct3": -14, "spPct4": 35, "id": 2516}, {"name": "Visceral Legs", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "lvl": 70, "ls": 110, "hprRaw": 65, "mdRaw": 60, "id": 2499, "set": "Visceral"}, {"name": "Clawctus", "tier": "Unique", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 31, "dex": 3, "mdRaw": 25, "eDamPct": 7, "fixID": true, "id": 2523}, {"name": "Drought Savior", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-24", "fDam": "0-0", "wDam": "14-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "intReq": 15, "hprPct": 5, "mr": 5, "hpBonus": 35, "hprRaw": 12, "fixID": true, "id": 2525}, {"name": "Crocodile", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 220, "wDef": 10, "lvl": 34, "intReq": 5, "int": 2, "spd": -6, "sdRaw": 30, "fixID": true, "id": 2524}, {"name": "Hood of the Resistance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 175, "aDef": -8, "tDef": 5, "eDef": 5, "lvl": 32, "strReq": 15, "lb": 4, "str": 4, "eSteal": 3, "fixID": true, "id": 2526}, {"name": "Drywind", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-14", "fDam": "0-0", "wDam": "0-0", "aDam": "16-26", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 15, "sdPct": 6, "ref": 5, "agi": 2, "spd": 5, "fixID": true, "id": 2530}, {"name": "Venom", "tier": "Unique", "type": "bow", "poison": 160, "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "nDam": "28-40", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "hprPct": -12, "def": 3, "hprRaw": 14, "fixID": true, "id": 2529}, {"name": "Spider Silk Carduroys", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 185, "lvl": 29, "hprPct": 10, "ls": 13, "agi": 3, "fixID": true, "id": 2532}, {"name": "Boundary", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-70", "atkSpd": "SLOW", "lvl": 26, "strReq": 15, "sdPct": -10, "str": 8, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2528}, {"name": "Vagabond", "tier": "Rare", "type": "chestplate", "poison": 90, "category": "armor", "slots": 1, "drop": "never", "hp": 160, "tDef": 10, "eDef": -12, "lvl": 33, "dexReq": 20, "agiReq": 10, "xpb": 7, "dex": 2, "agi": 2, "spd": 6, "fixID": true, "id": 2527}, {"name": "Horseshoe", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 44, "agiReq": 15, "agi": 2, "spd": 9, "mdRaw": 16, "type": "ring", "fixID": true, "id": 2535}, {"name": "Bountiful", "tier": "Unique", "type": "wand", "poison": -20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-8", "atkSpd": "NORMAL", "lvl": 19, "xpb": 10, "lb": 15, "hprRaw": 5, "fixID": true, "id": 2534}, {"name": "Savannah Wind", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "4-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 19, "agiReq": 8, "xpb": 5, "ref": 8, "agi": 4, "spd": 8, "hpBonus": -40, "fixID": true, "id": 2531}, {"name": "Pursuit", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-7", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "agiReq": 5, "ls": 7, "dex": 4, "spd": 12, "aDamPct": 8, "fixID": true, "id": 2536}, {"name": "Acevro", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "105-150", "fDam": "0-0", "wDam": "0-0", "aDam": "85-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "agiReq": 30, "mr": 5, "def": -10, "spd": 15, "wDamPct": 40, "aDamPct": 20, "fixID": true, "id": 2541}, {"name": "Smithy", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": -15, "eDef": 10, "lvl": 47, "fDamPct": 6, "eDamPct": 6, "fDefPct": 7, "eDefPct": 7, "type": "ring", "fixID": true, "id": 2543}, {"name": "Stainless Steel", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 48, "defReq": 30, "ref": 8, "type": "bracelet", "fixID": true, "id": 2538}, {"name": "Ascension", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-30", "fDam": "0-0", "wDam": "0-0", "aDam": "60-60", "tDam": "60-60", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "ms": 5, "str": -4, "dex": 8, "agi": 8, "def": -4, "spd": 12, "wDamPct": -15, "fixID": true, "id": 2540}, {"name": "Calor", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1875, "fDef": 100, "lvl": 74, "defReq": 45, "hprPct": 15, "def": 7, "hprRaw": 70, "fDamPct": 10, "fDefPct": 10, "wDefPct": -20, "fixID": true, "id": 2546}, {"name": "Golem Gauntlet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 45, "defReq": 20, "str": 1, "def": 5, "spd": -6, "type": "bracelet", "fixID": true, "id": 2533}, {"name": "Charger", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "aDef": 35, "tDef": 35, "lvl": 72, "dexReq": 15, "agiReq": 15, "sdPct": 8, "mdPct": 8, "dex": 3, "agi": 3, "spd": 16, "aDamPct": 12, "tDamPct": 12, "fixID": true, "id": 2542}, {"name": "Cinfras Souvenir T-Shirt", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NEVER", "hp": 10, "lvl": 1, "id": 3631}, {"name": "Cold Snap", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1450, "wDef": 50, "aDef": 50, "lvl": 71, "intReq": 10, "agiReq": 15, "ref": 15, "int": 3, "agi": 3, "fDamPct": -15, "wDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2544}, {"name": "Courser", "tier": "Unique", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 15, "dex": 5, "spd": 5, "tDamPct": 25, "fixID": true, "id": 2545}, {"name": "Crying Heart", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "ls": -145, "dex": 10, "tDamPct": 10, "eDamPct": 15, "fixID": true, "id": 2549}, {"name": "Diabloviento", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "90-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "agiReq": 25, "spd": 15, "fDamPct": 25, "aDamPct": 15, "fixID": true, "id": 2547}, {"name": "Blade of Instinct", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "defReq": 10, "ref": 20, "def": 2, "hpBonus": 30, "fixID": true, "id": 2537}, {"name": "Forge's Shock", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "95-105", "wDam": "0-0", "aDam": "0-0", "tDam": "100-125", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 28, "defReq": 28, "xpb": 15, "spd": -15, "mdRaw": 130, "fDamPct": 20, "fDefPct": 20, "fixID": true, "id": 2550}, {"name": "Enerxia", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 20, "mdPct": 10, "ms": 5, "dex": 5, "tDamPct": 20, "eDamPct": -15, "fixID": true, "id": 2548}, {"name": "Howler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1025, "aDef": 60, "lvl": 70, "agiReq": 20, "sdPct": 15, "agi": 5, "mdRaw": 100, "aDamPct": 15, "fixID": true, "id": 2559}, {"name": "Heart Piercer", "tier": "Unique", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "sdRaw": -50, "mdRaw": 85, "fixID": true, "id": 2552}, {"name": "Ivoire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "55-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 15, "int": 5, "hpBonus": 200, "wDamPct": 40, "fixID": true, "id": 2554}, {"name": "Pewter Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 70, "lvl": 46, "defReq": 10, "def": 3, "type": "ring", "fixID": true, "id": 2539}, {"name": "Letum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "tDef": 65, "lvl": 72, "dexReq": 35, "sdPct": 15, "mdPct": 15, "dex": 7, "def": -10, "expd": 10, "tDamPct": 25, "eDefPct": -15, "fixID": true, "id": 2556}, {"name": "Magic Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1350, "wDef": 90, "lvl": 73, "intReq": 35, "sdPct": 12, "mdPct": -15, "int": 5, "sdRaw": 30, "wDamPct": 20, "fixID": true, "id": 2553}, {"name": "Regar", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-125", "fDam": "0-0", "wDam": "25-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 73, "intReq": 25, "sdPct": 15, "sdRaw": 65, "mdRaw": -91, "wDamPct": 30, "fixID": true, "id": 2557}, {"name": "Miotal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "144-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "72-120", "atkSpd": "SLOW", "lvl": 74, "strReq": 25, "def": 5, "hpBonus": 300, "fDamPct": 25, "fDefPct": 10, "eDefPct": 10, "fixID": true, "id": 2555}, {"name": "Rocher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 70, "strReq": 30, "mdPct": 15, "str": 10, "spd": -10, "eDefPct": 15, "fixID": true, "id": 2560}, {"name": "Silencer", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 1700, "fDef": 90, "lvl": 70, "defReq": 20, "def": 5, "hprRaw": 75, "sdRaw": -100, "fDefPct": 15, "fixID": true, "id": 2562}, {"name": "Router", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "fDef": 50, "eDef": 50, "lvl": 72, "strReq": 15, "defReq": 15, "str": 3, "agi": -5, "def": 3, "spd": -12, "fDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2558}, {"name": "Searing Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 1450, "fDef": 65, "lvl": 71, "defReq": 25, "hprPct": 20, "def": 5, "expd": 5, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2563}, {"name": "Stone Crunch", "tier": "Rare", "type": "relik", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-113", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-175", "atkSpd": "NORMAL", "lvl": 74, "strReq": 40, "ms": -5, "mdRaw": 160, "eDamPct": 10, "wDefPct": -20, "fixID": true, "id": 2564}, {"name": "Sleek", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "19-28", "fDam": "0-0", "wDam": "0-0", "aDam": "45-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 25, "lb": 5, "ref": 15, "agi": 10, "spd": 15, "fixID": true, "id": 2561}, {"name": "Solum", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1700, "eDef": 110, "lvl": 73, "strReq": 40, "str": 7, "eDamPct": 15, "fDefPct": 10, "aDefPct": -10, "tDefPct": 10, "eDefPct": 15, "fixID": true, "id": 2566}, {"name": "Vis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "wDef": 75, "lvl": 71, "intReq": 30, "mr": 10, "int": 7, "wDamPct": 10, "tDefPct": -10, "fixID": true, "id": 2569}, {"name": "Torch", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "defReq": 30, "def": 5, "hpBonus": 400, "fDamPct": 70, "wDamPct": -60, "fixID": true, "id": 2565}, {"name": "Tragedy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 25, "mr": -5, "ms": -5, "str": -10, "hpBonus": -100, "wDamPct": 50, "fixID": true, "id": 2567}, {"name": "Composite Shooter", "displayName": "Pressure Blaster", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-140", "fDam": "0-0", "wDam": "100-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 50, "mr": 10, "int": 12, "sdRaw": 150, "fixID": true, "id": 2568}, {"name": "Carbon Weave", "tier": "Unique", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "fDef": 70, "aDef": -120, "eDef": 70, "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 10, "str": 8, "def": 8, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2570}, {"name": "Heavy Aegis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 1500, "eDef": 75, "lvl": 73, "strReq": 35, "sdPct": -12, "mdPct": 15, "str": 5, "eDamPct": 20, "eDefPct": 10, "fixID": true, "id": 2551}, {"name": "Corkian War Pick", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "115-140", "tDam": "115-140", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "dexReq": 35, "agiReq": 35, "mdPct": 10, "str": 8, "spd": 10, "mdRaw": 150, "aDamPct": 10, "tDamPct": 10, "fDefPct": -20, "wDefPct": -20, "fixID": true, "id": 2572}, {"name": "Genetor", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "65-125", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "dexReq": 50, "ms": 5, "ref": 12, "dex": 5, "sdRaw": 145, "tDefPct": 10, "fixID": true, "id": 2575}, {"name": "Gear Grinder", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-150", "fDam": "25-75", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "defReq": 40, "mr": 5, "sdPct": 8, "mdPct": 12, "xpb": 8, "expd": 20, "fixID": true, "id": 2574}, {"name": "Cranial Panel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 2150, "fDef": 60, "wDef": 60, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "intReq": 30, "defReq": 30, "mr": 10, "sdPct": -15, "mdPct": -25, "int": 14, "def": 14, "hprRaw": 100, "fDefPct": 10, "wDefPct": 10, "fixID": true, "id": 2573}, {"name": "Corkian Jet Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 2225, "wDef": 60, "tDef": 60, "lvl": 86, "agi": 5, "spd": 20, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "fixID": true, "jh": 2, "id": 2571}, {"name": "Info Visor", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1600, "wDef": 115, "eDef": -100, "lvl": 85, "dexReq": 30, "intReq": 40, "sdPct": 5, "xpb": 15, "int": 20, "sdRaw": 65, "fixID": true, "id": 2577}, {"name": "Latency", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2250, "aDef": -180, "tDef": 120, "eDef": 30, "lvl": 87, "strReq": 50, "dexReq": 50, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 5, "dex": 5, "spd": -15, "tDamPct": 18, "eDamPct": 18, "fixID": true, "id": 2580}, {"name": "Hydrocharger", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "32-40", "fDam": "0-0", "wDam": "24-48", "aDam": "0-0", "tDam": "24-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 30, "mdPct": -30, "dex": 5, "int": 5, "aDefPct": -40, "fixID": true, "id": 2576}, {"name": "Metal Body Suit", "tier": "Unique", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2575, "fDef": 80, "wDef": -80, "tDef": 80, "eDef": -80, "lvl": 88, "dexReq": 40, "defReq": 40, "ls": 165, "ref": 15, "dex": 4, "int": -21, "agi": 6, "def": 4, "spd": 10, "fixID": true, "spPct1": -17, "id": 2579}, {"name": "Siliquartz Blend", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2300, "lvl": 87, "sdPct": 20, "xpb": 5, "sdRaw": 130, "fixID": true, "id": 2583}, {"name": "Skyline Cries", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "57-63", "fDam": "110-130", "wDam": "110-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "intReq": 40, "defReq": 25, "int": 5, "def": 10, "spd": -10, "hpBonus": 2750, "fixID": true, "spRaw2": 15, "id": 2578}, {"name": "Shortout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-50", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "dexReq": 40, "ls": -145, "ref": 14, "expd": 22, "tDamPct": 26, "wDefPct": -12, "fixID": true, "id": 2581}, {"name": "Solar Sword", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "160-250", "fDam": "80-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "defReq": 50, "hprPct": 20, "ls": 260, "def": 7, "hpBonus": 1600, "fDefPct": 30, "eDefPct": -10, "fixID": true, "id": 2585}, {"name": "The Airway", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "63-69", "fDam": "0-0", "wDam": "0-0", "aDam": "56-66", "tDam": "41-81", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "dexReq": 35, "agiReq": 30, "dex": 8, "spd": 10, "aDamPct": 12, "tDamPct": 12, "eDefPct": -30, "fixID": true, "jh": 1, "id": 2582}, {"name": "Windmill", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "agiReq": 40, "ref": 30, "agi": 5, "spd": 7, "aDamPct": 30, "aDefPct": 20, "fixID": true, "id": 2587}, {"name": "Thermals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-105", "fDam": "98-102", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 45, "spd": 10, "hprRaw": 160, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw2": -10, "id": 2586}, {"name": "Candy Cane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-26", "fDam": "13-20", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 10, "defReq": 15, "hprPct": 25, "mdPct": -5, "ls": 90, "agi": 6, "spd": 12, "hprRaw": 15, "wDefPct": -8, "fixID": true, "id": 2589}, {"name": "Black Ice", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-95", "fDam": "0-0", "wDam": "22-35", "aDam": "0-0", "tDam": "18-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "dexReq": 20, "intReq": 20, "mr": 5, "sdPct": 12, "mdPct": -20, "dex": 5, "int": 5, "sdRaw": 75, "eDamPct": -20, "fixID": true, "id": 2588}, {"name": "The Modulator", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "never", "hp": 2500, "lvl": 88, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "spd": 15, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2584}, {"name": "Cornucopia", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "190-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "hprPct": 30, "mr": 5, "sdPct": -10, "mdPct": -10, "xpb": 10, "lb": 10, "hprRaw": 80, "fixID": true, "id": 2593}, {"name": "Evergreen", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "NORMAL", "lvl": 85, "strReq": 35, "intReq": 45, "sdPct": 14, "mdPct": 10, "str": 5, "int": 5, "fDamPct": -18, "wDamPct": 25, "aDefPct": -30, "fixID": true, "id": 2591}, {"name": "Douglas Fir", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1950, "eDef": 100, "lvl": 75, "strReq": 35, "hprPct": 20, "str": 5, "def": 7, "mdRaw": 205, "aDefPct": -10, "eDefPct": 15, "fixID": true, "id": 2595}, {"name": "Charity", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "hprPct": 12, "lb": 12, "spRegen": 15, "type": "ring", "fixID": true, "id": 2590}, {"name": "Fellowship", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 65, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 10, "type": "bracelet", "fixID": true, "id": 2592}, {"name": "Frankincense", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 200, "lvl": 55, "sdPct": -5, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2597}, {"name": "Firewood", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "95-155", "fDam": "55-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "strReq": 25, "sdPct": -6, "mdPct": 12, "str": 5, "expd": 15, "eDamPct": 15, "wDefPct": -10, "fixID": true, "id": 2594}, {"name": "Gift of the Magi", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "never", "nDam": "130-145", "fDam": "30-35", "wDam": "0-0", "aDam": "30-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 60, "defReq": 60, "mr": 5, "agi": 15, "def": 15, "hpBonus": 2500, "hprRaw": 135, "tDamPct": -50, "eDamPct": -50, "wDefPct": 30, "fixID": true, "id": 2599}, {"name": "Frost", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 20, "lvl": 70, "intReq": 25, "spd": -6, "sdRaw": 30, "wDamPct": 7, "aDamPct": 5, "type": "ring", "fixID": true, "id": 2596}, {"name": "Halation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "90-125", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "dexReq": 45, "sdPct": 10, "xpb": 15, "ref": 33, "dex": 6, "aDamPct": 15, "tDefPct": 10, "fixID": true, "id": 2598}, {"name": "Holly", "tier": "Rare", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-24", "fDam": "0-0", "wDam": "11-18", "aDam": "0-0", "tDam": "0-0", "eDam": "17-28", "atkSpd": "NORMAL", "lvl": 45, "strReq": 10, "intReq": 5, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 5, "wDefPct": 15, "fixID": true, "id": 2602}, {"name": "Icicle", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "77-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "intReq": 40, "ms": 5, "ref": 15, "int": 7, "sdRaw": 100, "wDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2601}, {"name": "Hillich", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "64-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "mr": 5, "xpb": 20, "spRegen": 25, "hprRaw": 30, "fixID": true, "id": 2600}, {"name": "Joyous", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "xpb": 33, "lb": 10, "spRegen": 10, "fixID": true, "id": 2605}, {"name": "Mistletoe", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 120, "wDef": 20, "eDef": 20, "lvl": 50, "strReq": 10, "intReq": 10, "wDamPct": 5, "eDamPct": 5, "wDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2606}, {"name": "Myrrh", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -100, "wDef": 10, "lvl": 65, "intReq": 50, "mr": 5, "sdPct": 4, "type": "ring", "fixID": true, "id": 2604}, {"name": "Nativitate", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "xpb": 10, "lb": 33, "eSteal": 5, "fixID": true, "id": 2603}, {"name": "Polar Star", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "107-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 45, "sdPct": 10, "mdPct": 10, "xpb": 10, "dex": 10, "spd": 10, "sdRaw": 100, "eDamPct": -10, "fixID": true, "id": 2609}, {"name": "Reindeer Paws", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 800, "fDef": -40, "lvl": 60, "strReq": 15, "agiReq": 15, "mdPct": 12, "str": 4, "agi": 4, "spd": 16, "aDamPct": 8, "eDamPct": 8, "fixID": true, "id": 2607}, {"name": "Roasted Chestnut", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "defReq": 25, "hprRaw": 50, "type": "necklace", "fixID": true, "id": 2610}, {"name": "Blue Ornament", "tier": "Set", "category": "accessory", "drop": "never", "wDef": 25, "lvl": 45, "xpb": 6, "wDamPct": 6, "type": "ring", "fixID": true, "id": 2611, "set": "Wynnterfest 2016"}, {"name": "North Pole", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-50", "fDam": "17-25", "wDam": "0-0", "aDam": "17-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "agiReq": 20, "defReq": 20, "lb": 15, "agi": 7, "def": 7, "spd": 10, "fDefPct": 20, "aDefPct": 20, "fixID": true, "id": 2608}, {"name": "Elf Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "fDef": 10, "aDef": 40, "lvl": 50, "agiReq": 35, "lb": 9, "agi": 5, "spd": 8, "fixID": true, "id": 2612, "set": "Elf"}, {"name": "Elf Robe", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 775, "fDef": 40, "aDef": 10, "lvl": 50, "defReq": 35, "lb": 8, "def": 5, "hprRaw": 35, "fixID": true, "id": 2613, "set": "Elf"}, {"name": "Elf Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 730, "fDef": 30, "aDef": 20, "lvl": 50, "agiReq": 10, "defReq": 25, "lb": 9, "spd": 6, "hprRaw": 30, "fixID": true, "id": 2614, "set": "Elf"}, {"name": "Elf Shoes", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 685, "fDef": 20, "aDef": 30, "lvl": 50, "agiReq": 25, "defReq": 10, "hprPct": 15, "lb": 9, "spd": 6, "fixID": true, "id": 2617, "set": "Elf"}, {"name": "Green Ornament", "tier": "Set", "category": "accessory", "drop": "never", "eDef": 25, "lvl": 55, "xpb": 6, "eDamPct": 6, "type": "necklace", "fixID": true, "id": 2615, "set": "Wynnterfest 2016"}, {"name": "Saint's Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 1650, "wDef": 30, "aDef": 40, "lvl": 70, "intReq": 60, "agiReq": 65, "xpb": 15, "int": 5, "spd": 15, "aDamPct": 15, "fixID": true, "id": 2620, "set": "Saint's"}, {"name": "Red Ornament", "tier": "Set", "category": "accessory", "drop": "never", "fDef": 25, "lvl": 50, "xpb": 6, "fDamPct": 6, "type": "bracelet", "fixID": true, "id": 2616, "set": "Wynnterfest 2016"}, {"name": "Saint's Shawl", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "wDef": 60, "lvl": 70, "intReq": 60, "xpb": 10, "ref": 15, "int": 8, "fixID": true, "id": 2619, "set": "Saint's"}, {"name": "Saint's Sandals", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "aDef": 60, "lvl": 70, "agiReq": 60, "xpb": 10, "agi": 8, "spd": 15, "fixID": true, "id": 2618, "set": "Saint's"}, {"name": "Saint's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "wDef": 40, "aDef": 30, "lvl": 70, "intReq": 65, "agiReq": 60, "xpb": 15, "ref": 15, "agi": 5, "wDamPct": 15, "fixID": true, "id": 2622, "set": "Saint's"}, {"name": "Sheet Ice", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-80", "fDam": "0-0", "wDam": "35-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 85, "intReq": 50, "sdPct": 15, "mdPct": -15, "ref": 25, "int": 7, "sdRaw": 100, "fDamPct": -15, "fixID": true, "id": 2623}, {"name": "Yellow Ornament", "tier": "Set", "category": "accessory", "drop": "never", "tDef": 25, "lvl": 50, "xpb": 6, "tDamPct": 6, "type": "ring", "fixID": true, "id": 2621, "set": "Wynnterfest 2016"}, {"name": "Sleigh Bell", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-70", "fDam": "0-0", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 45, "agi": 15, "spd": 15, "aDamPct": 15, "aDefPct": 15, "fixID": true, "id": 2627}, {"name": "Silent Night", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1050-1225", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 65, "ls": 250, "spd": -8, "tDamPct": 15, "tDefPct": 10, "fixID": true, "spRaw3": -15, "id": 2624}, {"name": "Snow Shovel", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "220-300", "aDam": "160-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 75, "intReq": 30, "agiReq": 30, "sdPct": 25, "ms": 5, "int": 10, "spd": -10, "wDamPct": 10, "aDamPct": 15, "fDefPct": -10, "fixID": true, "id": 2626}, {"name": "Sleet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-65", "fDam": "0-0", "wDam": "100-290", "aDam": "0-0", "tDam": "0-390", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 85, "dexReq": 35, "intReq": 35, "sdPct": 25, "ms": 5, "spd": -10, "hprRaw": -150, "sdRaw": 130, "fDamPct": -35, "wDamPct": 15, "aDamPct": -35, "tDamPct": 15, "eDamPct": -35, "fixID": true, "id": 2625}, {"name": "Snowdrift", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-135", "fDam": "0-0", "wDam": "155-195", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "intReq": 30, "mr": 5, "sdPct": 20, "int": 8, "spd": -8, "wDamPct": 10, "wDefPct": 20, "fixID": true, "id": 2630}, {"name": "Snowflake", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 20, "aDef": 20, "lvl": 75, "intReq": 50, "mr": 5, "ms": 5, "hprRaw": -55, "type": "necklace", "fixID": true, "id": 2629}, {"name": "Thaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "45-60", "fDam": "20-30", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "intReq": 25, "defReq": 25, "mr": 5, "sdPct": 12, "ref": 15, "int": 7, "def": 4, "expd": 20, "fDefPct": -12, "fixID": true, "id": 2631}, {"name": "Spearmint", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "60-110", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 35, "sdPct": 8, "mdPct": 8, "agi": 10, "spd": 20, "aDamPct": 10, "aDefPct": 10, "fixID": true, "id": 2628}, {"name": "Splinter", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "FAST", "lvl": 45, "xpb": 15, "expd": 15, "spRegen": 15, "mdRaw": 59, "fixID": true, "id": 2632}, {"name": "The Hearth", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "175-225", "fDam": "125-165", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "defReq": 50, "hprPct": 25, "sdPct": -15, "ls": 580, "def": 5, "spRegen": 10, "hprRaw": 180, "wDamPct": -12, "fixID": true, "id": 2633}, {"name": "Warming Heart", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3000, "fDef": 140, "wDef": -250, "aDef": 110, "lvl": 90, "agiReq": 40, "defReq": 50, "hprPct": 25, "sdPct": 17, "ls": 255, "agi": 5, "def": 5, "fDefPct": 25, "fixID": true, "id": 2635}, {"name": "Wooly Cap", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "never", "hp": 575, "wDef": 40, "aDef": 30, "lvl": 45, "def": 10, "wDefPct": 15, "aDefPct": 20, "fixID": true, "id": 2637}, {"name": "Wishing Star", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "strReq": 50, "dexReq": 35, "ms": 5, "lb": 30, "dex": 5, "int": -7, "mdRaw": 70, "eDamPct": 30, "fixID": true, "id": 2636}, {"name": "White Craftmas", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "44-48", "fDam": "0-0", "wDam": "125-140", "aDam": "0-0", "tDam": "0-0", "eDam": "125-140", "atkSpd": "SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "lb": 15, "spd": -10, "wDamPct": 10, "eDamPct": 10, "wDefPct": 15, "aDefPct": 30, "eDefPct": 15, "fixID": true, "id": 2634}, {"name": "Poinsettia", "tier": "Rare", "type": "relik", "poison": 1000, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "60-75", "atkSpd": "FAST", "lvl": 65, "strReq": 30, "intReq": 30, "ms": -5, "str": 5, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 2640}, {"name": "Yuletide", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-40", "atkSpd": "SLOW", "lvl": 55, "defReq": 20, "mdPct": 15, "str": 6, "hpBonus": 150, "fDamPct": 15, "wDamPct": -5, "wDefPct": -10, "fixID": true, "id": 2639}, {"name": "Fuunyet", "tier": "Rare", "type": "spear", "quest": "Troubled Tribesmen", "poison": 1150, "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-225", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "80-100", "eDam": "80-100", "atkSpd": "VERY_SLOW", "lvl": 75, "strReq": 30, "dexReq": 30, "defReq": 30, "ls": 240, "xpb": 15, "str": 6, "dex": 6, "def": 6, "expd": 20, "fixID": true, "id": 2641}, {"name": "Kal Hei", "tier": "Rare", "type": "wand", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "20-30", "aDam": "20-30", "tDam": "0-0", "eDam": "20-30", "atkSpd": "FAST", "lvl": 75, "strReq": 30, "intReq": 30, "agiReq": 30, "mdPct": 30, "ms": 10, "xpb": 15, "str": 6, "int": 6, "agi": 6, "spd": 15, "fixID": true, "id": 2644}, {"name": "Hembwal", "tier": "Rare", "type": "chestplate", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 150, "wDef": -100, "aDef": -100, "tDef": 150, "eDef": 150, "lvl": 76, "strReq": 50, "dexReq": 50, "defReq": 50, "ms": 15, "int": -20, "agi": -20, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2645}, {"name": "Olit Vaniek", "tier": "Rare", "type": "bow", "quest": "Troubled Tribesmen", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-175", "fDam": "70-85", "wDam": "0-0", "aDam": "70-85", "tDam": "0-0", "eDam": "70-85", "atkSpd": "SLOW", "lvl": 75, "strReq": 30, "agiReq": 30, "defReq": 30, "xpb": 15, "str": 6, "agi": 6, "def": 6, "expd": 30, "hpBonus": 1000, "fixID": true, "id": 2647}, {"name": "Vei Haon", "tier": "Rare", "type": "boots", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2000, "fDef": 175, "wDef": -75, "aDef": 175, "tDef": -75, "eDef": 175, "lvl": 74, "strReq": 50, "agiReq": 50, "defReq": 50, "hprPct": 25, "dex": -20, "int": -20, "fDamPct": 15, "aDamPct": 15, "eDamPct": 15, "fDefPct": 40, "aDefPct": 40, "eDefPct": 40, "fixID": true, "id": 2649}, {"name": "Zawah Jed", "tier": "Rare", "type": "dagger", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "36-50", "fDam": "20-25", "wDam": "20-25", "aDam": "20-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "intReq": 30, "agiReq": 30, "defReq": 30, "mr": 15, "xpb": 15, "ref": 15, "int": 6, "agi": 6, "def": 6, "hprRaw": 115, "fixID": true, "id": 2646}, {"name": "Fruma Imported Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 28, "aDef": 3, "lvl": 9, "hprPct": 6, "spd": 4, "hprRaw": 2, "fixID": true, "id": 2650}, {"name": "Armored Culottes", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "never", "hp": 28, "fDef": 3, "lvl": 8, "def": 4, "spd": -4, "fixID": true, "id": 2652}, {"name": "Black Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-7", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 5, "dex": 3, "fixID": true, "id": 2653}, {"name": "Gavel Imported Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "sdPct": 5, "int": 2, "wDamPct": 3, "fixID": true, "id": 2651}, {"name": "Guard Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hpBonus": 15, "hprRaw": 3, "fixID": true, "id": 2654}, {"name": "Merchant Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 18, "lvl": 7, "lb": 7, "spd": 3, "fixID": true, "id": 2658}, {"name": "Jeweled Vestments", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 18, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 6, "xpb": 3, "lb": 8, "fixID": true, "id": 2655}, {"name": "Mail of the Berserker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 34, "wDef": -3, "lvl": 12, "mdPct": 5, "mdRaw": 13, "fixID": true, "id": 2657}, {"name": "Messenger Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 24, "lvl": 8, "lb": 5, "agi": 3, "spd": 6, "fixID": true, "id": 2656}, {"name": "Almuj Turban", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 60, "tDef": 4, "eDef": -4, "lvl": 14, "lb": 5, "dex": 3, "mdRaw": 10, "tDamPct": 8, "eDefPct": -8, "fixID": true, "id": 2648}, {"name": "Nemract Waders", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "wDef": 6, "tDef": -3, "lvl": 16, "sdPct": 5, "lb": 5, "int": 3, "wDamPct": 6, "tDefPct": -6, "fixID": true, "id": 2659}, {"name": "Slush Rush", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-68", "fDam": "0-0", "wDam": "74-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 75, "intReq": 40, "mr": -5, "agi": 5, "spd": 20, "sdRaw": 95, "wDefPct": 20, "aDefPct": 15, "fixID": true, "id": 2643}, {"name": "Pike of Fury", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 12, "dex": 1, "spd": 6, "mdRaw": 8, "fixID": true, "id": 2661}, {"name": "Nesaak Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 65, "fDef": -4, "aDef": 5, "lvl": 14, "xpb": 5, "agi": 3, "spd": 7, "aDamPct": 7, "fDefPct": -7, "fixID": true, "id": 2660}, {"name": "Puncturing Dirk", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdRaw": 6, "mdRaw": 5, "fixID": true, "id": 2664}, {"name": "Refined Longbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "xpb": 4, "dex": 2, "fixID": true, "id": 2663}, {"name": "Ragni Fatigues", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 76, "aDef": -4, "eDef": 5, "lvl": 15, "mdPct": 6, "xpb": 5, "str": 3, "eDamPct": 8, "aDefPct": -7, "fixID": true, "id": 2662}, {"name": "Reinforced Composite Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "60-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "def": 3, "spd": -4, "hpBonus": 25, "fixID": true, "id": 2665}, {"name": "Scout Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "xpb": 4, "agi": 3, "spd": 6, "fixID": true, "id": 2666}, {"name": "Spiritual Siphoner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-18", "fDam": "0-0", "wDam": "3-6", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "mr": 5, "xpb": 8, "spRegen": 10, "fixID": true, "id": 2670}, {"name": "Staff of Wisdom", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "hprPct": 8, "xpb": 6, "fixID": true, "id": 2667}, {"name": "Tromsian Survival Knife", "tier": "Rare", "type": "dagger", "thorns": 9, "category": "weapon", "slots": 1, "drop": "never", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-6", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 6, "str": 4, "fixID": true, "id": 2672}, {"name": "The Magician", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "2-5", "fDam": "0-0", "wDam": "7-10", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 5, "mdPct": -6, "int": 3, "wDamPct": 6, "fixID": true, "id": 2668}, {"name": "Windcatcher Totem", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-11", "fDam": "0-0", "wDam": "0-0", "aDam": "4-5", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "lb": 6, "spd": 10, "fixID": true, "id": 2674}, {"name": "Ashes", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 800, "wDef": -50, "aDef": -50, "lvl": 94, "defReq": 65, "hpBonus": 200, "wDefPct": -10, "aDefPct": -10, "type": "necklace", "fixID": true, "id": 2673}, {"name": "Cinders", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 675, "fDef": 50, "wDef": -70, "lvl": 93, "defReq": 55, "expd": 5, "fDamPct": 9, "wDefPct": -7, "type": "bracelet", "fixID": true, "id": 2675}, {"name": "War Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "sdPct": 3, "mdPct": 5, "str": 2, "hpBonus": -10, "fixID": true, "id": 2671}, {"name": "Pride", "tier": "Rare", "category": "accessory", "drop": "never", "eDef": 20, "lvl": 93, "strReq": 50, "mdPct": 8, "xpb": 5, "str": 5, "type": "bracelet", "fixID": true, "id": 2679}, {"name": "Evapar", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": -30, "wDef": 20, "aDef": 30, "lvl": 94, "agiReq": 60, "int": 3, "spd": 7, "wDamPct": 8, "aDamPct": 8, "type": "ring", "fixID": true, "id": 2698}, {"name": "Iron Will", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 95, "defReq": 75, "hprPct": 15, "sdPct": -5, "def": 4, "hprRaw": 50, "type": "ring", "fixID": true, "id": 2676}, {"name": "The Naturalist", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "20-24", "aDam": "0-0", "tDam": "0-0", "eDam": "24-28", "atkSpd": "SLOW", "lvl": 12, "sdPct": 7, "mdPct": 7, "int": 4, "hprRaw": 8, "fixID": true, "id": 2669}, {"name": "Tungsten", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 92, "dexReq": 40, "dex": 2, "mdRaw": 16, "tDamPct": 8, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 2677}, {"name": "Sparks", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 500, "fDef": 30, "wDef": -20, "lvl": 92, "defReq": 40, "fDamPct": 7, "wDamPct": -7, "type": "ring", "fixID": true, "id": 2678}, {"name": "Dujgon Warrior Hammer", "tier": "Legendary", "type": "spear", "quest": "Ice Nations", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "46-67", "atkSpd": "VERY_FAST", "lvl": 43, "strReq": 15, "dexReq": 5, "str": 6, "dex": 2, "hpBonus": -130, "eDamPct": 8, "fixID": true, "id": 2681}, {"name": "Greysmith", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "drop": "never", "hp": 400, "fDef": -60, "lvl": 43, "strReq": 10, "str": 3, "dex": 4, "tDamPct": 30, "eDamPct": 10, "fixID": true, "id": 2684}, {"name": "Dujgon Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "aDef": 20, "tDef": 10, "lvl": 41, "hprPct": 10, "mdPct": 10, "agi": 8, "eSteal": 10, "aDamPct": 10, "tDamPct": 10, "aDefPct": 20, "tDefPct": 20, "fixID": true, "id": 2680}, {"name": "Rusher", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "aDef": 10, "tDef": 10, "lvl": 40, "agiReq": 20, "agi": 5, "spd": 20, "aDamPct": 15, "tDamPct": 15, "fixID": true, "id": 2683}, {"name": "Antivenom", "tier": "Unique", "poison": -200, "category": "accessory", "drop": "never", "hp": 150, "lvl": 67, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2685}, {"name": "Viking Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "agiReq": 20, "sdPct": -10, "mdPct": 20, "hpBonus": -255, "aDamPct": 15, "eDamPct": 30, "fixID": true, "id": 2682}, {"name": "Cattail", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 10, "lvl": 70, "strReq": 15, "intReq": 10, "sdPct": 5, "mdPct": 5, "wDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2686}, {"name": "Boomslang", "tier": "Rare", "poison": 300, "category": "accessory", "drop": "never", "lvl": 71, "hprPct": -10, "str": 3, "hprRaw": -30, "type": "necklace", "fixID": true, "id": 2688}, {"name": "Glimmer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 67, "xpb": 8, "lb": 8, "tDamPct": 7, "type": "ring", "fixID": true, "id": 2690}, {"name": "Creepvine", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "never", "fDef": -15, "lvl": 69, "strReq": 25, "str": 3, "spd": -8, "eDamPct": 8, "type": "ring", "fixID": true, "id": 2687}, {"name": "Purity", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 5, "spRegen": 15, "type": "necklace", "fixID": true, "id": 2694}, {"name": "Affluence", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 92, "lb": 12, "eSteal": 8, "type": "necklace", "fixID": true, "id": 2691}, {"name": "Diamond Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 525, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 88, "defReq": 40, "lb": 5, "type": "bracelet", "fixID": true, "id": 2692}, {"name": "Growth", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 68, "strReq": 30, "xpb": 4, "str": 4, "dex": 1, "int": 1, "agi": 1, "def": 1, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2689}, {"name": "Emerald Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 89, "lb": 20, "type": "necklace", "fixID": true, "id": 2695}, {"name": "Jewelled Broach", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 90, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2693}, {"name": "Silversplint", "tier": "Rare", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 89, "agiReq": 35, "lb": 5, "ref": 11, "aDamPct": 8, "aDefPct": 5, "type": "bracelet", "fixID": true, "id": 2696}, {"name": "Foehn Wind", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-68", "fDam": "56-72", "wDam": "0-0", "aDam": "52-76", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 41, "agiReq": 14, "defReq": 14, "xpb": 14, "lb": 14, "spRegen": 14, "fDamPct": 14, "aDamPct": 14, "fDefPct": 14, "wDefPct": -28, "aDefPct": 14, "fixID": true, "id": 2700}, {"name": "Decay Burner", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "114-194", "fDam": "469-686", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 62, "defReq": 25, "sdPct": 10, "ms": 5, "expd": 15, "fDamPct": 10, "wDefPct": -12, "fixID": true, "id": 2702}, {"name": "Value", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 91, "xpb": 10, "lb": 15, "type": "bracelet", "fixID": true, "id": 2699}, {"name": "Barkgraft", "tier": "Unique", "type": "relik", "poison": 400, "thorns": 25, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-85", "fDam": "0-0", "wDam": "0-0", "aDam": "160-180", "tDam": "0-0", "eDam": "160-180", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 25, "agiReq": 25, "str": 5, "agi": 5, "spd": -15, "mdRaw": 145, "fDefPct": -50, "fixID": true, "id": 2697}, {"name": "Grave Digger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-90", "atkSpd": "SLOW", "lvl": 61, "strReq": 25, "ls": 145, "lb": 8, "str": 4, "eSteal": 2, "wDamPct": -7, "eDefPct": 5, "fixID": true, "id": 2705}, {"name": "Stringhollow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "agiReq": 20, "ref": 8, "agi": 4, "spd": 12, "hpBonus": -100, "sdRaw": 60, "aDefPct": 8, "fixID": true, "id": 2708}, {"name": "Kerasot Spreader", "tier": "Unique", "type": "spear", "poison": 1000, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "int": -4, "expd": 6, "spd": 6, "fixID": true, "id": 2704}, {"name": "Lookout", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 790, "aDef": 30, "eDef": 30, "lvl": 59, "agiReq": 25, "mdPct": -5, "xpb": 10, "agi": 6, "spd": 12, "aDamPct": 6, "fixID": true, "id": 2701}, {"name": "Searchlight", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "39-56", "fDam": "21-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "defReq": 20, "sdPct": 10, "ref": 8, "dex": 3, "def": 4, "tDamPct": 12, "fixID": true, "id": 2709}, {"name": "The Silent", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 900, "fDef": 40, "wDef": 40, "tDef": -60, "lvl": 62, "intReq": 25, "mr": 5, "sdPct": 12, "mdPct": -8, "xpb": 12, "spd": -8, "sdRaw": 40, "fixID": true, "id": 2707}, {"name": "Vampire Blocker", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "drop": "never", "hp": 1100, "eDef": -25, "lvl": 64, "defReq": 20, "ls": 105, "ref": 5, "def": 4, "fixID": true, "id": 2706}, {"name": "Lycanthropy", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "44-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 35, "int": -6, "hprRaw": -188, "mdRaw": 65, "tDamPct": 24, "wDefPct": -18, "aDefPct": -18, "fixID": true, "id": 2703}, {"name": "Wolf Tagger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "205-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "dexReq": 10, "sdPct": 6, "mdPct": 8, "xpb": 10, "dex": 4, "fixID": true, "id": 2785}, {"name": "Wildfire", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 65, "wDef": -60, "lvl": 60, "defReq": 35, "sdPct": 8, "mdPct": 12, "expd": 7, "sdRaw": 70, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2710}, {"name": "Crystal-Blend Pendant", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 34, "mr": 5, "sdPct": -5, "sdRaw": -15, "type": "necklace", "fixID": true, "id": 2716}, {"name": "Werepelt", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 975, "fDef": -30, "lvl": 61, "sdPct": -18, "mdPct": 15, "spd": 6, "sdRaw": -80, "mdRaw": 105, "fixID": true, "id": 2711}, {"name": "Blood-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "poison": 60, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "type": "necklace", "fixID": true, "id": 2726}, {"name": "Emerald-Tinted Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 31, "xpb": 4, "lb": 8, "type": "necklace", "fixID": true, "id": 2714}, {"name": "Plain Glass Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "lvl": 31, "xpb": 7, "type": "necklace", "fixID": true, "id": 2713}, {"name": "Marrow-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "ls": 10, "type": "necklace", "fixID": true, "id": 2712}, {"name": "Scarab-Shelled Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2715}, {"name": "Sting-Glass Necklace", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -60, "lvl": 37, "sdPct": 5, "mdPct": 5, "sdRaw": 15, "mdRaw": 16, "type": "necklace", "fixID": true, "id": 2718}, {"name": "Goblin Arm Bracer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 75, "lvl": 43, "mdPct": 4, "lb": 9, "def": 4, "type": "bracelet", "fixID": true, "id": 2719}, {"name": "Webbed Glass Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "spd": 10, "type": "necklace", "fixID": true, "id": 2720}, {"name": "Goblin Cloak", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 470, "aDef": -20, "lvl": 45, "strReq": 30, "dexReq": 30, "ls": 33, "ms": 5, "lb": 15, "fixID": true, "id": 2725, "set": "Goblin"}, {"name": "Goblin Hex Focus", "tier": "Rare", "poison": 65, "category": "accessory", "drop": "never", "hp": -70, "lvl": 42, "sdPct": 6, "fDamPct": 3, "wDamPct": 3, "aDamPct": 3, "tDamPct": 3, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2717}, {"name": "Goblin Hood", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 380, "aDef": -10, "lvl": 41, "strReq": 25, "dexReq": 10, "sdPct": -7, "ls": 27, "lb": 10, "spd": 8, "fixID": true, "id": 2721, "set": "Goblin"}, {"name": "Goblin Luck Charm", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 43, "lb": 12, "spRegen": 7, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2722}, {"name": "Goblin-Silver Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 30, "fDef": 6, "wDef": 6, "aDef": 6, "tDef": 6, "eDef": 6, "lvl": 40, "xpb": 4, "lb": 8, "type": "ring", "fixID": true, "id": 2723}, {"name": "Short Cutter", "tier": "Rare", "type": "dagger", "poison": 215, "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 20, "ls": 46, "xpb": 8, "lb": 15, "dex": 5, "spd": 12, "mdRaw": 33, "fixID": true, "id": 2727}, {"name": "Goblin Runners", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "lvl": 43, "strReq": 10, "dexReq": 25, "mdPct": -7, "ms": 5, "lb": 10, "spd": 12, "fixID": true, "id": 2724, "set": "Goblin"}, {"name": "Silver Short Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "strReq": 20, "mdPct": 8, "xpb": 8, "lb": 15, "str": 4, "eSteal": 3, "fixID": true, "id": 2740}, {"name": "Quartz Driller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-35", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 39, "dexReq": 10, "xpb": 6, "lb": 6, "str": 3, "dex": 3, "mdRaw": 46, "fixID": true, "id": 2728}, {"name": "Hue", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-20", "fDam": "17-20", "wDam": "17-20", "aDam": "17-20", "tDam": "17-20", "eDam": "17-20", "atkSpd": "SLOW", "lvl": 39, "strReq": 9, "dexReq": 9, "intReq": 9, "agiReq": 9, "defReq": 9, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "fixID": true, "id": 2731}, {"name": "Hotline", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "36-42", "fDam": "36-42", "wDam": "0-0", "aDam": "0-0", "tDam": "36-42", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "dexReq": 15, "defReq": 15, "ls": 34, "xpb": 8, "dex": 7, "def": 7, "spd": 8, "hprRaw": -17, "fixID": true, "id": 2729}, {"name": "Orc Slasher", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "11-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "hprPct": 10, "mdPct": 5, "spd": 3, "fixID": true, "id": 2730}, {"name": "Deark", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "wDef": -30, "lvl": 76, "dexReq": 50, "dex": 2, "spRegen": -10, "mdRaw": 43, "tDamPct": 8, "tDefPct": 6, "type": "ring", "fixID": true, "id": 2732}, {"name": "Diminished", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 73, "sdPct": 7, "mdPct": 7, "ms": 5, "xpb": -8, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spd": 8, "hpBonus": 300, "type": "ring", "fixID": true, "id": 2734}, {"name": "Fanatic", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 72, "sdPct": 8, "int": -5, "sdRaw": 40, "type": "bracelet", "fixID": true, "id": 2736}, {"name": "Scum", "tier": "Unique", "quest": "Eye of the Storm", "poison": 250, "category": "accessory", "drop": "never", "wDef": 20, "lvl": 74, "intReq": 30, "wDamPct": 7, "type": "ring", "fixID": true, "id": 2737}, {"name": "Famine", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "eDef": -20, "lvl": 75, "agiReq": 40, "ls": 50, "str": -3, "spd": 12, "hprRaw": -20, "type": "ring", "fixID": true, "id": 2733}, {"name": "Destrortur", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": -480, "fDef": -10, "wDef": -5, "aDef": -10, "eDef": -20, "lvl": 76, "dexReq": 50, "hprPct": -24, "dex": 4, "hprRaw": -48, "sdRaw": 45, "mdRaw": 29, "tDamPct": 16, "type": "bracelet", "fixID": true, "id": 2735}, {"name": "Recovery", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": 140, "lvl": 72, "hprPct": 8, "spd": -5, "hprRaw": 40, "type": "ring", "fixID": true, "id": 2739}, {"name": "Blessing", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "12-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 4, "spd": 6, "fDamPct": -10, "fixID": true, "id": 2738}, {"name": "Sacred", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 305, "wDef": 15, "aDef": 10, "lvl": 40, "intReq": 15, "agiReq": 10, "mr": 5, "xpb": 6, "agi": 3, "wDamPct": 5, "aDamPct": 5, "fixID": true, "id": 2744}, {"name": "Traitor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-55", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "defReq": 10, "hprPct": 10, "agi": 2, "def": 3, "spd": 5, "fDamPct": -10, "aDamPct": 15, "fixID": true, "id": 2741}, {"name": "Black Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "category": "armor", "drop": "never", "hp": 100, "lvl": 18, "ls": 8, "lb": 10, "eSteal": 2, "tDamPct": 10, "fixID": true, "id": 2746}, {"name": "Stonebreaker", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "sdPct": -5, "lb": 5, "str": 1, "wDamPct": -15, "fixID": true, "id": 2743}, {"name": "Bush Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc5NWVkZWViNmI3ZWQ0MWMyNjhjZWZlYWZiZTk2MGI3YzQ5NTUwZGFlYjYzMWI1NjE1NmJmNWZlYjk4NDcifX19", "thorns": 8, "category": "armor", "drop": "never", "hp": 55, "fDef": -10, "eDef": 10, "lvl": 16, "str": 4, "spd": 8, "fixID": true, "id": 2745}, {"name": "Metal Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmJhODQ1OTE0NWQ4M2ZmYzQ0YWQ1OGMzMjYwZTc0Y2E1YTBmNjM0YzdlZWI1OWExYWQzMjM0ODQ5YzkzM2MifX19", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "lvl": 16, "def": 7, "fixID": true, "id": 2747}, {"name": "Ice Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTZhYWI1OGZhMDFmY2U5YWY0NjllZDc0N2FlZDgxMWQ3YmExOGM0NzZmNWE3ZjkwODhlMTI5YzMxYjQ1ZjMifX19", "category": "armor", "drop": "never", "hp": 60, "fDef": -8, "aDef": 12, "lvl": 17, "ms": 5, "ref": 12, "mdRaw": 20, "aDamPct": 10, "fixID": true, "id": 2748}, {"name": "Water Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWM3ZWNiZmQ2ZDMzZTg3M2ExY2Y5YTkyZjU3ZjE0NjE1MmI1MmQ5ZDczMTE2OTQ2MDI2NzExMTFhMzAyZiJ9fX0=", "category": "armor", "drop": "never", "hp": -25, "wDef": 10, "lvl": 17, "mr": 5, "sdPct": 10, "int": 5, "wDamPct": 10, "fixID": true, "id": 2750}, {"name": "Mud Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWVhNmY5MzJiNDVmZGYzYjY5M2Q5ZTQ0YmQwNWJjYTM2NGViNWI5YWZmNDk3MjI2ZmRiNTJhYmIyNDM2NDIyIn19fQ==", "poison": 15, "category": "armor", "drop": "never", "hp": 65, "wDef": 5, "aDef": -10, "eDef": 5, "lvl": 16, "sdPct": 6, "mdPct": 6, "spd": -8, "fixID": true, "id": 2749}, {"name": "Shiny Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjVkN2JlZDhkZjcxNGNlYTA2M2U0NTdiYTVlODc5MzExNDFkZTI5M2RkMWQ5YjkxNDZiMGY1YWIzODM4NjYifX19", "category": "armor", "drop": "never", "hp": 50, "lvl": 15, "xpb": 15, "spRegen": 5, "sdRaw": 10, "fixID": true, "id": 2751}, {"name": "Solid Quartz Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 360, "lvl": 43, "defReq": 20, "hprPct": 10, "def": 5, "hprRaw": 20, "fixID": true, "id": 2742}, {"name": "Rock Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDU0ZDljNDg4YzNmYmRlNTQ1NGUzODYxOWY5Y2M1YjViYThjNmMwMTg2ZjhhYTFkYTYwOTAwZmNiYzNlYTYifX19", "category": "armor", "drop": "never", "hp": 60, "eDef": 5, "lvl": 15, "sdPct": -5, "mdPct": 10, "str": 3, "eDamPct": 5, "fixID": true, "id": 2752}, {"name": "Cracheur", "tier": "Unique", "type": "bow", "thorns": 4, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-14", "fDam": "0-0", "wDam": "12-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "intReq": 14, "sdPct": 6, "int": 2, "aDamPct": 4, "fixID": true, "id": 2753}, {"name": "Arcanic", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 70, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 21, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fixID": true, "id": 2756}, {"name": "Fisher's Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 82, "wDef": 4, "lvl": 22, "hprPct": 8, "xpb": 4, "lb": 8, "dex": 2, "fixID": true, "id": 2755}, {"name": "Foundation", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 90, "eDef": 3, "lvl": 20, "mdPct": 5, "def": 2, "eDamPct": 6, "fixID": true, "id": 2754}, {"name": "Frog", "tier": "Unique", "type": "bow", "poison": 45, "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "4-10", "aDam": "0-0", "tDam": "0-0", "eDam": "6-12", "atkSpd": "NORMAL", "lvl": 19, "strReq": 12, "intReq": 8, "sdPct": -5, "mdPct": -5, "agi": 3, "fixID": true, "id": 2758}, {"name": "Memorial", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 100, "lvl": 19, "intReq": 5, "ms": 5, "spRegen": 10, "fixID": true, "id": 2759}, {"name": "Remembrance", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-23", "fDam": "0-0", "wDam": "0-0", "aDam": "13-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "agiReq": 8, "ref": 8, "spRegen": 10, "aDefPct": 10, "fixID": true, "spPct1": -17, "id": 2763}, {"name": "Shajone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 85, "lvl": 18, "hprRaw": 5, "sdRaw": 5, "mdRaw": 7, "fixID": true, "id": 2757}, {"name": "White Ghost", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-24", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "agiReq": 15, "ms": 5, "agi": 4, "spd": 5, "fixID": true, "id": 2765}, {"name": "Swamp Treads", "tier": "Unique", "type": "boots", "poison": 35, "thorns": 7, "category": "armor", "slots": 1, "drop": "never", "hp": 105, "lvl": 23, "spd": -3, "eSteal": 2, "fixID": true, "id": 2762}, {"name": "The Fallen", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-10", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 23, "xpb": 6, "def": 3, "hpBonus": 50, "fixID": true, "id": 2761}, {"name": "Bob's Sacrifice", "tier": "Unique", "type": "boots", "thorns": 10, "category": "armor", "slots": 1, "drop": "never", "hp": 290, "tDef": -25, "lvl": 45, "strReq": 10, "mdPct": 23, "str": 3, "spd": -6, "mdRaw": -13, "fixID": true, "id": 2764}, {"name": "Celsius", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "11-17", "fDam": "0-0", "wDam": "20-28", "aDam": "18-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "intReq": 20, "agiReq": 15, "ref": 8, "spd": -4, "fDamPct": -20, "wDamPct": 10, "aDamPct": 10, "fixID": true, "id": 2767}, {"name": "Current", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-30", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "xpb": 6, "spd": 5, "sdRaw": 35, "wDamPct": 10, "fixID": true, "id": 2766}, {"name": "Nilrem's Curse", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 310, "wDef": 10, "tDef": 15, "lvl": 40, "dexReq": 15, "xpb": 6, "hprRaw": -15, "sdRaw": 35, "mdRaw": 39, "fixID": true, "id": 2770}, {"name": "Frozen Earth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "34-63", "fDam": "0-0", "wDam": "46-69", "aDam": "0-0", "tDam": "0-0", "eDam": "137-194", "atkSpd": "SUPER_SLOW", "lvl": 40, "strReq": 25, "intReq": 5, "mr": 5, "str": 5, "int": 2, "spd": -7, "aDamPct": 12, "fixID": true, "id": 2769}, {"name": "Homemade Fur Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 375, "fDef": -30, "aDef": 30, "lvl": 44, "agiReq": 15, "hprPct": 15, "agi": 2, "spd": 5, "aDamPct": 7, "aDefPct": 6, "fixID": true, "id": 2768}, {"name": "Summer", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "27-38", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "defReq": 10, "hpBonus": 200, "fDamPct": 8, "eDamPct": 8, "fDefPct": 6, "fixID": true, "id": 2771}, {"name": "Seedling", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "xpb": 4, "str": 2, "type": "necklace", "fixID": true, "id": 2772}, {"name": "Woljawh", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 425, "lvl": 37, "hprPct": 10, "ls": 26, "hprRaw": 20, "fixID": true, "id": 2773}, {"name": "Frankenstein", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-12", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "dexReq": 5, "hprPct": -5, "str": 3, "tDamPct": 7, "eDamPct": 7, "fixID": true, "id": 2760}, {"name": "Flaming War Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-46", "fDam": "50-68", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 5, "def": 5, "hpBonus": 350, "fDamPct": 15, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2776}, {"name": "Tree Bracelet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "hprPct": 6, "type": "bracelet", "fixID": true, "id": 2777}, {"name": "Vine", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 4, "mdPct": 5, "type": "ring", "fixID": true, "id": 2774}, {"name": "Nodguj Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 20, "eDef": 10, "lvl": 41, "hprPct": 25, "mdPct": 5, "def": 8, "eSteal": 10, "fDamPct": 10, "eDamPct": 10, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2775}, {"name": "Shield", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 250, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 40, "defReq": 20, "def": 15, "hprRaw": 20, "fixID": true, "id": 2778}, {"name": "Nodguj Warrior Sword", "tier": "Legendary", "type": "dagger", "quest": "Ice Nations", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "45-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 43, "intReq": 10, "mr": 5, "sdPct": 15, "int": 5, "hpBonus": -200, "wDamPct": 20, "fixID": true, "id": 2779}, {"name": "Strategist", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "lvl": 43, "intReq": 15, "mr": -15, "sdPct": 25, "int": 4, "sdRaw": 40, "wDamPct": 30, "fixID": true, "id": 2781}, {"name": "Chasseur", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 20, "agiReq": 20, "sdPct": -10, "str": 3, "agi": 2, "spd": 6, "aDamPct": 7, "fixID": true, "id": 2780}, {"name": "Longtail Boots", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 600, "lvl": 51, "hprPct": 20, "spd": 14, "fixID": true, "id": 2784}, {"name": "Rotten Swamp", "tier": "Unique", "type": "wand", "poison": 600, "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "SLOW", "lvl": 54, "strReq": 28, "hprPct": -16, "sdPct": 5, "wDamPct": 10, "fixID": true, "id": 2782}, {"name": "Stagnant", "tier": "Rare", "type": "helmet", "poison": 230, "category": "armor", "slots": 2, "drop": "never", "hp": 370, "wDef": 40, "lvl": 49, "intReq": 15, "hprPct": -15, "wDamPct": 10, "eDamPct": 7, "fixID": true, "id": 2786}, {"name": "Waxed Overalls", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 675, "fDef": -45, "wDef": 45, "lvl": 54, "ref": 6, "agi": 4, "spd": 4, "wDefPct": 20, "fixID": true, "id": 2801}, {"name": "Vine Machete", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "40-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "agiReq": 20, "mdPct": 12, "spd": 8, "fDamPct": 12, "eDefPct": 10, "fixID": true, "id": 2783}, {"name": "Captain's Razor", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-50", "fDam": "0-0", "wDam": "6-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 61, "dexReq": 5, "dex": 7, "mdRaw": 47, "wDamPct": 16, "tDamPct": 10, "fixID": true, "id": 2787}, {"name": "Opium", "tier": "Rare", "type": "helmet", "poison": 405, "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "lvl": 63, "xpb": 10, "spd": -10, "fDamPct": 10, "fixID": true, "id": 2788}, {"name": "Pirate Luck", "tier": "Legendary", "type": "boots", "quest": "Beneath The Depths", "category": "armor", "slots": 2, "drop": "never", "hp": 320, "wDef": 60, "lvl": 60, "xpb": 7, "lb": 32, "eSteal": 12, "fixID": true, "id": 2789}, {"name": "Battle Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 20, "lvl": 7, "hprPct": 7, "str": 3, "fixID": true, "id": 2791}, {"name": "Rusty Sword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "60-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 10, "mdPct": 15, "str": 3, "eDamPct": 15, "fixID": true, "id": 2790}, {"name": "Plains Runner", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 8, "lvl": 1, "agi": 2, "fixID": true, "id": 2792}, {"name": "Corkuff", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 87, "intReq": 15, "agiReq": 15, "int": 3, "spd": 6, "wDamPct": 6, "aDamPct": 8, "type": "bracelet", "fixID": true, "id": 2795}, {"name": "Coolant", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 86, "wDamPct": 5, "fDefPct": 8, "wDefPct": 6, "type": "ring", "fixID": true, "id": 2796}, {"name": "Solidified Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 14, "lvl": 4, "xpb": 5, "def": 2, "fixID": true, "id": 2794}, {"name": "Microchip", "tier": "Unique", "category": "accessory", "drop": "never", "tDef": -40, "lvl": 85, "dexReq": 35, "dex": 1, "mdRaw": 17, "tDamPct": 8, "type": "ring", "fixID": true, "id": 2799}, {"name": "Doodad", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "never", "lvl": 87, "xpb": 4, "lb": 4, "ref": 4, "expd": 4, "spd": 4, "spRegen": 4, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2793}, {"name": "Ashen Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "fDef": 70, "aDef": -120, "tDef": 50, "lvl": 92, "dexReq": 40, "defReq": 45, "sdPct": 14, "ms": 10, "ref": -10, "agi": 5, "def": 5, "expd": 12, "fDamPct": 14, "aDamPct": 22, "tDamPct": 14, "fixID": true, "id": 2797}, {"name": "Wristviewer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 86, "sdPct": 4, "xpb": 9, "fDamPct": 4, "wDamPct": 4, "aDamPct": 4, "tDamPct": 4, "eDamPct": 4, "type": "bracelet", "fixID": true, "id": 2800}, {"name": "Quicksilver", "tier": "Rare", "poison": 375, "category": "accessory", "drop": "never", "hp": -600, "aDef": 20, "lvl": 88, "agiReq": 30, "agi": 2, "spd": 10, "type": "necklace", "fixID": true, "id": 2798}, {"name": "Bane of War", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-130", "fDam": "0-0", "wDam": "30-45", "aDam": "20-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 40, "agiReq": 35, "mr": 5, "sdPct": 20, "mdPct": -15, "int": 5, "agi": 5, "spRegen": 10, "mdRaw": -75, "fixID": true, "id": 2802}, {"name": "Comrade", "tier": "Rare", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-215", "fDam": "60-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "defReq": 50, "sdPct": -12, "def": 7, "hpBonus": 2250, "hprRaw": 180, "fDefPct": 20, "eDefPct": -15, "fixID": true, "id": 2807}, {"name": "Diamond Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "56-97", "fDam": "0-0", "wDam": "53-74", "aDam": "53-74", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 35, "agiReq": 35, "hprPct": 20, "mr": 5, "ref": 12, "spd": 12, "fDamPct": -10, "wDefPct": 12, "aDefPct": 12, "fixID": true, "id": 2804}, {"name": "Darkiron Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3275, "fDef": 150, "wDef": -80, "lvl": 90, "defReq": 65, "hprPct": 15, "dex": 10, "def": 5, "spd": -10, "atkTier": -4, "hprRaw": 160, "mdRaw": 850, "fDefPct": 40, "fixID": true, "id": 2803}, {"name": "Eradian Full Helm", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 2500, "fDef": 80, "wDef": 80, "tDef": -60, "eDef": -60, "lvl": 90, "defReq": 50, "hprPct": 15, "sdPct": 20, "mdPct": 20, "ref": 10, "def": 8, "fDamPct": 5, "fixID": true, "id": 2808}, {"name": "Icejewel", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-95", "fDam": "0-0", "wDam": "35-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 55, "ref": 27, "int": 8, "spd": -8, "wDamPct": 20, "wDefPct": 25, "aDefPct": -20, "fixID": true, "id": 2809}, {"name": "Fulminate Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "80-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "defReq": 50, "mdPct": 12, "def": 6, "expd": 25, "hpBonus": 1000, "fDamPct": 15, "eDefPct": -15, "fixID": true, "id": 2805}, {"name": "Low World Greaves", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2350, "wDef": 80, "aDef": -80, "eDef": 120, "lvl": 90, "strReq": 30, "intReq": 30, "sdPct": 18, "mdPct": 18, "eSteal": 6, "wDamPct": 12, "eDamPct": 12, "wDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2806}, {"name": "Magma Flinger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-345", "fDam": "0-445", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "strReq": 40, "defReq": 25, "mdPct": 14, "def": 6, "sdRaw": -95, "mdRaw": 280, "fDamPct": 10, "eDamPct": 30, "wDefPct": -25, "fixID": true, "id": 2812}, {"name": "Mercurial Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2625, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2811}, {"name": "Ramhoof", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "fDef": -90, "lvl": 93, "strReq": 30, "agiReq": 25, "mdPct": 7, "ls": 190, "def": 7, "spd": 15, "mdRaw": 180, "fixID": true, "id": 2816}, {"name": "Mountain's Song", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "510-550", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "510-550", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 40, "defReq": 40, "mdPct": 15, "expd": 25, "hpBonus": 1000, "fixID": true, "spPct1": 35, "spPct4": -21, "id": 2810}, {"name": "Odin", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-51", "fDam": "0-0", "wDam": "0-0", "aDam": "40-88", "tDam": "40-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 35, "agiReq": 35, "sdPct": 8, "mdPct": 10, "dex": 6, "agi": 4, "aDamPct": 12, "tDamPct": 8, "eDamPct": -30, "fixID": true, "id": 2813}, {"name": "Rodoroc's Guard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 3500, "fDef": 100, "aDef": 100, "lvl": 94, "agiReq": 35, "defReq": 35, "sdPct": -10, "mdPct": -8, "str": 10, "agi": 10, "def": 10, "spd": 10, "mdRaw": 195, "fDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2818}, {"name": "Ornamental Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2250, "wDef": 100, "lvl": 91, "intReq": 50, "mr": 10, "sdPct": 12, "xpb": 15, "int": 5, "sdRaw": 190, "fixID": true, "id": 2814}, {"name": "Siege Ram", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-110", "atkSpd": "SLOW", "lvl": 90, "strReq": 40, "sdPct": -15, "mdPct": 20, "lb": 10, "str": 6, "fixID": true, "id": 2815}, {"name": "Stricken Bolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "325-1015", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 35, "ms": 5, "mdRaw": 810, "tDamPct": 25, "wDefPct": -10, "fixID": true, "id": 2822}, {"name": "Vulcamail Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2450, "fDef": 100, "tDef": -100, "eDef": 100, "lvl": 89, "strReq": 40, "defReq": 35, "hprPct": 20, "ls": 220, "ms": 10, "def": 6, "spd": -7, "hpBonus": 600, "wDefPct": 15, "aDefPct": 15, "fixID": true, "id": 2819}, {"name": "Broken Sandust", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 37, "dexReq": 15, "dex": 2, "spd": 1, "tDamPct": 1, "type": "ring", "fixID": true, "id": 2823}, {"name": "Sekaisin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-100", "fDam": "0-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "dexReq": 40, "defReq": 25, "hprPct": -20, "ls": 260, "dex": 10, "hpBonus": -1100, "tDamPct": 60, "fixID": true, "id": 2817}, {"name": "Enhanced Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "fDef": -15, "tDef": -18, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 3, "ref": 2, "fDamPct": 4, "tDamPct": 8, "fixID": true, "id": 2824}, {"name": "Chipped Glitz", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 34, "sdPct": -2, "lb": 4, "type": "ring", "fixID": true, "id": 2820}, {"name": "Enhanced Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "fDef": 15, "wDef": -25, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 1, "def": 1, "expd": 3, "spd": -7, "hpBonus": 20, "fixID": true, "id": 2825}, {"name": "Enhanced DuskShield", "displayName": "Enhanced Duskshield", "tier": "Unique", "type": "leggings", "thorns": 3, "category": "armor", "slots": 2, "drop": "never", "hp": 460, "wDef": 10, "tDef": 10, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -8, "ref": 3, "fDamPct": -12, "eDamPct": -12, "fixID": true, "id": 2826}, {"name": "Cracked Stonehall", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 35, "strReq": 15, "str": 1, "spd": -4, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2830}, {"name": "Enhanced Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 8, "dex": 3, "agi": 2, "def": -7, "eSteal": 5, "fixID": true, "id": 2827}, {"name": "Upgraded Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "13-14", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 2, "int": -1, "agi": 2, "mdRaw": -26, "tDamPct": -14, "tDefPct": 4, "fixID": true, "id": 2828}, {"name": "Upgraded Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "38-56", "fDam": "17-22", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 4, "mr": 5, "spRegen": -5, "fixID": true, "id": 2829}, {"name": "Upgraded Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 4, "eDefPct": -10, "fixID": true, "id": 2831}, {"name": "Upgraded Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "39-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 4, "expd": 3, "spd": -12, "aDamPct": -9, "eDamPct": 5, "fixID": true, "id": 2834}, {"name": "Upgraded Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "24-36", "fDam": "0-0", "wDam": "0-0", "aDam": "13-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 3, "agi": 1, "spd": 3, "aDamPct": 2, "fixID": true, "id": 2837}, {"name": "Backstaff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "14-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-10", "atkSpd": "NORMAL", "lvl": 25, "str": 3, "hpBonus": 60, "mdRaw": 16, "eDefPct": 10, "fixID": true, "id": 2835}, {"name": "Used Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 4, "eDef": 4, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 2, "spd": 3, "aDamPct": 2, "eDamPct": 2, "type": "bracelet", "fixID": true, "id": 2832}, {"name": "Diving Boots II", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 750, "wDef": 65, "tDef": -50, "lvl": 55, "spd": 10, "wDefPct": 15, "id": 2833}, {"name": "Eel Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "9-13", "fDam": "0-0", "wDam": "6-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 10, "xpb": 6, "spd": 5, "sdRaw": 24, "fixID": true, "id": 2841}, {"name": "Diving Boots III", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "hp": 1350, "wDef": 90, "tDef": -75, "lvl": 70, "spd": 15, "wDefPct": 20, "id": 2836}, {"name": "Diving Boots I", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 300, "wDef": 30, "tDef": -30, "lvl": 40, "spd": 5, "wDefPct": 10, "id": 2843}, {"name": "Fishing Hook", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "2-6", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "dexReq": 5, "intReq": 5, "xpb": 5, "spd": 6, "tDamPct": 6, "fixID": true, "id": 2840}, {"name": "Harpoon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "74-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 23, "sdPct": 8, "mdPct": 4, "dex": 3, "spd": -5, "tDefPct": -7, "fixID": true, "id": 2838}, {"name": "Mage-Crafted Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "12-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "intReq": 10, "defReq": 5, "hprPct": 12, "mdPct": -20, "ref": 5, "int": 4, "wDamPct": 15, "fixID": true, "id": 2839}, {"name": "Sea Legs", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "never", "hp": 180, "wDef": 8, "tDef": -6, "lvl": 28, "intReq": 20, "mr": 5, "mdPct": -8, "int": 3, "wDamPct": 8, "fixID": true, "id": 2846}, {"name": "Portable Buoys", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 130, "wDef": 7, "lvl": 25, "ref": 9, "spd": 4, "wDefPct": 12, "fixID": true, "id": 2845}, {"name": "Seafarer's Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "wDef": 7, "aDef": 5, "lvl": 26, "sdPct": 4, "lb": 6, "fixID": true, "id": 2848}, {"name": "Selchar's Famous Breeches", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 125, "lvl": 25, "sdPct": 5, "mdPct": 7, "xpb": 7, "lb": 5, "fixID": true, "id": 2842}, {"name": "The Saltwater Rune", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 8, "intReq": 12, "sdPct": -12, "wDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw3": -10, "id": 2847}, {"name": "The Crow's Nest", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "tDef": 5, "eDef": -3, "lvl": 27, "dexReq": 12, "xpb": 4, "dex": 5, "tDamPct": 7, "fixID": true, "id": 2844}, {"name": "Advancement", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 255, "lvl": 29, "ms": 10, "xpb": 10, "spRegen": 5, "fixID": true, "id": 3564}, {"name": "Tricorne", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 115, "lvl": 24, "lb": 7, "agi": 1, "spd": 7, "hprRaw": 5, "fixID": true, "id": 2850}, {"name": "Tearing Seam", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-26", "fDam": "17-23", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-29", "atkSpd": "FAST", "lvl": 43, "strReq": 16, "defReq": 16, "ls": 33, "xpb": 7, "dex": -7, "int": -7, "agi": -7, "hpBonus": 150, "mdRaw": 43, "fixID": true, "id": 2851}, {"name": "Dilation", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 31, "xpb": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 3633}, {"name": "Diminution", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 320, "lvl": 33, "lb": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 3565}, {"name": "Hourslip", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "aDef": 12, "lvl": 32, "lb": 15, "spd": 30, "fixID": true, "id": 3567}, {"name": "Intuition", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "sdRaw": 12, "type": "bracelet", "fixID": true, "id": 3566}, {"name": "Longevity", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "hprRaw": 15, "type": "necklace", "fixID": true, "id": 3568}, {"name": "Practice", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "mdRaw": 16, "type": "bracelet", "fixID": true, "id": 3570}, {"name": "Reversion", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "lvl": 31, "ls": 32, "lb": 10, "eSteal": 5, "fixID": true, "id": 3572}, {"name": "Secondsaver", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 270, "lvl": 30, "mdPct": -25, "xpb": 15, "atkTier": 1, "fixID": true, "id": 3573}, {"name": "Seal Breaker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 335, "lvl": 34, "sdPct": 25, "xpb": 15, "fixID": true, "id": 3569}, {"name": "Slainte", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 30, "xpb": 5, "lb": 5, "spRegen": 10, "type": "necklace", "fixID": true, "id": 3571}, {"name": "Tempo Totem", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "86-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3632}, {"name": "Tempo Tanto", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "56-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3574}, {"name": "Tempo Ticker", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3634}, {"name": "Tempo Trebuchet", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "115-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3590}, {"name": "Tempo Trident", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3639}, {"name": "Timelocked Breath", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "agi": 3, "aDamPct": 5, "type": "ring", "fixID": true, "id": 3635}, {"name": "Timelocked Coal", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "def": 3, "fDamPct": 5, "type": "ring", "fixID": true, "id": 3636}, {"name": "Timelocked Dew", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "int": 3, "wDamPct": 5, "type": "ring", "fixID": true, "id": 3638}, {"name": "Timelocked Spark", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "dex": 3, "tDamPct": 5, "type": "ring", "fixID": true, "id": 3637}, {"name": "Brass Leg Plates", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": -120, "tDef": 75, "eDef": 75, "lvl": 81, "strReq": 20, "dexReq": 20, "ls": 160, "str": 9, "dex": 9, "tDamPct": 15, "eDamPct": 15, "fixID": true, "id": 2849}, {"name": "Trouble Tamer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "eDef": 12, "lvl": 32, "mdPct": 35, "lb": 15, "fixID": true, "id": 3641}, {"name": "Brass Choker", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": -350, "lvl": 81, "strReq": 10, "dexReq": 40, "mdPct": 4, "str": 1, "dex": 2, "tDamPct": 9, "type": "necklace", "fixID": true, "id": 2852}, {"name": "Crook's March", "tier": "Rare", "type": "relik", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "130-170", "eDam": "140-160", "atkSpd": "SLOW", "lvl": 82, "strReq": 45, "dexReq": 50, "mr": -10, "ls": 250, "ms": 10, "hpBonus": -900, "eSteal": 10, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2858}, {"name": "Double-Edge", "tier": "Rare", "type": "spear", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-130", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 50, "hprPct": -30, "mdPct": 13, "ls": -215, "ms": 5, "dex": 7, "hpBonus": -1000, "sdRaw": 165, "fDamPct": -15, "eDefPct": -10, "fixID": true, "id": 2853}, {"name": "Dragulj Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1875, "lvl": 80, "xpb": 15, "lb": 15, "fDamPct": 18, "wDamPct": 18, "aDamPct": 18, "tDamPct": 18, "eDamPct": 18, "fDefPct": 18, "wDefPct": 18, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "fixID": true, "id": 2854}, {"name": "Dragon Horned Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1850, "fDef": 160, "wDef": -60, "eDef": -60, "lvl": 80, "defReq": 45, "ref": 15, "def": 4, "sdRaw": 160, "mdRaw": 205, "fDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2855}, {"name": "Dragonspit", "tier": "Rare", "type": "bow", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "90-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 335, "def": 4, "expd": 7, "hpBonus": 1200, "fDamPct": 10, "fixID": true, "id": 2879}, {"name": "Earthlink", "tier": "Rare", "type": "boots", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "lvl": 81, "strReq": 55, "xpb": 10, "str": 5, "spd": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": 35, "fixID": true, "id": 2857}, {"name": "Ehoole Drakeskin", "tier": "Rare", "type": "leggings", "quest": "From The Bottom", "category": "armor", "slots": 3, "drop": "never", "hp": 1750, "fDef": -140, "wDef": 90, "aDef": 80, "lvl": 82, "intReq": 30, "agiReq": 45, "mr": 10, "sdPct": 8, "mdPct": -16, "ref": 12, "spd": 16, "sdRaw": 210, "fDamPct": -16, "aDamPct": 12, "fixID": true, "id": 2856}, {"name": "Fire Pearl", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 500, "fDef": 50, "wDef": -40, "lvl": 81, "defReq": 50, "expd": 6, "fDamPct": 6, "wDamPct": -10, "fDefPct": 4, "type": "necklace", "fixID": true, "id": 2860}, {"name": "Flexing Chain", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 25, "lvl": 80, "agiReq": 40, "str": -2, "agi": 3, "spd": 6, "aDamPct": 4, "aDefPct": 6, "type": "bracelet", "fixID": true, "id": 2859}, {"name": "Formation", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 300, "aDef": -25, "eDef": 40, "lvl": 81, "strReq": 45, "defReq": 5, "spd": -4, "eDamPct": 7, "tDefPct": 4, "type": "bracelet", "fixID": true, "id": 2862}, {"name": "Forge Stoker", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-15", "fDam": "35-40", "wDam": "0-0", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 80, "agiReq": 35, "defReq": 25, "ls": 180, "agi": 4, "spd": 8, "hprRaw": -55, "aDamPct": 20, "fDefPct": 16, "wDefPct": -12, "fixID": true, "id": 2861}, {"name": "Ironbody", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "drop": "never", "hp": 2950, "fDef": 110, "wDef": 40, "aDef": 50, "tDef": 60, "eDef": 120, "lvl": 82, "strReq": 35, "defReq": 35, "hprPct": 16, "mdPct": 16, "def": 9, "spd": -10, "aDamPct": -30, "fDefPct": 10, "eDefPct": 12, "fixID": true, "id": 2865}, {"name": "Metal Breaker", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "300-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "270-360", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 40, "mdPct": 10, "str": 6, "def": -4, "expd": 25, "spd": -7, "fixID": true, "id": 2863}, {"name": "Jewel Cutter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-170", "fDam": "0-0", "wDam": "0-0", "aDam": "54-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "agiReq": 40, "lb": 20, "agi": 7, "spd": 10, "eSteal": 4, "mdRaw": 130, "fDefPct": 15, "wDefPct": -12, "aDefPct": 20, "fixID": true, "id": 2864}, {"name": "Mining Fever", "tier": "Rare", "type": "helmet", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "eDef": 60, "lvl": 81, "xpb": 5, "lb": 35, "eSteal": 7, "eDamPct": 15, "fixID": true, "id": 2868}, {"name": "Mithril Mantle", "tier": "Unique", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 81, "ls": 175, "ms": 10, "lb": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fixID": true, "id": 2867}, {"name": "Ring of Power", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "mdPct": 8, "str": 2, "dex": 2, "type": "ring", "fixID": true, "id": 2870}, {"name": "Rask", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 81, "agiReq": 50, "agi": 5, "spd": 12, "fDefPct": -5, "type": "ring", "fixID": true, "id": 2869}, {"name": "Plate Shock", "tier": "Rare", "type": "wand", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "dexReq": 45, "sdPct": 10, "mdPct": 10, "ref": 20, "dex": 4, "hprRaw": -75, "tDamPct": 18, "wDefPct": -10, "fixID": true, "id": 2866}, {"name": "Timelocked Stone", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "str": 3, "eDamPct": 5, "type": "ring", "fixID": true, "id": 3640}, {"name": "Rough Diamond", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "strReq": 20, "intReq": 20, "sdPct": 6, "mdPct": 5, "xpb": 7, "str": 2, "aDamPct": -6, "type": "necklace", "fixID": true, "id": 2871}, {"name": "Thanos Legionnaire Greaves", "tier": "Set", "type": "boots", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 75, "lvl": 82, "defReq": 50, "xpb": 10, "lb": 10, "def": 10, "hprRaw": 150, "fDamPct": 20, "wDamPct": -20, "fDefPct": 20, "wDefPct": -20, "fixID": true, "id": 2905, "set": "Thanos Legionnaire"}, {"name": "Thanos Legionnaire Leggings", "tier": "Set", "type": "leggings", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 1900, "aDef": 75, "lvl": 82, "agiReq": 50, "xpb": 15, "lb": 5, "agi": 10, "spd": 15, "aDamPct": 20, "tDamPct": -20, "aDefPct": 20, "fixID": true, "id": 2875, "set": "Thanos Legionnaire"}, {"name": "Ring of Wisdom", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "sdPct": 7, "xpb": 10, "int": 3, "type": "ring", "fixID": true, "id": 2872}, {"name": "Thanos Legionnaire Plate", "tier": "Set", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 3, "drop": "never", "hp": 2400, "fDef": 125, "wDef": -90, "aDef": 125, "tDef": -90, "eDef": 125, "lvl": 83, "strReq": 40, "agiReq": 40, "defReq": 40, "str": 10, "agi": 10, "def": 10, "mdRaw": 225, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2873, "set": "Thanos Legionnaire"}, {"name": "Steady Grip", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "lvl": 81, "dexReq": 25, "intReq": 25, "mdPct": -10, "dex": 3, "int": 3, "sdRaw": 45, "eDamPct": -8, "type": "bracelet", "fixID": true, "id": 2878}, {"name": "Shale Edge", "tier": "Rare", "type": "dagger", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-75", "fDam": "0-0", "wDam": "40-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 82, "intReq": 25, "sdPct": 8, "ms": 5, "str": 4, "sdRaw": 90, "aDamPct": -16, "eDamPct": 15, "aDefPct": -13, "fixID": true, "id": 2877}, {"name": "Silver Bay", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-160", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "intReq": 40, "mr": 5, "lb": 10, "hpBonus": 1000, "wDamPct": 25, "wDefPct": 20, "fixID": true, "id": 2880}, {"name": "Tankard Basher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-110", "atkSpd": "FAST", "lvl": 81, "strReq": 25, "agiReq": 35, "mdPct": 12, "str": 8, "dex": -8, "agi": 8, "spd": 12, "aDamPct": 20, "fixID": true, "id": 2882}, {"name": "Sterling Silver", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "dexReq": 15, "agiReq": 25, "lb": 7, "spd": 5, "sdRaw": 25, "mdRaw": 18, "eDamPct": -7, "type": "necklace", "fixID": true, "id": 2884}, {"name": "Sterk", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 250, "fDef": 25, "wDef": -10, "eDef": 10, "lvl": 81, "strReq": 10, "defReq": 40, "def": 3, "fDefPct": 7, "aDefPct": 6, "eDefPct": 8, "type": "ring", "fixID": true, "id": 2876}, {"name": "Thanos Legionnaire Helm", "tier": "Set", "type": "helmet", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "eDef": 75, "lvl": 82, "strReq": 50, "mdPct": 10, "xpb": 5, "lb": 15, "str": 10, "eDamPct": 20, "tDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2874, "set": "Thanos Legionnaire"}, {"name": "Thanos Banner", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "eDef": 60, "lvl": 82, "strReq": 50, "lb": 10, "str": 6, "eDamPct": 10, "wDefPct": -10, "eDefPct": 10, "type": "bracelet", "fixID": true, "id": 2883}, {"name": "Thanos Crest", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "aDef": 60, "lvl": 82, "agiReq": 50, "xpb": 10, "agi": 6, "aDamPct": 10, "aDefPct": 10, "tDefPct": -10, "type": "necklace", "fixID": true, "id": 2886}, {"name": "Thanos Ironstaff", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-75", "fDam": "40-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "NORMAL", "lvl": 82, "strReq": 40, "defReq": 40, "hprPct": 20, "mdPct": 20, "dex": -10, "int": -10, "def": 10, "hpBonus": 1075, "fDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2898}, {"name": "Thanos Brand", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "hp": 650, "fDef": 30, "lvl": 82, "defReq": 50, "xpb": 5, "lb": 5, "def": 5, "fDamPct": 5, "fDefPct": 5, "wDefPct": -5, "tDefPct": -5, "type": "ring", "fixID": true, "id": 2881}, {"name": "Thanos Stonesinger", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "120-126", "fDam": "57-66", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-63", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "defReq": 40, "dex": -8, "expd": 20, "mdRaw": 160, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2889}, {"name": "Thanos Warhammer", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "110-200", "fDam": "50-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 20, "spd": -10, "fDamPct": 15, "eDamPct": 15, "eDefPct": 25, "fixID": true, "id": 2887}, {"name": "Thanos Siege Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-280", "fDam": "70-130", "wDam": "0-0", "aDam": "55-145", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "agiReq": 40, "defReq": 40, "mr": -5, "def": 10, "expd": 20, "spd": -15, "hpBonus": 750, "hprRaw": 160, "fDamPct": 15, "aDamPct": 15, "fixID": true, "id": 2885}, {"name": "Thanos Warsword", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "40-80", "tDam": "0-0", "eDam": "50-70", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "agiReq": 40, "mdPct": 20, "str": 8, "int": -8, "agi": 8, "spd": 15, "sdRaw": -90, "mdRaw": 170, "aDamPct": 12, "eDamPct": 12, "fixID": true, "id": 2890}, {"name": "Tight Clamp", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 450, "fDef": 30, "lvl": 80, "defReq": 40, "dex": -2, "def": 3, "type": "bracelet", "fixID": true, "id": 2888}, {"name": "Canyon Strider", "tier": "Unique", "type": "boots", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2200, "fDef": -70, "aDef": 70, "eDef": 70, "lvl": 84, "strReq": 15, "agiReq": 25, "agi": 6, "spd": 15, "aDamPct": 10, "eDamPct": 10, "aDefPct": 12, "eDefPct": 12, "fixID": true, "sprintReg": 15, "id": 2892}, {"name": "Fir Needle", "tier": "Unique", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "SUPER_FAST", "lvl": 83, "strReq": 25, "agiReq": 35, "str": 8, "sdRaw": 134, "aDamPct": 19, "tDefPct": -15, "fixID": true, "id": 2894}, {"name": "Coal Duster", "tier": "Rare", "type": "chestplate", "poison": 3500, "category": "armor", "slots": 3, "drop": "never", "hp": 2575, "fDef": -65, "tDef": 90, "lvl": 83, "dexReq": 40, "defReq": 45, "sdPct": -15, "mdPct": -35, "dex": 7, "def": 8, "expd": 10, "atkTier": -17, "fDamPct": 25, "tDamPct": 20, "fDefPct": -25, "fixID": true, "id": 2893}, {"name": "Filter Mask", "tier": "Rare", "type": "helmet", "poison": -375, "category": "armor", "slots": 3, "drop": "never", "hp": 2750, "aDef": 120, "eDef": 120, "lvl": 85, "spd": 10, "aDamPct": 10, "eDamPct": 10, "aDefPct": 15, "eDefPct": 20, "fixID": true, "sprintReg": 20, "id": 2891}, {"name": "Pine Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "180-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-85", "atkSpd": "NORMAL", "lvl": 85, "strReq": 40, "mdPct": 10, "xpb": 10, "str": 5, "eDefPct": 15, "fixID": true, "id": 2896}, {"name": "Shine Lamp", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "240-250", "wDam": "230-260", "aDam": "225-265", "tDam": "220-270", "eDam": "235-255", "atkSpd": "SUPER_SLOW", "lvl": 83, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "mr": 5, "sdPct": -25, "fixID": true, "spPct1": -17, "spPct2": -17, "spPct3": -17, "spPct4": -17, "id": 2900}, {"name": "Plated Mining Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2500, "lvl": 83, "defReq": 20, "hprPct": 25, "lb": 10, "def": 10, "hprRaw": 60, "fixID": true, "id": 2897}, {"name": "Wood Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-50", "atkSpd": "FAST", "lvl": 84, "strReq": 15, "mdPct": 10, "xpb": 10, "str": 5, "fDefPct": -5, "fixID": true, "id": 2902}, {"name": "Firestarter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 40, "expd": 5, "hprRaw": 70, "fDamPct": 20, "wDamPct": -10, "fixID": true, "id": 2895}, {"name": "Windwhistle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-42", "fDam": "0-0", "wDam": "60-73", "aDam": "51-82", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 35, "agiReq": 35, "mr": 5, "sdPct": 10, "agi": 8, "def": -8, "spd": 20, "wDamPct": 15, "fDefPct": -20, "fixID": true, "id": 2899}, {"name": "Surefooter", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 1900, "aDef": -100, "eDef": 100, "lvl": 86, "strReq": 55, "ms": 10, "str": 8, "spd": -8, "mdRaw": 250, "eDamPct": 15, "fixID": true, "id": 2901}, {"name": "Wooly Long Johns", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2525, "wDef": 190, "aDef": 190, "lvl": 87, "sdPct": -5, "mdPct": -5, "xpb": 14, "hprRaw": 190, "wDefPct": 14, "aDefPct": 14, "fixID": true, "id": 2904}, {"name": "Battalion", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "lvl": 50, "def": 5, "spd": 8, "fDamPct": 5, "wDamPct": -10, "aDamPct": -10, "fixID": true, "id": 2903}, {"name": "Battle Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-30", "fDam": "15-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "sdPct": 4, "mdPct": 6, "expd": 5, "eDamPct": 5, "fixID": true, "id": 2907}, {"name": "Defender", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-110", "fDam": "65-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 50, "defReq": 30, "sdPct": -6, "def": 3, "hpBonus": 400, "fixID": true, "id": 2906}, {"name": "Dual", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-39", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "dexReq": 15, "agi": 5, "spd": 5, "aDamPct": 10, "tDamPct": 5, "fixID": true, "id": 2908}, {"name": "Dinosaur", "tier": "Unique", "type": "leggings", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "hp": 650, "aDef": -50, "eDef": 40, "lvl": 51, "mdPct": 6, "str": 3, "int": -5, "fixID": true, "id": 2909}, {"name": "Hurricane", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -100, "aDef": 100, "eDef": -40, "lvl": 55, "strReq": 10, "agiReq": 25, "str": 2, "agi": 4, "spd": 10, "aDamPct": 10, "eDamPct": 6, "fixID": true, "id": 2913}, {"name": "Medecin", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-52", "fDam": "0-0", "wDam": "34-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "intReq": 25, "mr": 5, "sdPct": 10, "mdPct": -10, "ref": 5, "int": 2, "fixID": true, "id": 2910}, {"name": "Moonlight", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "0-0", "wDam": "25-35", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 16, "agiReq": 16, "mdPct": -15, "hprRaw": 25, "fDefPct": 15, "wDefPct": 25, "aDefPct": 25, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2912}, {"name": "Wardrummer", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "strReq": 16, "defReq": 16, "sdPct": -10, "mdPct": -10, "fDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2914}, {"name": "Strikedown", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "112-120", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "60-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "dexReq": 20, "intReq": 20, "mdPct": 10, "dex": 5, "spd": -10, "hprRaw": -40, "sdRaw": 95, "fixID": true, "spPct3": -10, "id": 2915}, {"name": "The Judge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "lvl": 52, "hprPct": 15, "sdPct": 15, "mdPct": 20, "ls": -80, "ms": -10, "xpb": 15, "lb": 15, "fixID": true, "id": 2911}, {"name": "Warlord", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "never", "nDam": "320-457", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 54, "strReq": 25, "str": 2, "dex": -3, "agi": -3, "def": 2, "spd": -4, "hpBonus": 450, "hprRaw": 40, "fixID": true, "id": 2916}, {"name": "Voidstone Arpes", "tier": "Rare", "type": "spear", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-219", "fDam": "0-0", "wDam": "0-0", "aDam": "219-219", "tDam": "0-0", "eDam": "219-219", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2920}, {"name": "Voidstone Esbald", "tier": "Rare", "type": "dagger", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "137-138", "fDam": "0-0", "wDam": "0-0", "aDam": "115-345", "tDam": "0-0", "eDam": "115-345", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2919}, {"name": "Voidstone Elrik", "tier": "Rare", "type": "relik", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "160-165", "fDam": "0-0", "wDam": "0-0", "aDam": "310-340", "tDam": "0-0", "eDam": "320-330", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2917}, {"name": "Voidstone Lensing", "tier": "Rare", "type": "bow", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "300-360", "tDam": "0-0", "eDam": "300-360", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2918}, {"name": "Voidstone Recteps", "tier": "Rare", "type": "wand", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-85", "fDam": "0-0", "wDam": "0-0", "aDam": "100-225", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2922}, {"name": "Zhight Beaded Broach", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "lvl": 55, "dexReq": 30, "lb": 8, "hprRaw": 10, "sdRaw": 10, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2921}, {"name": "Zhight Coral Band", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 200, "wDef": 35, "lvl": 55, "intReq": 15, "defReq": 30, "sdPct": -6, "hprRaw": 15, "tDamPct": -8, "wDefPct": 10, "type": "bracelet", "fixID": true, "id": 2923}, {"name": "Zhight Powwow Bangle", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 55, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "xpb": 9, "lb": 9, "spRegen": 12, "eSteal": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 2925}, {"name": "Zhight Shiny Ring", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": -65, "lvl": 55, "dexReq": 30, "xpb": 6, "tDamPct": 9, "type": "ring", "fixID": true, "id": 2924}, {"name": "Zhight Souvenir Coin", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 100, "lvl": 55, "xpb": 5, "lb": 10, "eSteal": 1, "type": "ring", "fixID": true, "id": 2926}, {"name": "Saffron Arch", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-52", "fDam": "14-30", "wDam": "0-0", "aDam": "0-0", "tDam": "10-34", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "dexReq": 8, "defReq": 8, "hprPct": 7, "sdPct": 6, "mdPct": -14, "ls": 33, "hpBonus": 160, "wDamPct": -7, "id": 2928}, {"name": "Sagittarius", "tier": "Legendary", "type": "leggings", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": 140, "eDef": -200, "lvl": 94, "agiReq": 80, "hprPct": -25, "ref": 18, "agi": 13, "spd": 18, "sdRaw": 175, "mdRaw": 230, "aDamPct": 25, "id": 2929}, {"name": "Zhight Weird Magic Necklace", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "wDef": 5, "eDef": 5, "lvl": 55, "strReq": 25, "intReq": 20, "sdPct": 7, "str": 2, "spRegen": 7, "wDamPct": 7, "type": "necklace", "fixID": true, "id": 2930}, {"name": "Salamander", "tier": "Unique", "type": "wand", "poison": 130, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-19", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "agiReq": 5, "ls": 20, "spd": 10, "aDamPct": 6, "tDamPct": 6, "eDefPct": -8, "id": 2934}, {"name": "Salience", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "fDef": 20, "wDef": 15, "lvl": 38, "intReq": 10, "defReq": 10, "hprPct": 12, "sdPct": -6, "mdPct": -10, "hprRaw": 10, "fDefPct": 9, "wDefPct": 9, "id": 2931}, {"name": "Sage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "mr": 10, "xpb": 32, "lb": 10, "aDamPct": 15, "id": 2927}, {"name": "Salmon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-0", "wDam": "33-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 5, "mr": 5, "sdPct": 7, "spd": 4, "wDamPct": 4, "aDamPct": 5, "id": 2933}, {"name": "Saint's Scar", "tier": "Unique", "type": "dagger", "poison": 85, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-15", "atkSpd": "NORMAL", "lvl": 24, "strReq": 10, "sdPct": -5, "mdPct": 5, "fDefPct": -10, "id": 2932}, {"name": "Speedyboy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "mdPct": 15, "str": 7, "spd": 200, "eDamPct": 10, "id": 3548}, {"name": "Saltest Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 1, "id": 3549}, {"name": "Salvation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-24", "fDam": "27-27", "wDam": "27-27", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 35, "defReq": 35, "hprPct": 20, "ref": 15, "def": 5, "hpBonus": 1250, "tDamPct": -50, "fDefPct": 12, "wDefPct": 12, "id": 2937}, {"name": "SandStorm Walker", "displayName": "Sandstorm Walker", "tier": "Unique", "type": "boots", "thorns": 3, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 435, "aDef": -30, "tDef": 20, "lvl": 44, "strReq": 5, "xpb": 10, "lb": 10, "str": 4, "dex": 4, "eDamPct": 7, "id": 2938}, {"name": "Sandscar", "tier": "Unique", "type": "spear", "poison": 365, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-42", "fDam": "0-0", "wDam": "0-0", "aDam": "10-18", "tDam": "0-0", "eDam": "16-28", "atkSpd": "NORMAL", "lvl": 51, "str": 5, "agi": 5, "wDamPct": -10, "eDamPct": 7, "wDefPct": -5, "aDefPct": 7, "id": 2943}, {"name": "Sandust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "dexReq": 15, "dex": 4, "spd": 5, "tDamPct": 6, "type": "ring", "id": 2941}, {"name": "Sandstorm", "tier": "Rare", "type": "spear", "poison": 50, "thorns": 7, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-29", "fDam": "0-0", "wDam": "0-0", "aDam": "20-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 34, "agiReq": 20, "agi": 5, "spd": 15, "atkTier": 1, "eDefPct": -35, "id": 2939}, {"name": "Sano's Wisdom", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 35, "aDef": 15, "lvl": 51, "intReq": 15, "agiReq": 10, "mr": 10, "spRegen": 10, "hprRaw": 25, "fDamPct": -15, "tDamPct": -20, "eDamPct": -15, "wDefPct": 25, "aDefPct": 15, "id": 2942}, {"name": "Sandstone Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "wDef": -15, "aDef": 8, "eDef": 8, "lvl": 37, "xpb": 8, "aDamPct": 8, "eDamPct": 8, "id": 2940}, {"name": "Sans", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "hprPct": 20, "sdPct": 20, "mdPct": 20, "id": 2944}, {"name": "Sapling", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "96-170", "aDam": "0-0", "tDam": "0-0", "eDam": "126-140", "atkSpd": "SLOW", "lvl": 75, "strReq": 35, "intReq": 35, "hprPct": 15, "mr": 10, "sdPct": -10, "mdPct": -10, "spd": -20, "hprRaw": 85, "wDefPct": 12, "eDefPct": 12, "id": 2946}, {"name": "Sano's Care", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 200, "wDef": 200, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 90, "intReq": 45, "defReq": 55, "hprPct": 40, "mr": 10, "mdPct": -20, "xpb": 15, "int": 5, "def": 10, "hprRaw": 215, "fDefPct": 15, "wDefPct": 15, "id": 2948}, {"name": "Sapphire", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "wDef": -80, "eDef": -80, "lvl": 97, "strReq": 40, "intReq": 40, "ms": 10, "ref": 18, "str": 5, "int": 5, "eSteal": 10, "sdRaw": 140, "mdRaw": 180, "fDefPct": -35, "id": 2949}, {"name": "Sargasso", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 10, "wDef": 3, "lvl": 2, "sdPct": 6, "xpb": 4, "id": 2947}, {"name": "Saundersi Signet", "tier": "Legendary", "poison": 758, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -30, "lvl": 87, "strReq": 40, "dexReq": 55, "mdPct": -7, "str": 3, "expd": 15, "type": "ring", "id": 2967}, {"name": "Sawdust", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 700, "fDef": -40, "aDef": 45, "eDef": 30, "lvl": 49, "agi": 10, "spd": 9, "mdRaw": 80, "aDamPct": 13, "eDefPct": 18, "id": 2951}, {"name": "Sapphire Shard", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "58-67", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "intReq": 20, "sdPct": 21, "ms": 5, "xpb": 14, "ref": 11, "int": 8, "fDamPct": -15, "tDefPct": -8, "id": 2945}, {"name": "Sarnfic's Lost Treasure", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 63, "intReq": 25, "lb": 9, "eSteal": 3, "wDamPct": 7, "type": "ring", "id": 2954}, {"name": "Scalding Scimitar", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-230", "fDam": "60-200", "wDam": "60-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 72, "intReq": 30, "defReq": 30, "hprPct": -30, "sdPct": 7, "hprRaw": -100, "fDamPct": 25, "wDamPct": 25, "tDefPct": -30, "eDefPct": -30, "id": 2952}, {"name": "Sayleros' Brother's Misfortune", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 22, "str": 4, "dex": -2, "agi": -2, "def": 4, "type": "bracelet", "id": 2953}, {"name": "Scalpel", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "dexReq": 15, "ls": 32, "hprRaw": 16, "id": 2958}, {"name": "Scarab", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 6, "lvl": 2, "def": 4, "id": 2955}, {"name": "Scale of Sieryu", "displayName": "Scale of Seiryu", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1500, "aDef": 50, "lvl": 78, "agiReq": 100, "mr": 20, "sdPct": -150, "mdPct": -50, "spd": 40, "atkTier": 1, "id": 2957}, {"name": "Scorcher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-40", "fDam": "50-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "defReq": 30, "def": 7, "expd": 10, "fDamPct": 10, "fDefPct": 20, "id": 2959}, {"name": "Schist", "tier": "Rare", "poison": 120, "category": "accessory", "drop": "lootchest", "hp": -125, "eDef": -60, "lvl": 84, "strReq": 65, "str": 13, "eDamPct": -7, "type": "necklace", "id": 3583}, {"name": "Scorpio", "tier": "Legendary", "type": "boots", "poison": 1800, "thorns": 24, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": -200, "eDef": 160, "lvl": 90, "strReq": 65, "dexReq": 15, "defReq": 15, "str": 25, "expd": 40, "hprRaw": 125, "eDamPct": -140, "id": 2961}, {"name": "Saltine", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "60-70", "tDam": "40-90", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "dexReq": 40, "agiReq": 40, "dex": 5, "agi": 5, "spd": 8, "hpBonus": -400, "aDamPct": 16, "tDamPct": 16, "eDefPct": -16, "id": 2936}, {"name": "Sanare", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "intReq": 35, "hprPct": 25, "sdPct": 15, "mdPct": -30, "int": 10, "wDamPct": 27, "id": 2935}, {"name": "Screech", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1675, "lvl": 80, "sdPct": 15, "mdPct": 15, "ls": 150, "spRegen": -3, "fDamPct": 11, "aDamPct": 11, "tDamPct": 11, "wDefPct": -12, "eDefPct": -12, "id": 2963}, {"name": "Scorpion", "tier": "Legendary", "type": "dagger", "poison": 450, "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ms": 10, "lb": 15, "fDefPct": -5, "wDefPct": -5, "aDefPct": -10, "tDefPct": -5, "id": 2960}, {"name": "Saving Grace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "70-80", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 20, "defReq": 20, "mr": 5, "sdPct": 10, "mdPct": -25, "wDamPct": 20, "fDefPct": 10, "id": 2950}, {"name": "Scroll of Nythiar", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-22", "wDam": "15-18", "aDam": "9-24", "tDam": "6-27", "eDam": "12-21", "atkSpd": "FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hprPct": 23, "mr": 10, "sdPct": 35, "mdPct": -70, "xpb": 15, "hprRaw": 42, "id": 2965}, {"name": "Scylla Shell", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 15, "aDef": -40, "eDef": 15, "lvl": 45, "strReq": 20, "intReq": 20, "mr": 5, "mdPct": 8, "spd": -12, "wDamPct": 5, "eDamPct": 5, "id": 2962}, {"name": "Sculptor", "tier": "Unique", "type": "spear", "thorns": 10, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "170-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "strReq": 35, "intReq": 35, "mdPct": 20, "ref": 10, "mdRaw": 150, "wDamPct": 15, "eDamPct": 15, "id": 2964}, {"name": "Seagazer", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2175, "wDef": 100, "lvl": 84, "intReq": 60, "mr": 10, "xpb": 15, "int": 8, "fDamPct": 22, "wDamPct": 22, "aDamPct": 22, "tDamPct": 22, "eDamPct": 22, "wDefPct": 10, "id": 2966}, {"name": "Sealing Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 330, "lvl": 76, "lb": 5, "spRegen": 5, "type": "necklace", "id": 2971}, {"name": "Scythe", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-165", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "strReq": 40, "dexReq": 30, "hprPct": -23, "mdPct": 25, "ms": 10, "str": 13, "dex": 9, "int": -10, "spRegen": -15, "tDamPct": 10, "eDamPct": 15, "wDefPct": -25, "id": 2969}, {"name": "Searing Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "45-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "defReq": 30, "hprPct": 18, "sdPct": 9, "expd": 6, "wDamPct": -5, "id": 2968}, {"name": "Seipodon", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 140, "tDef": -90, "lvl": 98, "intReq": 75, "mr": 10, "sdPct": 10, "ref": 15, "int": 14, "fDamPct": -25, "wDamPct": 10, "fDefPct": 10, "wDefPct": 10, "id": 2970}, {"name": "Scarlet Veil", "tier": "Fabled", "type": "helmet", "majorIds": ["EXPLOSIVE_IMPACT"], "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 52, "mdPct": 25, "spd": 8, "atkTier": 1, "mdRaw": 65, "fDefPct": -100, "wDefPct": -100, "aDefPct": -100, "tDefPct": -100, "eDefPct": -100, "id": 3587}, {"name": "Seeker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "ring", "id": 2975}, {"name": "Seismosoul", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 65, "aDef": -130, "eDef": 65, "lvl": 92, "strReq": 45, "intReq": 45, "ms": 5, "xpb": 11, "str": 7, "int": 7, "atkTier": 1, "spRegen": 25, "wDamPct": 19, "eDamPct": 19, "fDefPct": -40, "tDefPct": -40, "id": 2976}, {"name": "Seismic Chaps", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 32, "strReq": 15, "mdPct": 10, "str": 7, "spd": -5, "mdRaw": 59, "aDamPct": -10, "eDamPct": 15, "aDefPct": -15, "id": 2974}, {"name": "Sempiternel", "displayName": "Sempiternal", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "fDef": 170, "aDef": 130, "lvl": 88, "agiReq": 55, "defReq": 55, "hprPct": 25, "mr": 10, "atkTier": -1, "hpBonus": 900, "hprRaw": 185, "wDefPct": 16, "tDefPct": 18, "eDefPct": 24, "id": 2978}, {"name": "Spinal Tap", "displayName": "September", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2350, "fDef": 70, "wDef": -105, "aDef": 70, "tDef": -105, "eDef": 70, "lvl": 88, "agiReq": 35, "defReq": 35, "hprPct": -21, "ls": 215, "str": 10, "spd": 21, "mdRaw": 170, "fDamPct": 21, "aDamPct": 21, "eDamPct": 21, "id": 3106}, {"name": "Semreh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 975, "fDef": -60, "aDef": 70, "lvl": 64, "agiReq": 30, "lb": 10, "ref": 6, "agi": 9, "spd": 11, "aDamPct": 11, "id": 2977}, {"name": "Sequoia", "tier": "Unique", "type": "wand", "poison": 3130, "thorns": 20, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 100, "strReq": 50, "sdPct": -20, "str": 20, "spd": -30, "hpBonus": 1300, "wDamPct": 20, "wDefPct": 15, "eDefPct": 20, "id": 2980}, {"name": "Sequencer", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2345, "lvl": 83, "hprPct": 25, "sdPct": 15, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "hprRaw": 100, "sdRaw": 125, "mdRaw": 165, "id": 2979}, {"name": "Seraph", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-45", "fDam": "0-0", "wDam": "0-0", "aDam": "32-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 52, "intReq": 5, "agiReq": 20, "mr": 5, "mdPct": -10, "spRegen": 4, "wDefPct": 10, "aDefPct": 15, "tDefPct": -12, "id": 2983}, {"name": "Sessanta", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 60, "lvl": 60, "defReq": 10, "hpBonus": 90, "type": "ring", "id": 2984}, {"name": "Shade of Night", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "41-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "agiReq": 50, "sdPct": 15, "mdPct": -15, "spd": 15, "wDamPct": 13, "tDamPct": 13, "fDefPct": -26, "aDefPct": 20, "eDefPct": -26, "id": 2986}, {"name": "Sextant", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -70, "eDef": 60, "lvl": 62, "strReq": 40, "mdPct": 9, "str": 7, "aDamPct": -15, "eDamPct": 9, "eDefPct": 9, "id": 2982}, {"name": "Seven-League Boots", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "drop": "NORMAL", "hp": 450, "aDef": 30, "eDef": -60, "lvl": 44, "agiReq": 50, "xpb": 15, "agi": 18, "spd": 27, "id": 2981}, {"name": "Shadow Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-15", "fDam": "0-0", "wDam": "0-0", "aDam": "1-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "mdPct": -8, "ls": 5, "agi": 5, "sdRaw": 8, "id": 2985}, {"name": "Shadow Flame", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "53-55", "fDam": "50-58", "wDam": "0-0", "aDam": "0-0", "tDam": "47-61", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "dexReq": 30, "defReq": 30, "ms": 5, "agi": -10, "hpBonus": -800, "sdRaw": 125, "fDamPct": 17, "wDamPct": -25, "tDamPct": 17, "eDefPct": -20, "id": 2991}, {"name": "Secret", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 5, "spRegen": 5, "type": "bracelet", "id": 2972}, {"name": "Shaggy Boots", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "tDef": 150, "eDef": -150, "lvl": 97, "dexReq": 60, "ls": 300, "ref": 10, "dex": 10, "atkTier": -10, "hpBonus": -800, "mdRaw": 1300, "tDamPct": 23, "id": 2987}, {"name": "Shajaea", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-115", "fDam": "100-175", "wDam": "100-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "intReq": 45, "defReq": 45, "hprPct": 27, "mr": 10, "sdPct": -16, "mdPct": -16, "int": 5, "def": 5, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "id": 2989}, {"name": "Sharp", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 58, "mdPct": -6, "dex": 4, "mdRaw": 26, "type": "ring", "id": 2993}, {"name": "Shark Tooth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "mdPct": 5, "mdRaw": 1, "type": "necklace", "id": 2988}, {"name": "Sharp Heels", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 130, "eDef": -5, "lvl": 29, "dexReq": 15, "mdPct": 7, "dex": 5, "mdRaw": 29, "id": 2990}, {"name": "Sharp Terror", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-31", "fDam": "0-0", "wDam": "31-39", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "intReq": 20, "sdPct": 10, "ms": 10, "int": 7, "tDamPct": -10, "tDefPct": -10, "id": 2994}, {"name": "Sharpened Harpoon", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "105-205", "fDam": "0-0", "wDam": "150-200", "aDam": "0-0", "tDam": "50-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 35, "intReq": 35, "sdPct": 20, "mdPct": 15, "lb": 11, "dex": 9, "int": 9, "spd": -19, "hpBonus": -1050, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "id": 2992}, {"name": "Sharpened Stylus", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "15-19", "fDam": "0-0", "wDam": "15-19", "aDam": "0-0", "tDam": "15-19", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 17, "intReq": 17, "sdPct": 14, "mdPct": 14, "hpBonus": -170, "wDamPct": 14, "tDamPct": 14, "id": 2998}, {"name": "Sharpshooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "mdPct": 4, "xpb": 4, "dex": 5, "id": 2995}, {"name": "Shawl of Gaea", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3700, "fDef": 125, "aDef": -150, "eDef": 125, "lvl": 95, "strReq": 75, "defReq": 60, "str": 9, "def": 13, "expd": 30, "spd": -10, "mdRaw": 300, "fDamPct": 27, "eDamPct": 20, "wDefPct": -30, "id": 2996}, {"name": "Shatterglass", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 91, "strReq": 50, "mdPct": 11, "str": 7, "def": -5, "expd": 11, "hpBonus": -500, "aDamPct": 5, "eDamPct": 5, "type": "necklace", "id": 2999}, {"name": "Shell of Genbu", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2500, "fDef": 75, "wDef": 75, "tDef": -90, "eDef": -60, "lvl": 82, "intReq": 45, "defReq": 40, "sdPct": 23, "ls": -160, "def": 8, "spd": -10, "fDamPct": 10, "wDamPct": 10, "id": 2997}, {"name": "Shimmersight", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "lvl": 93, "mr": 5, "xpb": -10, "lb": -30, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 12, "aDefPct": 10, "tDefPct": 12, "eDefPct": 10, "id": 3002}, {"name": "Shellcarve", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-48", "fDam": "0-0", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "100-120", "atkSpd": "FAST", "lvl": 93, "strReq": 42, "intReq": 42, "mr": 5, "ms": 5, "dex": -9, "agi": -9, "def": -9, "hprRaw": -280, "wDamPct": 28, "eDamPct": 28, "spRaw1": -5, "spRaw4": -5, "id": 3003}, {"name": "Shin Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "lvl": 3, "spd": 3, "id": 3001}, {"name": "Shield Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-120", "fDam": "0-0", "wDam": "75-125", "aDam": "0-0", "tDam": "0-0", "eDam": "85-115", "atkSpd": "SLOW", "lvl": 95, "strReq": 35, "intReq": 35, "ms": 5, "xpb": 8, "expd": 20, "sdRaw": 110, "mdRaw": 160, "aDamPct": -20, "tDamPct": -20, "id": 3000}, {"name": "Sheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "intReq": 25, "defReq": 25, "sdPct": 10, "mdPct": -30, "int": 4, "def": 4, "fDamPct": 10, "wDamPct": 10, "fDefPct": 15, "wDefPct": 15, "id": 3009}, {"name": "Shine Suffocator", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-42", "fDam": "0-0", "wDam": "26-32", "aDam": "0-0", "tDam": "26-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "dexReq": 25, "intReq": 35, "sdPct": 20, "ms": 15, "dex": 10, "hprRaw": -40, "spPct1": 210, "spPct3": -56, "spRaw4": 10, "id": 3051}, {"name": "Shiny Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 120, "lvl": 56, "xpb": 4, "lb": 8, "type": "necklace", "id": 3011}, {"name": "Shinespark", "tier": "Legendary", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 575, "wDef": -20, "eDef": -30, "lvl": 47, "dexReq": 30, "defReq": 20, "mr": 5, "ref": 10, "expd": 20, "sdRaw": 60, "fDamPct": 16, "tDamPct": 15, "eDamPct": -50, "id": 3004}, {"name": "Shining Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 12, "lvl": 4, "sdPct": 4, "xpb": 4, "id": 3006}, {"name": "Shining Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-54", "fDam": "0-0", "wDam": "0-0", "aDam": "16-48", "tDam": "16-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "mr": 5, "sdPct": 16, "mdPct": -12, "ref": 14, "int": 4, "id": 3005}, {"name": "Shock", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "dex": 3, "type": "ring", "id": 3007}, {"name": "Shockmosis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-108", "fDam": "0-0", "wDam": "40-45", "aDam": "0-0", "tDam": "40-45", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 25, "intReq": 25, "sdPct": 5, "mdPct": 5, "ms": 5, "sdRaw": 90, "mdRaw": 115, "id": 3008}, {"name": "Shockwave", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -130, "aDef": 90, "tDef": 90, "lvl": 84, "dexReq": 50, "agiReq": 50, "hprPct": -12, "sdPct": 13, "ms": 10, "dex": 5, "agi": 5, "aDamPct": 8, "tDamPct": 8, "id": 3015}, {"name": "Shokku", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 40, "xpb": 10, "dex": 7, "spd": 10, "tDefPct": 5, "id": 3013}, {"name": "Short Circuit", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "tDef": -60, "lvl": 71, "dexReq": 50, "intReq": 15, "sdPct": 14, "ls": -120, "ms": 5, "wDamPct": 7, "tDamPct": 17, "wDefPct": -7, "id": 3010}, {"name": "Sightlines", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": -60, "aDef": 50, "lvl": 54, "strReq": 15, "agiReq": 35, "xpb": 7, "str": 7, "agi": 3, "spd": 10, "mdRaw": 85, "eDamPct": 7, "fDefPct": -10, "id": 3018}, {"name": "Sight of the Druid", "tier": "Unique", "type": "bow", "poison": 805, "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-120", "atkSpd": "SLOW", "lvl": 78, "strReq": 35, "intReq": 15, "mr": 5, "tDamPct": -15, "fDefPct": -15, "wDefPct": 10, "eDefPct": 10, "id": 3016}, {"name": "Sigil of Existence", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-42", "fDam": "0-0", "wDam": "40-50", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "intReq": 40, "agiReq": 40, "int": 16, "agi": 10, "hpBonus": 2050, "spRegen": 77, "fDefPct": 12, "wDefPct": 31, "aDefPct": 31, "tDefPct": -15, "eDefPct": 15, "id": 3017}, {"name": "Sigil of Resistance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "83-89", "fDam": "84-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "84-90", "atkSpd": "NORMAL", "lvl": 97, "strReq": 40, "defReq": 40, "hprPct": 95, "str": 8, "def": 12, "hpBonus": 3000, "fDefPct": 31, "wDefPct": -15, "aDefPct": 12, "tDefPct": 15, "eDefPct": 31, "id": 3019}, {"name": "Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "0-0", "aDam": "5-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 7, "spd": 15, "eDefPct": -10, "id": 3014}, {"name": "Shrok", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 385, "tDef": 30, "eDef": -25, "lvl": 46, "dexReq": 20, "mdPct": 4, "dex": 8, "mdRaw": 53, "tDamPct": 15, "tDefPct": 12, "id": 3012}, {"name": "Signal Flare", "tier": "Legendary", "type": "boots", "majorIds": ["TAUNT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3200, "fDef": 100, "wDef": -50, "aDef": 100, "eDef": -100, "lvl": 85, "agiReq": 45, "defReq": 45, "ls": 235, "str": 10, "spd": 15, "mdRaw": 190, "fDamPct": 15, "aDamPct": 15, "wDefPct": -35, "id": 3020}, {"name": "Silhouette", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "ref": 10, "agi": 8, "spRegen": 5, "aDefPct": 12, "id": 3023}, {"name": "Silver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "79-114", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 50, "agiReq": 35, "mr": 5, "sdPct": 10, "int": 9, "spd": 14, "fDamPct": -20, "wDamPct": 20, "aDefPct": 23, "id": 3025}, {"name": "Silkweb Mail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 90, "eDef": 120, "lvl": 95, "strReq": 50, "agiReq": 20, "ls": 240, "ms": 10, "str": 9, "spd": -9, "atkTier": -1, "aDamPct": 30, "eDamPct": 20, "fDefPct": -15, "id": 3022}, {"name": "Silver Bell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "75-100", "aDam": "60-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 25, "agiReq": 25, "mr": 5, "mdPct": -15, "xpb": 15, "agi": 7, "spd": 10, "spRegen": 10, "wDefPct": 20, "aDefPct": 20, "id": 3026}, {"name": "Silver Sound", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "375-380", "wDam": "0-0", "aDam": "375-380", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 99, "agiReq": 40, "defReq": 40, "mr": -5, "int": -20, "agi": 10, "def": 10, "fDamPct": 29, "wDamPct": -42, "aDamPct": 29, "spRaw3": -10, "id": 3028}, {"name": "Silkworm", "tier": "Rare", "type": "boots", "poison": 260, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -50, "aDef": 30, "lvl": 71, "agiReq": 38, "hprPct": 25, "agi": 9, "def": -10, "spd": 10, "aDamPct": 10, "id": 3024}, {"name": "Silicosis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "fDef": -100, "aDef": 45, "eDef": 55, "lvl": 63, "strReq": 40, "agiReq": 30, "str": 7, "agi": 5, "def": -3, "fDamPct": -30, "aDamPct": 13, "eDamPct": 15, "id": 3041}, {"name": "Simple Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 18, "lb": 5, "type": "necklace", "id": 3030}, {"name": "Simplicity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 21, "spRegen": 1, "type": "ring", "id": 3029}, {"name": "Sinkhole", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "550-575", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 30, "ls": 118, "agi": -5, "expd": 25, "hpBonus": -600, "mdRaw": 305, "aDefPct": -10, "id": 3033}, {"name": "Sinister", "tier": "Rare", "poison": 350, "category": "accessory", "drop": "lootchest", "wDef": -55, "tDef": 20, "lvl": 82, "dexReq": 25, "defReq": 15, "ls": 80, "ms": 5, "wDamPct": -8, "aDefPct": -13, "type": "bracelet", "id": 3031}, {"name": "Siwel's Guilt", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 74, "intReq": 40, "hprPct": 6, "xpb": 5, "lb": -5, "hpBonus": 370, "spRegen": -30, "hprRaw": 28, "type": "bracelet", "id": 3034}, {"name": "Sitis", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "75-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 65, "mr": -10, "sdPct": 20, "ls": 300, "ms": 10, "spd": -15, "hprRaw": -185, "wDamPct": 30, "id": 3032}, {"name": "Skaxis", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-100", "atkSpd": "FAST", "lvl": 62, "strReq": 40, "dexReq": 50, "xpb": 10, "dex": 100, "agi": -77, "spd": -12, "hpBonus": -500, "id": 3035}, {"name": "Skeleton Bones", "tier": "Rare", "type": "chestplate", "poison": 82, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 31, "hprPct": -8, "ls": 18, "agi": 5, "id": 3038}, {"name": "Skeleton's Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 14, "hprPct": 8, "int": 4, "hpBonus": 5, "id": 3037}, {"name": "Silver Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "xpb": 7, "lb": 13, "id": 3027}, {"name": "Skeleton Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "fDef": -15, "aDef": 20, "lvl": 36, "agiReq": 10, "agi": 5, "spd": 6, "aDamPct": 7, "fDefPct": -5, "id": 3039}, {"name": "Skien's Madness", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "10-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 56, "dexReq": 30, "mdPct": 13, "str": 7, "dex": 13, "spd": 7, "atkTier": 7, "spRegen": -10, "mdRaw": 105, "spRaw2": 10, "id": 3040}, {"name": "Skien's Paranoia", "tier": "Rare", "type": "dagger", "thorns": 40, "category": "weapon", "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "ls": 140, "ms": -5, "ref": 25, "int": -5, "hpBonus": 475, "hprRaw": 60, "id": 3042}, {"name": "Skin Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 16, "lvl": 7, "xpb": 5, "id": 3043}, {"name": "Skin Piercer", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 5, "mdPct": 7, "dex": 9, "tDamPct": 10, "id": 3044}, {"name": "Sky Chef's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 4, "drop": "never", "hp": 3200, "lvl": 96, "xpb": 15, "lb": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 3046}, {"name": "Sky Reflector", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -60, "wDef": 15, "aDef": 70, "lvl": 65, "xpb": 5, "ref": 10, "wDamPct": 10, "aDefPct": 5, "id": 3048}, {"name": "Skyspiral", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-31", "fDam": "0-0", "wDam": "0-0", "aDam": "57-63", "tDam": "38-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 20, "agiReq": 25, "dex": 5, "def": -5, "spd": 20, "hpBonus": -320, "sdRaw": 60, "mdRaw": 59, "id": 3047}, {"name": "Sky Glaze", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-25", "fDam": "0-0", "wDam": "20-30", "aDam": "15-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "intReq": 10, "agiReq": 10, "sdPct": 12, "lb": 12, "dex": -10, "spd": 5, "tDamPct": -10, "id": 3045}, {"name": "Skyfall", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "agiReq": 38, "xpb": 6, "spd": 18, "fDamPct": -12, "wDamPct": -12, "aDamPct": 24, "tDamPct": -12, "eDamPct": -12, "id": 3049}, {"name": "Slap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "agi": 3, "mdRaw": 5, "type": "bracelet", "id": 3050}, {"name": "Sizzling Shawl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "fDef": 60, "wDef": 80, "tDef": -180, "lvl": 98, "intReq": 45, "defReq": 55, "hprPct": -35, "sdPct": 23, "expd": 25, "hprRaw": -150, "sdRaw": 152, "fDamPct": 20, "wDamPct": 20, "tDefPct": -30, "id": 3036}, {"name": "Slash and Burn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-35", "fDam": "25-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "strReq": 20, "defReq": 20, "xpb": 8, "str": 7, "expd": 12, "eDamPct": 15, "fDefPct": -12, "id": 3055}, {"name": "Slate Bow", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-18", "fDam": "10-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-18", "atkSpd": "NORMAL", "lvl": 19, "strReq": 10, "defReq": 10, "hprPct": 9, "def": 7, "expd": 6, "hpBonus": 30, "eDefPct": -10, "id": 3053}, {"name": "Sleeping Beast", "tier": "Unique", "type": "bow", "poison": 1730, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-200", "eDam": "95-155", "atkSpd": "SLOW", "lvl": 95, "strReq": 40, "dexReq": 40, "sdPct": 12, "mdPct": 12, "ms": 5, "dex": 9, "spd": -15, "fDefPct": -30, "id": 3054}, {"name": "Sledge", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 9, "str": 7, "spd": -10, "mdRaw": 20, "id": 3056}, {"name": "Skywatcher", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1950, "fDef": -100, "wDef": 50, "aDef": 100, "lvl": 84, "intReq": 20, "agiReq": 35, "hprPct": -25, "mr": 5, "xpb": 12, "ref": 12, "int": 5, "agi": 7, "spd": 12, "spRegen": 12, "sdRaw": 150, "id": 3052}, {"name": "Slippery Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": -4, "aDef": 4, "lvl": 11, "dex": -2, "agi": 3, "spd": 5, "id": 3060}, {"name": "Slicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "mdPct": 3, "str": 1, "id": 3058}, {"name": "Slipstream", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1800, "aDef": 50, "lvl": 79, "agiReq": 60, "sdPct": -15, "mdPct": 10, "lb": 20, "agi": 7, "expd": -30, "spd": 15, "aDamPct": 8, "id": 3059}, {"name": "Sloth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-58", "fDam": "17-25", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 19, "hprPct": 12, "def": 5, "spd": -15, "hprRaw": 7, "id": 3062}, {"name": "Slime-blend Leggings", "displayName": "Slime-Blend Leggings", "tier": "Rare", "type": "leggings", "poison": 17, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 7, "tDef": -10, "lvl": 15, "wDamPct": 7, "eDamPct": 7, "id": 3057}, {"name": "Smack Jacket", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -100, "lvl": 89, "strReq": 55, "dexReq": 55, "hprPct": -30, "sdPct": -30, "mdPct": 8, "ls": 170, "str": 10, "dex": 10, "expd": 20, "atkTier": 1, "id": 3061}, {"name": "Sliver", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 87, "dexReq": 25, "dex": 4, "def": -3, "mdRaw": 49, "type": "ring", "id": 3063}, {"name": "Slumber", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-210", "fDam": "0-0", "wDam": "115-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 40, "mr": 10, "sdPct": -15, "mdPct": -15, "spRegen": 3, "hprRaw": 70, "wDefPct": 10, "id": 3064}, {"name": "Smoldering Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 80, "wDef": -180, "lvl": 96, "sdPct": 30, "mdPct": 30, "expd": 25, "spd": 20, "hprRaw": -100, "fDamPct": 6, "wDamPct": -30, "id": 3067}, {"name": "Snakeroot Bow", "tier": "Legendary", "type": "bow", "poison": 435, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "50-85", "wDam": "0-0", "aDam": "0-0", "tDam": "50-85", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 34, "dexReq": 20, "defReq": 20, "sdPct": 10, "dex": 8, "spd": -15, "hpBonus": -200, "fDamPct": 12, "tDamPct": 12, "id": 3065}, {"name": "Snapdragon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-50", "fDam": "35-65", "wDam": "0-0", "aDam": "0-0", "tDam": "35-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 25, "defReq": 35, "ls": 140, "expd": 15, "hprRaw": 60, "eDamPct": -10, "wDefPct": -15, "id": 3066}, {"name": "Sneaky Caster", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-30", "fDam": "0-0", "wDam": "0-0", "aDam": "4-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "mdPct": -12, "lb": 5, "spd": 10, "eSteal": 5, "id": 3068}, {"name": "Snowslicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-32", "fDam": "0-0", "wDam": "18-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "intReq": 15, "mr": 5, "ref": 8, "wDamPct": 8, "fDefPct": -8, "id": 3070}, {"name": "Snow Dust", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": -20, "aDef": 25, "tDef": 25, "eDef": -20, "lvl": 52, "dex": 4, "agi": 4, "spd": 10, "tDamPct": 5, "aDefPct": 5, "id": 3069}, {"name": "Soaked Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "wDef": 4, "tDef": -6, "lvl": 13, "wDamPct": 10, "fDefPct": 7, "id": 3072}, {"name": "Soft Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 10, "aDef": 3, "tDef": -1, "lvl": 4, "agi": 1, "id": 3075}, {"name": "Soarfae", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2650, "fDef": -125, "aDef": 150, "lvl": 97, "agiReq": 65, "ref": 17, "agi": 20, "spd": 30, "atkTier": 1, "aDamPct": 30, "aDefPct": 10, "id": 3071}, {"name": "Sokoto", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 15, "lvl": 4, "agi": 3, "spd": 8, "aDamPct": 4, "id": 3073}, {"name": "Solitude", "tier": "Unique", "type": "bow", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-120", "fDam": "0-0", "wDam": "0-0", "aDam": "75-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "agiReq": 40, "sdPct": 9, "mdPct": -8, "xpb": 8, "spd": 14, "wDamPct": 7, "id": 3077}, {"name": "Solar Pillar", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-46", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 35, "defReq": 35, "sdPct": 10, "xpb": 12, "def": 7, "hpBonus": 600, "wDamPct": 25, "eDamPct": -120, "tDefPct": -25, "id": 3076}, {"name": "Solar Flare", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": -70, "tDef": 70, "lvl": 65, "dexReq": 30, "defReq": 30, "mdPct": 5, "expd": 10, "fDamPct": 8, "tDamPct": 8, "wDefPct": -10, "id": 3074}, {"name": "Solstice", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-65", "fDam": "20-25", "wDam": "25-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 25, "hprPct": 14, "def": 7, "hpBonus": 240, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 3080}, {"name": "Soldier", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 160, "lvl": 78, "str": 4, "def": 4, "type": "ring", "id": 3078}, {"name": "Someone Else's Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "32-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "hprPct": -8, "xpb": 10, "spRegen": -5, "mdRaw": 23, "id": 3079}, {"name": "Soul Wreath", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "wDef": 50, "eDef": 50, "lvl": 64, "strReq": 30, "intReq": 35, "mr": 5, "int": 4, "spd": -10, "spRegen": 10, "hprRaw": 60, "id": 3085}, {"name": "Souffle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "105-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 58, "agiReq": 28, "agi": 9, "spd": 10, "mdRaw": 80, "tDamPct": 15, "id": 3082}, {"name": "Sonicboom", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "417-531", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 36, "agiReq": 25, "sdPct": 30, "ms": 5, "agi": 12, "spd": 25, "aDamPct": 15, "spPct3": 35, "id": 3086}, {"name": "Soul", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "sdPct": 5, "mdPct": 4, "agi": 3, "aDamPct": 6, "fDefPct": -20, "id": 3083}, {"name": "Sorcerer's Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-23", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 46, "dexReq": 20, "intReq": 10, "sdPct": 14, "mdPct": -9, "ref": 6, "sdRaw": 50, "id": 3081}, {"name": "Sound of Silence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "aDef": 10, "lvl": 23, "agiReq": 12, "xpb": 15, "spd": 10, "mdRaw": 20, "aDamPct": 15, "id": 3084}, {"name": "Soul Signal", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 90, "tDef": 125, "eDef": -170, "lvl": 92, "dexReq": 50, "intReq": 50, "mdPct": -15, "ref": 25, "dex": 10, "int": 10, "spRegen": 25, "sdRaw": 222, "eDamPct": -80, "id": 3088}, {"name": "Soundgarden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "82-86", "tDam": "0-0", "eDam": "87-99", "atkSpd": "FAST", "lvl": 72, "strReq": 20, "agiReq": 25, "ls": -140, "ref": 25, "sdRaw": 110, "wDamPct": -25, "aDamPct": 14, "eDamPct": 14, "spRaw1": -5, "id": 3087}, {"name": "Soundwave", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "514-1143", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 59, "dexReq": 70, "sdPct": -40, "mdPct": 18, "dex": 8, "tDamPct": 12, "id": 3091}, {"name": "Sow Thistle", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 450, "aDef": -40, "eDef": 30, "lvl": 44, "strReq": 30, "hprPct": -15, "mdPct": 10, "spd": -12, "mdRaw": 80, "eDamPct": 15, "id": 3092}, {"name": "Spark of Courage", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-20", "fDam": "0-35", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 86, "agiReq": 35, "defReq": 35, "hprPct": 15, "sdPct": -12, "mdPct": -12, "ref": 8, "hpBonus": 900, "hprRaw": 130, "wDamPct": -20, "id": 3089}, {"name": "Sowilo", "tier": "Unique", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": 575, "fDef": 45, "wDef": -55, "tDef": 45, "eDef": -55, "lvl": 87, "dexReq": 20, "defReq": 20, "mdPct": 6, "ref": 5, "expd": 6, "type": "necklace", "id": 3090}, {"name": "Sparkles", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "dexReq": 22, "xpb": 12, "ref": 10, "aDefPct": -10, "tDefPct": 10, "id": 3098}, {"name": "Speaker", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": -100, "aDef": 100, "lvl": 87, "intReq": 40, "mr": 10, "xpb": 25, "ref": 10, "int": 7, "spRegen": 7, "id": 3100}, {"name": "Sparkling Tones", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "75-81", "aDam": "75-81", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "intReq": 44, "agiReq": 44, "mr": 5, "xpb": 15, "dex": -25, "spd": 15, "eSteal": 5, "sdRaw": 143, "wDefPct": 20, "aDefPct": 20, "id": 3093}, {"name": "Sparklock", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "mr": 5, "int": 3, "tDamPct": 5, "id": 3095}, {"name": "Spear of Prosperity", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "xpb": 5, "lb": 15, "eSteal": 5, "id": 3097}, {"name": "Spear of Sin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-125", "fDam": "105-175", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "dexReq": 35, "defReq": 25, "ls": 290, "dex": 5, "def": 16, "spRegen": -13, "fDamPct": 15, "wDamPct": -50, "tDamPct": 15, "id": 3096}, {"name": "Spear of Vix", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "22-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 5, "agiReq": 25, "sdPct": 8, "xpb": 8, "spd": 8, "fDamPct": -8, "aDamPct": 8, "fDefPct": -8, "aDefPct": 8, "id": 3099}, {"name": "Sphyken", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "dexReq": 50, "ms": 10, "int": 7, "hpBonus": -250, "sdRaw": 40, "wDamPct": 15, "aDamPct": -20, "tDefPct": 15, "id": 3101}, {"name": "Spectral Slingshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "25-75", "wDam": "25-75", "aDam": "25-75", "tDam": "25-75", "eDam": "25-75", "atkSpd": "FAST", "lvl": 67, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "xpb": 10, "id": 3102}, {"name": "Sparkling Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3750, "fDef": 50, "wDef": -50, "aDef": 100, "tDef": 100, "eDef": -50, "lvl": 99, "dexReq": 50, "agiReq": 50, "ls": 220, "ref": 17, "int": -30, "def": 8, "hprRaw": 150, "spPct1": -7, "spPct2": -14, "spPct3": -10, "id": 3094}, {"name": "Spectre", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1600, "fDef": -50, "eDef": -50, "lvl": 65, "agiReq": 35, "sdPct": 25, "mdPct": -35, "ms": 10, "agi": 9, "hpBonus": -250, "spRegen": -10, "aDamPct": 19, "tDamPct": 19, "eDamPct": -19, "aDefPct": 10, "id": 3105}, {"name": "Spectrum", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3300, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 97, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 3104}, {"name": "Spicy", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-20", "fDam": "12-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "defReq": 8, "def": 4, "mdRaw": 18, "fDamPct": 9, "id": 3103}, {"name": "Spike", "tier": "Rare", "type": "dagger", "poison": 320, "thorns": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "75-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "24-40", "atkSpd": "NORMAL", "lvl": 50, "strReq": 20, "sdPct": 5, "mdPct": 10, "spd": -5, "aDamPct": -20, "eDamPct": 20, "id": 3107}, {"name": "Spiked Cleats", "tier": "Unique", "type": "boots", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 48, "lvl": 13, "spd": -3, "mdRaw": 12, "id": 3140}, {"name": "Spirit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-54", "fDam": "0-0", "wDam": "0-0", "aDam": "43-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "agiReq": 15, "ms": 5, "agi": 10, "def": -8, "spRegen": 4, "aDamPct": 10, "fDefPct": -10, "id": 3112}, {"name": "Spine", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 30, "mdPct": 5, "expd": 10, "aDefPct": -10, "id": 3111}, {"name": "Spiked Helmet", "tier": "Rare", "type": "helmet", "thorns": 40, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "aDef": -70, "eDef": 95, "lvl": 74, "strReq": 25, "defReq": 35, "mdPct": 18, "def": 7, "spd": -8, "fDefPct": 18, "id": 3108}, {"name": "Spiritdancer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 94, "intReq": 65, "defReq": 65, "mr": 5, "sdPct": 21, "agi": 10, "spd": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 15, "tDamPct": -15, "eDamPct": -15, "id": 3615}, {"name": "Spiritshock", "tier": "Legendary", "type": "bow", "poison": 1200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "270-270", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 55, "ls": 375, "ms": 10, "dex": 13, "spRegen": -50, "sdRaw": 135, "eDefPct": -28, "id": 3110}, {"name": "Spleen Splitter", "tier": "Unique", "type": "relik", "poison": 3600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-5", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "mr": -10, "ls": 280, "ms": 5, "str": 10, "spd": 10, "hprRaw": -210, "id": 3109}, {"name": "Spontaneous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 71, "agiReq": 20, "defReq": 20, "ms": -5, "expd": 12, "spd": 8, "hpBonus": -330, "type": "bracelet", "id": 3113}, {"name": "Sprinter", "tier": "Unique", "type": "leggings", "sprint": 7, "category": "armor", "drop": "NORMAL", "hp": 30, "aDef": 3, "lvl": 12, "spd": 11, "id": 3115}, {"name": "Sprint Belt", "tier": "Rare", "type": "leggings", "sprint": 18, "category": "armor", "drop": "NORMAL", "lvl": 33, "agiReq": 33, "agi": 8, "spd": 18, "aDamPct": 18, "sprintReg": 18, "id": 3114}, {"name": "Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3119}, {"name": "Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3117}, {"name": "Sprintguard", "tier": "Rare", "type": "leggings", "sprint": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2950, "fDef": 60, "aDef": 60, "tDef": -150, "lvl": 82, "agiReq": 45, "defReq": 45, "sdPct": 10, "mdPct": -10, "int": -20, "agi": 7, "def": 7, "spd": 23, "wDamPct": -10, "spPct1": -14, "spPct2": -7, "sprintReg": 11, "id": 3116}, {"name": "Spruce Wood Shears", "displayName": "Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "id": 3118}, {"name": "Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3120}, {"name": "Spruce Wood Stick", "displayName": "Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3121}, {"name": "Spyrr", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "str": 3, "dex": 3, "id": 3122}, {"name": "Squall's Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "dexReq": 50, "agiReq": 40, "sdPct": 10, "agi": 9, "spd": 25, "hpBonus": -1000, "tDamPct": 20, "eDefPct": -11, "id": 3123}, {"name": "Squid Anklet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 40, "tDef": -60, "lvl": 83, "intReq": 45, "mr": 5, "fDamPct": -6, "wDamPct": 6, "type": "bracelet", "id": 3124}, {"name": "Squid Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "intReq": 25, "mr": 5, "ms": 5, "xpb": 10, "int": 7, "eSteal": 1, "fDamPct": -10, "fDefPct": 10, "wDefPct": 10, "tDefPct": -30, "id": 3125}, {"name": "Sreggad", "tier": "Rare", "type": "dagger", "thorns": 333, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "ls": 354, "ref": 333, "agi": 20, "def": 20, "hpBonus": 2500, "hprRaw": 173, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "id": 3129}, {"name": "Squidword's Clarinet", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "3-6", "aDam": "2-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "int": 4, "agi": 4, "spd": 5, "fDamPct": -10, "wDamPct": 8, "wDefPct": 7, "id": 3126}, {"name": "Staff of Regrowth", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 71, "strReq": 20, "intReq": 20, "mr": 10, "mdPct": -25, "wDefPct": 10, "eDefPct": 10, "id": 3131}, {"name": "Staccato", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -60, "tDef": 40, "eDef": 20, "lvl": 96, "strReq": 45, "dexReq": 45, "mr": -5, "ms": 10, "dex": 5, "mdRaw": 29, "type": "necklace", "id": 3128}, {"name": "StabSand", "displayName": "Stabsand", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-190", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 32, "ls": 38, "dex": 8, "expd": 30, "aDamPct": 12, "id": 3127}, {"name": "Stad Aer", "tier": "Unique", "type": "helmet", "thorns": 11, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1925, "fDef": -100, "eDef": 100, "lvl": 85, "strReq": 40, "agiReq": 40, "mdPct": 7, "ms": 10, "ref": 11, "str": 8, "mdRaw": 185, "aDamPct": 11, "aDefPct": 11, "id": 3130}, {"name": "Starburst", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "35-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "agiReq": 55, "ms": 10, "hprRaw": -150, "sdRaw": 160, "fDamPct": 10, "aDamPct": 20, "tDamPct": 10, "id": 3132}, {"name": "Stalagmites", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": -130, "aDef": -130, "tDef": 100, "eDef": 100, "lvl": 67, "strReq": 20, "dexReq": 20, "ms": 5, "xpb": 10, "str": 7, "dex": 7, "tDamPct": 25, "eDamPct": 25, "tDefPct": 20, "eDefPct": 20, "id": 3135}, {"name": "Stamina", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "aDef": 5, "lvl": 24, "def": 4, "spd": 6, "hprRaw": 5, "id": 3136}, {"name": "Standoff", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "lvl": 33, "defReq": 25, "def": 5, "spd": -28, "hpBonus": 200, "id": 3134}, {"name": "Starched Pants", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 16, "lvl": 5, "def": 4, "id": 3133}, {"name": "Starglass", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -100, "wDef": 60, "aDef": 140, "tDef": -40, "lvl": 95, "intReq": 40, "agiReq": 40, "sdPct": 30, "mdPct": -15, "ref": 20, "int": 7, "def": 7, "spRegen": 15, "fDamPct": 15, "wDamPct": 5, "aDefPct": 5, "id": 2517}, {"name": "Stasis", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-150", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 30, "mdPct": 10, "str": 7, "spd": -10, "eDamPct": 10, "aDefPct": -10, "eDefPct": 10, "id": 3137}, {"name": "Static Flood", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "42-51", "aDam": "0-0", "tDam": "7-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "dexReq": 35, "intReq": 30, "hprPct": -15, "sdPct": 5, "mdPct": -16, "ms": 10, "wDamPct": 10, "tDamPct": 13, "id": 3138}, {"name": "Static Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-66", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "dexReq": 30, "sdPct": 8, "mdPct": 5, "spd": 8, "tDamPct": 8, "tDefPct": 10, "id": 3139}, {"name": "Steam Vent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-128", "fDam": "48-85", "wDam": "0-0", "aDam": "37-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "agiReq": 20, "defReq": 20, "ls": 225, "agi": 7, "def": 7, "spd": 9, "wDefPct": -12, "eDefPct": -12, "id": 3143}, {"name": "Stave of Tribute", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "xpb": 7, "lb": 15, "id": 3141}, {"name": "Statue", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 7500, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 88, "spd": -200, "hpBonus": 3850, "id": 3142}, {"name": "Steamjet Walkers", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "tDef": -80, "lvl": 86, "dexReq": 30, "intReq": 30, "agiReq": 40, "sdPct": 24, "agi": 15, "spd": 21, "wDamPct": 21, "aDamPct": 24, "tDamPct": 21, "id": 3147}, {"name": "StealSkull", "displayName": "Stealskull", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 960, "lvl": 68, "ls": 110, "ms": 5, "eSteal": 5, "id": 3144}, {"name": "Steel Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "fDef": 12, "wDef": -10, "lvl": 45, "defReq": 15, "ref": 7, "def": 5, "spd": -3, "type": "bracelet", "id": 3148}, {"name": "Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-19", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 9, "expd": 5, "spd": -10, "aDamPct": -7, "eDamPct": 6, "id": 3145}, {"name": "Steel Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 415, "lvl": 46, "hprPct": 15, "mdPct": 6, "xpb": 10, "spd": -5, "id": 3150}, {"name": "Steel Wool", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "fDef": 80, "wDef": -120, "aDef": 80, "tDef": 80, "eDef": -120, "lvl": 90, "dexReq": 35, "defReq": 35, "sdPct": 15, "ls": 200, "dex": 8, "int": -22, "wDefPct": -15, "eDefPct": -15, "spPct1": -7, "spPct2": -7, "spPct3": -7, "spPct4": -7, "id": 3151}, {"name": "Steel Toed Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "fDef": 2, "eDef": 2, "lvl": 19, "def": 4, "hpBonus": 10, "id": 3152}, {"name": "Steel Sabre", "tier": "Unique", "type": "dagger", "poison": 150, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 35, "sdPct": 7, "mdPct": 4, "str": 5, "fDamPct": -15, "fDefPct": -15, "id": 3146}, {"name": "Stick of Brilliance", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "ms": 5, "xpb": 7, "int": 4, "id": 3154}, {"name": "Stingray", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-80", "aDam": "0-0", "tDam": "20-110", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "dexReq": 27, "intReq": 27, "sdPct": 10, "ms": 5, "dex": 5, "int": 8, "tDamPct": 10, "eDamPct": -14, "eDefPct": -14, "id": 3156}, {"name": "Stone Cutter", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "eSteal": 2, "eDamPct": 6, "id": 3153}, {"name": "Stellar", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 95, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 13, "mdPct": 13, "ms": 5, "spd": 10, "hpBonus": 577, "type": "necklace", "id": 3149}, {"name": "Stonehall", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 35, "strReq": 15, "str": 5, "spd": -3, "eDamPct": 8, "type": "ring", "id": 3159}, {"name": "StoneWall", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "fDef": -10, "wDef": -10, "aDef": -50, "tDef": -10, "eDef": 150, "lvl": 60, "strReq": 30, "mdPct": 5, "xpb": 10, "str": 8, "def": 5, "aDamPct": -40, "id": 3155}, {"name": "Storm Brewer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2550, "wDef": -150, "tDef": 50, "lvl": 86, "dexReq": 65, "mr": -15, "mdPct": 15, "ms": 15, "dex": 12, "sdRaw": 160, "mdRaw": 190, "wDamPct": -20, "tDamPct": 15, "id": 3160}, {"name": "Storm Surge", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-330", "aDam": "0-0", "tDam": "1-420", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "intReq": 35, "hprPct": -20, "ms": 10, "atkTier": -1, "hpBonus": -900, "sdRaw": 146, "wDamPct": 18, "tDamPct": 18, "aDefPct": -30, "eDefPct": -71, "id": 3157}, {"name": "Storm Caller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-115", "fDam": "0-0", "wDam": "0-0", "aDam": "55-70", "tDam": "50-85", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 30, "agiReq": 30, "sdPct": 12, "def": -8, "spd": 8, "aDamPct": 12, "tDamPct": 12, "wDefPct": -24, "eDefPct": -24, "id": 3158}, {"name": "Stormdrain", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "220-225", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 55, "mr": 20, "sdPct": -15, "mdPct": -30, "int": 15, "wDamPct": 55, "wDefPct": -20, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3161}, {"name": "Stranglevine", "tier": "Unique", "type": "bow", "poison": 810, "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-120", "atkSpd": "SLOW", "lvl": 63, "hprPct": -20, "ls": 175, "fDefPct": -10, "id": 3163}, {"name": "Stratosphere", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": -60, "wDef": 120, "aDef": -60, "tDef": 120, "eDef": -120, "lvl": 98, "dexReq": 65, "intReq": 65, "mr": 10, "sdPct": 25, "wDamPct": 10, "tDamPct": 10, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "jh": 3, "id": 3591}, {"name": "Stormflash", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "1-23", "aDam": "0-0", "tDam": "1-23", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "intReq": 15, "hprPct": -9, "sdPct": 8, "xpb": 8, "dex": 5, "int": 5, "eDefPct": -10, "id": 3165}, {"name": "Straw Helmet", "tier": "Unique", "type": "helmet", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "fDef": -5, "wDef": -5, "lvl": 20, "xpb": 5, "spd": 6, "id": 3167}, {"name": "Stormstrike", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "agi": 4, "id": 3162}, {"name": "Streak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 175, "tDef": 10, "eDef": -10, "lvl": 30, "dexReq": 10, "ref": 3, "dex": 5, "spd": 10, "hpBonus": -30, "tDamPct": 10, "eDefPct": -15, "id": 3166}, {"name": "Stress", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 30, "lb": 10, "spd": 5, "hpBonus": -18, "spRegen": -10, "hprRaw": -7, "id": 3169}, {"name": "Striker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-10", "fDam": "0-0", "wDam": "0-0", "aDam": "4-7", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdPct": 5, "agi": 3, "def": -2, "hpBonus": -9, "mdRaw": 8, "id": 3168}, {"name": "Stringendo", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "agi": 4, "spd": 12, "id": 3175}, {"name": "Struggle", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "tDef": 180, "eDef": -150, "lvl": 90, "dexReq": 50, "mdPct": 20, "ms": 10, "dex": 10, "expd": 30, "atkTier": -6, "mdRaw": 775, "wDamPct": -23, "tDamPct": 31, "id": 3170}, {"name": "Sturdy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1800, "fDef": 40, "eDef": 40, "lvl": 79, "strReq": 40, "defReq": 40, "sdPct": -8, "xpb": 9, "def": 7, "hpBonus": 600, "eDefPct": 13, "id": 3171}, {"name": "Strobelight", "tier": "Fabled", "majorIds": ["TAUNT"], "category": "accessory", "drop": "lootchest", "hp": 350, "lvl": 54, "classReq": "Warrior", "defReq": 30, "ref": 15, "def": 7, "spd": -7, "type": "necklace", "id": 3172}, {"name": "Sublime", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1350, "fDef": 60, "aDef": 60, "lvl": 64, "agiReq": 50, "defReq": 50, "sdPct": -15, "mdPct": -15, "agi": 7, "def": 7, "spd": 8, "hpBonus": 200, "fDefPct": 10, "aDefPct": 10, "id": 3178}, {"name": "Stylist's Scissors", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-54", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "dexReq": 15, "xpb": 12, "lb": 10, "atkTier": 1, "eSteal": 5, "eDamPct": -5, "id": 3173}, {"name": "Sublimator", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": 70, "wDef": -90, "eDef": 70, "lvl": 66, "strReq": 30, "defReq": 30, "mdPct": 14, "def": 5, "spd": -8, "fDamPct": 16, "eDamPct": 16, "wDefPct": -18, "id": 3174}, {"name": "Subsumere", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "30-50", "aDam": "0-0", "tDam": "20-55", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 15, "intReq": 20, "sdPct": -10, "ls": 160, "ms": 10, "id": 3177}, {"name": "Stratus", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 93, "intReq": 60, "agiReq": 30, "ms": 5, "agi": 8, "spd": 11, "type": "ring", "id": 3164}, {"name": "Succulent Sneakers", "tier": "Unique", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 835, "wDef": 30, "eDef": 40, "lvl": 60, "strReq": 30, "intReq": 20, "hprPct": 20, "sdPct": -8, "wDefPct": 9, "aDefPct": -11, "eDefPct": 9, "id": 3176}, {"name": "Jewelled Sinew", "displayName": "Subtle Calamity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-135", "tDam": "0-0", "eDam": "80-135", "atkSpd": "VERY_FAST", "lvl": 90, "strReq": 35, "agiReq": 30, "mr": -5, "sdPct": 15, "ms": 5, "int": 10, "agi": 10, "fDefPct": -12, "tDefPct": -12, "id": 3179}, {"name": "Suchimu", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": 40, "wDef": 40, "lvl": 53, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "sdPct": -8, "mdPct": -8, "int": 4, "def": 4, "hprRaw": 35, "tDamPct": -30, "id": 3180}, {"name": "Sulphurous Sling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "6-15", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 45, "dexReq": 25, "defReq": 10, "sdPct": 14, "mdPct": -20, "expd": 12, "tDamPct": 14, "wDefPct": -12, "id": 3181}, {"name": "Sunray", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "fDef": 90, "tDef": 90, "lvl": 96, "dexReq": 20, "defReq": 20, "hprPct": 18, "ms": 5, "ref": 15, "dex": 5, "def": 5, "sdRaw": 160, "wDefPct": -10, "aDefPct": -10, "id": 3183}, {"name": "Sunbreeze", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "8-12", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 15, "agi": 5, "def": 5, "spd": 5, "hpBonus": 270, "wDefPct": -6, "id": 3184}, {"name": "Sunblock", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 124, "fDef": 10, "wDef": -7, "lvl": 24, "defReq": 5, "hprPct": 14, "ref": 6, "fDefPct": 5, "id": 3182}, {"name": "Sunsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "24-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 15, "agiReq": 5, "mr": 5, "xpb": 8, "ref": 5, "def": -3, "fDamPct": -15, "aDamPct": 10, "fDefPct": 5, "tDefPct": -5, "id": 3185}, {"name": "Sunrise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-35", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": 5, "xpb": 10, "lb": 10, "ref": 20, "id": 3186}, {"name": "Sunshade", "tier": "Rare", "type": "helmet", "thorns": -10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "fDef": 15, "wDef": -15, "lvl": 37, "ref": 15, "fDamPct": -5, "fDefPct": 8, "tDefPct": 8, "id": 3187}, {"name": "Sunshower", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "fDef": 60, "wDef": 60, "aDef": 90, "eDef": -125, "lvl": 83, "intReq": 40, "defReq": 40, "mr": 5, "xpb": 13, "agi": 8, "hprRaw": 100, "fDamPct": 13, "wDamPct": 13, "fDefPct": 13, "wDefPct": 13, "eDefPct": -20, "id": 3189}, {"name": "Sunshine Shortsword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "13-21", "wDam": "0-0", "aDam": "0-0", "tDam": "13-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 46, "dexReq": 20, "defReq": 20, "dex": 5, "def": 5, "hpBonus": 125, "id": 3188}, {"name": "Sunstruck", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "defReq": 30, "spRegen": 20, "hprRaw": 80, "sdRaw": -63, "mdRaw": -109, "fDamPct": 15, "id": 3191}, {"name": "Supernova", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-30", "wDam": "11-30", "aDam": "11-30", "tDam": "11-30", "eDam": "11-30", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "expd": 19, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 3190}, {"name": "Suppression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 76, "hprPct": 4, "mr": 10, "ls": -145, "ms": -20, "type": "ring", "id": 3192}, {"name": "Svalinn", "tier": "Rare", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1450, "fDef": 150, "wDef": 50, "lvl": 66, "intReq": 15, "defReq": 30, "hprPct": 30, "mr": 5, "ref": 15, "agi": -5, "def": 12, "spd": -28, "eDefPct": -25, "id": 3193}, {"name": "Swift", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 3, "spd": 5, "mdRaw": 1, "type": "necklace", "id": 3194}, {"name": "Swamp Clay", "tier": "Unique", "type": "helmet", "poison": 350, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "wDef": 65, "aDef": -70, "tDef": -70, "eDef": 65, "lvl": 78, "strReq": 35, "intReq": 30, "mr": 5, "sdPct": 6, "mdPct": 6, "spd": -7, "tDamPct": -12, "id": 3210}, {"name": "Switch Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "sdPct": 5, "dex": 3, "id": 3197}, {"name": "Sweden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-28", "fDam": "0-0", "wDam": "0-0", "aDam": "21-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "agiReq": 14, "ref": 14, "agi": 7, "spd": 14, "jh": 1, "id": 3195}, {"name": "Sylar", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-63", "fDam": "0-0", "wDam": "0-0", "aDam": "9-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "agiReq": 15, "agi": 5, "spd": 11, "sdRaw": 25, "aDefPct": 10, "id": 3199}, {"name": "Synthesizer", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "99-241", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "99-202", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 30, "intReq": 35, "xpb": 12, "dex": 8, "sdRaw": 100, "wDamPct": 25, "eDamPct": -23, "eDefPct": -16, "id": 3202}, {"name": "Synergy", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1000, "lvl": 59, "xpb": 6, "lb": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 3201}, {"name": "Syringe", "tier": "Unique", "type": "spear", "poison": -245, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "20-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 15, "ls": 41, "hpBonus": 190, "hprRaw": 19, "fDamPct": 13, "id": 3200}, {"name": "Agile Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 15, "lvl": 62, "agi": 3, "spd": 9, "aDamPct": 6, "type": "ring", "fixID": true, "id": 3203}, {"name": "Dark Band", "tier": "Rare", "quest": "Lost in the Jungle", "thorns": 8, "category": "accessory", "drop": "never", "tDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "dexReq": 10, "tDamPct": 6, "eDamPct": 6, "aDefPct": -8, "type": "bracelet", "fixID": true, "id": 3205}, {"name": "Barbaric Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "agiReq": 10, "mdPct": 8, "aDamPct": 6, "eDamPct": 6, "fDefPct": -8, "type": "necklace", "fixID": true, "id": 3204}, {"name": "Chaotic Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 25, "tDef": 25, "lvl": 63, "dexReq": 10, "intReq": 10, "sdRaw": 30, "wDamPct": 6, "tDamPct": 6, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 3206}, {"name": "Droughted Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "aDef": 25, "lvl": 63, "agiReq": 10, "defReq": 10, "expd": 8, "fDamPct": 6, "aDamPct": 6, "wDefPct": -8, "type": "necklace", "fixID": true, "id": 3209}, {"name": "Energy Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "tDef": 15, "lvl": 62, "dex": 3, "mdRaw": 29, "tDamPct": 6, "type": "ring", "fixID": true, "id": 3208}, {"name": "Force Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "eDef": 15, "lvl": 62, "mdPct": 6, "str": 3, "eDamPct": 6, "type": "ring", "fixID": true, "id": 3212}, {"name": "Mask of Courage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3NzYyMzIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzNhYTdlYzgyNGQ4NWViOWZjNzhlZmM5NjY4OWI4YTlmZTgyODgzOGJiMTZmZWU1MmZmOWNhYWFlODNjYzNhIn19fQ==", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "fDef": 100, "lvl": 57, "defReq": 30, "hprPct": 20, "lb": 10, "def": 5, "hpBonus": 500, "fDamPct": 20, "fixID": true, "id": 3214}, {"name": "Magical Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 15, "lvl": 62, "sdPct": 6, "int": 3, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3211}, {"name": "Mask of Fear", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3MTAxODQsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmFiZWVhYjUxYzM2NDc1ZDA2ZjY4M2M5MWVhOGIzZTM4MmE5ZTcxZTg0NzEyOWNlY2RlODcxMWQ5N2JkYTYifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": 80, "lvl": 57, "agiReq": 30, "lb": 10, "agi": 5, "spd": 15, "aDamPct": 20, "fixID": true, "id": 3215}, {"name": "Mask of Enlightement", "displayName": "Mask of Enlightenment", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU1NjgzMzAsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGI3NDgyNTdlZWU3NjhiNmQwM2I0ZWRhNTNjZmI1MmM1YWZmYmYxNmI3ZDhkOTNkNGQ2MWNlYjRjNmUyMTE0In19fQ==", "tier": "Legendary", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 750, "wDef": 60, "lvl": 57, "intReq": 30, "mr": 10, "sdPct": 10, "lb": 10, "int": 5, "wDamPct": 20, "fixID": true, "id": 3216}, {"name": "Guardian Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 15, "lvl": 62, "def": 3, "hpBonus": 230, "fDamPct": 6, "type": "ring", "fixID": true, "id": 3207}, {"name": "Synapse", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": -60, "eDef": -60, "lvl": 93, "strReq": 35, "agiReq": 35, "hprPct": -15, "ms": 5, "sdRaw": 120, "mdRaw": -120, "type": "bracelet", "id": 3198}, {"name": "Mask of Rage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2MTgwMzUsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmFjYzg3MmEwZGQ3MjI3NDg5ZmRlZGJlYmMyZWE2MjE1OGVlZjdlNWRkOTZjYzg3Njk5OTc3YWI5MjBmYSJ9fX0=", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1050, "eDef": 40, "lvl": 57, "strReq": 30, "mdPct": 25, "lb": 10, "str": 5, "eDamPct": 20, "fixID": true, "id": 3219}, {"name": "Scalding Band", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 63, "intReq": 10, "defReq": 10, "sdPct": 8, "fDamPct": 6, "wDamPct": 6, "tDefPct": -8, "type": "bracelet", "fixID": true, "id": 3217}, {"name": "Tachypsychia", "tier": "Fabled", "type": "relik", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "85-125", "eDam": "85-125", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 50, "dexReq": 50, "sdPct": 40, "spd": 20, "hprRaw": -245, "spRaw1": 5, "spRaw4": 5, "id": 3550}, {"name": "Tainted Step", "tier": "Unique", "type": "boots", "poison": 140, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": -25, "wDef": -25, "aDef": -25, "lvl": 51, "strReq": 30, "mdPct": 12, "ls": 42, "spRegen": -5, "hprRaw": -15, "id": 3220}, {"name": "Tactical Kukri", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-72", "fDam": "34-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "defReq": 35, "lb": 10, "hpBonus": 680, "eSteal": 5, "id": 3218}, {"name": "Mask of Hate", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2NzA3NjIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWMzMmRlZDVkNzY1N2RmMzExMTRkZmRkMzE5MjE5MzM3ZTU3NjQ2NWI3Nzk3ZGMwNmI1NjMyY2ViZDRjMzcifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "tDef": 20, "lvl": 57, "dexReq": 30, "lb": 10, "dex": 5, "mdRaw": 110, "tDamPct": 20, "fixID": true, "id": 3213}, {"name": "Tailwind", "tier": "Unique", "type": "leggings", "sprint": 16, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -150, "aDef": 150, "lvl": 91, "agiReq": 45, "sdPct": 19, "mdPct": 12, "ms": 10, "agi": 8, "spd": 18, "aDamPct": 20, "eDamPct": -15, "aDefPct": 8, "eDefPct": -25, "id": 3221}, {"name": "Takeover", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 50, "wDef": -50, "tDef": 100, "eDef": -100, "lvl": 77, "dexReq": 45, "ls": 115, "dex": 5, "int": -4, "def": 4, "sdRaw": 75, "fDamPct": 9, "wDamPct": -12, "tDamPct": 6, "id": 3222}, {"name": "Talisman Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 70, "sdPct": 5, "xpb": 5, "hpBonus": 340, "type": "necklace", "id": 3224}, {"name": "Takan's Treachery", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -45, "lvl": 30, "ls": 8, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 3223}, {"name": "Talcum", "tier": "Unique", "type": "helmet", "poison": 280, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1325, "aDef": -80, "eDef": 40, "lvl": 72, "strReq": 40, "mdPct": 8, "lb": 11, "str": 8, "eDamPct": 14, "wDefPct": -13, "aDefPct": -10, "id": 3227}, {"name": "Talaria", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 770, "fDef": -40, "lvl": 59, "agiReq": 70, "mdPct": -20, "lb": 20, "agi": 9, "spd": 23, "id": 3225}, {"name": "Tarnhelm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 240, "wDef": -20, "eDef": 20, "lvl": 33, "mdPct": 10, "str": 9, "id": 3230}, {"name": "Tarnish", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "wDef": 5, "aDef": -6, "lvl": 21, "intReq": 5, "ms": 5, "xpb": 8, "ref": -4, "wDamPct": 9, "aDefPct": -7, "id": 3226}, {"name": "Tarnkappe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "lvl": 59, "dexReq": 20, "agiReq": 40, "dex": 8, "agi": 10, "def": -15, "spd": 12, "mdRaw": 100, "aDamPct": 15, "tDamPct": 15, "id": 3229}, {"name": "Tarod's Search", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 10, "lvl": 47, "intReq": 5, "agiReq": 5, "ref": 7, "spd": 7, "hpBonus": -40, "wDefPct": 6, "type": "bracelet", "id": 3228}, {"name": "Tashkil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "80-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "defReq": 50, "hprPct": 15, "sdPct": -7, "mdPct": 20, "ms": -5, "def": 8, "spd": -6, "hprRaw": 150, "fDefPct": 20, "id": 3232}, {"name": "Taurus", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 4000, "fDef": -80, "eDef": 200, "lvl": 96, "strReq": 90, "mdPct": 50, "str": 15, "expd": 30, "atkTier": -20, "mdRaw": 1500, "id": 3234}, {"name": "Tarok's Parka", "displayName": "Tarod's Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "fDef": -2, "wDef": 6, "lvl": 10, "mr": 5, "int": 4, "sdRaw": 5, "id": 3233}, {"name": "Tear of Pirate Cove", "tier": "Rare", "quest": "Redbeard^s Booty", "category": "accessory", "drop": "never", "wDef": 20, "lvl": 61, "intReq": 40, "mr": 5, "sdPct": 4, "ms": -10, "sdRaw": 20, "type": "bracelet", "id": 3237}, {"name": "Teal Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 50, "eDef": 30, "lvl": 71, "intReq": 25, "mr": 5, "xpb": 6, "str": 5, "eDamPct": 12, "wDefPct": 7, "id": 3231}, {"name": "Technicolor Phase", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "7-9", "wDam": "7-9", "aDam": "7-9", "tDam": "7-9", "eDam": "7-9", "atkSpd": "NORMAL", "lvl": 21, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spRegen": 10, "id": 3239}, {"name": "Tears", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 51, "intReq": 40, "sdPct": 3, "ls": -21, "ms": 5, "int": 3, "type": "ring", "id": 3236}, {"name": "Tectonics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "eDef": 40, "lvl": 65, "strReq": 50, "mdPct": 8, "str": 5, "spd": -12, "eDamPct": 10, "eDefPct": 12, "id": 3235}, {"name": "Tempest", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "5-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 20, "agiReq": 20, "dex": 7, "agi": 7, "spd": 10, "mdRaw": 33, "fDamPct": -15, "fDefPct": -15, "id": 3238}, {"name": "Templar", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 50, "agiReq": 25, "defReq": 35, "sdPct": -15, "xpb": 4, "lb": 6, "spd": -15, "spRegen": 5, "eSteal": -5, "wDamPct": -10, "id": 3244}, {"name": "Tempered Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1300, "lvl": 65, "defReq": 30, "def": 8, "fDamPct": 6, "fDefPct": 4, "wDefPct": 4, "aDefPct": 4, "tDefPct": 4, "eDefPct": 4, "id": 3240}, {"name": "Tenuto", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 30, "wDef": -50, "tDef": 30, "lvl": 79, "dexReq": 40, "defReq": 40, "sdPct": 12, "dex": 4, "def": 4, "spd": -8, "atkTier": -6, "type": "necklace", "id": 3242}, {"name": "Tephra", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1875, "fDef": 90, "wDef": -100, "eDef": 90, "lvl": 80, "strReq": 40, "defReq": 35, "hprPct": 18, "mdPct": 10, "str": 7, "def": 7, "expd": 15, "fDamPct": 18, "eDamPct": 18, "id": 3243}, {"name": "Tepid Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "fDef": 6, "wDef": -3, "lvl": 20, "defReq": 5, "def": 3, "hpBonus": 15, "fDamPct": 4, "wDamPct": -6, "id": 3246}, {"name": "Terraflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": -80, "eDef": 80, "lvl": 78, "strReq": 50, "mr": -5, "sdPct": -10, "mdPct": 13, "ls": 75, "str": 7, "int": -5, "wDamPct": -10, "eDamPct": 10, "id": 3248}, {"name": "Tesla", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1100, "wDef": 180, "tDef": 120, "lvl": 97, "dexReq": 80, "ls": 280, "ms": 15, "dex": 13, "sdRaw": 185, "tDamPct": 40, "eDamPct": -30, "aDefPct": -20, "id": 3247}, {"name": "Terra's Mold", "tier": "Legendary", "type": "chestplate", "poison": 1500, "thorns": 15, "sprint": -25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "wDef": 50, "aDef": -125, "eDef": 175, "lvl": 90, "strReq": 60, "hprPct": -20, "mdPct": 23, "ms": 5, "str": 10, "eDamPct": 31, "id": 3245}, {"name": "The Chapel", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 32, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "hprPct": 10, "xpb": 10, "spRegen": 15, "id": 3252}, {"name": "The Abacus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-45", "fDam": "0-0", "wDam": "0-0", "aDam": "41-44", "tDam": "0-0", "eDam": "42-43", "atkSpd": "SLOW", "lvl": 45, "strReq": 35, "agiReq": 25, "mdPct": 7, "str": 7, "agi": 8, "aDamPct": 8, "eDamPct": 9, "fDefPct": -11, "wDefPct": -10, "id": 3250}, {"name": "Temporal Lantern", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "101-101", "wDam": "0-0", "aDam": "95-107", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "agiReq": 22, "defReq": 22, "str": -3, "dex": -3, "int": -3, "agi": 8, "def": 8, "spd": -15, "hpBonus": 285, "hprRaw": 35, "wDamPct": 20, "id": 3241}, {"name": "The Dreamer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-90", "fDam": "0-0", "wDam": "0-0", "aDam": "10-80", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 30, "agiReq": 30, "sdPct": 13, "dex": 14, "agi": 14, "spRegen": 15, "eDamPct": -30, "fDefPct": -30, "id": 3255}, {"name": "The Archaeologist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "aDef": -15, "eDef": 25, "lvl": 24, "strReq": 10, "xpb": 6, "lb": 6, "str": 4, "eDamPct": 7, "aDefPct": -8, "eDefPct": 10, "id": 3251}, {"name": "The Creationist", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "17-22", "aDam": "17-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "intReq": 35, "agiReq": 35, "sdPct": 19, "mdPct": -14, "str": -4, "dex": -4, "int": 8, "agi": 8, "def": -4, "id": 3249}, {"name": "The Sinner", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1150, "fDef": 80, "wDef": -80, "aDef": -80, "tDef": 80, "lvl": 67, "dexReq": 25, "defReq": 25, "mdPct": 12, "dex": 5, "def": 5, "spRegen": -15, "hprRaw": -45, "fDamPct": 12, "tDamPct": 12, "id": 3256}, {"name": "The Medic", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "45-55", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "intReq": 35, "defReq": 35, "hprPct": 20, "mr": 10, "sdPct": -15, "mdPct": -15, "hprRaw": 50, "wDamPct": 10, "id": 3253}, {"name": "The Banhammer", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "14-20", "atkSpd": "SLOW", "lvl": 28, "sdPct": -10, "mdPct": 10, "expd": 10, "id": 3254}, {"name": "The Berserk", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-22", "atkSpd": "SLOW", "lvl": 19, "strReq": 10, "sdPct": -10, "mdPct": 10, "str": 7, "dex": -5, "expd": 5, "aDamPct": -10, "eDamPct": 10, "aDefPct": -10, "id": 3258}, {"name": "The Berserker's Helm", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 310, "lvl": 34, "strReq": 25, "mdPct": 21, "ls": 26, "str": 9, "int": -3, "eSteal": 3, "hprRaw": -13, "id": 3257}, {"name": "The Brain Smasher", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "7-17", "atkSpd": "VERY_SLOW", "lvl": 20, "strReq": 5, "sdPct": -6, "mdPct": 4, "str": 4, "expd": 3, "aDefPct": -5, "id": 3260}, {"name": "The Brigand's Brogues", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 145, "lvl": 25, "dexReq": 10, "agiReq": 5, "dex": 4, "spd": 14, "eSteal": 4, "tDamPct": 10, "id": 3259}, {"name": "The Elder Wand", "tier": "Unique", "type": "wand", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "24-46", "aDam": "0-0", "tDam": "0-0", "eDam": "40-48", "atkSpd": "SLOW", "lvl": 62, "strReq": 10, "intReq": 10, "def": -10, "mdRaw": 70, "fDamPct": -10, "eDamPct": 12, "fDefPct": -10, "id": 3263}, {"name": "The End", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "235-260", "tDam": "0-0", "eDam": "260-290", "atkSpd": "SLOW", "lvl": 100, "strReq": 55, "agiReq": 55, "mdPct": 35, "ls": 450, "agi": 10, "spd": 25, "sdRaw": -210, "mdRaw": 365, "wDefPct": -45, "id": 3265}, {"name": "The Eviscerator", "tier": "Rare", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "strReq": 20, "dexReq": 20, "ls": 150, "str": 13, "dex": 7, "spd": 10, "id": 3267}, {"name": "The Divide", "tier": "Legendary", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-24", "wDam": "1-24", "aDam": "1-24", "tDam": "1-24", "eDam": "1-24", "atkSpd": "NORMAL", "lvl": 26, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 10, "ms": 5, "expd": 7, "spd": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 3262}, {"name": "The Ephemeral", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2125, "wDef": 100, "aDef": 100, "tDef": -130, "lvl": 87, "intReq": 45, "agiReq": 45, "mr": 10, "sdPct": 14, "mdPct": -15, "int": 7, "agi": 7, "aDamPct": 12, "tDefPct": -10, "id": 3264}, {"name": "The Euphoric Fedora", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 69, "lvl": 14, "ls": 5, "dex": 3, "spd": -4, "eSteal": 2, "id": 3266}, {"name": "The Exile", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "defReq": 50, "hprPct": 30, "mdPct": -5, "ls": 190, "str": -5, "def": 13, "spd": -5, "hpBonus": 1000, "fDefPct": 45, "id": 3269}, {"name": "The Forgery", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 100, "aDef": 30, "tDef": 30, "lvl": 74, "defReq": 30, "hprPct": 36, "lb": 19, "def": 9, "spd": -8, "eSteal": 5, "fDamPct": 11, "fDefPct": 35, "wDefPct": -20, "aDefPct": -5, "tDefPct": -5, "eDefPct": -20, "id": 3268}, {"name": "The Gambler", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -325, "lvl": 81, "ls": 80, "ms": 5, "lb": 7, "hpBonus": 325, "eSteal": 4, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "type": "ring", "id": 3270}, {"name": "The Golem", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4300, "fDef": 200, "wDef": -150, "aDef": 150, "tDef": 100, "eDef": 100, "lvl": 97, "defReq": 100, "ls": 300, "ref": 30, "agi": 10, "def": 15, "spd": -25, "hprRaw": 200, "wDamPct": -20, "fDefPct": 30, "id": 3275}, {"name": "The King's Robe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 11, "lvl": 3, "xpb": 8, "lb": 4, "id": 3274}, {"name": "The Jingling Jester", "tier": "Fabled", "type": "chestplate", "majorIds": ["GREED"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2325, "fDef": 1, "wDef": 1, "aDef": 1, "tDef": 1, "eDef": 1, "lvl": 69, "ls": 150, "xpb": 25, "lb": 25, "hprRaw": -101, "spPct2": -31, "spPct4": -10, "jh": 2, "id": 3621}, {"name": "The Head Ripper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "10-15", "atkSpd": "SLOW", "lvl": 30, "strReq": 5, "agiReq": 5, "sdPct": 5, "mdPct": 5, "agi": 7, "spd": 5, "id": 3271}, {"name": "The Knight's Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 440, "tDef": 15, "eDef": -20, "lvl": 43, "sdPct": 5, "xpb": 8, "str": 7, "dex": 7, "tDamPct": 15, "eDamPct": -30, "tDefPct": 10, "eDefPct": -10, "id": 3272}, {"name": "The Leech Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 4, "ls": 2, "id": 3278}, {"name": "The Levee", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 40, "wDef": 40, "lvl": 46, "intReq": 15, "defReq": 30, "sdPct": -10, "mdPct": -15, "def": 9, "spd": -15, "fDamPct": 15, "wDamPct": 15, "fDefPct": 20, "wDefPct": 20, "id": 3276}, {"name": "The Master's Gi", "tier": "Rare", "type": "chestplate", "quest": "Enter the Dojo", "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "lvl": 89, "hprPct": 20, "mr": 5, "xpb": 15, "spd": 12, "fDamPct": 26, "eDamPct": 26, "id": 3277}, {"name": "The Mark", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 800, "wDef": -30, "lvl": 56, "dexReq": 35, "defReq": 35, "sdPct": 20, "lb": 10, "int": -5, "spRegen": -10, "wDamPct": -10, "fDefPct": 15, "tDefPct": 15, "id": 3273}, {"name": "The Meddler", "tier": "Rare", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 19, "intReq": 8, "ls": 4, "ref": 6, "hprRaw": -2, "sdRaw": 4, "mdRaw": -4, "type": "bracelet", "id": 3280}, {"name": "The Nautilus", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-70", "fDam": "0-0", "wDam": "28-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 48, "intReq": 25, "mr": 5, "lb": 10, "ref": 5, "spd": 5, "fDefPct": 10, "wDefPct": 5, "tDefPct": -10, "id": 3281}, {"name": "The Mind", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-24", "fDam": "0-0", "wDam": "16-26", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "intReq": 20, "sdPct": 16, "mdPct": -10, "xpb": 6, "int": 7, "id": 3279}, {"name": "The Old King's Crown", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": 5, "wDef": -2, "lvl": 14, "def": 4, "fDefPct": 5, "id": 3284}, {"name": "The Out", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "xpb": 6, "spd": 5, "hpBonus": 6, "id": 3285}, {"name": "The Oblivious", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 1450, "lvl": 62, "sdPct": 7, "mdPct": 11, "xpb": 25, "hpBonus": 550, "hprRaw": 35, "fDamPct": -40, "wDamPct": -40, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 3282}, {"name": "The Oppressors", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2000, "lvl": 75, "defReq": 75, "dex": -3, "int": -3, "agi": -3, "def": 17, "spd": -15, "atkTier": -1, "hpBonus": 900, "id": 3283}, {"name": "The Parasite", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-175", "eDam": "70-125", "atkSpd": "SLOW", "lvl": 98, "strReq": 45, "dexReq": 45, "mr": -15, "ls": 430, "ms": 10, "expd": 25, "hpBonus": -1350, "hprRaw": -200, "tDamPct": 17, "eDamPct": 17, "fDefPct": -28, "id": 3287}, {"name": "The Rainmaker", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-152", "aDam": "0-0", "tDam": "0-152", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 40, "intReq": 40, "ls": -365, "ms": -10, "atkTier": 1, "sdRaw": 155, "mdRaw": 95, "tDamPct": 20, "eDamPct": 20, "id": 3290}, {"name": "The Queen's Tiara", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 19, "lvl": 5, "xpb": 4, "lb": 8, "id": 3286}, {"name": "The Prisoner", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "lvl": 79, "strReq": 55, "agi": -10, "def": 17, "spd": -40, "hpBonus": 1615, "id": 3288}, {"name": "The Rupturer", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -100, "eDef": 80, "lvl": 81, "strReq": 60, "mdPct": 10, "str": 15, "expd": 25, "eDamPct": 25, "aDefPct": -10, "id": 3315}, {"name": "The Smoking Barrel", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-400", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 20, "str": 5, "dex": 5, "expd": 15, "spd": -10, "eDamPct": 10, "id": 3292}, {"name": "The Scarecrow's Arm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 3, "mdPct": 3, "id": 3289}, {"name": "The Skin Tearer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 3, "str": 4, "dex": 4, "id": 3291}, {"name": "The Stokers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3100, "lvl": 95, "defReq": 75, "mr": 5, "mdPct": -25, "def": 15, "hprRaw": 135, "mdRaw": 285, "fDamPct": 10, "fDefPct": 15, "id": 3296}, {"name": "The Specialist", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "xpb": 20, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "fDamPct": 1176, "wDamPct": 1334, "aDamPct": 1176, "tDamPct": 889, "eDamPct": 1000, "id": 3293}, {"name": "The Thief", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 34, "mdPct": -4, "ls": 20, "ms": 5, "dex": 1, "spd": 4, "eSteal": 5, "id": 3295}, {"name": "The Vampire Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-40", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ls": 47, "spRegen": 5, "id": 3298}, {"name": "The Traveler", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-87", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 49, "mdPct": 10, "agi": 8, "spd": 23, "eSteal": 2, "aDamPct": 10, "id": 3294}, {"name": "The Wildwing", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-23", "fDam": "0-0", "wDam": "0-0", "aDam": "15-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "agiReq": 5, "agi": 4, "spd": 5, "aDamPct": 5, "fDefPct": -10, "id": 3301}, {"name": "Thermosphere", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 70, "aDef": 70, "tDef": 100, "eDef": -110, "lvl": 81, "dexReq": 45, "ref": 19, "dex": 7, "agi": 5, "def": 5, "fDamPct": 9, "aDamPct": 9, "tDamPct": 15, "fDefPct": 15, "aDefPct": 15, "tDefPct": 9, "id": 3303}, {"name": "The Visionary's Vice", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "83-137", "aDam": "0-0", "tDam": "37-203", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 40, "intReq": 40, "ms": 10, "str": -15, "def": -15, "sdRaw": 175, "wDamPct": 12, "tDamPct": 12, "fDefPct": -35, "eDefPct": -35, "id": 3300}, {"name": "Thief's Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 8, "eSteal": 5, "id": 3307}, {"name": "Therck's Irritation", "tier": "Rare", "thorns": 3, "category": "accessory", "drop": "lootchest", "hp": -5, "lvl": 9, "mdRaw": 7, "fDamPct": 5, "type": "bracelet", "id": 3299}, {"name": "The Wool Trimmer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-15", "fDam": "0-0", "wDam": "6-11", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "xpb": 4, "lb": 8, "id": 3297}, {"name": "Thinking Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 4, "mr": 5, "id": 3304}, {"name": "Thrice", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-113", "fDam": "0-0", "wDam": "33-113", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 55, "mr": 5, "sdPct": 10, "int": 12, "sdRaw": 87, "fDamPct": -17, "wDamPct": 17, "wDefPct": 17, "id": 3308}, {"name": "Threshold", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "58-74", "aDam": "0-0", "tDam": "55-77", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "dexReq": 20, "intReq": 20, "mdPct": -55, "ms": 5, "hpBonus": -120, "sdRaw": 60, "mdRaw": 105, "id": 3306}, {"name": "Thousand Waves", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "966-1143", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "intReq": 45, "hprPct": -45, "int": 15, "def": -8, "fDamPct": -30, "wDamPct": 20, "tDefPct": -25, "spPct3": -24, "id": 3309}, {"name": "Third Eye", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2600, "lvl": 88, "intReq": 80, "mr": 15, "int": 15, "spRegen": 15, "fDefPct": 15, "wDefPct": 20, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3302}, {"name": "Throatcut", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-299", "fDam": "77-299", "wDam": "0-0", "aDam": "77-163", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "agiReq": 40, "defReq": 40, "mdPct": 27, "ls": 145, "xpb": 10, "lb": 10, "dex": -10, "int": -10, "agi": 13, "def": 13, "expd": 10, "spd": -10, "id": 3305}, {"name": "Thrunda Ripsaw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-385", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 80, "hprPct": -33, "mdPct": 25, "ls": 335, "sdRaw": 155, "tDamPct": 15, "wDefPct": -20, "eDefPct": -30, "id": 3312}, {"name": "Thunder Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-100", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 85, "tDamPct": 20, "tDefPct": 10, "id": 3310}, {"name": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-90", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 3311}, {"name": "Thunder Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-55", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 39, "tDamPct": 20, "tDefPct": 10, "id": 3316}, {"name": "Thundering Wind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-85", "fDam": "0-0", "wDam": "0-0", "aDam": "30-160", "tDam": "30-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "agiReq": 40, "sdPct": 15, "mdPct": 15, "dex": 7, "agi": 7, "spd": 14, "tDamPct": 15, "eDamPct": -30, "fDefPct": -30, "id": 3321}, {"name": "Thunderbolt", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-101", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 42, "dexReq": 20, "sdPct": 12, "mdPct": 12, "xpb": 12, "agi": 8, "spd": 12, "tDamPct": 12, "eDamPct": -144, "eDefPct": -36, "id": 3314}, {"name": "Thunderbird", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-125", "tDam": "90-170", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "dexReq": 40, "agiReq": 30, "sdPct": 14, "ms": 5, "dex": 9, "agi": 7, "spd": 15, "atkTier": 1, "fDefPct": -20, "id": 3318}, {"name": "Tidebinder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "235-315", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 65, "mr": 15, "mdPct": -25, "ref": 30, "int": 13, "fDefPct": 50, "wDefPct": 75, "tDefPct": -25, "id": 3325}, {"name": "Thunderlock", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "40-85", "tDam": "20-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "dexReq": 40, "agiReq": 35, "sdPct": 9, "ref": 10, "dex": 4, "mdRaw": 110, "aDefPct": 10, "id": 3317}, {"name": "Thunderstruck", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-27", "fDam": "0-0", "wDam": "0-0", "aDam": "15-27", "tDam": "15-27", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 15, "agiReq": 15, "dex": 5, "agi": 5, "spd": 5, "fDamPct": -20, "aDamPct": 10, "tDamPct": 10, "eDamPct": -20, "id": 3322}, {"name": "Timbre", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "7-7", "wDam": "7-7", "aDam": "7-7", "tDam": "7-7", "eDam": "7-7", "atkSpd": "SLOW", "lvl": 27, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 7, "lb": 7, "id": 3326}, {"name": "Time Rift", "tier": "Fabled", "type": "chestplate", "majorIds": ["SORCERY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "wDef": -250, "lvl": 95, "intReq": 120, "mr": -15, "sdPct": 46, "ms": -20, "ref": 30, "atkTier": -1, "id": 3323}, {"name": "Timthriall", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "152-153", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "152-153", "atkSpd": "NORMAL", "lvl": 98, "strReq": 50, "mr": 10, "sdPct": 20, "mdPct": 20, "str": 15, "eDamPct": 10, "id": 3328}, {"name": "Tidebreaker", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-115", "atkSpd": "SLOW", "lvl": 55, "intReq": 30, "sdPct": 16, "mdPct": 8, "expd": 10, "wDamPct": 14, "tDefPct": -50, "id": 3324}, {"name": "Tiny", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 7, "sdPct": 2, "agi": 1, "spd": 2, "type": "necklace", "id": 3330}, {"name": "Tinderbox", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": 110, "wDef": -110, "lvl": 93, "agiReq": 40, "defReq": 40, "ms": 5, "int": -30, "agi": 8, "expd": 25, "spd": 10, "fDamPct": 10, "wDamPct": -15, "spPct1": -10, "spPct3": -7, "spPct4": -10, "id": 3327}, {"name": "Tisaun's Honour", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": 20, "eDef": 15, "lvl": 88, "strReq": 35, "defReq": 35, "mdPct": 6, "ref": 8, "def": 7, "type": "ring", "id": 3329}, {"name": "Thundersnow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "wDef": 50, "tDef": 50, "eDef": -100, "lvl": 63, "dexReq": 25, "intReq": 40, "mr": 5, "sdPct": 14, "ls": -75, "dex": 4, "int": 3, "mdRaw": -91, "wDamPct": 5, "tDamPct": 11, "id": 3320}, {"name": "Tizatuko", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 125, "aDef": 7, "eDef": -4, "lvl": 21, "lb": 13, "agi": 5, "aDamPct": 8, "eDefPct": -6, "id": 3331}, {"name": "Tidal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 50, "tDef": -30, "eDef": -30, "lvl": 92, "intReq": 40, "ms": 5, "int": 4, "wDamPct": 7, "eDamPct": -5, "type": "bracelet", "id": 3319}, {"name": "Tisaun's Proof", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-50", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-70", "atkSpd": "FAST", "lvl": 88, "strReq": 55, "defReq": 55, "sdPct": 15, "mdPct": 10, "str": 20, "dex": 20, "def": 20, "atkTier": 1, "id": 3335}, {"name": "Toes Tickler", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 20, "lvl": 8, "spd": 7, "id": 3332}, {"name": "Toaster", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-96", "fDam": "66-72", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "defReq": 38, "sdPct": 11, "mdPct": 11, "fDefPct": 20, "id": 3333}, {"name": "Thunder Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-95", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 80, "tDamPct": 20, "tDefPct": 10, "id": 3313}, {"name": "Togak's Vision", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -50, "aDef": 25, "eDef": 25, "lvl": 77, "strReq": 15, "agiReq": 15, "ref": 6, "str": 4, "spRegen": 4, "fDamPct": -10, "fDefPct": -10, "aDefPct": 5, "eDefPct": 5, "type": "bracelet", "id": 3337}, {"name": "Tormenter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 6, "xpb": 5, "lb": 5, "id": 3336}, {"name": "Tonbo", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-90", "tDam": "0-0", "eDam": "35-90", "atkSpd": "NORMAL", "lvl": 58, "strReq": 15, "agiReq": 15, "sdPct": -19, "mdPct": 11, "str": 7, "agi": 7, "spd": 10, "aDamPct": 10, "aDefPct": -10, "id": 3334}, {"name": "Torrential Tide", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-85", "fDam": "0-0", "wDam": "1-255", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "intReq": 55, "mdPct": -40, "int": 25, "expd": -40, "sdRaw": 300, "fDamPct": -150, "wDamPct": 25, "tDefPct": -30, "id": 3339}, {"name": "Touroto Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": 65, "wDef": 65, "aDef": 65, "tDef": 65, "eDef": 65, "lvl": 85, "mdPct": 60, "str": 7, "def": 7, "atkTier": -1, "hpBonus": 350, "id": 3341}, {"name": "Tosach", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "NORMAL", "hp": 2, "lvl": 1, "xpb": 2, "id": 3340}, {"name": "Toxin", "tier": "Rare", "type": "helmet", "poison": 500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -80, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 40, "dexReq": 40, "hprPct": -10, "mdPct": 9, "hprRaw": -60, "tDamPct": 9, "eDamPct": 9, "aDefPct": -13, "id": 3367}, {"name": "Tower", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "defReq": 45, "hprPct": 20, "def": 13, "spd": -15, "hpBonus": 1715, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3342}, {"name": "Tourmaline Lyre", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-36", "fDam": "10-17", "wDam": "0-0", "aDam": "8-19", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 20, "hprPct": 20, "xpb": 15, "lb": 10, "agi": 5, "def": 5, "spd": 10, "hprRaw": 20, "id": 3338}, {"name": "Toxotes", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "175-235", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 73, "strReq": 20, "intReq": 40, "mdPct": 10, "int": 7, "hpBonus": -600, "wDamPct": 10, "tDefPct": -15, "id": 3344}, {"name": "Trace", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 11, "xpb": 2, "lb": 2, "spRegen": 2, "hprRaw": 2, "sdRaw": 2, "mdRaw": 2, "type": "necklace", "id": 3343}, {"name": "Trauma", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "aDef": 30, "tDef": 30, "lvl": 73, "dexReq": 45, "agiReq": 45, "dex": 5, "int": -10, "agi": 5, "mdRaw": 145, "aDamPct": 11, "tDamPct": 11, "id": 3348}, {"name": "Tracer", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "198-205", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 88, "agiReq": 55, "sdPct": -150, "mdPct": 15, "agi": 13, "spd": 15, "atkTier": 1, "hpBonus": -1500, "mdRaw": 160, "aDefPct": 10, "id": 3345}, {"name": "Travel Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "xpb": 5, "hpBonus": 20, "type": "necklace", "id": 3346}, {"name": "Tremorstep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 875, "aDef": -65, "eDef": 50, "lvl": 63, "strReq": 40, "mdPct": 12, "ls": -60, "str": 4, "agi": -3, "expd": 7, "spd": -12, "fDamPct": 5, "eDamPct": 15, "eDefPct": 11, "id": 3353}, {"name": "Tribulation", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-100", "wDam": "0-0", "aDam": "0-0", "tDam": "30-135", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "dexReq": 30, "defReq": 30, "ls": 115, "expd": 15, "spd": -14, "spRegen": -15, "fDamPct": 12, "tDamPct": 12, "wDefPct": -20, "id": 3349}, {"name": "Tribal Flute", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-22", "fDam": "0-0", "wDam": "0-0", "aDam": "11-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "agiReq": 15, "sdPct": -15, "mdPct": 8, "str": 4, "agi": 4, "spd": 5, "eDamPct": 5, "fDefPct": -10, "id": 3347}, {"name": "Tribal Headdress", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "lvl": 35, "agiReq": 5, "sdPct": -5, "str": 5, "agi": 3, "spd": 5, "mdRaw": 46, "aDefPct": 5, "eDefPct": 5, "id": 3351}, {"name": "Trinket", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "xpb": 6, "lb": 6, "eSteal": 2, "type": "bracelet", "id": 3352}, {"name": "Troms' Climbing Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": -30, "aDef": 30, "lvl": 53, "agiReq": 30, "xpb": 7, "agi": 7, "def": -5, "spd": 10, "fDamPct": -10, "aDamPct": 5, "id": 3357}, {"name": "Troms' Pride", "tier": "Unique", "type": "spear", "thorns": 9, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 70, "ref": 9, "sdRaw": 70, "mdRaw": 90, "fDamPct": -7, "aDamPct": -7, "id": 3356}, {"name": "Triumph", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1900, "lvl": 75, "xpb": 10, "lb": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 2, "id": 3350}, {"name": "Tropics", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "323-395", "aDam": "0-0", "tDam": "0-0", "eDam": "323-395", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "ms": 5, "str": 7, "int": 7, "hpBonus": -1500, "fDefPct": -30, "id": 3355}, {"name": "Tsunami", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 100, "wDef": 15, "tDef": -15, "lvl": 24, "intReq": 30, "mr": 10, "wDamPct": 5, "tDamPct": -8, "tDefPct": -15, "id": 3354}, {"name": "Turbulence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -40, "aDef": 40, "tDef": -50, "lvl": 53, "agiReq": 30, "mdPct": 13, "dex": -4, "mdRaw": 65, "aDamPct": 8, "id": 3359}, {"name": "Turnpike", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "13-15", "atkSpd": "VERY_SLOW", "lvl": 8, "lb": 8, "def": 4, "spd": -5, "mdRaw": 20, "id": 3361}, {"name": "Tundra Strike", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-140", "fDam": "0-0", "wDam": "325-625", "aDam": "0-0", "tDam": "0-0", "eDam": "325-625", "atkSpd": "SUPER_SLOW", "lvl": 87, "strReq": 40, "intReq": 40, "sdPct": 12, "ms": 10, "ref": 45, "str": 8, "spd": -11, "fDamPct": -20, "fDefPct": -30, "id": 3360}, {"name": "Tsunasweep", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-80", "fDam": "0-0", "wDam": "50-90", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 40, "intReq": 40, "sdPct": 20, "mdPct": -16, "ms": 5, "dex": 8, "fDamPct": -20, "wDamPct": 18, "tDamPct": 18, "eDamPct": -14, "eDefPct": -20, "id": 3358}, {"name": "Turmoil", "tier": "Rare", "type": "spear", "poison": 610, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-75", "eDam": "25-75", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 30, "dexReq": 30, "sdPct": -8, "mdPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3362}, {"name": "Twilight", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": 50, "tDef": 50, "lvl": 66, "dexReq": 50, "agiReq": 50, "dex": 5, "agi": 5, "sdRaw": 30, "mdRaw": 39, "aDamPct": 10, "tDamPct": 10, "aDefPct": 10, "tDefPct": 10, "id": 3370}, {"name": "Turquoise", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3175, "wDef": 90, "eDef": 90, "lvl": 95, "strReq": 30, "intReq": 30, "sdPct": 10, "xpb": 10, "str": 5, "int": 5, "eSteal": 8, "mdRaw": 175, "aDamPct": -15, "id": 3365}, {"name": "Ultraviolet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "6-14", "wDam": "4-16", "aDam": "2-18", "tDam": "0-20", "eDam": "8-12", "atkSpd": "FAST", "lvl": 27, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "hprPct": -12, "spd": 7, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 3368}, {"name": "Twin Daggers", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "16-27", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 49, "dexReq": 20, "agiReq": 20, "dex": 10, "spd": 12, "id": 3363}, {"name": "Twist Band", "tier": "Unique", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 49, "intReq": 10, "agiReq": 10, "ref": 6, "agi": 4, "sdRaw": 12, "type": "bracelet", "id": 3364}, {"name": "Undefined", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "lvl": 94, "hprRaw": 135, "sdRaw": 135, "mdRaw": 175, "id": 3371}, {"name": "Umbral Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "fDef": -120, "wDef": 80, "tDef": 80, "lvl": 87, "dexReq": 40, "intReq": 40, "sdPct": 16, "ms": 10, "str": 7, "dex": 5, "int": 5, "fDamPct": -8, "wDamPct": 12, "tDamPct": 12, "fDefPct": -8, "wDefPct": 10, "tDefPct": 10, "id": 3366}, {"name": "Undertow", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "wDef": 10, "tDef": -20, "lvl": 22, "intReq": 10, "mr": 5, "sdPct": 12, "mdPct": -10, "int": 5, "spd": -8, "wDefPct": 8, "id": 3372}, {"name": "Unhalting Eagle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-39", "fDam": "0-0", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "strReq": 5, "agiReq": 10, "mdPct": 8, "str": 5, "spd": 15, "fDefPct": -15, "id": 3373}, {"name": "Undying", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "300-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "300-400", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 35, "defReq": 55, "hprPct": 25, "sdPct": -7, "mdPct": -7, "ls": 400, "def": 20, "spd": -15, "hpBonus": 2500, "hprRaw": 196, "wDefPct": 25, "id": 3381}, {"name": "Union", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 39, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "bracelet", "id": 3376}, {"name": "Unravel", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 70, "lvl": 92, "agiReq": 80, "mdPct": -50, "ms": 10, "ref": 18, "agi": 9, "sdRaw": 222, "aDamPct": 27, "id": 3377}, {"name": "Unholy Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "dexReq": 20, "xpb": 5, "dex": 4, "agi": -3, "expd": 5, "spRegen": -10, "tDamPct": 10, "aDefPct": -25, "id": 3374}, {"name": "Unsheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-90", "wDam": "75-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "intReq": 30, "defReq": 30, "sdPct": -30, "mdPct": 10, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "fDefPct": 10, "wDefPct": 10, "id": 3382}, {"name": "Updraft", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2825, "fDef": -70, "aDef": 80, "tDef": 120, "eDef": -110, "lvl": 96, "dexReq": 45, "ms": 5, "dex": 6, "agi": 6, "spd": 16, "aDamPct": 20, "tDamPct": 24, "fDefPct": -10, "jh": 1, "id": 3379}, {"name": "Unspeakable", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -239, "lvl": 65, "strReq": 36, "dexReq": 47, "mr": -5, "ms": 10, "str": 4, "dex": 5, "sdRaw": -43, "mdRaw": -44, "type": "ring", "id": 3378}, {"name": "Umbrella Hat", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "tDef": -20, "lvl": 34, "intReq": 25, "mr": 10, "sdPct": 5, "dex": -4, "wDefPct": 8, "tDefPct": -12, "id": 3369}, {"name": "Unrefined Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "eDef": 30, "lvl": 50, "strReq": 25, "sdPct": -12, "mdPct": 5, "lb": 13, "spd": -12, "eDamPct": 20, "eDefPct": 20, "id": 3375}, {"name": "Upside Down Bowl", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "aDef": -5, "eDef": 5, "lvl": 12, "lb": 5, "str": 3, "id": 3380}, {"name": "Urheus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 8, "wDef": -12, "eDef": 10, "lvl": 32, "strReq": 10, "defReq": 5, "hprPct": 15, "str": 5, "def": 3, "mdRaw": 48, "aDamPct": -8, "id": 3383}, {"name": "Uranium Aegis", "tier": "Fabled", "type": "chestplate", "majorIds": ["PLAGUE"], "poison": 900, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "wDef": -60, "tDef": 75, "lvl": 77, "strReq": 35, "dexReq": 45, "hprPct": -100, "expd": 50, "hpBonus": 1200, "spRaw3": 5, "id": 3386}, {"name": "Upside Down Bucket", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "wDef": 25, "tDef": -15, "lvl": 42, "mdPct": -3, "ref": 8, "wDamPct": 16, "wDefPct": 9, "id": 3384}, {"name": "Vacancy", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "lvl": 89, "agiReq": 50, "int": -24, "agi": 12, "spd": 15, "spPct1": -10, "spPct3": -7, "spPct4": -17, "id": 3385}, {"name": "Uriel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 27, "agiReq": 5, "spd": 12, "type": "ring", "id": 3387}, {"name": "Vacarme", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "tDef": 100, "eDef": -100, "lvl": 91, "dexReq": 70, "ms": 10, "dex": 7, "expd": 20, "hprRaw": -135, "sdRaw": 165, "tDamPct": 23, "tDefPct": -32, "id": 3586}, {"name": "Valix", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "xpb": 8, "spd": 8, "id": 3388}, {"name": "Valkyrie", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-95", "tDam": "0-125", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 35, "agiReq": 30, "hprPct": -8, "spd": 15, "sdRaw": -55, "mdRaw": 70, "id": 3392}, {"name": "Vacuum", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2475, "wDef": 60, "aDef": -130, "eDef": 70, "lvl": 93, "strReq": 45, "intReq": 55, "mr": 10, "spd": -12, "sdRaw": 155, "wDamPct": 15, "eDamPct": 15, "aDefPct": -30, "id": 3389}, {"name": "Valiant", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-13", "fDam": "0-0", "wDam": "0-0", "aDam": "12-16", "tDam": "0-0", "eDam": "18-21", "atkSpd": "SLOW", "lvl": 34, "strReq": 20, "agiReq": 10, "mdPct": 9, "xpb": 8, "str": 8, "spRegen": 6, "id": 3399}, {"name": "Valorheart", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "40-50", "wDam": "40-50", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 41, "intReq": 20, "defReq": 20, "def": 5, "spd": -10, "hpBonus": 250, "spRegen": 10, "fDefPct": 15, "wDefPct": 15, "id": 3390}, {"name": "Vandal's Touch", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-112", "fDam": "0-0", "wDam": "0-0", "aDam": "50-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "strReq": 20, "agiReq": 40, "mdPct": 12, "lb": 15, "str": 8, "eSteal": 5, "sdRaw": -60, "eDamPct": 16, "id": 3394}, {"name": "Vampire Touch", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 12, "hprPct": 10, "mr": 5, "ls": 55, "id": 3395}, {"name": "Vanilla Spade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "agiReq": 20, "mr": 5, "int": 10, "agi": 10, "spd": 10, "tDamPct": -5, "eDamPct": -5, "id": 3398}, {"name": "Vartija", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "9-13", "fDam": "2-6", "wDam": "0-0", "aDam": "2-6", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "agiReq": 10, "defReq": 10, "sdPct": -7, "def": 9, "spd": 15, "hpBonus": 160, "id": 3396}, {"name": "Vampire Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "hprPct": -10, "ls": 32, "spRegen": 5, "id": 3393}, {"name": "Vaward", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3900, "lvl": 99, "hprPct": 15, "sdPct": 15, "mdPct": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spRegen": 15, "id": 3397}, {"name": "Veantur", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-110", "fDam": "0-0", "wDam": "50-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "intReq": 50, "sdPct": 12, "mdPct": 10, "ref": 7, "int": 7, "hpBonus": -1000, "fDamPct": -25, "wDamPct": 15, "id": 3400}, {"name": "Valhalla", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3525, "fDef": 80, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 40, "agiReq": 40, "defReq": 40, "ls": 215, "str": 9, "agi": 9, "def": 9, "spd": 12, "spRegen": 12, "wDefPct": -25, "tDefPct": -25, "id": 3391}, {"name": "Vellalar", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "ms": 5, "str": 5, "fDamPct": -5, "id": 3401}, {"name": "Venison", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 735, "fDef": -75, "wDef": 45, "eDef": 60, "lvl": 54, "strReq": 20, "intReq": 15, "mr": 10, "mdPct": 19, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": -15, "tDefPct": -10, "id": 3406}, {"name": "Venomsoul", "tier": "Unique", "type": "chestplate", "poison": 525, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "aDef": -90, "lvl": 75, "strReq": 30, "intReq": 20, "ms": 5, "spRegen": -10, "id": 3404}, {"name": "Veins", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "72-78", "wDam": "69-81", "aDam": "66-84", "tDam": "63-87", "eDam": "75-75", "atkSpd": "SLOW", "lvl": 89, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hpBonus": 965, "hprRaw": 115, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 3402}, {"name": "Ventus Tail", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2150, "aDef": 120, "tDef": 120, "eDef": -250, "lvl": 80, "dexReq": 35, "agiReq": 35, "sdPct": 10, "ms": 10, "dex": 8, "agi": 8, "spd": 7, "eSteal": 7, "aDamPct": 27, "tDamPct": 27, "eDamPct": -45, "id": 3403}, {"name": "Verglas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 82, "intReq": 35, "agiReq": 35, "sdPct": 6, "int": 5, "spd": -10, "hprRaw": -55, "aDamPct": 5, "type": "necklace", "id": 3408}, {"name": "Ventilator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "aDef": 6, "lvl": 25, "agiReq": 15, "spd": 12, "fDamPct": -8, "aDamPct": 6, "id": 3405}, {"name": "Verdigris Sabatons", "tier": "Unique", "type": "boots", "poison": 550, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1900, "fDef": 70, "wDef": -60, "tDef": 40, "lvl": 76, "dexReq": 20, "defReq": 35, "mr": -5, "def": 5, "spd": -7, "sdRaw": 100, "wDamPct": -14, "aDamPct": -12, "tDefPct": 10, "id": 3407}, {"name": "Vesuvius", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "100-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "VERY_SLOW", "lvl": 86, "strReq": 30, "defReq": 30, "mdPct": 12, "str": 8, "expd": 33, "fDamPct": 15, "wDamPct": -10, "eDamPct": 15, "wDefPct": -20, "id": 3409}, {"name": "Verstand", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "wDef": 10, "tDef": -8, "lvl": 28, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -6, "str": -3, "int": 4, "id": 3410}, {"name": "Vile", "tier": "Rare", "type": "bow", "poison": 1100, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-115", "atkSpd": "FAST", "lvl": 62, "ls": 120, "hpBonus": -250, "mdRaw": 130, "eDamPct": 15, "wDefPct": -20, "id": 3414}, {"name": "Vigor", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-90", "fDam": "170-200", "wDam": "170-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "intReq": 25, "defReq": 25, "hprPct": 40, "sdPct": -7, "mdPct": -16, "def": 5, "hpBonus": 500, "hprRaw": 25, "wDefPct": 7, "id": 3412}, {"name": "Vibrato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-22", "fDam": "0-0", "wDam": "0-0", "aDam": "55-56", "tDam": "55-56", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "dexReq": 16, "agiReq": 16, "ms": 5, "def": -12, "spd": 12, "spPct1": -23, "id": 3413}, {"name": "Vinecrawlers", "tier": "Rare", "type": "boots", "poison": 425, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "aDef": -70, "eDef": 90, "lvl": 72, "strReq": 45, "str": 7, "def": 7, "spd": -8, "hprRaw": 60, "fDefPct": -25, "wDefPct": 15, "id": 3411}, {"name": "Viper", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-22", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 38, "dexReq": 22, "mdPct": 6, "ls": 26, "dex": 4, "spd": 4, "mdRaw": 13, "id": 3416}, {"name": "Virgo", "tier": "Legendary", "type": "boots", "thorns": 1, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 5, "lvl": 97, "strReq": 70, "dexReq": 70, "mdPct": -45, "ref": 1, "agi": -20, "def": -20, "expd": 65, "atkTier": 2, "tDamPct": 16, "eDamPct": 16, "id": 3417}, {"name": "Virtuoso", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "wDef": 70, "aDef": 70, "lvl": 94, "intReq": 50, "agiReq": 50, "mr": 5, "sdPct": 20, "ms": -40, "spd": 20, "sdRaw": 196, "id": 3415}, {"name": "Vital", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -220, "lvl": 67, "hprPct": 10, "hprRaw": 40, "type": "ring", "id": 3421}, {"name": "Virtue", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-350", "fDam": "0-0", "wDam": "210-250", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "intReq": 45, "sdPct": 9, "ms": 15, "ref": 9, "agi": -6, "spd": -12, "atkTier": -1, "id": 3419}, {"name": "Vitium", "tier": "Rare", "poison": 50, "category": "accessory", "drop": "lootchest", "hp": -20, "aDef": -5, "lvl": 32, "ls": 10, "expd": 6, "type": "necklace", "id": 3418}, {"name": "Vitriol", "tier": "Unique", "poison": 83, "category": "accessory", "drop": "lootchest", "hp": -60, "wDef": -5, "eDef": 10, "lvl": 39, "strReq": 15, "hprPct": -10, "ls": 12, "type": "bracelet", "id": 3420}, {"name": "Vivace", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "9-13", "tDam": "9-13", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "dexReq": 10, "agiReq": 10, "sdPct": 11, "dex": 5, "agi": 5, "spd": 11, "eDefPct": 18, "id": 3422}, {"name": "Voidlight", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-90", "tDam": "0-180", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "dexReq": 35, "agiReq": 35, "sdPct": 10, "mdPct": -40, "ms": 10, "ref": 15, "str": -10, "agi": 13, "sdRaw": 205, "eDefPct": -25, "id": 3423}, {"name": "Void Catalyst", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-515", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "dexReq": 43, "dex": 25, "tDamPct": 45, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3425}, {"name": "Volcano", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "135-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "155-200", "atkSpd": "SLOW", "lvl": 98, "strReq": 40, "defReq": 40, "str": 13, "def": 13, "expd": 20, "spd": -25, "fDamPct": 12, "eDamPct": 12, "fDefPct": 18, "eDefPct": 18, "id": 3424}, {"name": "Voidshard", "tier": "Rare", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": -120, "lvl": 70, "strReq": 25, "agiReq": 25, "sdPct": 7, "ls": 44, "spd": 7, "type": "ring", "id": 3427}, {"name": "Voodoo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "sdPct": 6, "id": 3430}, {"name": "Voleur", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 36, "dexReq": 10, "agiReq": 5, "mdPct": -7, "lb": 12, "dex": 3, "agi": 3, "spd": 4, "eSteal": 6, "id": 3428}, {"name": "Volmor's Flair", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 5, "lb": 13, "hpBonus": -750, "type": "bracelet", "id": 3426}, {"name": "Vorpal", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "61-72", "aDam": "0-0", "tDam": "0-132", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 25, "intReq": 25, "hprPct": -25, "mr": -5, "dex": 17, "hpBonus": -500, "sdRaw": 120, "wDamPct": 15, "tDamPct": 15, "id": 3436}, {"name": "Blue Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3435, "set": "Blue Team"}, {"name": "Blue Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3431, "set": "Blue Team"}, {"name": "Red Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3434, "set": "Red Team"}, {"name": "Red Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3437, "set": "Red Team"}, {"name": "Red Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3443, "set": "Red Team"}, {"name": "Blitzen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -140, "wDef": 10, "lvl": 75, "dexReq": 40, "ms": 5, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3438}, {"name": "Comet", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 12, "aDef": 12, "eDef": 12, "lvl": 70, "strReq": 20, "agiReq": 10, "defReq": 10, "mr": -5, "sdPct": -6, "mdPct": 8, "expd": 12, "mdRaw": 26, "type": "bracelet", "fixID": true, "id": 3441}, {"name": "Charcoal", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 3425, "fDef": 120, "aDef": 120, "lvl": 95, "strReq": 20, "defReq": 60, "ls": 285, "ref": 20, "str": 6, "def": 6, "hprRaw": 195, "fDamPct": 10, "aDefPct": 15, "eDefPct": 25, "fixID": true, "id": 3439}, {"name": "Conifer", "tier": "Rare", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "42-58", "wDam": "0-0", "aDam": "44-56", "tDam": "0-0", "eDam": "36-64", "atkSpd": "SLOW", "lvl": 50, "strReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "spd": -10, "hpBonus": 250, "hprRaw": 30, "fixID": true, "id": 3442}, {"name": "Vortex", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 71, "dexReq": 35, "agiReq": 55, "ms": 10, "dex": 5, "agi": 8, "spd": 16, "sdRaw": 100, "mdRaw": 80, "id": 3432}, {"name": "Cupid", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 5, "lvl": 50, "strReq": 20, "intReq": 45, "hprPct": 10, "mr": 5, "sdPct": -10, "hprRaw": 12, "mdRaw": -19, "type": "bracelet", "fixID": true, "id": 3440}, {"name": "Dancer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": -180, "lvl": 80, "agiReq": 50, "spd": 9, "hprRaw": -35, "aDamPct": 12, "type": "necklace", "fixID": true, "id": 3444}, {"name": "Dasher", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 320, "fDef": -25, "lvl": 85, "strReq": 30, "agiReq": 40, "mdPct": 9, "str": 4, "spd": 9, "type": "ring", "fixID": true, "id": 3445}, {"name": "Donner", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 15, "wDef": -25, "tDef": 15, "lvl": 65, "dexReq": 30, "dex": 5, "fDamPct": 9, "type": "ring", "fixID": true, "id": 3447}, {"name": "Dragster", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -50, "aDef": 40, "lvl": 60, "agiReq": 45, "agi": 3, "def": -6, "spd": 20, "mdRaw": 100, "aDamPct": 5, "fDefPct": -10, "aDefPct": 5, "fixID": true, "id": 3446}, {"name": "Frostburn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-40", "fDam": "30-90", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "defReq": 35, "mr": -5, "sdPct": 12, "hprRaw": -85, "fDamPct": 24, "wDamPct": 18, "fixID": true, "id": 3450}, {"name": "Ice Skates", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1200, "fDef": -160, "wDef": 80, "aDef": 55, "lvl": 75, "agiReq": 55, "mr": 5, "int": 4, "spd": 18, "fDamPct": -26, "wDamPct": 14, "aDamPct": 8, "fixID": true, "id": 3454}, {"name": "Garland", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2275, "tDef": -160, "eDef": 90, "lvl": 90, "strReq": 45, "intReq": 40, "sdPct": 22, "sdRaw": 225, "aDefPct": -14, "tDefPct": -14, "fixID": true, "id": 3448}, {"name": "Prancer", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 130, "fDef": 10, "tDef": 5, "eDef": 15, "lvl": 55, "strReq": 30, "str": 2, "def": 2, "eDamPct": 7, "type": "ring", "fixID": true, "id": 3449}, {"name": "Krampus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "70-110", "wDam": "0-0", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "dexReq": 30, "defReq": 30, "mr": -5, "mdPct": 25, "ls": 180, "def": 8, "eSteal": 3, "hprRaw": -90, "tDamPct": 20, "wDefPct": -22, "fixID": true, "id": 3453}, {"name": "Scrooge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "225-365", "eDam": "225-365", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 35, "dexReq": 35, "ls": 325, "ms": 10, "lb": 33, "spd": -20, "spRegen": -25, "eSteal": 10, "hprRaw": -150, "fixID": true, "id": 3451}, {"name": "Ski Mask", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2300, "wDef": 60, "aDef": 60, "tDef": -120, "lvl": 90, "intReq": 60, "agiReq": 45, "mr": 15, "mdPct": -12, "wDamPct": 25, "aDamPct": 25, "fixID": true, "id": 3456}, {"name": "Sealskin Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 90, "aDef": 90, "tDef": -70, "lvl": 65, "intReq": 20, "agiReq": 20, "mr": 5, "xpb": 8, "ref": 12, "int": 6, "agi": 3, "spd": 12, "tDamPct": -40, "wDefPct": 16, "aDefPct": 16, "fixID": true, "id": 3452}, {"name": "Sleigher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-35", "fDam": "0-0", "wDam": "0-0", "aDam": "30-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "strReq": 10, "agiReq": 20, "sdPct": -15, "mdPct": 12, "str": 8, "agi": 2, "spd": 12, "mdRaw": 46, "eDamPct": 20, "fDefPct": -20, "fixID": true, "id": 3457}, {"name": "Snowstorm", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-37", "aDam": "0-37", "tDam": "0-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 50, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 8, "ms": 10, "xpb": 12, "str": -5, "spd": 12, "sdRaw": 50, "fDefPct": -36, "fixID": true, "id": 3455}, {"name": "Toy Maker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1775, "aDef": 90, "tDef": 90, "eDef": -160, "lvl": 85, "dexReq": 35, "agiReq": 35, "mdPct": -25, "dex": 7, "agi": 7, "atkTier": 1, "mdRaw": 230, "aDamPct": 5, "tDamPct": 5, "fixID": true, "id": 3458}, {"name": "Wynnter Scarf", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 425, "fDef": 40, "wDef": -70, "aDef": 40, "lvl": 40, "agiReq": 20, "defReq": 20, "hprPct": 20, "agi": 3, "def": 3, "hprRaw": 20, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 3463}, {"name": "Zenith", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "20-30", "tDam": "20-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "dexReq": 35, "agiReq": 25, "mdPct": 15, "ls": -190, "ms": 5, "agi": 7, "expd": 60, "atkTier": 2, "tDamPct": 10, "aDefPct": 12, "eDefPct": -15, "fixID": true, "id": 3459}, {"name": "Wipe", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "26-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "agiReq": 50, "mdPct": 15, "ms": 10, "agi": 15, "spd": 28, "hprRaw": -250, "aDamPct": 22, "fixID": true, "id": 3461}, {"name": "Vixen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 300, "fDef": 20, "lvl": 60, "defReq": 70, "hprRaw": 25, "aDefPct": 7, "tDefPct": 4, "eDefPct": 5, "type": "necklace", "fixID": true, "id": 3460}, {"name": "Red Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3466, "set": "Red Team"}, {"name": "Waking Nightmare", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "140-180", "tDam": "0-0", "eDam": "140-180", "atkSpd": "SLOW", "lvl": 79, "strReq": 27, "agiReq": 27, "mdPct": 12, "str": 8, "hpBonus": -1085, "wDamPct": -40, "aDamPct": 18, "eDamPct": 18, "fDefPct": -25, "spRaw1": -5, "id": 3462}, {"name": "The Lethe", "displayName": "Waking Vigil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "30-65", "tDam": "0-0", "eDam": "30-65", "atkSpd": "FAST", "lvl": 98, "strReq": 40, "agiReq": 40, "sdPct": -50, "mdPct": 31, "xpb": -25, "spd": 12, "spRegen": -15, "mdRaw": 100, "fDamPct": 31, "id": 3464}, {"name": "War Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "sdPct": -10, "mdPct": 10, "str": 7, "def": 7, "spd": -10, "hpBonus": 775, "id": 3469}, {"name": "Walking Stick", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 20, "agiReq": 5, "xpb": 4, "agi": 4, "spd": 10, "id": 3465}, {"name": "Wastelands", "tier": "Unique", "poison": 90, "category": "accessory", "drop": "lootchest", "lvl": 44, "strReq": 20, "mdPct": 5, "str": 3, "spd": -3, "type": "ring", "id": 3467}, {"name": "Wasp", "tier": "Rare", "poison": 155, "category": "accessory", "drop": "lootchest", "lvl": 50, "dexReq": 20, "hprRaw": -12, "tDamPct": 6, "type": "ring", "id": 3470}, {"name": "Water Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-80", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3471}, {"name": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3474}, {"name": "Water Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-75", "fDam": "0-0", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3475}, {"name": "Water Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "0-0", "wDam": "30-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3472}, {"name": "Waterspout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-95", "fDam": "0-0", "wDam": "105-125", "aDam": "0-0", "tDam": "45-185", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 35, "intReq": 35, "sdPct": 6, "mdPct": -9, "ms": 5, "wDefPct": 22, "tDefPct": 22, "id": 3473}, {"name": "Warmth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "def": 3, "type": "ring", "id": 3468}, {"name": "Wavedash", "tier": "Unique", "type": "boots", "sprint": -10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2250, "wDef": 90, "aDef": 90, "lvl": 89, "intReq": 25, "agiReq": 20, "mr": 10, "sdPct": 12, "agi": 8, "spd": 18, "wDamPct": 12, "aDamPct": 8, "sprintReg": 18, "id": 3476}, {"name": "Wavelength", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "sdPct": 13, "mdPct": 13, "ms": -5, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3477}, {"name": "Waves Raiser", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "intReq": 35, "sdPct": 12, "mdPct": 12, "wDamPct": 12, "wDefPct": 12, "id": 3478}, {"name": "Way Back Home", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1600, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 75, "strReq": 20, "agiReq": 20, "agi": 7, "spd": 12, "spRegen": 7, "id": 3479}, {"name": "Weather Warning", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-25", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "dexReq": 15, "intReq": 15, "sdPct": 10, "wDamPct": 10, "tDamPct": 10, "fDefPct": -13, "aDefPct": -13, "eDefPct": -13, "id": 3480}, {"name": "Wayfinder", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "35-50", "aDam": "32-40", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 15, "agiReq": 20, "ms": 5, "lb": 10, "int": 4, "agi": 4, "spd": 8, "id": 3482}, {"name": "Wedding Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 5, "hpBonus": 6, "type": "ring", "id": 3481}, {"name": "All for One", "displayName": "Weatherwalkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "fDef": -90, "wDef": -90, "aDef": -90, "tDef": -100, "eDef": -90, "lvl": 92, "dexReq": 70, "mr": -5, "sdPct": 31, "dex": 8, "spd": 15, "tDamPct": 10, "wDefPct": -20, "tDefPct": -15, "id": 3625}, {"name": "Whimsy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-35", "fDam": "0-0", "wDam": "0-0", "aDam": "45-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 40, "agiReq": 30, "sdPct": -3, "mdPct": -5, "xpb": 25, "int": 13, "spd": 20, "eSteal": 2, "wDamPct": 22, "id": 3484}, {"name": "Whirlpool", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "10-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 30, "sdRaw": 60, "wDamPct": 9, "tDefPct": -19, "id": 3483}, {"name": "Whistling Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "fDef": -30, "aDef": 20, "lvl": 47, "agiReq": 30, "mdPct": 8, "agi": 4, "spd": 7, "aDamPct": 7, "eDefPct": -10, "id": 3488}, {"name": "Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "12-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 10, "agi": 4, "spd": 6, "aDamPct": 6, "id": 3485}, {"name": "White-hot Leggings", "displayName": "White-Hot Leggings", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "fDef": 170, "wDef": -100, "tDef": 100, "eDef": 30, "lvl": 88, "defReq": 55, "sdPct": 8, "spd": 8, "hpBonus": -220, "sdRaw": 140, "mdRaw": 180, "fDamPct": 12, "id": 3487}, {"name": "White", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 5, "lvl": 30, "aDamPct": 7, "aDefPct": 7, "type": "ring", "id": 3486}, {"name": "Whitecap", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-112", "fDam": "0-0", "wDam": "51-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "intReq": 30, "sdPct": 16, "fDamPct": -15, "tDefPct": -15, "id": 3489}, {"name": "White Noise", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "74-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 25, "mdPct": -15, "xpb": 15, "sdRaw": 66, "aDamPct": 14, "eDamPct": -30, "eDefPct": -18, "id": 3490}, {"name": "White Storm", "tier": "Unique", "type": "helmet", "poison": 130, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 510, "fDef": -20, "aDef": 25, "lvl": 48, "agi": 7, "spd": 10, "eDamPct": 5, "id": 3493}, {"name": "Whitewater", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "wDef": 70, "tDef": -80, "lvl": 64, "intReq": 35, "mr": 5, "sdPct": 11, "mdPct": 8, "fDamPct": -20, "wDamPct": 13, "id": 3494}, {"name": "Blue Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3433, "set": "Blue Team"}, {"name": "Blue Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3429, "set": "Blue Team"}, {"name": "Wicked", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": -60, "lvl": 50, "dexReq": 20, "defReq": 20, "mr": -5, "sdPct": 15, "mdPct": 10, "expd": 8, "fDamPct": 10, "tDamPct": 10, "id": 3491}, {"name": "Whitestone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 73, "intReq": 25, "agiReq": 15, "hprPct": 20, "sdPct": 7, "mdPct": -15, "xpb": 10, "ref": 8, "spd": 6, "wDefPct": 7, "aDefPct": 6, "id": 3492}, {"name": "Wild Gauntlet", "tier": "Unique", "type": "dagger", "thorns": 13, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "59-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "48-63", "atkSpd": "NORMAL", "lvl": 60, "strReq": 25, "sdPct": -7, "mdPct": 10, "spd": -5, "id": 3495}, {"name": "Willpower", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 42, "intReq": 15, "hprPct": 8, "mr": 5, "type": "necklace", "id": 3496}, {"name": "Windchime", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "agiReq": 35, "ms": 10, "xpb": 12, "aDamPct": 10, "id": 3497}, {"name": "Wind Mimic", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -120, "aDef": 200, "lvl": 94, "agiReq": 60, "ms": 10, "agi": 7, "spd": 20, "fDamPct": 20, "aDamPct": 20, "fDefPct": -20, "aDefPct": 10, "id": 3499}, {"name": "Wiggling Villager", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "xpb": 11, "lb": 19, "id": 3500}, {"name": "Window Pane", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "27-33", "aDam": "0-0", "tDam": "27-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "dexReq": 13, "intReq": 13, "sdPct": 14, "mdPct": -14, "str": -6, "dex": 4, "int": 4, "wDamPct": 9, "tDamPct": 9, "eDamPct": -10, "eDefPct": -10, "id": 3503}, {"name": "Windforce", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-51", "fDam": "0-0", "wDam": "0-0", "aDam": "31-57", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "str": 7, "spd": 14, "eDamPct": 15, "aDefPct": 10, "eDefPct": -10, "id": 3501}, {"name": "Wind Murmurs", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-86", "fDam": "0-0", "wDam": "0-0", "aDam": "76-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 35, "sdPct": -9, "mdPct": -18, "xpb": 15, "ref": 20, "agi": 12, "spd": 20, "id": 3498}, {"name": "Windowframe", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "27-33", "eDam": "27-33", "atkSpd": "NORMAL", "lvl": 34, "strReq": 12, "dexReq": 12, "sdPct": -14, "mdPct": 14, "str": 4, "dex": 4, "int": -6, "wDamPct": -10, "tDamPct": 9, "eDamPct": 9, "wDefPct": -10, "id": 3504}, {"name": "Gravesbane", "displayName": "Windshear", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "fDef": -120, "aDef": 90, "tDef": 90, "eDef": -30, "lvl": 94, "dexReq": 40, "agiReq": 40, "mr": 5, "ms": 5, "spd": 16, "eSteal": 6, "sdRaw": 170, "mdRaw": 195, "fDefPct": -20, "sprintReg": 12, "id": 1229}, {"name": "Windy Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 350, "aDef": 50, "eDef": -50, "lvl": 83, "agiReq": 30, "agi": 4, "spd": 7, "aDamPct": 7, "type": "necklace", "id": 3506}, {"name": "Wing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": 50, "tDef": -70, "lvl": 61, "agiReq": 15, "lb": 4, "agi": 5, "spd": 20, "aDamPct": 5, "aDefPct": 8, "tDefPct": -7, "id": 3502}, {"name": "Winter's Essence", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 44, "intReq": 20, "agiReq": 20, "mr": 10, "sdPct": 20, "ls": 41, "int": 8, "agi": 8, "hprRaw": -50, "id": 3508}, {"name": "Winterspell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-200", "fDam": "0-0", "wDam": "0-0", "aDam": "110-165", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "sdPct": 4, "str": -3, "spd": 5, "wDamPct": 10, "fDefPct": -5, "id": 3507}, {"name": "Wintergreen", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-100", "fDam": "0-0", "wDam": "0-0", "aDam": "45-50", "tDam": "0-0", "eDam": "45-50", "atkSpd": "NORMAL", "lvl": 54, "strReq": 20, "agiReq": 25, "sdPct": 15, "spd": 20, "atkTier": 1, "hpBonus": -1000, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3505}, {"name": "Wirt's Leg", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "lb": 23, "eSteal": 5, "id": 3509}, {"name": "WitherString", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-45", "fDam": "0-0", "wDam": "2-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "mr": 5, "ms": 5, "id": 3511}, {"name": "Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 5, "eDef": 5, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 4, "spd": 4, "aDamPct": 4, "eDamPct": 4, "type": "bracelet", "id": 3513}, {"name": "Wolf Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "hprPct": 30, "mr": 5, "id": 3510}, {"name": "Wolf Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 90, "lvl": 46, "agiReq": 15, "str": 4, "agi": 4, "spd": 6, "type": "necklace", "id": 3512}, {"name": "Wormwood", "tier": "Unique", "type": "boots", "poison": 23, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 6, "aDef": -6, "tDef": -6, "eDef": 6, "lvl": 17, "strReq": 5, "intReq": 5, "ls": 6, "hpBonus": -14, "id": 3514}, {"name": "Worry", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 11, "ref": 5, "int": 3, "spRegen": 3, "type": "bracelet", "id": 3516}, {"name": "Worship", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 84, "xpb": 7, "lb": 7, "hpBonus": 300, "spRegen": 7, "type": "ring", "id": 3518}, {"name": "Wybel Carved Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "220-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3519}, {"name": "Wrath", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-90", "atkSpd": "SLOW", "lvl": 78, "strReq": 39, "defReq": 39, "mdPct": 13, "ls": 280, "lb": 13, "spRegen": -39, "mdRaw": 150, "wDamPct": -26, "aDamPct": -26, "tDamPct": -26, "id": 3515}, {"name": "Wybel Fluff Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "300-355", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3521}, {"name": "Wybel Horn Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3520}, {"name": "Wybel Ivory Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3522}, {"name": "Wybel Tooth Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3523}, {"name": "Xyloid", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1850, "wDef": 65, "tDef": -100, "eDef": 60, "lvl": 80, "strReq": 35, "intReq": 25, "mr": 5, "mdPct": 10, "spd": -10, "hprRaw": 90, "fDamPct": -15, "wDamPct": 8, "eDamPct": 12, "tDefPct": -20, "id": 3525}, {"name": "Xystus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 30, "agi": 8, "spd": 8, "aDamPct": 10, "aDefPct": 12, "id": 3524}, {"name": "Yamato Spear", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "sdPct": 15, "mdPct": 15, "ms": 5, "xpb": 16, "dex": 13, "id": 3527}, {"name": "Yggdrasil", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "76-90", "atkSpd": "NORMAL", "lvl": 98, "strReq": 35, "intReq": 40, "mr": 5, "str": 9, "int": 5, "wDamPct": 20, "eDamPct": 8, "fDefPct": -15, "wDefPct": 10, "tDefPct": -10, "id": 3526}, {"name": "Yin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 30, "lvl": 92, "dexReq": 55, "sdPct": -8, "mdPct": 9, "dex": 4, "spRegen": -5, "sdRaw": -30, "mdRaw": 41, "type": "ring", "id": 3531}, {"name": "World Splitter", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-80", "fDam": "160-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "dexReq": 40, "defReq": 25, "mdPct": 10, "ls": 150, "spRegen": -33, "fDamPct": 12, "wDamPct": -143, "tDamPct": 12, "wDefPct": -20, "id": 3517}, {"name": "Yang", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "tDef": -30, "lvl": 92, "intReq": 55, "sdPct": 9, "mdPct": -8, "int": 4, "spRegen": 5, "sdRaw": 30, "mdRaw": -41, "type": "ring", "id": 3528}, {"name": "Yol", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-116", "fDam": "240-260", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "defReq": 55, "hprPct": 30, "def": 15, "hpBonus": 2650, "hprRaw": 165, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 3532}, {"name": "Yahya's Nail Clipper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-8", "atkSpd": "NORMAL", "lvl": 17, "hprPct": 6, "mr": 5, "mdPct": 7, "aDefPct": 5, "eDefPct": 5, "id": 3529}, {"name": "Yume", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 385, "fDef": -40, "aDef": 15, "lvl": 37, "agiReq": 25, "xpb": 12, "agi": 5, "spd": 12, "sdRaw": 50, "aDamPct": 12, "id": 3530}, {"name": "Yverlian Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-54", "wDam": "29-48", "aDam": "18-59", "tDam": "10-67", "eDam": "36-41", "atkSpd": "FAST", "lvl": 97, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 25, "spRegen": 5, "hprRaw": 150, "fDefPct": 16, "wDefPct": 16, "aDefPct": 16, "tDefPct": 16, "eDefPct": 16, "id": 3536}, {"name": "Ylem", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-127", "wDam": "0-0", "aDam": "0-0", "tDam": "0-127", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 30, "defReq": 35, "ls": 180, "hprRaw": -80, "sdRaw": 120, "fDamPct": 15, "tDamPct": 15, "wDefPct": -25, "eDefPct": -25, "id": 3533}, {"name": "Zephra Shredder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-260", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "agiReq": 80, "mr": -5, "sdPct": 15, "ls": -175, "spd": 30, "mdRaw": 180, "aDamPct": 25, "fDefPct": -30, "id": 3534}, {"name": "Zeal", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "lvl": 38, "defReq": 15, "hprPct": 8, "sdPct": -8, "mdPct": 5, "spd": 4, "hpBonus": 50, "fDamPct": 4, "id": 3537}, {"name": "Zephyr", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-204", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 90, "sdPct": 11, "mdPct": 11, "agi": 10, "spd": 18, "atkTier": 1, "id": 3535}, {"name": "Zero", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-133", "wDam": "0-133", "aDam": "0-133", "tDam": "0-133", "eDam": "0-133", "atkSpd": "FAST", "lvl": 87, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 18, "expd": 333, "hpBonus": -1250, "hprRaw": -125, "sdRaw": 210, "id": 3539}, {"name": "Zipper", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "5-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "dexReq": 20, "xpb": 11, "lb": 11, "spd": 8, "tDamPct": 11, "tDefPct": 11, "eDefPct": -21, "id": 3544}, {"name": "Zombie Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "aDef": -4, "eDef": 4, "lvl": 18, "hprPct": 10, "xpb": 5, "str": 3, "hpBonus": 15, "id": 3538}, {"name": "Zjarr", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 25, "defReq": 10, "sdPct": -3, "def": 3, "hprRaw": 4, "type": "ring", "id": 3541}, {"name": "Zombified Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 182, "fDef": -3, "aDef": -3, "tDef": -3, "lvl": 30, "hprPct": 14, "xpb": 5, "lb": 5, "hpBonus": 50, "id": 3540}, {"name": "default", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "int": 12, "id": 3543}, {"name": "Zombified Branch", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "126-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 51, "ls": 55, "ms": 5, "spd": -12, "id": 3542}], "sets": {"Ornate Shadow": {"items": ["Ornate Shadow Cowl", "Ornate Shadow Garb", "Ornate Shadow Cover", "Ornate Shadow Cloud"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Grookwarts": {"items": ["Dragon's Eye Bracelet", "Draoi Fair", "Renda Langit"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Master Hive": {"items": ["Abyss-Imbued Leggings", "Boreal-Patterned Crown", "Anima-Infused Cuirass", "Chaos-Woven Greaves", "Elysium-Engraved Aegis", "Eden-Blessed Guards", "Gaea-Hewn Boots", "Hephaestus-Forged Sabatons", "Obsidian-Framed Helmet", "Twilight-Gilded Cloak", "Infused Hive Relik", "Infused Hive Wand", "Infused Hive Spear", "Infused Hive Dagger", "Infused Hive Bow", "Contrast", "Prowess", "Intensity"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Thunder Hive": {"items": ["Sparkling Visor", "Insulated Plate Mail", "Static-Charged Leggings", "Thunderous Step", "Bottled Thunderstorm", "Lightning Flash"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Air Hive": {"items": ["Pride of the Aerie", "Gale's Freedom", "Turbine Greaves", "Flashstep", "Breezehands", "Vortex Bracer"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Earth Hive": {"items": ["Ambertoise Shell", "Beetle Aegis", "Elder Oak Roots", "Humbark Moccasins", "Subur Clip", "Golemlus Core"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Water Hive": {"items": ["Whitecap Crown", "Stillwater Blue", "Trench Scourer", "Silt of the Seafloor", "Coral Ring", "Moon Pool Circlet"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Fire Hive": {"items": ["Sparkweaver", "Soulflare", "Cinderchain", "Mantlewalkers", "Clockwork", "Dupliblaze"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Synch Core": {"items": ["Overload Core", "Synchro Core", "Dodge Core", "Harden Core", "Hustle Core"], "bonuses": [{}, {"hprRaw": -20, "fDefPct": -8, "wDefPct": -8, "aDefPct": -8, "tDefPct": -8, "eDefPct": -8, "sprint": -8}, {"hprRaw": 150, "fDefPct": -40, "wDefPct": -40, "aDefPct": -40, "tDefPct": -40, "eDefPct": -40, "sprint": -35, "ws": 16, "hpBonus": 1150, "sdPct": 14, "mdPct": 14, "jh": 1, "mr": -5, "ms": -5}, {"hprRaw": 50, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "sprint": 8, "ws": 8, "hpBonus": 666, "sdPct": 7, "mdPct": 7, "jh": 1}]}, "Black": {"items": ["Black Cap", "Black Boots", "Black Pants", "Black Tunic"], "bonuses": [{}, {"ms": 5, "dex": 2, "sdRaw": 15, "mdRaw": 5}, {"ms": 5, "dex": 6, "sdRaw": 35, "mdRaw": 10}, {"ms": 15, "dex": 20, "sdRaw": 65, "mdRaw": 70}]}, "Red Team": {"items": ["Red Team Boots", "Red Team Leggings", "Red Team Chestplate", "Red Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Tribal": {"items": ["Tribal Cap", "Tribal Boots", "Tribal Pants", "Tribal Tunic"], "bonuses": [{}, {"str": 2, "spd": 5}, {"str": 5, "agi": 2, "spd": 10}, {"sdPct": -15, "str": 10, "agi": 5, "spd": 15, "atkTier": 1}]}, "Champion": {"items": ["Champion Helmet", "Champion Boots", "Champion Leggings", "Champion Chestplate"], "bonuses": [{}, {}, {}, {"mr": 25, "sdPct": 75, "mdPct": 75, "ms": 25, "ls": 400, "hprRaw": 600}]}, "Outlaw": {"items": ["Outlaw Cap", "Outlaw Boots", "Outlaw Pants", "Outlaw Tunic"], "bonuses": [{}, {"ls": 11, "xpb": 5, "agi": 4, "eSteal": 2}, {"ls": 22, "xpb": 10, "agi": 8, "eSteal": 4}, {"ls": 45, "xpb": 25, "agi": 28, "eSteal": 8}]}, "Snail": {"items": ["Snail Helm", "Snail Boots", "Snail Leggings", "Snail Mail"], "bonuses": [{}, {"str": 7, "agi": -5, "thorns": 10, "spd": -5, "poison": 880, "hpBonus": 1100, "hprRaw": 125}, {"str": 14, "agi": -10, "thorns": 20, "spd": -10, "poison": 2650, "hpBonus": 2675, "hprRaw": 275}, {"str": 21, "agi": -15, "thorns": 40, "spd": -15, "poison": 5500, "hpBonus": 5500, "hprRaw": 575}]}, "Thanos Legionnaire": {"items": ["Thanos Legionnaire Helm", "Thanos Legionnaire Greaves", "Thanos Legionnaire Leggings", "Thanos Legionnaire Plate"], "bonuses": [{}, {"str": 2, "dex": -2, "int": -2, "agi": 2, "def": 2, "spd": 5, "hprRaw": 55, "mdRaw": 135}, {"str": 5, "dex": -5, "int": -5, "agi": 5, "def": 5, "spd": 10, "hprRaw": 210, "mdRaw": 270}, {"str": 15, "dex": -15, "int": -15, "agi": 15, "def": 15, "spd": 25, "atkTier": 1, "hprRaw": 525, "mdRaw": 540}]}, "Ghostly": {"items": ["Ghostly Cap", "Ghostly Boots", "Ghostly Pants", "Ghostly Tunic"], "bonuses": [{}, {"mr": -5, "ms": 10, "sdRaw": 40, "wDamPct": 5, "tDamPct": 5, "eDamPct": -34}, {"mr": -10, "ms": 20, "sdRaw": 115, "wDamPct": 10, "tDamPct": 10, "eDamPct": -67}, {"mr": -15, "ms": 30, "sdRaw": 230, "wDamPct": 32, "tDamPct": 32, "eDamPct": -100, "atkTier": -2}]}, "Adventurer's": {"items": ["Adventurer's Cap", "Adventurer's Boots", "Adventurer's Pants", "Adventurer's Tunic"], "bonuses": [{}, {"sdPct": 4, "mdPct": 4, "xpb": 10, "lb": 5, "spd": 2, "hpBonus": 15, "spRegen": 5}, {"sdPct": 12, "mdPct": 12, "xpb": 20, "lb": 10, "spd": 5, "hpBonus": 40, "spRegen": 15}, {"mr": 10, "sdPct": 25, "mdPct": 25, "xpb": 50, "lb": 30, "spd": 15, "hpBonus": 175, "spRegen": 50}]}, "Air Relic": {"items": ["Air Relic Helmet", "Air Relic Boots", "Air Relic Leggings", "Air Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "spd": 10, "hpBonus": 60}, {"xpb": 10, "lb": 25, "spd": 20, "hpBonus": 190}, {"xpb": 25, "lb": 50, "agi": 20, "spd": 60, "hpBonus": 400}]}, "Spider": {"items": ["Spinneret", "Abdomen", "Cephalothorax"], "bonuses": [{}, {"xpb": 10, "dex": 2, "agi": 2, "spd": 7, "poison": 35}, {"xpb": 25, "dex": 6, "agi": 6, "spd": 19, "poison": 130}]}, "Pigman": {"items": ["Pigman Helmet", "Pigman Battle Hammer"], "bonuses": [{}, {"str": 20, "eDamPct": 40}]}, "Kaerynn's": {"items": ["Kaerynn's Mind", "Kaerynn's Body"], "bonuses": [{}, {"mr": 10, "xpb": 40, "def": 25, "fDamPct": 20, "hprRaw": 180}]}, "Bandit's": {"items": ["Bandit's Locket", "Bandit's Bangle", "Bandit's Knuckle", "Bandit's Ring"], "bonuses": [{}, {"xpb": 3, "lb": 4, "eSteal": 1}, {"xpb": 7, "lb": 9, "eSteal": 3}, {"xpb": 12, "lb": 15, "eSteal": 6}]}, "Jester": {"items": ["Jester Necklace", "Jester Bracelet", "Jester Ring"], "bonuses": [{"xpb": 20, "lb": 20}, {"xpb": 45, "lb": 45, "spd": 5, "hpBonus": 240, "eSteal": 5}, {"xpb": 75, "lb": 75, "spd": 10, "hpBonus": 480, "eSteal": 15, "thorns": 12, "ref": 12}, {"xpb": 120, "lb": 120, "spd": 25, "hpBonus": 720, "eSteal": 20, "thorns": 30, "ref": 30}]}, "Builder's": {"items": ["Builder's Helmet", "Builder's Boots", "Builder's Trousers", "Builder's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Silverfish": {"items": ["Silverfish Helm", "Silverfish Boots"], "bonuses": [{"spd": 5}, {"agi": 10, "thorns": 20, "spd": 20, "poison": 290}]}, "Skien's": {"items": ["Skien Boots", "Skien Leggings", "Skien's Fatigues"], "bonuses": [{}, {"sdPct": -12, "mdPct": 12, "sdRaw": -50, "mdRaw": 60}, {"sdPct": -35, "mdPct": 35, "dex": 30, "spd": 11, "sdRaw": -150, "mdRaw": 180}]}, "Snow": {"items": ["Snow Helmet", "Snow Boots", "Snow Pants", "Snow Tunic"], "bonuses": [{}, {"hprPct": -10, "mr": 5, "sdPct": 6, "ref": 10, "thorns": 8}, {"hprPct": -20, "mr": 10, "sdPct": 14, "ref": 35, "thorns": 24}, {"hprPct": -30, "mr": 20, "sdPct": 30, "ref": 75, "thorns": 70}]}, "Veekhat's": {"items": ["Veekhat's Horns", "Veekhat's Udders"], "bonuses": [{}, {"mdPct": 30, "ms": 10, "spd": 25, "spPct2": -28}]}, "Morph": {"items": ["Morph-Stardust", "Morph-Ruby", "Morph-Amethyst", "Morph-Emerald", "Morph-Topaz", "Morph-Gold", "Morph-Iron", "Morph-Steel"], "bonuses": [{}, {"xpb": 5, "lb": 5}, {"mr": 5, "xpb": 10, "lb": 10, "spRaw2": -5, "hpBonus": 125}, {"mr": 5, "xpb": 15, "lb": 15, "spRaw2": -5, "hpBonus": 425}, {"mr": 10, "xpb": 35, "lb": 35, "hpBonus": 1325, "spRaw2": -5, "spRaw4": -5}, {"mr": 10, "xpb": 55, "lb": 55, "hpBonus": 2575, "spRaw2": -5, "spRaw4": -5}, {"mr": 15, "xpb": 80, "lb": 80, "hpBonus": 4450, "spRaw1": -5, "spRaw2": -5, "spRaw4": -5}, {"mr": 20, "xpb": 100, "lb": 100, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "hpBonus": 8270, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5}]}, "Black Catalyst": {"items": ["Black Catalyst"], "bonuses": [{"xpb": -5}, {"hpBonus": 325, "str": 0, "dex": 0, "int": 0, "def": 0, "agi": 0, "xpb": 25, "spRegen": 10, "sdPct": 8, "spPct1": -8, "spPct3": -8}]}, "Leaf": {"items": ["Leaf Cap", "Leaf Boots", "Leaf Pants", "Leaf Tunic"], "bonuses": [{}, {"hprPct": 5, "thorns": 7, "hpBonus": 10, "hprRaw": 1}, {"hprPct": 12, "thorns": 18, "hpBonus": 20, "hprRaw": 3}, {"hprPct": 25, "thorns": 35, "hpBonus": 60, "hprRaw": 7}]}, "Vexing": {"items": ["Mask of the Dark Vexations", "Staff of the Dark Vexations"], "bonuses": [{}, {"mr": 10, "sdPct": 15, "mdPct": -15, "sdRaw": 30, "spPct2": -35}]}, "Hallowynn 2016": {"items": ["Treat", "Trick"], "bonuses": [{}, {"xpb": 15, "spRegen": 10, "eSteal": 5}]}, "Spore": {"items": ["Spore Cap", "Spore Shortsword"], "bonuses": [{}, {"ls": 20, "expd": 20, "poison": 70}]}, "Horse": {"items": ["Horse Mask", "Horse Hoof"], "bonuses": [{}, {"mdPct": 11, "xpb": 25, "spd": 17, "aDamPct": 15, "eDamPct": 15, "sprint": 25, "sprintReg": 50}]}, "GM's": {"items": ["GM's Helmet", "GM's Boots", "GM's Trousers", "GM's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Nether": {"items": ["Nether Cap", "Nether Boots", "Nether Pants", "Nether Tunic"], "bonuses": [{}, {"ls": 5, "expd": 2, "hprRaw": -1, "fDamPct": 2, "wDamPct": -10}, {"ls": 15, "expd": 10, "hprRaw": -2, "fDamPct": 8, "wDamPct": -25}, {"ls": 50, "def": 15, "expd": 60, "hprRaw": -20, "fDamPct": 42, "wDamPct": -45}]}, "Thunder Relic": {"items": ["Thunder Relic Helmet", "Thunder Relic Boots", "Thunder Relic Leggings", "Thunder Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 55, "mdRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 180, "mdRaw": 32}, {"xpb": 25, "lb": 50, "dex": 20, "hpBonus": 380, "mdRaw": 105}]}, "Visceral": {"items": ["Visceral Skullcap", "Visceral Toe", "Visceral Legs", "Visceral Chest"], "bonuses": [{}, {"hprPct": 30, "mdPct": 10, "ls": 45, "hpBonus": -1000, "hprRaw": 35, "mdRaw": 40}, {"hprPct": 100, "mdPct": 25, "ls": 90, "hpBonus": -2500, "hprRaw": 75, "mdRaw": 80}, {"hprPct": 350, "mdPct": 50, "ls": 180, "hpBonus": -4000, "hprRaw": 145, "mdRaw": 165}]}, "Bony": {"items": ["Bony Circlet", "Bony Bow"], "bonuses": [{}, {"agi": 8, "mdRaw": 45, "aDamPct": 15}]}, "Blue Team": {"items": ["Blue Team Boots", "Blue Team Leggings", "Blue Team Chestplate", "Blue Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Clock": {"items": ["Clock Helm", "Clock Amulet", "Watch Bracelet", "Clockwork Ring", "Time Ring", "Clock Boots", "Clock Leggings", "Clock Mail"], "bonuses": [{}, {"fDamPct": 15, "wDamPct": 6, "aDamPct": 5, "tDamPct": 18, "eDamPct": 8}, {"fDamPct": 14, "wDamPct": 12, "aDamPct": 13}, {"fDamPct": 13, "wDamPct": 18, "aDamPct": 20, "tDamPct": 18, "eDamPct": 14}, {"fDamPct": 12, "wDamPct": 24, "aDamPct": 28}, {"fDamPct": 11, "wDamPct": 24, "aDamPct": 24, "tDamPct": 18, "eDamPct": 22}, {"fDamPct": 10, "wDamPct": 24, "aDamPct": 19}, {"fDamPct": 9, "wDamPct": 24, "aDamPct": 14, "tDamPct": 18, "eDamPct": 34}]}, "Ultramarine": {"items": ["Ultramarine Crown", "Ultramarine Boots", "Ultramarine Belt", "Ultramarine Cape"], "bonuses": [{}, {"mr": 10, "mdPct": -24, "int": 5, "wDamPct": 10, "tDamPct": -8, "wDefPct": 16}, {"mr": 25, "mdPct": -54, "int": 15, "wDamPct": 20, "tDamPct": -18, "wDefPct": 36}, {"mr": 40, "mdPct": -90, "int": 25, "wDamPct": 40, "tDamPct": -30, "wDefPct": 56}]}, "Cosmic": {"items": ["Cosmic Visor", "Cosmic Walkers", "Cosmic Ward", "Cosmic Vest"], "bonuses": [{}, {"xpb": 25, "lb": 25, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "ms": 5}, {"xpb": 50, "lb": 50, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "ms": 10}, {"xpb": 75, "lb": 75, "fDefPct": 100, "wDefPct": 100, "aDefPct": 100, "tDefPct": 100, "eDefPct": 100, "sdPct": 40, "ms": 30}]}, "Saint's": {"items": ["Saint's Shawl", "Saint's Sandals", "Saint's Leggings", "Saint's Tunic"], "bonuses": [{}, {"mr": 5, "sdPct": -10, "mdPct": -15, "def": 7, "spRegen": 10, "wDamPct": 15, "aDamPct": 15}, {"mr": 15, "sdPct": -20, "mdPct": -40, "def": 15, "spRegen": 25, "wDamPct": 40, "aDamPct": 40}, {"mr": 30, "sdPct": -40, "mdPct": -85, "def": 40, "spRegen": 100, "wDamPct": 85, "aDamPct": 85}]}, "Beachside": {"items": ["Beachside Headwrap", "Beachside Conch"], "bonuses": [{}, {"lb": 20, "wDamPct": 35, "wDefPct": 25}]}, "Villager": {"items": ["Villager Pants", "Villager Mail"], "bonuses": [{}, {"xpb": 20, "lb": 60, "eSteal": 8}]}, "Goblin": {"items": ["Goblin Hood", "Goblin Runners", "Goblin Cloak"], "bonuses": [{"sdPct": -5, "mdPct": -5, "sdRaw": 27, "mdRaw": 25}, {"sdPct": -13, "mdPct": -13, "ls": 30, "sdRaw": 55, "mdRaw": 70}, {"sdPct": -33, "mdPct": -33, "ls": 90, "ms": 10, "sdRaw": 160, "mdRaw": 105, "atkTier": 1}]}, "Corrupted Nii": {"items": ["Corrupted Nii Mukluk", "Corrupted Nii Plate", "Corrupted Nii Shako"], "bonuses": [{}, {"int": 3, "def": 3, "hprRaw": 90}, {"mr": 25, "int": 20, "def": 20, "hpBonus": 1500, "hprRaw": 330, "fDefPct": 75, "wDefPct": 75}]}, "Water Relic": {"items": ["Water Relic Helmet", "Water Relic Boots", "Water Relic Leggings", "Water Relic Chestplate"], "bonuses": [{}, {"mr": 5, "xpb": 5, "lb": 10, "hpBonus": 55}, {"mr": 10, "xpb": 10, "lb": 25, "hpBonus": 170}, {"mr": 20, "xpb": 25, "lb": 50, "int": 20, "hpBonus": 360}]}, "Elf": {"items": ["Elf Cap", "Elf Shoes", "Elf Pants", "Elf Robe"], "bonuses": [{}, {"hprPct": 10, "lb": 8, "agi": 3, "def": 3, "spd": 8}, {"hprPct": 20, "lb": 20, "agi": 7, "def": 7, "spd": 16}, {"hprPct": 45, "lb": 35, "agi": 15, "def": 15, "spd": 25, "hprRaw": 50}]}, "Relic": {"items": ["Relic Helmet", "Relic Boots", "Relic Leggings", "Relic Chestplate"], "bonuses": [{}, {"xpb": 10, "lb": 10, "hpBonus": 65, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5}, {"xpb": 25, "lb": 25, "hpBonus": 200, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12}, {"xpb": 50, "lb": 50, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "hpBonus": 425, "fDamPct": 25, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25}]}, "Corrupted Uth": {"items": ["Corrupted Uth Sandals", "Corrupted Uth Belt", "Corrupted Uth Plume"], "bonuses": [{}, {"ls": 180, "agi": 3, "def": 3}, {"ls": 700, "ref": 80, "agi": 25, "def": 25, "thorns": 80, "fDefPct": 125, "aDefPct": 125}]}, "Fire Relic": {"items": ["Fire Relic Helmet", "Fire Relic Boots", "Fire Relic Leggings", "Fire Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 90, "hprRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 270, "hprRaw": 40}, {"xpb": 25, "lb": 50, "def": 20, "hpBonus": 570, "hprRaw": 100}]}, "Flashfire": {"items": ["Flashfire Gauntlet", "Flashfire Knuckle"], "bonuses": [{}, {"spd": 8, "atkTier": 1, "wDamPct": -15, "wDefPct": -15}, {"spd": 16, "atkTier": 1, "fDamPct": 12, "wDamPct": -15, "wDefPct": -15}]}, "Earth Relic": {"items": ["Earth Relic Helmet", "Earth Relic Boots", "Earth Relic Leggings", "Earth Relic Chestplate"], "bonuses": [{}, {"mdPct": 10, "xpb": 5, "lb": 10, "hpBonus": 65}, {"mdPct": 20, "xpb": 10, "lb": 25, "hpBonus": 200}, {"mdPct": 45, "xpb": 25, "lb": 50, "str": 20, "hpBonus": 425}]}, "Bear": {"items": ["Bear Mask", "Bear Head", "Bear Body"], "bonuses": [{}, {"mdPct": 14, "hpBonus": 75, "mdRaw": 25}]}, "Slime": {"items": ["Slime Boots", "Slime Plate"], "bonuses": [{}, {"hprPct": 35, "thorns": 15, "spd": -6, "poison": 300, "hpBonus": 600, "jh": 1}]}, "Wynnterfest 2016": {"items": ["Green Ornament", "Red Ornament", "Blue Ornament", "Yellow Ornament"], "bonuses": [{"sdPct": 3}, {"sdPct": 3, "mdPct": 3, "xpb": 6}, {"sdPct": 3, "mdPct": 3, "xpb": 12, "hpBonus": 120}, {"sdPct": 14, "mdPct": 14, "xpb": 24, "hpBonus": 480}]}}} \ No newline at end of file diff --git a/js/load.js b/js/load.js index 05ade83..c204102 100644 --- a/js/load.js +++ b/js/load.js @@ -1,4 +1,4 @@ -const DB_VERSION = 99; +const DB_VERSION = 100; // @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA let db; diff --git a/py_script/merge_items.py b/py_script/merge_items.py index f6d0cab..d7a2d98 100644 --- a/py_script/merge_items.py +++ b/py_script/merge_items.py @@ -83,6 +83,18 @@ for item in old_items: #print(f'Unknown old item: {item["name"]}!!!') #old_items_map[item["name"]] = item +for set_name, set_info in old_data['sets'].items(): + for bonus in set_info['bonuses']: + for k, v in mul_keys.items(): + if k in bonus: + # SUPER JANKY ROUNDING + tentimes = round(bonus[k] * v) + rem = tentimes % 10 + val = math.floor(round_near(tentimes / 10)) + if rem >= 5: + val += 1 + bonus[k] = val + for item in items: for key in delete_keys: if key in item: From 70c5caabd160642809c68b8209aeadb85e585567 Mon Sep 17 00:00:00 2001 From: reschan Date: Sat, 23 Jul 2022 10:58:00 +0700 Subject: [PATCH 22/34] swap boosts location --- builder/index_full.html | 359 ++++++++++++++++++++-------------------- 1 file changed, 180 insertions(+), 179 deletions(-) diff --git a/builder/index_full.html b/builder/index_full.html index 818961d..fcf508e 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -409,6 +409,186 @@
+ +
+
+
+ Active boosts +
+
+ + + + + + +
+
+ +
+
+
+ +
+
+
+
+
+
+ Earth +
+
+ Thunder +
+
+ Water +
+
+ Fire +
+
+ Air +
+
+ + +
+
+ Curse (Active) +
+
+ + + + + +
+
+ Concentration (Passive) +
+
+ + +
+
@@ -947,185 +1127,6 @@
-
-
-
- Active boosts -
-
- - - - - - -
-
- -
-
-
- -
-
-
-
-
-
- Earth -
-
- Thunder -
-
- Water -
-
- Fire -
-
- Air -
-
- - -
-
- Curse (Active) -
-
- - - - - -
-
- Concentration (Passive) -
-
- - -
-
From 84052257eb7e16e3c3eb76966bef93a2c8e802e4 Mon Sep 17 00:00:00 2001 From: reschan Date: Sat, 23 Jul 2022 11:00:15 +0700 Subject: [PATCH 23/34] minify html --- builder/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/index.html b/builder/index.html index a641dc0..37b62f6 100644 --- a/builder/index.html +++ b/builder/index.html @@ -1,2 +1,2 @@ - WynnBuilder
Join the discord today to suggest new features, submit bug reports, and hangout/talk to devs!
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
Level:
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Active boosts
Earth
Thunder
Water
Fire
Air
Curse (Active)
Concentration (Passive)
Offense
Defense
Overall
Input a weapon to see abilities!

Made by hppeng, ferricles, and reschan with Atlas Inc (JavaScript required to function, nothing works without js)

Hard refresh the page (Ctrl+Shift+R on windows/chrome) if it isn't updating correctly.

+ WynnBuilder
Join the discord today to suggest new features, submit bug reports, and hangout/talk to devs!
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
Level:
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Assign: 0
Original: 0
Active boosts
Earth
Thunder
Water
Fire
Air
Curse (Active)
Concentration (Passive)
Offense
Defense
Overall
Input a weapon to see abilities!

Made by hppeng, ferricles, and reschan with Atlas Inc (JavaScript required to function, nothing works without js)

Hard refresh the page (Ctrl+Shift+R on windows/chrome) if it isn't updating correctly.

\ No newline at end of file From f9e783e56eb58005e0bc65bb33bf57e996f5b7bf Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 05:19:32 -0700 Subject: [PATCH 24/34] Fix memory leak and toggle spell tab display bug also fix documentation in atree and doc.html --- builder/doc.html | 492 ++++++++++++------------------- js/atree.js | 3 +- js/debug/render_compute_graph.js | 19 +- js/display.js | 7 +- 4 files changed, 213 insertions(+), 308 deletions(-) diff --git a/builder/doc.html b/builder/doc.html index 0a52469..e8106af 100644 --- a/builder/doc.html +++ b/builder/doc.html @@ -5,17 +5,6 @@ - - WynnBuilder @@ -35,8 +24,6 @@ - -
+ +
+
+
+ Active boosts +
+
+ + + + + + +
+
+ +
+
+
+ +
+
+
+
+
+
+ Earth +
+
+ Thunder +
+
+ Water +
+
+ Fire +
+
+ Air +
+
+ + +
+
+ Curse (Active) +
+
+ + + + + +
+
+ Concentration (Passive) +
+
+ + +
+
@@ -960,265 +1127,6 @@
-
-
-
- Active boosts -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
-
-
-
-
-
-
- Earth -
-
- Thunder -
-
- Water -
-
- Fire -
-
- Air -
-
-
- - -
-
-
- Curse (Active) -
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
-
-
- Concentration (Passive) -
-
-
- - -
-
@@ -1244,23 +1152,17 @@
+
+
+
Input a weapon to see abilities!
+
+
+
-
-
melee
- +
+
-
-
poison
-
-
-
-
Input a weapon to see abilities!
-
-
-
-
-
-
@@ -1284,20 +1186,6 @@
-
@@ -1364,10 +1252,8 @@
-
- diff --git a/js/atree.js b/js/atree.js index 555e99f..e2249da 100644 --- a/js/atree.js +++ b/js/atree.js @@ -723,7 +723,8 @@ const atree_make_interactives = new (class extends ComputeNode { * Collect stats from ability tree. * Return StatMap of added stats (incl. cost modifications as raw cost) * - * Signature: AbilityTreeStatsNode(atree-merged: MergedATree, build: Build, atree-interactive: Map) => StatMap + * Signature: AbilityTreeStatsNode(atree-merged: MergedATree, build: Build, + * atree-interactive: [Map, Map]) => StatMap */ const atree_stats = new (class extends ComputeNode { constructor() { super('atree-stats-collector'); } diff --git a/js/debug/render_compute_graph.js b/js/debug/render_compute_graph.js index efc4ef3..a706210 100644 --- a/js/debug/render_compute_graph.js +++ b/js/debug/render_compute_graph.js @@ -35,6 +35,22 @@ d3.select("#graph_body") .classed("svg-content-responsive", true); let graph = d3.select("svg"); let svg = graph.append('g'); + +// triangle arrow head definition +graph.append('defs').append('marker') + .attr('id', 'arrowhead') + .attr('viewBox', '-0 -5 10 10') + .attr('refX', 23) + .attr('refY', 0) + .attr('orient', 'auto') + .attr('markerWidth', 13) + .attr('markerHeight', 13) + .attr('xoverflow', 'visible') + .append('svg:path') + .attr('d', 'M 0,-5 L 10 ,0 L 0,5') + .attr('fill', '#aaa') + .style('stroke','none'); + let margin = {top: 20, right: 20, bottom: 35, left: 40}; function bbox() { @@ -87,6 +103,7 @@ function create_svg(data, redraw_func) { .enter() .append("line") .style("stroke", "#aaa") + .attr('marker-end','url(#arrowhead)'); // Initialize the nodes let node = svg @@ -197,7 +214,7 @@ d3.select(window) }); redraw(); -const data = convert_data(all_nodes); +const data = convert_data(Array.from(all_nodes)); create_svg(data, redraw); console.log("render"); diff --git a/js/display.js b/js/display.js index 714aa38..cfc064f 100644 --- a/js/display.js +++ b/js/display.js @@ -1392,14 +1392,15 @@ function getBaseSpellCost(stats, spell) { } -function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spellIdx, spell_results) { +function displaySpellDamage(parent_elem, _overallparent_elem, stats, spell, spellIdx, spell_results) { // TODO: remove spellIdx (just used to flag melee and cost) // TODO: move cost calc out parent_elem.textContent = ""; let title_elem = make_elem("p"); - overallparent_elem.textContent = ""; + _overallparent_elem.textContent = ""; + const overallparent_elem = make_elem("div", ['col']) let title_elemavg = document.createElement("b"); if ('cost' in spell) { @@ -1466,7 +1467,6 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell if (spellIdx === 0) { let display_attack_speeds = ["Super Slow", "Very Slow", "Slow", "Normal", "Fast", "Very Fast", "Super Fast"]; let adjAtkSpd = attackSpeeds.indexOf(stats.get("atkSpd")) + stats.get("atkTier"); - console.log(stats); if(adjAtkSpd > 6) { adjAtkSpd = 6; } else if(adjAtkSpd < 0) { @@ -1510,6 +1510,7 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell } addClickableArrow(overallparent_elem, parent_elem); + _overallparent_elem.append(overallparent_elem); } /** Displays the ID costs of an item From 791964737266afb2db52a284e0a39ba6300aafb0 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 12:30:59 -0700 Subject: [PATCH 25/34] Patch Water Mastery fluid healing interaction according to zeer, all stat scaling is applied after total stats --- js/atree.js | 101 +++++++++++++++++++++----------------------- js/builder_graph.js | 19 +++++---- 2 files changed, 58 insertions(+), 62 deletions(-) diff --git a/js/atree.js b/js/atree.js index e2249da..84fb8bd 100644 --- a/js/atree.js +++ b/js/atree.js @@ -696,7 +696,7 @@ const atree_make_interactives = new (class extends ComputeNode { let slider_container = gen_slider_labeled(slider_info); document.getElementById("boost-sliders").appendChild(slider_container); slider_info.slider = document.getElementById(slider_info.id); - slider_info.slider.addEventListener("change", (e) => atree_stats.mark_dirty().update()); + slider_info.slider.addEventListener("change", (e) => atree_scaling.mark_dirty().update()); } for (const [button_name, button_info] of button_map.entries()) { let button = make_elem('button', ["button-boost", "border-0", "text-white", "dark-8u", "dark-shadow-sm", "m-1"], { @@ -709,7 +709,7 @@ const atree_make_interactives = new (class extends ComputeNode { } else { button.classList.add("toggleOn"); } - atree_stats.mark_dirty().update() + atree_scaling.mark_dirty().update() }); button_info.button = button; document.getElementById("boost-toggles").appendChild(button); @@ -718,20 +718,19 @@ const atree_make_interactives = new (class extends ComputeNode { } })().link_to(atree_node, 'atree-order').link_to(atree_merge, 'atree-merged').link_to(atree_render_active, 'atree-elements'); - /** - * Collect stats from ability tree. - * Return StatMap of added stats (incl. cost modifications as raw cost) + * Scaling stats from ability tree. + * Return StatMap of added stats, * - * Signature: AbilityTreeStatsNode(atree-merged: MergedATree, build: Build, + * Signature: AbilityTreeScalingNode(atree-merged: MergedATree, scale-scats: StatMap, * atree-interactive: [Map, Map]) => StatMap */ -const atree_stats = new (class extends ComputeNode { - constructor() { super('atree-stats-collector'); } +const atree_scaling = new (class extends ComputeNode { + constructor() { super('atree-scaling-collector'); } compute_func(input_map) { const atree_merged = input_map.get('atree-merged'); - const item_stats = input_map.get('build').statMap; + const pre_scale_stats = input_map.get('scale-stats'); const [slider_map, button_map] = input_map.get('atree-interactive'); let ret_effects = new Map(); @@ -741,41 +740,26 @@ const atree_stats = new (class extends ComputeNode { for (const effect of abil.effects) { switch (effect.type) { case 'stat_scaling': - if (effect.slider) { - if ('output' in effect) { // sometimes nodes will modify slider without having effect. - const slider_val = slider_map.get(effect.slider_name).slider.value; - const {round = true} = effect; - let total = parseInt(slider_val) * effect.scaling[0]; - if (round) { total = Math.floor(round_near(total)); } - if ('max' in effect && total > effect.max) { total = effect.max; } - if (Array.isArray(effect.output)) { - for (const output of effect.output) { - if (output.type === 'stat') { // TODO: prop - merge_stat(ret_effects, output.name, total); - } - } - } - else { - if (effect.output.type === 'stat') { - merge_stat(ret_effects, effect.output.name, total); - } - } - } + let total = 0; + const {round = true, slider = false, scaling = [0]} = effect; + if (slider) { + const slider_val = slider_map.get(effect.slider_name).slider.value; + total = parseInt(slider_val) * scaling[0]; } else { // TODO: type: prop? - let total = 0; - const {round = true} = effect; - for (const [scaling, input] of zip2(effect.scaling, effect.inputs)) { - total += scaling * item_stats.get(input.name); + for (const [_scaling, input] of zip2(scaling, effect.inputs)) { + total += _scaling * pre_scale_stats.get(input.name); } + } + + if ('output' in effect) { // sometimes nodes will modify slider without having effect. if (round) { total = Math.floor(round_near(total)); } if (total < 0) { total = 0; } // Normal stat scaling will not go negative. if ('max' in effect && total > effect.max) { total = effect.max; } - // TODO: output (list...) if (Array.isArray(effect.output)) { for (const output of effect.output) { - if (output.type === 'stat') { + if (output.type === 'stat') { // TODO: prop merge_stat(ret_effects, output.name, total); } } @@ -787,6 +771,31 @@ const atree_stats = new (class extends ComputeNode { } } continue; + } + } + } + return ret_effects; + } +})().link_to(atree_merge, 'atree-merged').link_to(atree_make_interactives, 'atree-interactive'); + +/** + * Collect stats from ability tree. + * Return StatMap of added stats. + * + * Signature: AbilityTreeStatsNode(atree-merged: MergedATree) => StatMap + */ +const atree_stats = new (class extends ComputeNode { + constructor() { super('atree-stats-collector'); } + + compute_func(input_map) { + const atree_merged = input_map.get('atree-merged'); + + let ret_effects = new Map(); + for (const [abil_id, abil] of atree_merged.entries()) { + if (abil.effects.length == 0) { continue; } + + for (const effect of abil.effects) { + switch (effect.type) { case 'raw_stat': // TODO: toggles... if (effect.toggle) { @@ -801,27 +810,12 @@ const atree_stats = new (class extends ComputeNode { } } continue; - case 'add_spell_prop': - continue; - // TODO unjankify.... - // costs are converted to raw cost ID - // const { base_spell, cost = 0} = effect; - // if (cost) { - // const key = "spRaw"+base_spell; - // if (ret_effects.has(key)) { ret_effects.set(key, ret_effects.get(key) + cost); } - // else { ret_effects.set(key, cost); } - // } - // continue; } } } - if (ret_effects.has('baseResist')) { - merge_stat(ret_effects, "defMult", 1 - (ret_effects.get('baseResist') / 100)); - } return ret_effects; } -})().link_to(atree_merge, 'atree-merged').link_to(atree_make_interactives, 'atree-interactive'); - +})().link_to(atree_merge, 'atree-merged'); /** * Construct compute nodes to link builder items and edit IDs to the appropriate display outputs. @@ -844,16 +838,15 @@ class AbilityTreeEnsureNodesNode extends ComputeNode { this.build_node = build_node; this.stat_agg_node = stat_agg_node; // Slight amount of wasted compute to keep internal state non-changing. - this.passthrough = new PassThroughNode('atree-make-nodes_internal').link_to(this.build_node, 'build').link_to(this.stat_agg_node, 'stats'); + this.passthrough = new PassThroughNode('spell-calc-buffer').link_to(this.build_node, 'build').link_to(this.stat_agg_node, 'stats'); this.spelldmg_nodes = []; // debugging use this.spell_display_elem = document.getElementById("all-spells-display"); } compute_func(input_map) { - console.log('atree make nodes'); this.passthrough.remove_link(this.build_node); this.passthrough.remove_link(this.stat_agg_node); - this.passthrough = new PassThroughNode('atree-make-nodes_internal').link_to(this.build_node, 'build').link_to(this.stat_agg_node, 'stats'); + this.passthrough = new PassThroughNode('spell-calc-buffer').link_to(this.build_node, 'build').link_to(this.stat_agg_node, 'stats'); this.spell_display_elem.textContent = ""; const build_node = this.passthrough.get_node('build'); // aaaaaaaaa performance... savings... help.... const stat_agg_node = this.passthrough.get_node('stats'); diff --git a/js/builder_graph.js b/js/builder_graph.js index 093f367..b38f467 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -794,7 +794,7 @@ class DisplayBuildWarningsNode extends ComputeNode { * Signature: AggregateStatsNode(*args) => StatMap */ class AggregateStatsNode extends ComputeNode { - constructor() { super("builder-aggregate-stats"); } + constructor(name) { super(name); } compute_func(input_map) { const output_stats = new Map(); @@ -997,7 +997,8 @@ function builder_graph_init() { // Phase 2/3: Set up editable IDs, skill points; use decodeBuild() skill points, calculate damage // Create one node that will be the "aggregator node" (listen to all the editable id nodes, as well as the build_node (for non editable stats) and collect them into one statmap) - stat_agg_node = new AggregateStatsNode(); + pre_scale_agg_node = new AggregateStatsNode('pre-scale-stats'); + stat_agg_node = new AggregateStatsNode('final-stats'); edit_agg_node = new AggregateEditableIDNode(); edit_agg_node.link_to(build_node, 'build'); for (const field of editable_item_fields) { @@ -1021,7 +1022,7 @@ function builder_graph_init() { edit_input_nodes.push(node); skp_inputs.push(node); } - stat_agg_node.link_to(edit_agg_node); + pre_scale_agg_node.link_to(edit_agg_node); // Phase 3/3: Set up atree stuff. @@ -1029,8 +1030,10 @@ function builder_graph_init() { // These two are defined in `atree.js` atree_node.link_to(class_node, 'player-class'); atree_merge.link_to(class_node, 'player-class'); - atree_stats.link_to(build_node, 'build'); - stat_agg_node.link_to(atree_stats, 'atree-stats'); + pre_scale_agg_node.link_to(atree_stats, 'atree-raw-stats'); + atree_scaling.link_to(pre_scale_agg_node, 'scale-stats'); + stat_agg_node.link_to(pre_scale_agg_node, 'pre-scaling'); + stat_agg_node.link_to(atree_scaling, 'atree-scaling'); build_encode_node.link_to(atree_node, 'atree').link_to(atree_state_node, 'atree-state'); @@ -1062,12 +1065,12 @@ function builder_graph_init() { let powder_special_calc = new PowderSpecialCalcNode().link_to(powder_special_input, 'powder-specials'); new PowderSpecialDisplayNode().link_to(powder_special_input, 'powder-specials') .link_to(stat_agg_node, 'stats').link_to(build_node, 'build'); - stat_agg_node.link_to(powder_special_calc, 'powder-boost'); - stat_agg_node.link_to(armor_powder_node, 'armor-powder'); + pre_scale_agg_node.link_to(powder_special_calc, 'powder-boost'); + pre_scale_agg_node.link_to(armor_powder_node, 'armor-powder'); powder_special_input.update(); // Potion boost. - stat_agg_node.link_to(boosts_node, 'potion-boost'); + pre_scale_agg_node.link_to(boosts_node, 'potion-boost'); // Also do something similar for skill points From 3ae9f2725b51af2b306f7665b852c04592277bee Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 12:38:58 -0700 Subject: [PATCH 26/34] HOTFIX doom fix button map --- js/atree.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/atree.js b/js/atree.js index 84fb8bd..639eca2 100644 --- a/js/atree.js +++ b/js/atree.js @@ -789,6 +789,7 @@ const atree_stats = new (class extends ComputeNode { compute_func(input_map) { const atree_merged = input_map.get('atree-merged'); + const [slider_map, button_map] = input_map.get('atree-interactive'); let ret_effects = new Map(); for (const [abil_id, abil] of atree_merged.entries()) { @@ -815,7 +816,7 @@ const atree_stats = new (class extends ComputeNode { } return ret_effects; } -})().link_to(atree_merge, 'atree-merged'); +})().link_to(atree_merge, 'atree-merged').link_to(atree_make_interactives, 'atree-interactive'); /** * Construct compute nodes to link builder items and edit IDs to the appropriate display outputs. From 19341bdbfc06b88d5220c1f83c1aef4e339ad51b Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 13:32:11 -0700 Subject: [PATCH 27/34] Gangels show DPS also, dog --- js/atree_constants.js | 60 ++++++++++++++++++++++++++++----------- js/atree_constants_min.js | 2 +- 2 files changed, 45 insertions(+), 17 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index a44f4d5..3431b35 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -392,10 +392,10 @@ const atrees = { "type": "replace_spell", "name": "Guardian Angels", "base_spell": 4, - "display": "Total Damage", + "display": "DPS", "parts": [ { - "name": "Single Arrow", + "name": "Single Shot", "type": "damage", "multipliers": [ 30, @@ -410,7 +410,14 @@ const atrees = { "name": "Single Bow", "type": "total", "hits": { - "Single Arrow": 8 + "Single Shot": 8 + } + }, + { + "name": "DPS", + "type": "total", + "hits": { + "Single Shot": 2 } }, { @@ -910,16 +917,28 @@ const atrees = { "properties": {}, "effects": [ { - "type": "add_spell_prop", - "base_spell": 4, - "target_part": "Hound Damage", - "multipliers": [ - 40, - 0, - 0, - 0, - 0, - 0 + "type": "replace_spell", + "name": "Call of the Hound", + "base_spell": 8, + "display": "DPS", + "parts": [ + { + "name": "Single Hit", + "multipliers": [ + 40, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "name": "DPS", + "hits": { + "Single Hit": 4 + } + } ] } ] @@ -1198,7 +1217,7 @@ const atrees = { { "type": "add_spell_prop", "base_spell": 4, - "target_part": "Single Arrow", + "target_part": "Single Shot", "multipliers": [ 0, 0, @@ -1213,7 +1232,7 @@ const atrees = { "base_spell": 4, "target_part": "Single Bow", "hits": { - "Single Arrow": 5 + "Single Shot": 5 } } ] @@ -1620,6 +1639,15 @@ const atrees = { "Single Bow": 2 } }, + { + "type": "add_spell_prop", + "base_spell": 4, + "target_part": "DPS", + "behavior": "modify", + "hits": { + "Single Shot": 2 + } + }, { "type": "raw_stat", "bonuses": [ @@ -1836,7 +1864,7 @@ const atrees = { "base_spell": 4, "target_part": "Single Bow", "hits": { - "Single Arrow": 4 + "Single Shot": 4 } } ] diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index ea2e34b..987b9eb 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Arrow":8}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Hound Damage","multipliers":[40,0,0,0,0,0]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Arrow","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Arrow":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main AttackĆ¢ā‚¬ā„¢s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"DPS","parts":[{"name":"Single Shot","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Shot":8}},{"name":"DPS","type":"total","hits":{"Single Shot":2}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Call of the Hound","base_spell":8,"display":"DPS","parts":[{"name":"Single Hit","multipliers":[40,0,0,0,0,0]},{"name":"DPS","hits":{"Single Hit":4}}]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Shot","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"DPS","behavior":"modify","hits":{"Single Shot":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From f04882132aa962e8e29811c4cf5bc517a6fdf3e4 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 14:35:11 -0700 Subject: [PATCH 28/34] Fix crackshot, update potion boost apply order, fix spear prof display --- clean.json | 4 ++-- compress.json | 2 +- js/atree_constants.js | 4 ++-- js/atree_constants_min.js | 2 +- js/builder_graph.js | 2 +- js/load.js | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/clean.json b/clean.json index 368d187..711d835 100644 --- a/clean.json +++ b/clean.json @@ -15824,7 +15824,7 @@ "type": "bow", "category": "weapon", "drop": "NORMAL", - "nDam": "149-149", + "nDam": "125-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", @@ -77592,4 +77592,4 @@ ] } } -} \ No newline at end of file +} diff --git a/compress.json b/compress.json index a142617..bcdceb0 100644 --- a/compress.json +++ b/compress.json @@ -1 +1 @@ -{"items": [{"name": "Keratoconus", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Keratoconus", "slots": 3, "hp": 3900, "fDef": -150, "aDef": 250, "tDef": -150, "lvl": 101, "intReq": 65, "agiReq": 65, "hprPct": -50, "mr": 8, "int": 15, "def": -10, "wDamPct": 30, "aDamPct": 35, "tDamPct": -40, "spRaw4": -4, "id": 3579}, {"name": "Wanderlust", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Wanderlust", "slots": 2, "hp": 3500, "fDef": -75, "wDef": 100, "aDef": 100, "tDef": 75, "lvl": 103, "dexReq": 45, "agiReq": 55, "hprPct": -15, "ls": 230, "ms": -12, "spd": 25, "sdRaw": 208, "wDamPct": 20, "aDamPct": 30, "id": 3592}, {"name": "Anaerobic", "type": "leggings", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Anaerobic", "slots": 4, "hp": 3850, "wDef": -150, "aDef": 100, "eDef": 100, "lvl": 104, "strReq": 60, "agiReq": 60, "mr": 8, "ref": 48, "str": 12, "atkTier": -1, "aDamPct": 32, "eDamPct": 24, "spRaw1": -8, "id": 3611}, {"name": "Danse Macabre", "type": "relik", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Danse Macabre", "basedps": 238, "slots": 1, "nDam": "0-0", "fDam": "97-141", "wDam": "0-0", "aDam": "0-0", "tDam": "24-214", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 102, "classReq": "Shaman", "dexReq": 55, "defReq": 50, "ms": 13, "atkTier": 1, "hpBonus": -1150, "hprRaw": -204, "sdRaw": 184, "spRaw1": -7, "id": 3614}, {"name": "Darkness's Dogma", "type": "bow", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Darkness's Dogma", "basedps": 1250, "slots": 3, "nDam": "0-0", "fDam": "550-700", "wDam": "600-650", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 103, "classReq": "Archer", "intReq": 60, "defReq": 50, "ls": -700, "ms": 13, "ref": 25, "hpBonus": 1500, "fDefPct": -50, "wDefPct": -50, "id": 3654}, {"name": "Frameshift", "type": "wand", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Frameshift", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "160-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-210", "atkSpd": "VERY_SLOW", "lvl": 104, "classReq": "Mage", "strReq": 40, "defReq": 60, "mr": 7, "mdPct": 25, "ls": 380, "def": 20, "wDamPct": -30, "spRaw1": -4, "id": 3655}, {"name": "Helminth", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Helminth", "basedps": 100, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-199", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 102, "classReq": "Warrior", "dexReq": 65, "ls": 500, "atkTier": 1, "hpBonus": -1250, "tDamPct": 20, "wDefPct": -35, "aDefPct": -35, "id": 3656}, {"name": "Lanternfly Leg", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Lanternfly Leg", "basedps": 180, "slots": 3, "nDam": "150-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 101, "classReq": "Assassin", "agiReq": 50, "defReq": 50, "spd": 30, "hpBonus": 1000, "fDamPct": 23, "aDamPct": 23, "spRaw2": -4, "jh": 1, "id": 3657}, {"name": "Dissonance", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Dissonance", "sprint": 20, "slots": 2, "hp": 3050, "wDef": 100, "aDef": -175, "tDef": 100, "lvl": 103, "dexReq": 50, "intReq": 50, "sdPct": 20, "ls": -275, "lb": 20, "spd": -20, "wDamPct": 20, "tDamPct": 12, "id": 3658}, {"name": "Atomizer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Atomizer", "poison": 600, "thorns": 25, "slots": 3, "hp": 4350, "fDef": 120, "wDef": 120, "aDef": 200, "lvl": 102, "agiReq": 75, "hprPct": 37, "agi": 8, "fDefPct": 31, "wDefPct": 31, "jh": 1, "id": 3660}, {"name": "Wasteland Azalea", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Wasteland Azalea", "poison": 500, "sprint": -15, "slots": 3, "hp": 2750, "fDef": -75, "eDef": 75, "lvl": 101, "strReq": 45, "agiReq": 50, "atkTier": -1, "sdRaw": 140, "aDamPct": 25, "eDamPct": 25, "spRaw3": -6, "id": 3661}, {"name": "Tranquility", "type": "ring", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Tranquility", "hp": 550, "fDef": 50, "wDef": 50, "lvl": 101, "intReq": 45, "defReq": 45, "hprPct": 17, "sdPct": 5, "str": -3, "dex": -3, "spd": -7, "id": 3662}, {"name": "Misalignment", "type": "bracelet", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Misalignment", "lvl": 101, "strReq": 35, "dexReq": 45, "mr": 3, "dex": 3, "int": 3, "wDamPct": 10, "tDamPct": 6, "eDamPct": 6, "id": 3663}, {"name": "Grafted Eyestalk", "type": "necklace", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Grafted Eyestalk", "hp": -600, "tDef": -40, "eDef": -40, "lvl": 101, "agiReq": 40, "defReq": 40, "hprPct": -12, "sdPct": 8, "agi": 5, "def": 5, "spRaw1": -1, "id": 3664}, {"name": "Forbearance", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Forbearance", "lvl": 105, "dexReq": 60, "intReq": 60, "mr": 4, "ls": 120, "dex": 6, "int": 6, "wDamPct": -15, "tDamPct": -15, "id": 3665}, {"name": "Ingress", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Ingress", "aDef": 55, "eDef": 55, "lvl": 105, "strReq": 55, "agiReq": 55, "dex": 4, "int": 2, "def": 4, "sdRaw": 55, "aDamPct": 8, "eDamPct": 8, "id": 3666}, {"name": "Breakthrough", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Breakthrough", "fDef": -30, "tDef": -45, "eDef": -45, "lvl": 105, "intReq": 45, "agiReq": 45, "sdPct": 13, "ms": 6, "str": -4, "dex": -4, "def": -6, "sdRaw": 75, "spRaw2": -4, "id": 3667}, {"name": "Simulacrum", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Simulacrum", "hp": -800, "fDef": -90, "eDef": -70, "lvl": 105, "strReq": 55, "defReq": 45, "mr": 5, "spd": 8, "hprRaw": -150, "sdRaw": 150, "id": 3670}, {"name": "Medeis", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Medeis", "slots": 3, "hp": 2950, "fDef": 75, "wDef": 75, "aDef": -100, "tDef": 75, "eDef": -100, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "sdPct": 8, "dex": 10, "int": 10, "def": 10, "fDamPct": 8, "wDamPct": 8, "aDamPct": -75, "tDamPct": 8, "eDamPct": -75, "id": 1763}, {"name": "Roulette", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Roulette", "basedps": 29, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-58", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "dexReq": 40, "xpb": 8, "lb": 8, "dex": 8, "tDamPct": 888, "id": 2368}, {"name": "Prowess", "type": "bracelet", "tier": "Legendary", "majorIds": [], "quest": "The Qira Hive", "category": "accessory", "displayName": "Prowess", "set": "Master Hive", "hp": 425, "lvl": 100, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 1284}, {"name": "Caesura", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Caesura", "slots": 2, "hp": 2450, "wDef": -250, "tDef": 100, "eDef": 100, "lvl": 93, "strReq": 45, "dexReq": 60, "intReq": 30, "mr": -15, "sdPct": 10, "ms": -15, "str": 10, "int": 15, "sdRaw": 231, "tDamPct": 25, "eDamPct": 25, "id": 463}, {"name": "Gigabyte", "type": "necklace", "tier": "Legendary", "category": "accessory", "displayName": "Gigabyte", "thorns": 8, "hp": -512, "lvl": 93, "mr": -4, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "spd": 8, "hprRaw": 48, "fixID": true, "id": 731}, {"name": "Pro Tempore", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Pro Tempore", "slots": 4, "hp": 2350, "wDef": -50, "tDef": -50, "lvl": 88, "dexReq": 40, "intReq": 50, "mr": 10, "sdPct": 20, "ls": 165, "ms": -15, "int": 10, "sdRaw": 104, "id": 3577}, {"name": "Orange Lily", "type": "bow", "tier": "Legendary", "category": "weapon", "displayName": "Orange Lily", "basedps": 507.5, "slots": 3, "nDam": "75-140", "fDam": "0-0", "wDam": "165-235", "aDam": "0-0", "tDam": "0-0", "eDam": "165-235", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "intReq": 60, "mr": 10, "wDamPct": 20, "aDamPct": -150, "eDamPct": 20, "aDefPct": -100, "fixID": true, "spRaw3": -5, "spRaw4": 50, "id": 717}, {"name": "Brainwash", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Brainwash", "hp": 2800, "wDef": -220, "tDef": 100, "eDef": 70, "lvl": 96, "strReq": 40, "dexReq": 70, "hprPct": -40, "mr": 10, "sdPct": 10, "ms": 15, "str": 13, "int": -50, "sdRaw": 190, "wDamPct": -30, "tDamPct": 15, "id": 416}, {"name": "Second Wind", "type": "leggings", "tier": "Fabled", "majorIds": [], "category": "armor", "displayName": "Second Wind", "slots": 3, "hp": 6325, "fDef": 120, "aDef": 120, "tDef": -350, "eDef": -350, "lvl": 83, "agiReq": 40, "defReq": 65, "hprPct": -30, "ls": -475, "agi": 20, "spd": 20, "atkTier": 1, "id": 2973}, {"name": "Cumulonimbus", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Cumulonimbus", "slots": 3, "hp": 1800, "wDef": 70, "aDef": 70, "tDef": 70, "lvl": 94, "dexReq": 30, "intReq": 30, "agiReq": 30, "sdPct": 15, "dex": 10, "int": 10, "agi": 10, "spd": 25, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "id": 696}, {"name": "Morrowind", "type": "wand", "tier": "Legendary", "majorIds": [], "category": "weapon", "displayName": "Morrowind", "basedps": 135, "slots": 3, "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "agiReq": 45, "ref": 46, "agi": 14, "spd": 23, "sdRaw": 145, "aDamPct": 23, "eDamPct": -15, "aDefPct": 23, "id": 1818}, {"name": "Anima-Infused Helmet", "displayName": "Boreal-Patterned Crown", "type": "helmet", "tier": "Legendary", "quest": "The Qira Hive", "category": "armor", "set": "Master Hive", "slots": 2, "hp": 3000, "wDef": 150, "aDef": 150, "tDef": 150, "lvl": 100, "dexReq": 40, "intReq": 40, "agiReq": 40, "mr": 8, "sdPct": 20, "mdPct": -40, "str": -30, "def": -30, "sdRaw": 300, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "fixID": true, "id": 1267}, {"name": "Corsair", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Corsair", "slots": 2, "hp": 2900, "aDef": 110, "tDef": 80, "eDef": -140, "lvl": 99, "dexReq": 55, "agiReq": 35, "ms": 5, "dex": 8, "spd": 11, "eSteal": 4, "aDamPct": 12, "tDamPct": 10, "spPct1": -10, "spPct4": -14, "id": 658}, {"name": "Charging Flame", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Charging Flame", "basedps": 190, "slots": 2, "nDam": "20-40", "fDam": "20-140", "wDam": "40-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 12, "mdPct": 12, "expd": 24, "hpBonus": -1200, "fDamPct": 12, "wDamPct": 12, "tDefPct": -25, "spRaw2": -12, "id": 519}, {"name": "Aphotic", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aphotic", "slots": 2, "hp": 3200, "wDef": 150, "tDef": -150, "lvl": 98, "intReq": 100, "sdPct": 50, "dex": -80, "int": 5, "atkTier": -6, "spRaw3": -7, "id": 133}, {"name": "Silent Ballet", "type": "relik", "tier": "Unique", "majorIds": [], "category": "weapon", "displayName": "Silent Ballet", "basedps": 231, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "110-121", "tDam": "0-0", "eDam": "110-121", "atkSpd": "FAST", "lvl": 83, "strReq": 40, "agiReq": 40, "sdPct": -40000, "mdPct": 40, "sdRaw": -40000, "spPct1": -40, "spRaw1": -400, "spPct2": -40, "spRaw2": -400, "spPct3": -40, "spRaw3": -400, "spPct4": -40, "spRaw4": -400, "id": 3021}, {"name": "Rhythm of the Seasons", "type": "spear", "tier": "Fabled", "majorIds": ["RALLY"], "category": "weapon", "displayName": "Rhythm of the Seasons", "basedps": 165, "slots": 2, "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-140", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 80, "defReq": 60, "mr": 15, "def": 12, "hpBonus": 1800, "hprRaw": -660, "wDamPct": 25, "id": 3598}, {"name": "Sorrow", "type": "chestplate", "tier": "Rare", "category": "armor", "displayName": "Sorrow", "slots": 1, "hp": 1400, "wDef": 150, "tDef": -150, "lvl": 72, "intReq": 95, "mr": 5, "sdPct": 8, "ms": -20, "spRegen": 20, "wDamPct": 42, "fixID": true, "spRaw1": -8, "id": 666}, {"name": "Condensation", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Condensation", "hp": 2000, "wDef": 100, "tDef": -120, "lvl": 87, "intReq": 75, "sdPct": 30, "mdPct": -30, "int": 10, "tDefPct": -20, "spRaw3": -6, "id": 586}, {"name": "Augoeides", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Augoeides", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 63, "intReq": 65, "mr": 5, "xpb": 5, "lb": 8, "ref": 30, "spRegen": 10, "mdRaw": -52, "spRaw3": -5, "id": 169}, {"name": "Matryoshka Shell", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Matryoshka Shell", "slots": 18, "hp": 550, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 20, "lb": 20, "spd": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "spRaw1": -5, "id": 1764}, {"name": "Pure", "type": "wand", "tier": "Mythic", "majorIds": ["ENTROPY"], "category": "weapon", "displayName": "Pure", "basedps": 70, "nDam": "0-5", "fDam": "0-0", "wDam": "20-45", "aDam": "15-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 50, "agiReq": 30, "sdPct": 400, "mdPct": -100, "ms": 30, "xpb": 30, "ref": 20, "spRaw3": 6, "id": 1711}, {"name": "Resurgence", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Resurgence", "slots": 4, "hp": 4550, "fDef": 125, "wDef": 175, "lvl": 91, "intReq": 65, "defReq": 90, "mr": 30, "sdPct": -35, "mdPct": -45, "int": 25, "spd": -14, "spRegen": 20, "hprRaw": 390, "id": 1717}, {"name": "Galleon", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Galleon", "poison": 4231, "slots": 3, "hp": 4500, "wDef": 250, "aDef": -175, "eDef": 200, "lvl": 92, "strReq": 65, "intReq": 60, "mdPct": 45, "ms": 20, "lb": 20, "atkTier": -1, "eSteal": 15, "wDamPct": 36, "eDamPct": 36, "id": 1702}, {"name": "Boreal", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Boreal", "slots": 3, "hp": 5000, "fDef": 250, "aDef": 375, "lvl": 93, "agiReq": 65, "defReq": 75, "hprPct": 100, "mr": 10, "ref": 25, "spd": 25, "hprRaw": 269, "tDamPct": -75, "eDamPct": -75, "fDefPct": 50, "aDefPct": 50, "id": 1687}, {"name": "Freedom", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Freedom", "basedps": 485, "slots": 4, "nDam": "0-0", "fDam": "75-119", "wDam": "65-129", "aDam": "55-139", "tDam": "45-149", "eDam": "85-109", "atkSpd": "NORMAL", "lvl": 93, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "agi": 30, "spd": 15, "hpBonus": 1000, "sdRaw": 111, "mdRaw": 111, "id": 1695}, {"name": "Olympic", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Olympic", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "345-375", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "agiReq": 105, "agi": 25, "spd": 35, "aDamPct": 20, "aDefPct": 30, "spRaw1": -10, "spRaw2": -10, "jh": 6, "id": 1718}, {"name": "Guardian", "type": "spear", "tier": "Mythic", "majorIds": ["GUARDIAN"], "category": "weapon", "displayName": "Guardian", "basedps": 255, "thorns": 25, "slots": 3, "nDam": "50-90", "fDam": "165-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 110, "mr": 1, "def": 20, "hpBonus": 6000, "hprRaw": 585, "fDefPct": 20, "wDefPct": 20, "eDefPct": 20, "id": 1701}, {"name": "Hadal", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Hadal", "basedps": 1950, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "1750-2150", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 94, "intReq": 130, "mr": 30, "sdPct": 75, "spPct3": 112, "spPct4": 112, "id": 1703}, {"name": "Nullification", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Nullification", "basedps": 315, "poison": -7000, "slots": 3, "nDam": "0-0", "fDam": "36-90", "wDam": "46-80", "aDam": "28-98", "tDam": "22-104", "eDam": "60-66", "atkSpd": "FAST", "lvl": 95, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "ls": 495, "ms": 16, "ref": 80, "def": 40, "fDefPct": 143, "wDefPct": 143, "aDefPct": 143, "tDefPct": 143, "eDefPct": 143, "id": 1714}, {"name": "Idol", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Idol", "basedps": 280, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "230-330", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "intReq": 120, "mr": 10, "ref": 30, "int": 26, "spRegen": 25, "sdRaw": 264, "wDefPct": 15, "spRaw2": -50, "id": 1705}, {"name": "Dawnbreak", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Dawnbreak", "slots": 2, "hp": 4225, "fDef": 200, "wDef": -125, "aDef": -125, "tDef": 200, "lvl": 96, "dexReq": 65, "defReq": 65, "ls": 350, "ms": 12, "expd": 23, "atkTier": -20, "mdRaw": 2700, "fDamPct": 27, "tDamPct": 27, "id": 1691}, {"name": "Cataclysm", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Cataclysm", "basedps": 265, "thorns": 21, "slots": 3, "nDam": "40-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-305", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 96, "dexReq": 120, "dex": 20, "hpBonus": -6000, "eSteal": 5, "tDamPct": 17, "spRaw1": -1, "id": 1690}, {"name": "Grimtrap", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Grimtrap", "basedps": 570, "poison": 2000, "thorns": 70, "slots": 3, "nDam": "175-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "305-425", "atkSpd": "SLOW", "lvl": 96, "strReq": 100, "ls": 650, "ms": -10, "str": 15, "spRaw2": 1, "spRaw4": -10, "id": 1699}, {"name": "Weathered", "type": "dagger", "tier": "Mythic", "majorIds": ["ROVINGASSASSIN"], "category": "weapon", "displayName": "Weathered", "basedps": 245, "slots": 3, "nDam": "40-80", "fDam": "0-0", "wDam": "0-0", "aDam": "140-230", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 110, "ms": 16, "ref": 25, "agi": 15, "expd": -50, "spd": 25, "atkTier": 1, "aDamPct": 20, "id": 1726}, {"name": "Thrundacrack", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Thrundacrack", "basedps": 205, "slots": 4, "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-220", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "dexReq": 105, "hprPct": -60, "dex": 35, "spd": 9, "wDamPct": 60, "tDamPct": 25, "spRaw3": -6, "id": 1722}, {"name": "Lament", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Lament", "basedps": 265, "slots": 3, "nDam": "70-90", "fDam": "0-0", "wDam": "180-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "intReq": 110, "ls": -500, "ms": 40, "int": 20, "wDamPct": 80, "spPct1": -35, "id": 1710}, {"name": "Toxoplasmosis", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Toxoplasmosis", "basedps": 3, "poison": 10000, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-3", "atkSpd": "VERY_FAST", "lvl": 96, "strReq": 110, "ls": 500, "ms": 18, "lb": 20, "str": 40, "spd": 20, "id": 1724}, {"name": "Stardew", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Stardew", "slots": 2, "hp": 4075, "fDef": -100, "wDef": 150, "aDef": -100, "tDef": 150, "eDef": -100, "lvl": 97, "dexReq": 65, "intReq": 75, "mr": -9, "ms": 15, "ref": 25, "sdRaw": 313, "wDamPct": 35, "tDamPct": 35, "id": 1723}, {"name": "Divzer", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Divzer", "basedps": 299, "slots": 3, "nDam": "48-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "250-250", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 115, "ls": 973, "ms": 30, "dex": 37, "agi": -550, "def": -39, "atkTier": 1, "sdRaw": 253, "mdRaw": 536, "fDamPct": -550, "wDamPct": -550, "id": 1692}, {"name": "Inferno", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Inferno", "basedps": 950, "slots": 3, "nDam": "0-0", "fDam": "855-1045", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 105, "hprPct": -45, "mr": -1, "mdPct": 25, "def": 15, "spd": 25, "hpBonus": 1500, "mdRaw": 560, "fDamPct": 35, "wDefPct": -40, "spRaw1": -1, "id": 1707}, {"name": "Nirvana", "type": "dagger", "tier": "Mythic", "majorIds": ["ARCANES"], "category": "weapon", "displayName": "Nirvana", "basedps": 352.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "320-385", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 110, "mr": 10, "sdPct": 25, "mdPct": -80, "ms": -20, "ref": 15, "int": 40, "hpBonus": -2000, "id": 1712}, {"name": "Collapse", "type": "spear", "tier": "Mythic", "majorIds": ["FISSION"], "category": "weapon", "displayName": "Collapse", "basedps": 827.5, "slots": 3, "nDam": "40-65", "fDam": "0-310", "wDam": "0-310", "aDam": "0-310", "tDam": "0-310", "eDam": "0-310", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "mdPct": 50, "ms": 18, "str": 45, "expd": 250, "fDefPct": -65, "wDefPct": -65, "aDefPct": -65, "tDefPct": -65, "eDefPct": -65, "id": 1693}, {"name": "Gaia", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Gaia", "basedps": 620, "poison": 2500, "thorns": 15, "slots": 3, "nDam": "150-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "380-490", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 105, "mdPct": 15, "str": 25, "sdRaw": -275, "mdRaw": 575, "spRaw4": -9, "id": 1700}, {"name": "Absolution", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Absolution", "basedps": 200, "nDam": "0-0", "fDam": "195-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "defReq": 115, "mr": 16, "hpBonus": 3000, "spRegen": 23, "fDamPct": 20, "wDamPct": 200, "tDefPct": 45, "eDefPct": 45, "spRaw1": -20, "id": 1682}, {"name": "Spring", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Spring", "basedps": 422.5, "slots": 3, "nDam": "150-185", "fDam": "0-0", "wDam": "200-310", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "intReq": 120, "mr": 30, "str": 15, "dex": -40, "int": 15, "wDamPct": 20, "tDamPct": -50, "id": 1721}, {"name": "Monster", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Monster", "basedps": 315, "slots": 3, "nDam": "110-140", "fDam": "160-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "defReq": 110, "mdPct": 40, "ls": 500, "ms": 10, "def": 40, "hpBonus": 3000, "fDamPct": 25, "spRaw1": 4, "id": 1713}, {"name": "Revenant", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Revenant", "slots": 3, "hp": 7000, "aDef": 70, "eDef": 70, "lvl": 99, "strReq": 70, "agiReq": 70, "mdPct": -70, "ms": 10, "ref": 120, "spd": 40, "hpBonus": -2500, "mdRaw": 520, "aDamPct": 40, "eDamPct": 40, "spPct4": -28, "id": 1719}, {"name": "Fatal", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fatal", "basedps": 180.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-360", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "dexReq": 110, "sdPct": 25, "ms": 1, "dex": 25, "spd": 15, "spPct1": 28, "spPct2": -49, "id": 1698}, {"name": "Warp", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Warp", "basedps": 260, "slots": 3, "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "190-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "agiReq": 130, "hprPct": -200, "mr": -45, "ref": 90, "agi": 20, "expd": 50, "spd": 180, "hprRaw": -600, "aDamPct": 15, "spRaw1": 4, "spRaw2": -299, "id": 1729}, {"name": "Oblivion", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Oblivion", "basedps": 1699.5, "slots": 4, "nDam": "1-200", "fDam": "0-0", "wDam": "600-999", "aDam": "0-0", "tDam": "600-999", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 101, "dexReq": 75, "intReq": 65, "mr": -30, "ms": 15, "dex": 15, "expd": 40, "spRegen": 40, "sdRaw": 265, "spRaw2": -20, "id": 3647}, {"name": "Epoch", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Epoch", "basedps": 1680, "sprint": 70, "slots": 3, "nDam": "500-620", "fDam": "0-0", "wDam": "0-0", "aDam": "520-600", "tDam": "480-640", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 102, "dexReq": 70, "agiReq": 70, "sdPct": 40, "ls": 825, "ms": -1, "spd": -20, "mdRaw": 769, "spRaw1": -1, "spRaw4": -1, "id": 3645}, {"name": "Fantasia", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fantasia", "basedps": 1350, "slots": 3, "nDam": "0-0", "fDam": "185-295", "wDam": "200-280", "aDam": "215-265", "tDam": "230-250", "eDam": "170-310", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": -20, "sdPct": 30, "ms": -20, "int": 50, "spPct1": -27, "spPct2": -27, "spPct3": -27, "spPct4": -27, "id": 1697}, {"name": "Slayer", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Slayer", "slots": 2, "hp": 3775, "wDef": -100, "lvl": 94, "dexReq": 75, "agiReq": 60, "dex": 20, "spd": 27, "atkTier": 1, "eSteal": 10, "hprRaw": -270, "mdRaw": 285, "spPct3": -30, "id": 1716}, {"name": "Immolation", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Immolation", "basedps": 640, "slots": 3, "nDam": "0-0", "fDam": "200-440", "wDam": "0-0", "aDam": "310-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 101, "agiReq": 80, "defReq": 80, "hprPct": -180, "agi": 50, "def": 50, "hpBonus": -2750, "fDamPct": 45, "wDamPct": -1000, "aDamPct": 45, "spPct3": -14, "id": 3646}, {"name": "Convergence", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Convergence", "basedps": 300, "slots": 3, "nDam": "70-90", "fDam": "105-115", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 104, "intReq": 65, "defReq": 75, "hprPct": 43, "tDamPct": 55, "eDamPct": 55, "aDefPct": 35, "spPct3": -45, "sprintReg": 43, "id": 3643}, {"name": "Guillotine", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Guillotine", "slots": 4, "hp": 1000, "fDef": 70, "wDef": 70, "aDef": -220, "tDef": 70, "eDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "defReq": 45, "mr": 10, "sdPct": 10, "mdPct": 23, "ls": 215, "ms": 10, "str": 5, "dex": 5, "int": 5, "agi": -99, "def": 5, "hpBonus": -1337, "sdRaw": 150, "aDamPct": -50, "aDefPct": -15, "id": 3588}, {"name": "Prayer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Prayer", "slots": 2, "hp": 1280, "wDef": 100, "tDef": -100, "lvl": 68, "intReq": 45, "sdPct": 12, "xpb": 8, "int": 5, "spRegen": 8, "fDamPct": -16, "wDefPct": 12, "spRaw3": -5, "id": 2155}, {"name": "Symphony", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Symphony", "slots": 2, "hp": 1350, "fDef": 80, "wDef": 80, "tDef": -90, "eDef": -90, "lvl": 72, "intReq": 50, "defReq": 50, "hprPct": 20, "sdPct": 10, "mdPct": -10, "xpb": 12, "ref": 17, "hprRaw": 70, "spRaw4": -6, "id": 3196}, {"name": "Entamyx", "type": "leggings", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Entamyx", "slots": 3, "hp": 2150, "fDef": -100, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": 150, "lvl": 76, "strReq": 50, "intReq": 50, "agiReq": 50, "dex": -20, "def": -20, "wDamPct": 15, "aDamPct": 15, "eDamPct": 15, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw1": -4, "spRaw3": -4, "id": 2638}, {"name": "Gysdep", "type": "helmet", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Gysdep", "slots": 3, "hp": 2000, "fDef": 150, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": -100, "lvl": 74, "intReq": 50, "agiReq": 50, "defReq": 50, "str": -20, "dex": -20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -3, "id": 2642}, {"name": "Aquarius", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aquarius", "slots": 3, "hp": 2550, "fDef": -100, "lvl": 95, "intReq": 110, "mr": 25, "mdPct": -20, "spRaw1": -7, "id": 126}, {"name": "Scaldsteppers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Scaldsteppers", "slots": 2, "hp": 2325, "fDef": 80, "wDef": 110, "aDef": -90, "tDef": -100, "lvl": 90, "intReq": 40, "defReq": 30, "sdPct": 20, "int": 7, "expd": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": -12, "spRaw1": -6, "id": 2956}, {"name": "Steamstone", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Steamstone", "slots": 2, "hp": 2900, "fDef": 75, "wDef": 75, "tDef": -130, "eDef": 50, "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 25, "ms": 5, "int": 7, "def": 8, "aDamPct": -10, "tDamPct": -10, "eDamPct": 16, "fDefPct": 8, "wDefPct": 8, "fixID": true, "spRaw3": -6, "spRaw4": -3, "id": 2821}, {"name": "Leviathan", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Leviathan", "slots": 2, "hp": 2850, "wDef": 90, "aDef": -90, "tDef": -100, "eDef": 100, "lvl": 97, "strReq": 45, "intReq": 45, "str": 12, "atkTier": 1, "eSteal": 7, "wDamPct": 19, "eDamPct": 19, "tDefPct": -10, "spRaw3": -6, "id": 1634}, {"name": "The Courier's Cape", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "The Courier's Cape", "slots": 3, "hp": 1900, "aDef": 50, "lvl": 86, "agiReq": 70, "mr": 10, "xpb": 15, "lb": 10, "agi": 10, "spd": 20, "aDamPct": 23, "aDefPct": 15, "eDefPct": 10, "id": 3261}, {"name": "Exhibition", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Exhibition", "fDef": -30, "wDef": 60, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 105, "intReq": 80, "mr": -10, "spRaw1": -2, "spRaw2": -2, "spRaw3": -2, "spRaw4": -2, "id": 3669}, {"name": "Ambivalence", "type": "necklace", "tier": "Legendary", "majorIds": [], "category": "accessory", "displayName": "Ambivalence", "fDef": 70, "aDef": 70, "tDef": 70, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "sdPct": 50, "int": -100, "wDamPct": 25, "fixID": true, "spPct1": 100, "spPct2": 100, "spPct3": 100, "spPct4": 100, "id": 3618}, {"name": "Conduit of Spirit", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Conduit of Spirit", "hp": 2800, "aDef": 150, "lvl": 93, "agiReq": 105, "mr": 5, "sdPct": 25, "ms": 15, "ref": 25, "spRegen": 50, "aDamPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -5, "id": 639}, {"name": "Ossuary", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Ossuary", "thorns": 30, "slots": 2, "hp": 2550, "aDef": 90, "tDef": 90, "lvl": 84, "ls": 245, "spd": 15, "sdRaw": 170, "aDamPct": 12, "tDamPct": 15, "fixID": true, "spRaw3": -4, "id": 629}, {"name": "Far Cosmos", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Far Cosmos", "slots": 5, "hp": 3500, "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "str": 9, "dex": 9, "int": 9, "agi": 9, "def": 9, "spPct2": -6, "id": 1022}, {"name": "Ophiolite", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Ophiolite", "slots": 4, "hp": 2400, "fDef": 80, "wDef": -60, "aDef": 80, "tDef": -120, "eDef": -60, "lvl": 98, "strReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 20, "sdPct": 14, "mdPct": 40, "ls": -235, "str": 5, "dex": -99, "int": 5, "agi": 5, "def": 5, "spd": -20, "hprRaw": 170, "tDefPct": -20, "spRaw1": -6, "id": 3596}, {"name": "Ionosphere", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Ionosphere", "slots": 3, "hp": 2850, "fDef": 70, "aDef": -110, "tDef": 90, "lvl": 97, "dexReq": 55, "hprPct": -15, "ls": 190, "ms": 5, "dex": 7, "spd": 11, "tDamPct": 21, "eDefPct": -15, "spRaw1": -5, "id": 1466}, {"name": "Dragon's Eye Bracelet", "type": "bracelet", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Dragon's Eye Bracelet", "set": "Grookwarts", "fDef": 25, "lvl": 60, "defReq": 40, "xpb": 10, "expd": 5, "fDamPct": 11, "wDefPct": -8, "spRaw3": -3, "id": 1879}, {"name": "Draoi Fair", "type": "ring", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Draoi Fair", "set": "Grookwarts", "wDef": 20, "eDef": 20, "lvl": 60, "strReq": 25, "intReq": 25, "xpb": 10, "hprRaw": 30, "spRaw1": -3, "id": 1882}, {"name": "Renda Langit", "type": "necklace", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Renda Langit", "set": "Grookwarts", "hp": 230, "aDef": 30, "lvl": 60, "agiReq": 40, "xpb": 10, "spd": 12, "eDefPct": -8, "spRaw2": -3, "spRaw4": -3, "id": 1931}, {"name": "Cloudwalkers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Cloudwalkers", "sprint": 15, "slots": 3, "aDef": 100, "lvl": 94, "agiReq": 50, "sdPct": 40, "xpb": 10, "spd": 30, "aDamPct": 30, "aDefPct": 20, "fixID": true, "spRaw1": -5, "id": 2510}, {"name": "Harmony", "type": "leggings", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Harmony", "slots": 2, "hp": 2650, "fDef": 180, "wDef": 180, "tDef": 180, "eDef": 180, "lvl": 84, "agiReq": 65, "sdPct": 9, "mdPct": -18, "spd": 18, "spRegen": 18, "aDefPct": 45, "spRaw3": -5, "id": 1314}, {"name": "Detachment", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Detachment", "aDef": 60, "tDef": 60, "lvl": 105, "dexReq": 55, "agiReq": 60, "spd": 13, "sdRaw": -65, "mdRaw": -85, "spPct4": -19, "id": 3668}, {"name": "Roridula", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Roridula", "slots": 2, "hp": 3675, "fDef": -150, "eDef": 150, "lvl": 104, "strReq": 55, "intReq": 55, "ms": 8, "xpb": 25, "str": 10, "spd": 15, "wDamPct": 25, "tDamPct": -30, "spPct4": 14, "id": 3659}, {"name": "Panic Zealot", "tier": "Fabled", "type": "relik", "material": "273:7", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 3, "lore": "They must know what you went through. They must suffer the same as you did.", "drop": "never", "restrict": "Untradable", "nDam": "46-60", "fDam": "0-0", "wDam": "0-0", "aDam": "43-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 101, "agiReq": 85, "spd": 30, "atkTier": 3, "hpBonus": -5000, "tDamPct": -30, "spPct1": -100, "spPct2": -100, "spPct3": -100, "id": 3600}, {"name": "The Nothing", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-1", "wDam": "0-0", "aDam": "0-1", "tDam": "0-1", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "dexReq": 55, "defReq": 55, "ls": 700, "ms": 15, "int": -25, "spd": 10, "tSdRaw": 500, "fSdRaw": 500, "aSdRaw": 500, "fixID": true, "spRaw3": -10, "id": 781}, {"name": "Dondasch", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3375, "aDef": 150, "eDef": 150, "lvl": 100, "strReq": 50, "agiReq": 50, "str": 20, "spd": 27, "spRegen": 15, "mdRaw": 280, "fDamPct": -100, "aDamPct": 25, "eDamPct": 25, "id": 0}, {"name": "Eidolon", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "520-570", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "agiReq": 45, "ms": 5, "xpb": 10, "agi": 15, "spd": 30, "spRegen": 15, "fDamPct": -20, "aDefPct": 30, "tDefPct": 25, "id": 1}, {"name": "Nona", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-85", "tDam": "0-0", "eDam": "62-85", "atkSpd": "SUPER_FAST", "lvl": 95, "strReq": 50, "agiReq": 40, "xpb": 10, "agi": 13, "spd": 25, "atkTier": 1, "spRegen": 15, "hprRaw": -180, "sdRaw": 90, "mdRaw": 100, "fDefPct": -100, "id": 2}, {"name": "Breakbore", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-130", "eDam": "60-130", "atkSpd": "SLOW", "lvl": 90, "strReq": 35, "dexReq": 35, "mdPct": 30, "xpb": 10, "lb": 10, "str": 13, "expd": 57, "tDamPct": 20, "wDefPct": -20, "aDefPct": -20, "id": 4}, {"name": "Tera", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3225, "aDef": -200, "tDef": 100, "eDef": 100, "lvl": 90, "strReq": 50, "dexReq": 50, "xpb": 10, "lb": 20, "str": 10, "dex": 10, "tDamPct": 36, "eDamPct": 36, "id": 3}, {"name": "Summa", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": -25, "tDef": -25, "lvl": 95, "mr": 5, "xpb": 10, "str": 1, "dex": 4, "agi": 1, "def": 4, "hprRaw": -35, "type": "ring", "id": 5}, {"name": "Helm Splitter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "714-1114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 60, "mdPct": 150, "xpb": 10, "lb": 10, "str": 20, "atkTier": -1, "sdRaw": -2000, "id": 8}, {"name": "Back-up Plan", "displayName": "Back-Up Plan", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 625, "lvl": 70, "defReq": 50, "xpb": 10, "agi": 7, "def": 7, "type": "bracelet", "id": 7}, {"name": "Quick-Strike Leggings", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1525, "lvl": 70, "classReq": "Assassin", "dexReq": 60, "dex": 20, "spd": 14, "atkTier": 1, "eDefPct": -14, "id": 6}, {"name": "Greenhoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "strReq": 10, "agiReq": 5, "mdPct": 15, "str": 7, "spd": 12, "eDamPct": 10, "id": 11}, {"name": "Durum's Serenity", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "wDef": 7, "eDef": 7, "lvl": 25, "strReq": 5, "intReq": 10, "xpb": 10, "str": 5, "int": 7, "spRegen": 12, "type": "necklace", "id": 10}, {"name": "The Scarecrow's Vest", "tier": "Legendary", "type": "chestplate", "thorns": 60, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": -5, "lvl": 20, "ref": 40, "def": 7, "spd": -7, "hpBonus": 58, "id": 13}, {"name": "Kahontsi Ohstyen", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 60, "strReq": 80, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "sdPct": 20, "xpb": 10, "lb": 10, "dex": -15, "expd": 35, "spd": 20, "tDamPct": -100, "id": 9}, {"name": "Onenya Hronkas", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1750, "fDef": 100, "wDef": -60, "aDef": -60, "eDef": 100, "lvl": 60, "strReq": 30, "defReq": 85, "hprPct": 20, "mdPct": 40, "str": 7, "def": 7, "spd": -12, "atkTier": -1, "hprRaw": 70, "id": 15}, {"name": "Ohonte Kerhite", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "intReq": 100, "defReq": 15, "hprPct": 25, "mr": 15, "sdPct": 25, "mdPct": -75, "xpb": 10, "int": 13, "hpBonus": 770, "spRegen": 25, "wDamPct": 45, "id": 12}, {"name": "Blade of Shade", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-55", "fDam": "65-80", "wDam": "0-0", "aDam": "55-90", "tDam": "40-105", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "dexReq": 20, "agiReq": 20, "defReq": 20, "ls": 225, "ms": 10, "xpb": 10, "spd": 20, "hpBonus": -250, "hprRaw": -70, "fDamPct": 20, "aDamPct": 20, "id": 17}, {"name": "Shackle of Shade", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 50, "tDef": 50, "lvl": 70, "dexReq": 10, "defReq": 10, "xpb": 10, "wDefPct": -3, "aDefPct": 9, "eDefPct": -3, "type": "bracelet", "id": 16}, {"name": "Plague Mask", "tier": "Legendary", "type": "helmet", "poison": 400, "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 925, "fDef": 10, "wDef": 10, "aDef": 70, "tDef": 10, "eDef": 70, "lvl": 55, "hprPct": 20, "sdPct": -10, "mdPct": -15, "ls": 95, "xpb": 10, "def": 7, "spd": -15, "id": 20}, {"name": "Plague Staff", "tier": "Fabled", "type": "wand", "majorIds": ["PLAGUE"], "poison": 1800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "intReq": 50, "int": 20, "hprRaw": 100, "id": 21}, {"name": "Shadestep", "tier": "Legendary", "type": "boots", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": -275, "aDef": 100, "tDef": 120, "lvl": 70, "classReq": "Archer", "dexReq": 30, "agiReq": 60, "ls": 175, "ref": 50, "agi": 13, "spd": 30, "hprRaw": -45, "mdRaw": 195, "id": 14}, {"name": "Purification Bead", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 55, "defReq": 20, "hprPct": 10, "def": 5, "spRegen": 5, "hprRaw": 30, "type": "necklace", "id": 18}, {"name": "Anxiolytic", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3880, "fDef": -125, "wDef": 150, "aDef": 150, "tDef": 125, "eDef": -175, "lvl": 101, "strReq": 35, "dexReq": 40, "intReq": 50, "agiReq": 50, "defReq": 35, "mr": 20, "dex": 15, "int": 10, "agi": 12, "spRaw1": 5, "spRaw3": 5, "spRaw4": 5, "sprintReg": 13, "id": 3629}, {"name": "Deadeye", "tier": "Fabled", "type": "bow", "majorIds": ["HAWKEYE"], "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "577-578", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 45, "xpb": 10, "dex": 30, "id": 19}, {"name": "Redrock Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 425, "fDef": 25, "lvl": 40, "defReq": 30, "xpb": 11, "str": 9, "fDamPct": 19, "fDefPct": 19, "id": 23}, {"name": "Sundown Poncho", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 25, "tDef": 30, "lvl": 40, "dexReq": 15, "defReq": 15, "mdPct": 34, "xpb": 11, "dex": 9, "def": 9, "atkTier": -1, "fDamPct": 30, "tDamPct": 30, "wDefPct": -25, "id": 24}, {"name": "Crossbolt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "mdPct": 50, "spd": -5, "sdRaw": -25, "id": 22}, {"name": "Dissociation", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 101, "mr": 10, "mdPct": 60, "str": -35, "int": -20, "def": -35, "hpBonus": 3550, "sdRaw": 231, "aDefPct": 75, "tDefPct": 75, "spRaw3": -5, "id": 3628}, {"name": "Obolus", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 25, "ls": 38, "xpb": 10, "lb": 30, "def": 9, "spRegen": 20, "hprRaw": 42, "id": 25}, {"name": "Haros' Oar", "tier": "Legendary", "type": "wand", "poison": 75, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-18", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 15, "sdPct": 15, "ms": 10, "xpb": 10, "dex": 7, "wDamPct": 11, "id": 28}, {"name": "Stave of the Legends", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-70", "fDam": "10-40", "wDam": "20-30", "aDam": "0-0", "tDam": "5-45", "eDam": "15-35", "atkSpd": "NORMAL", "lvl": 70, "mr": 10, "sdPct": 20, "str": 10, "dex": 10, "int": 10, "def": 10, "fDefPct": 25, "wDefPct": 25, "tDefPct": 25, "eDefPct": 25, "id": 26}, {"name": "Legend Guard's Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 70, "classReq": "Warrior", "strReq": 30, "defReq": 50, "sdPct": -10, "mdPct": 20, "xpb": 15, "str": 7, "def": 10, "spd": -10, "hpBonus": 339, "id": 27}, {"name": "Trainer's Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 70, "hprPct": 20, "sdPct": -7, "mdPct": -7, "xpb": 12, "hprRaw": 20, "type": "necklace", "id": 33}, {"name": "Binding Brace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 25, "lvl": 50, "dexReq": 25, "sdPct": -4, "ms": -5, "xpb": 10, "dex": 7, "spd": 12, "tDamPct": 15, "type": "bracelet", "id": 32}, {"name": "Constrict Collar", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 45, "xpb": 15, "def": 7, "hpBonus": 96, "hprRaw": -10, "type": "necklace", "id": 29}, {"name": "Marius' Prison", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "lvl": 50, "intReq": 45, "ls": 58, "ms": 20, "xpb": 10, "spd": -20, "atkTier": -1, "sdRaw": 80, "mdRaw": 105, "id": 31}, {"name": "Capsid Frame", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 165, "fDef": 60, "lvl": 60, "intReq": 50, "defReq": 40, "hprPct": 30, "mr": 15, "int": 10, "expd": 25, "fDamPct": 30, "wDamPct": 35, "aDefPct": -90, "id": 3553}, {"name": "Shackles of the Beast", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 525, "wDef": -60, "aDef": 50, "tDef": 50, "lvl": 45, "strReq": 10, "defReq": 20, "mr": -5, "sdPct": -10, "mdPct": 25, "str": 7, "def": 7, "expd": 20, "hpBonus": 525, "id": 30}, {"name": "Phage Pins", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -260, "fDef": 75, "eDef": 75, "lvl": 65, "defReq": 60, "mr": 20, "str": 15, "spd": 15, "hprRaw": 108, "fDamPct": 15, "eDamPct": 15, "spPct2": -47, "id": 3555}, {"name": "Bonder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "210-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "hprPct": 30, "mr": 20, "sdPct": -20, "mdPct": -20, "expd": -500, "spRegen": 20, "hprRaw": 200, "id": 37}, {"name": "Crystal Coil", "tier": "Legendary", "type": "chestplate", "poison": 600, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 190, "eDef": 70, "lvl": 60, "strReq": 50, "ms": 10, "def": 15, "spd": -10, "atkTier": -13, "mdRaw": 1100, "eDamPct": 20, "id": 3554}, {"name": "Braker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "405-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "sdPct": -100, "str": 13, "expd": 77, "spd": -20, "hpBonus": -2050, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 34}, {"name": "About-Face", "tier": "Unique", "type": "chestplate", "thorns": 333, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "fDef": 60, "eDef": 60, "lvl": 86, "strReq": 40, "defReq": 40, "sdPct": -55, "mdPct": -55, "ls": 195, "ms": 10, "ref": 333, "str": 10, "def": 10, "hprRaw": 160, "id": 40}, {"name": "Lower", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "350-430", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "str": 10, "spRaw1": 55, "spRaw2": -15, "spRaw3": -15, "spRaw4": -15, "id": 35}, {"name": "Abyssal Walkers", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": 80, "wDef": -100, "aDef": -80, "tDef": 80, "lvl": 71, "dexReq": 25, "defReq": 25, "ls": 100, "dex": 7, "expd": 5, "spRegen": -15, "eDamPct": -8, "id": 46}, {"name": "Slider", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "ms": 15, "dex": -30, "agi": 15, "spd": 40, "eSteal": 5, "sdRaw": 160, "mdRaw": -50, "id": 36}, {"name": "Accelerator", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 3500, "aDef": -150, "tDef": -150, "lvl": 92, "sdPct": -15, "mdPct": -20, "dex": 10, "agi": 10, "spd": 15, "atkTier": 1, "aDamPct": 11, "tDamPct": 11, "id": 74}, {"name": "Absorption", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "40-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "dexReq": 25, "intReq": 15, "mr": 5, "ms": 5, "xpb": 15, "id": 41}, {"name": "Ace of Spades", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-75", "wDam": "0-0", "aDam": "0-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "agiReq": 50, "defReq": 45, "mr": -15, "agi": 13, "def": 10, "spd": 15, "hpBonus": 2700, "fDamPct": 15, "aDamPct": 25, "id": 44}, {"name": "Acid", "tier": "Unique", "poison": 550, "category": "accessory", "drop": "lootchest", "hp": -250, "wDef": -30, "lvl": 99, "def": -2, "type": "ring", "id": 43}, {"name": "Achromatic Gloom", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 98, "sdPct": 14, "mdPct": 14, "str": -4, "dex": -4, "int": -4, "agi": -4, "def": -4, "sdRaw": 85, "mdRaw": 65, "type": "necklace", "id": 42}, {"name": "Acidstream", "tier": "Rare", "type": "bow", "poison": 311, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "31-37", "aDam": "0-0", "tDam": "0-0", "eDam": "12-14", "atkSpd": "SLOW", "lvl": 31, "ms": 5, "wDefPct": -35, "eDefPct": 15, "id": 45}, {"name": "Acrobat", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "80-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 10, "agiReq": 40, "mdPct": 5, "agi": 7, "spd": 10, "aDamPct": 4, "tDamPct": 6, "fDefPct": -12, "id": 48}, {"name": "Adamantite", "tier": "Legendary", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -20, "lvl": 70, "hprPct": 25, "str": 7, "def": 13, "hpBonus": 1350, "fDamPct": -3, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -3, "id": 47}, {"name": "Adanac", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "wDef": 50, "aDef": 50, "tDef": -50, "lvl": 63, "intReq": 30, "agiReq": 30, "mr": 5, "spd": -15, "hprRaw": 48, "wDefPct": 6, "aDefPct": 6, "id": 49}, {"name": "Adder Stone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 375, "wDef": 25, "eDef": 25, "lvl": 80, "strReq": 30, "intReq": 40, "mr": 5, "xpb": 10, "spd": -5, "hprRaw": 80, "tDamPct": -6, "type": "necklace", "id": 50}, {"name": "Adigard's Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -5, "wDef": 15, "lvl": 30, "mr": 5, "xpb": 12, "agi": 5, "spd": 4, "tDefPct": -4, "id": 51}, {"name": "Admiral's Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 170, "wDef": -10, "tDef": -10, "lvl": 21, "defReq": 15, "xpb": 7, "def": 8, "spd": -6, "hprRaw": 7, "id": 52}, {"name": "Ado Saki", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 105, "wDef": 10, "tDef": -8, "lvl": 20, "intReq": 5, "ls": -6, "ms": 5, "xpb": 12, "ref": 3, "id": 72}, {"name": "Abandoned Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "sdPct": 6, "lb": 5, "id": 39}, {"name": "Stinger", "tier": "Legendary", "type": "bow", "poison": 2000, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "1200-1555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "ls": 735, "ms": -5, "expd": 30, "atkTier": -99, "hprRaw": -240, "id": 38}, {"name": "Adrift", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-33", "fDam": "0-0", "wDam": "70-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 63, "intReq": 25, "mdPct": -15, "ref": 30, "spRegen": 30, "wDefPct": 40, "aDefPct": 15, "tDefPct": 15, "id": 53}, {"name": "Adrenaline", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2200, "fDef": -30, "wDef": -30, "aDef": -65, "tDef": -100, "eDef": -65, "lvl": 88, "intReq": 60, "defReq": 60, "sdPct": 17, "mdPct": -25, "ls": -450, "ms": 15, "int": 6, "def": 6, "spd": 13, "sdRaw": 170, "mdRaw": -170, "id": 3589}, {"name": "Aeolipile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-121", "wDam": "110-162", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "intReq": 35, "defReq": 35, "mr": 5, "sdPct": 10, "mdPct": -10, "int": 9, "fDefPct": 20, "wDefPct": 10, "eDefPct": -15, "id": 54}, {"name": "Adventurous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 60, "agiReq": 30, "xpb": 5, "ref": 5, "spd": 8, "type": "bracelet", "id": 56}, {"name": "Aeolian", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-50", "fDam": "0-0", "wDam": "0-0", "aDam": "14-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "agiReq": 10, "str": -3, "agi": 5, "spd": 5, "aDamPct": 4, "id": 57}, {"name": "Aeolus", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": -30, "lvl": 41, "agiReq": 25, "xpb": 15, "def": -7, "spd": 17, "aDamPct": 6, "fDefPct": -15, "id": 55}, {"name": "Aerodynamics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1400, "fDef": -70, "aDef": 70, "tDef": 60, "eDef": -80, "lvl": 73, "dexReq": 35, "agiReq": 50, "mdPct": -10, "agi": 8, "spd": 16, "aDefPct": 12, "tDefPct": 10, "id": 60}, {"name": "Aerokinesis", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-190", "fDam": "0-0", "wDam": "0-0", "aDam": "100-190", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "agiReq": 75, "agi": 5, "sdRaw": 120, "fDamPct": -29, "wDamPct": -29, "aDamPct": 20, "tDamPct": -29, "eDamPct": -29, "id": 59}, {"name": "Aeronaut", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": -10, "aDef": 10, "lvl": 29, "agiReq": 15, "ref": 7, "agi": 5, "spd": 9, "aDamPct": 7, "fDefPct": -12, "id": 62}, {"name": "Aersectra", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "96-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "41-240", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "agiReq": 40, "sdPct": 21, "def": -10, "expd": 20, "hpBonus": -1000, "mdRaw": 115, "fDamPct": -30, "aDamPct": 24, "aDefPct": 20, "id": 64}, {"name": "Aether", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-70", "tDam": "0-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "spd": 15, "aDamPct": 15, "tDamPct": 15, "fDefPct": -15, "eDefPct": -15, "id": 61}, {"name": "Aerosol", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-92", "fDam": "0-0", "wDam": "0-0", "aDam": "50-125", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "agiReq": 40, "agi": 8, "def": -6, "mdRaw": 75, "fDamPct": -60, "aDamPct": 12, "fDefPct": -60, "id": 58}, {"name": "Affrettando", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-15", "fDam": "0-0", "wDam": "0-0", "aDam": "14-31", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 30, "agiReq": 20, "str": -5, "spd": 21, "mdRaw": 20, "aDamPct": 5, "tDamPct": 15, "eDefPct": -30, "id": 63}, {"name": "Agave", "tier": "Rare", "thorns": 10, "category": "accessory", "drop": "lootchest", "hp": -275, "tDef": 30, "eDef": 30, "lvl": 97, "strReq": 35, "dexReq": 35, "atkTier": -3, "sdRaw": 59, "mdRaw": 85, "type": "ring", "id": 3594}, {"name": "Aggression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": 10, "lvl": 44, "strReq": 15, "mdPct": 7, "str": 4, "expd": 5, "type": "bracelet", "id": 67}, {"name": "Afterimage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "40-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 90, "sdPct": 14, "agi": 9, "spd": 22, "atkTier": 1, "aDamPct": 14, "fDefPct": -12, "wDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 65}, {"name": "Agitation", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "24-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "dexReq": 50, "sdPct": 15, "mdPct": 23, "expd": 19, "hprRaw": -60, "tDamPct": 20, "tDefPct": -70, "id": 66}, {"name": "Air Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "45-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 50, "aDamPct": 15, "aDefPct": 15, "id": 69}, {"name": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 68}, {"name": "Air Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "40-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 70, "aDamPct": 15, "aDefPct": 15, "id": 71}, {"name": "Alarm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "7-10", "tDam": "4-13", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 41, "dexReq": 15, "agiReq": 15, "str": -5, "dex": 5, "agi": 5, "mdRaw": 13, "eDamPct": -14, "id": 79}, {"name": "Air Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "20-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 70}, {"name": "Ajax", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 525, "aDef": -30, "eDef": 30, "lvl": 45, "strReq": 25, "mdPct": 15, "str": 13, "agi": -10, "spd": -10, "sdRaw": -40, "mdRaw": 85, "id": 73}, {"name": "Alaxica", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "27-56", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 40, "sdPct": 15, "xpb": 15, "ref": 10, "agi": 8, "spd": 10, "spRegen": 5, "fDamPct": -20, "wDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 76}, {"name": "Albacore", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": 80, "lvl": 97, "intReq": 45, "defReq": 35, "mr": 5, "ref": 8, "int": 5, "def": 5, "sdRaw": 154, "fDamPct": 13, "wDamPct": 13, "eDefPct": -18, "id": 75}, {"name": "Albedo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2800, "fDef": 100, "wDef": 125, "aDef": 150, "tDef": 125, "eDef": 100, "lvl": 85, "agiReq": 60, "ref": 65, "agi": 10, "fDefPct": 21, "wDefPct": 18, "aDefPct": 15, "tDefPct": 18, "eDefPct": 21, "id": 77}, {"name": "Aldo", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-104", "fDam": "0-0", "wDam": "31-45", "aDam": "71-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "xpb": 19, "lb": 19, "int": 5, "agi": 4, "hpBonus": -190, "wDamPct": 10, "id": 78}, {"name": "Albakaya", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "8-12", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "hprPct": 10, "mr": 5, "hpBonus": 40, "fDefPct": 10, "wDefPct": -10, "id": 125}, {"name": "Alice's Sleeve", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 14, "hprPct": 6, "mdPct": -6, "def": 4, "type": "bracelet", "id": 80}, {"name": "Aldorei's Tear", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 50, "aDef": -10, "tDef": -50, "eDef": 50, "lvl": 77, "strReq": 10, "intReq": 10, "ms": 5, "str": 8, "spd": -5, "id": 83}, {"name": "Aldorei's Vision", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "0-0", "wDam": "45-60", "aDam": "0-0", "tDam": "0-0", "eDam": "45-60", "atkSpd": "SLOW", "lvl": 82, "strReq": 25, "intReq": 25, "mr": 5, "str": 7, "int": 7, "spRegen": 5, "mdRaw": 100, "fDamPct": -10, "aDamPct": -10, "tDamPct": -10, "id": 81}, {"name": "Aldorei's Training Bow", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "7-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "hprPct": 7, "mr": 5, "dex": 1, "id": 84}, {"name": "Aliez", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -225, "aDef": 25, "tDef": 25, "lvl": 75, "dexReq": 35, "agiReq": 40, "mdPct": -10, "ms": 5, "mdRaw": 50, "aDamPct": 11, "tDamPct": 9, "type": "ring", "id": 82}, {"name": "Alazarin", "displayName": "Alizarin", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "15-28", "fDam": "17-60", "wDam": "17-60", "aDam": "17-60", "tDam": "17-60", "eDam": "17-60", "atkSpd": "FAST", "lvl": 89, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "xpb": 23, "hpBonus": 1250, "spRegen": 10, "hprRaw": 150, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 87}, {"name": "Alka Cometflinger", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "425-605", "atkSpd": "SLOW", "lvl": 93, "strReq": 80, "mdPct": 31, "str": 13, "expd": 31, "sdRaw": -175, "eDamPct": 31, "wDefPct": -30, "aDefPct": -30, "id": 85}, {"name": "Alkahest", "tier": "Rare", "type": "helmet", "poison": 3500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "lvl": 95, "strReq": 70, "defReq": 30, "hprPct": -20, "mr": -5, "ls": 145, "ms": 5, "atkTier": -18, "eDamPct": 10, "id": 86}, {"name": "Allegro", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": -50, "lvl": 71, "agiReq": 40, "sdPct": -10, "mdPct": 10, "agi": 5, "spd": 18, "fDamPct": -30, "id": 89}, {"name": "Almuj's Daggers", "tier": "Legendary", "type": "dagger", "poison": 45, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-16", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 20, "dexReq": 15, "agiReq": 8, "xpb": 5, "agi": 8, "spd": 20, "eSteal": 5, "id": 102}, {"name": "Alligator", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "wDef": 7, "tDef": -5, "lvl": 16, "strReq": 5, "intReq": 5, "sdPct": 7, "mdPct": 7, "wDamPct": 4, "tDefPct": -6, "id": 91}, {"name": "Almuj's Walker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 200, "lvl": 25, "lb": 15, "dex": 7, "agi": 7, "spd": 25, "eSteal": 8, "id": 90}, {"name": "Alternator", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 250, "wDef": -10, "tDef": 5, "eDef": -5, "lvl": 32, "dexReq": 20, "mr": -15, "sdPct": 19, "ms": 10, "lb": 7, "mdRaw": 52, "wDamPct": -15, "tDamPct": 11, "id": 94}, {"name": "Aloof", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "spd": -3, "hpBonus": 6, "id": 95}, {"name": "Amadeus", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "160-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 50, "defReq": 30, "mr": 15, "sdPct": 15, "ls": -220, "def": 15, "spd": -15, "fDamPct": 20, "wDefPct": 15, "id": 97}, {"name": "Alumia", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "tDef": 10, "eDef": -5, "lvl": 24, "dexReq": 8, "sdPct": 8, "ref": 6, "spRegen": 4, "tDamPct": 10, "eDamPct": -10, "id": 93}, {"name": "Altimeter", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "28-32", "tDam": "0-0", "eDam": "25-30", "atkSpd": "VERY_FAST", "lvl": 59, "strReq": 25, "agiReq": 27, "sdPct": -8, "mdPct": 12, "spd": 15, "mdRaw": 34, "tDefPct": -10, "id": 92}, {"name": "Amethyst Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "lvl": 36, "intReq": 5, "defReq": 10, "int": 3, "hprRaw": 10, "type": "ring", "id": 98}, {"name": "Amiscia", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 155, "tDef": 10, "eDef": -10, "lvl": 29, "dexReq": 15, "sdPct": 6, "ls": 13, "dex": 5, "tDamPct": 6, "id": 115}, {"name": "Amulet of the Necromancer", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -5, "lvl": 18, "hprPct": -7, "mr": -5, "ls": 3, "ms": 5, "type": "necklace", "id": 101}, {"name": "Amplitude", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "tDef": 75, "eDef": -75, "lvl": 61, "dexReq": 50, "mdPct": 10, "str": -5, "dex": 7, "tDamPct": 10, "eDamPct": -10, "tDefPct": 10, "eDefPct": -10, "id": 100}, {"name": "Anarchy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "sdRaw": 30, "mdRaw": 26, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 108}, {"name": "Anamnesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": -1600, "wDef": 200, "lvl": 82, "intReq": 100, "mr": 20, "mdPct": -55, "ref": 20, "int": 29, "spRegen": 20, "wDamPct": 55, "id": 103}, {"name": "Anchor Chain", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "20-100", "atkSpd": "VERY_SLOW", "lvl": 35, "strReq": 15, "intReq": 15, "mdPct": 11, "str": 10, "spd": -15, "wDamPct": 12, "eDamPct": 12, "aDefPct": -19, "id": 104}, {"name": "Anchoryl", "tier": "Legendary", "type": "boots", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 50, "lvl": 52, "defReq": 25, "hprPct": 23, "ref": 11, "spd": -15, "hpBonus": 250, "hprRaw": 50, "id": 106}, {"name": "Ancient Battle Crossbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "VERY_SLOW", "lvl": 23, "strReq": 45, "mdPct": 23, "xpb": 10, "lb": 12, "str": 15, "dex": 8, "spd": -10, "id": 107}, {"name": "Ancient Scout Shoes", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 10, "lb": 5, "agi": 4, "spd": 7, "id": 105}, {"name": "Ancient Wand", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 109}, {"name": "Aneroid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "aDef": -5, "eDef": 10, "lvl": 23, "strReq": 7, "sdPct": -6, "mdPct": 10, "str": 5, "int": -2, "id": 111}, {"name": "Aneurysm", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": -30, "lvl": 64, "strReq": 20, "dexReq": 45, "hprPct": -15, "mdPct": 10, "ls": -150, "sdRaw": 40, "mdRaw": 100, "wDamPct": -15, "eDamPct": 10, "id": 112}, {"name": "Andante", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "201-201", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 25, "mdPct": 15, "str": 4, "spd": -15, "eDamPct": 10, "eDefPct": 8, "id": 110}, {"name": "Andesite Aegis", "tier": "Legendary", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 110, "wDef": -50, "aDef": -50, "tDef": 100, "eDef": 110, "lvl": 77, "strReq": 30, "defReq": 30, "str": 8, "def": 8, "spd": -10, "hprRaw": 80, "fDefPct": 15, "tDefPct": 10, "eDefPct": 15, "id": 119}, {"name": "Ambiguity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -180, "fDef": 40, "wDef": -50, "aDef": 40, "lvl": 92, "agiReq": 45, "defReq": 45, "hprPct": 10, "agi": 5, "spd": 5, "hpBonus": 600, "hprRaw": 70, "type": "necklace", "id": 96}, {"name": "Animosity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "60-80", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "dexReq": 40, "agiReq": 40, "sdPct": 16, "dex": 8, "agi": 8, "def": -8, "spd": 10, "fDefPct": -26, "wDefPct": -14, "eDefPct": -14, "id": 118}, {"name": "Anger Point", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -80, "wDef": -80, "aDef": -80, "tDef": -80, "lvl": 68, "strReq": 40, "sdPct": 5, "mdPct": 15, "str": 7, "def": -7, "sdRaw": 30, "mdRaw": 145, "eDamPct": 15, "eDefPct": -15, "id": 113}, {"name": "Angel Robe", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1450, "fDef": -60, "aDef": 80, "tDef": 20, "eDef": -20, "lvl": 78, "agiReq": 40, "xpb": 5, "ref": 5, "agi": 7, "spd": 15, "aDefPct": 10, "id": 114}, {"name": "Anno", "tier": "Rare", "poison": 110, "category": "accessory", "drop": "lootchest", "hp": 40, "lvl": 39, "dexReq": 10, "defReq": 10, "hprRaw": 8, "type": "ring", "id": 116}, {"name": "Anokumeme", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-62", "aDam": "32-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "intReq": 40, "agiReq": 25, "mdPct": -12, "spRegen": 10, "wDamPct": 8, "aDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 117}, {"name": "Anthracite Ballista", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "545-675", "wDam": "0-0", "aDam": "545-675", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 98, "agiReq": 40, "defReq": 40, "sdPct": -20, "mdPct": 15, "ls": 500, "expd": 30, "hpBonus": 2000, "mdRaw": 560, "fDefPct": 20, "aDefPct": 20, "id": 122}, {"name": "Amanuensis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "wDef": -60, "lvl": 87, "intReq": 65, "sdPct": 4, "int": 13, "wDamPct": -7, "type": "necklace", "id": 3580}, {"name": "Antimony", "tier": "Rare", "type": "leggings", "poison": 465, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 975, "fDef": 75, "wDef": -80, "lvl": 59, "strReq": 25, "defReq": 10, "mr": -5, "str": 5, "def": 4, "expd": 10, "spd": -5, "fDefPct": 10, "wDefPct": -12, "id": 120}, {"name": "Aluminium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "hprPct": 5, "type": "ring", "id": 99}, {"name": "Antithesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 60, "wDef": 40, "tDef": -120, "lvl": 78, "intReq": 30, "defReq": 35, "hprPct": -27, "sdPct": 16, "hprRaw": -95, "fDamPct": 19, "wDamPct": 13, "tDamPct": -28, "id": 124}, {"name": "Apology", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "266-270", "fDam": "0-0", "wDam": "266-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "intReq": 42, "mr": 10, "mdPct": -10, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 123}, {"name": "Antim", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 99, "hprRaw": 45, "sdRaw": 21, "mdRaw": 23, "type": "necklace", "id": 121}, {"name": "Backburner", "displayName": "Anvil Crawler", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1700", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "dexReq": 50, "sdPct": -20, "dex": 15, "expd": 30, "spd": -20, "atkTier": -10, "mdRaw": 575, "tDamPct": 15, "aDefPct": -30, "id": 129}, {"name": "Antipode", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-35", "fDam": "30-45", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 10, "int": 9, "def": 9, "expd": 10, "fDamPct": 10, "wDamPct": -10, "fDefPct": -10, "wDefPct": 10, "id": 128}, {"name": "Aquamarine", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 60, "eDef": 60, "lvl": 100, "strReq": 40, "intReq": 40, "mr": 10, "ref": 18, "str": 7, "int": 7, "eSteal": 6, "hprRaw": 150, "sdRaw": 105, "mdRaw": 105, "fDamPct": -25, "id": 135}, {"name": "Arakadicus' Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-130", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 66, "strReq": 20, "dexReq": 20, "sdPct": -10, "mdPct": 20, "str": 12, "dex": 12, "aDamPct": -30, "wDefPct": -10, "aDefPct": -30, "id": 130}, {"name": "Arakadicus' Leg", "tier": "Unique", "type": "wand", "poison": 465, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "30-45", "atkSpd": "SLOW", "lvl": 67, "strReq": 15, "dexReq": 15, "sdPct": -10, "mdPct": 10, "xpb": 10, "aDamPct": -50, "tDamPct": 15, "aDefPct": -50, "id": 134}, {"name": "Arakadicus' Maw", "tier": "Rare", "type": "dagger", "poison": 1350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 98, "strReq": 55, "ms": 10, "str": 12, "mdRaw": 220, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "id": 127}, {"name": "Arbalest", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "210-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "230-250", "atkSpd": "SLOW", "lvl": 87, "strReq": 55, "mdPct": -30, "dex": -12, "expd": 40, "sdRaw": 200, "wDamPct": -20, "eDamPct": 25, "spPct4": -45, "id": 131}, {"name": "Aratera", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 80, "wDef": -40, "aDef": -80, "eDef": 40, "lvl": 70, "strReq": 30, "defReq": 40, "str": 12, "expd": 11, "sdRaw": -125, "fDamPct": 20, "eDamPct": 20, "wDefPct": -20, "id": 132}, {"name": "Arc Bracer", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "wDef": -20, "tDef": 50, "eDef": -40, "lvl": 95, "dexReq": 40, "dex": 5, "tDamPct": 7, "type": "bracelet", "id": 136}, {"name": "Arc Rifle", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-240", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 55, "sdPct": 12, "mdPct": 12, "xpb": 8, "dex": 10, "hpBonus": -1550, "tDamPct": 20, "eDefPct": -30, "id": 137}, {"name": "Arcane Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 40, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 15, "mr": 5, "sdPct": 4, "mdPct": -7, "id": 139}, {"name": "Arcane Grieves", "displayName": "Arcane Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "wDef": 3, "lvl": 10, "mr": 5, "int": 3, "id": 138}, {"name": "Archaic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 40, "wDef": -30, "aDef": 20, "lvl": 83, "agiReq": 20, "defReq": 30, "sdPct": -8, "mdPct": -6, "agi": 4, "def": 5, "hprRaw": 50, "type": "ring", "id": 140}, {"name": "Aries", "tier": "Legendary", "type": "helmet", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "lvl": 92, "strReq": 55, "agiReq": 55, "mdPct": 25, "ls": 240, "ms": 5, "agi": 10, "spd": 25, "sdRaw": 175, "wDamPct": -20, "id": 143}, {"name": "Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "11-13", "aDam": "11-13", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 11, "int": 5, "agi": 5, "spRegen": 4, "mdRaw": -21, "tDamPct": -10, "tDefPct": 7, "id": 154}, {"name": "Arcus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 40, "tDef": 40, "eDef": -90, "lvl": 63, "dexReq": 35, "intReq": 35, "ms": 10, "sdRaw": 100, "eDamPct": -12, "eDefPct": -12, "id": 141}, {"name": "Ardiente", "tier": "Unique", "type": "leggings", "poison": 500, "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": -80, "wDef": -120, "lvl": 93, "defReq": 60, "hprPct": -20, "sdPct": 10, "def": 7, "spd": 9, "fDamPct": 27, "wDamPct": -40, "wDefPct": -40, "id": 142}, {"name": "Arkhalis", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "122-182", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 60, "ms": 5, "str": -15, "dex": 15, "spd": 15, "atkTier": -1, "hpBonus": -1350, "mdRaw": 310, "tDamPct": 15, "eDefPct": -30, "id": 145}, {"name": "Ariodo's Dial", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -40, "lvl": 63, "dexReq": 10, "intReq": 5, "sdPct": 5, "int": 3, "tDamPct": 7, "type": "bracelet", "id": 144}, {"name": "Arma Gauntlet", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "106-150", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 75, "strReq": 25, "defReq": 25, "sdPct": -20, "mdPct": 25, "str": 8, "def": 10, "expd": 10, "spd": -12, "hpBonus": 1600, "hprRaw": 80, "sdRaw": -75, "id": 146}, {"name": "Armageddon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 10, "dexReq": 20, "sdPct": 6, "str": 9, "dex": 9, "eDamPct": 15, "id": 147}, {"name": "Artifice", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "mdPct": 6, "ms": 5, "spd": 5, "tDamPct": 8, "eDefPct": -9, "id": 149}, {"name": "Ashes Anew", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "90-110", "wDam": "0-0", "aDam": "90-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "agiReq": 25, "defReq": 30, "mr": 5, "sdPct": -10, "mdPct": -15, "hprRaw": 80, "wDamPct": 50, "id": 150}, {"name": "Asbestos", "tier": "Unique", "poison": 385, "category": "accessory", "drop": "lootchest", "hp": -375, "lvl": 80, "hprPct": -14, "ls": 65, "type": "necklace", "id": 148}, {"name": "Asher's Relic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 17, "mr": 5, "ls": -10, "ms": -10, "spd": 6, "spRegen": -6, "hprRaw": 4, "type": "bracelet", "id": 151}, {"name": "Asphalt", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "87-88", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 32, "defReq": 32, "ls": 200, "int": -5, "agi": -5, "spd": 15, "mdRaw": 115, "wDefPct": -20, "aDefPct": -20, "id": 152}, {"name": "Asphyxia", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -200, "tDef": 150, "lvl": 90, "dexReq": 75, "dex": 15, "agi": -13, "spd": -15, "sdRaw": 200, "mdRaw": 155, "aDamPct": -50, "tDamPct": 30, "id": 155}, {"name": "Assassin's Hood", "tier": "Unique", "type": "helmet", "poison": 110, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 315, "eDef": -10, "lvl": 41, "dex": 4, "eSteal": 5, "tDamPct": 5, "id": 153}, {"name": "Astigmatism", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 48, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "hprPct": -15, "mr": -5, "sdPct": 18, "mdPct": 18, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "id": 156}, {"name": "Assurance", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "30-38", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-38", "atkSpd": "SLOW", "lvl": 53, "strReq": 15, "defReq": 15, "mdPct": 10, "spd": -10, "hpBonus": 200, "fDamPct": 10, "wDamPct": -15, "eDamPct": 10, "id": 158}, {"name": "Asterisk", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "11-15", "tDam": "11-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "dexReq": 20, "agiReq": 20, "sdPct": 13, "str": -4, "def": -4, "spd": 8, "id": 157}, {"name": "Asymptote", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": -100, "tDef": 60, "eDef": 60, "lvl": 66, "strReq": 25, "dexReq": 25, "hprPct": -10, "mdPct": 10, "ls": 115, "ms": 5, "xpb": -10, "lb": 10, "hprRaw": -55, "id": 161}, {"name": "Astral Walkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 70, "wDef": -65, "tDef": 70, "eDef": -75, "lvl": 66, "dexReq": 25, "defReq": 45, "ref": 14, "dex": 5, "hprRaw": 60, "eDamPct": -15, "fDefPct": 12, "id": 159}, {"name": "Atheist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 110, "eDef": 15, "lvl": 19, "strReq": 15, "str": 7, "fDamPct": -5, "tDamPct": -5, "eDamPct": 8, "wDefPct": -5, "aDefPct": -5, "eDefPct": 8, "id": 162}, {"name": "Ataraxy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 25, "eDef": 25, "lvl": 93, "strReq": 30, "intReq": 30, "sdPct": 6, "ms": 5, "atkTier": -2, "type": "ring", "spPct3": 7, "id": 3607}, {"name": "Atlas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 94, "ls": 140, "ms": 5, "atkTier": -8, "type": "bracelet", "id": 167}, {"name": "Atoll", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 80, "wDef": 80, "tDef": -70, "eDef": -70, "lvl": 66, "intReq": 30, "defReq": 30, "sdPct": 6, "def": 4, "hprRaw": 60, "eDamPct": -18, "fDefPct": 13, "wDefPct": 14, "id": 160}, {"name": "Atroce", "tier": "Unique", "type": "chestplate", "poison": 240, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "aDef": -60, "tDef": 60, "eDef": 60, "lvl": 63, "strReq": 45, "dexReq": 45, "ref": 15, "str": 10, "dex": 10, "expd": 20, "id": 166}, {"name": "Audacity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "lvl": 9, "xpb": 10, "sdRaw": 15, "mdRaw": 13, "id": 165}, {"name": "Aura of Element", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "xpb": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 168}, {"name": "Auric", "tier": "Rare", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 80, "ls": 70, "ref": 9, "hprRaw": 60, "sdRaw": -55, "mdRaw": -60, "type": "bracelet", "id": 163}, {"name": "Australis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "34-40", "wDam": "34-40", "aDam": "34-40", "tDam": "34-40", "eDam": "34-40", "atkSpd": "FAST", "lvl": 72, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": -12, "mdPct": -12, "xpb": 12, "ref": 24, "hpBonus": 600, "spRegen": 24, "id": 171}, {"name": "Autumn Tree", "tier": "Unique", "type": "wand", "poison": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-7", "atkSpd": "SLOW", "lvl": 14, "str": 7, "id": 170}, {"name": "Aurora", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 94, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "ring", "id": 164}, {"name": "Autotomized", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 73, "agiReq": 35, "xpb": -3, "str": -3, "agi": 7, "def": -3, "spd": 12, "type": "necklace", "id": 173}, {"name": "Average Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 73, "lvl": 23, "id": 172}, {"name": "Average Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 71, "lvl": 21, "id": 177}, {"name": "Average Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 112, "lvl": 27, "id": 174}, {"name": "Awakening", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "45-72", "wDam": "45-72", "aDam": "45-72", "tDam": "45-72", "eDam": "45-72", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "id": 175}, {"name": "Average Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 86, "lvl": 25, "id": 176}, {"name": "Avocado", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-29", "aDam": "0-0", "tDam": "0-0", "eDam": "25-29", "atkSpd": "NORMAL", "lvl": 29, "strReq": 10, "intReq": 10, "str": 7, "int": 7, "hpBonus": 65, "hprRaw": 20, "id": 269}, {"name": "Azar", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "lb": 4, "type": "bracelet", "id": 180}, {"name": "Azimuth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-80", "tDam": "0-0", "eDam": "20-60", "atkSpd": "FAST", "lvl": 66, "strReq": 40, "agiReq": 45, "sdPct": -9, "mdPct": 9, "str": 7, "agi": 8, "spd": 17, "wDamPct": -20, "aDamPct": 15, "eDamPct": 12, "wDefPct": -15, "id": 178}, {"name": "Azotar", "tier": "Rare", "type": "relik", "poison": 250, "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "65-75", "fDam": "50-60", "wDam": "50-60", "aDam": "50-60", "tDam": "50-60", "eDam": "50-60", "atkSpd": "SLOW", "lvl": 64, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "ls": 140, "ms": 10, "hprRaw": -200, "fixID": true, "spRaw4": -5, "id": 181}, {"name": "Awesome Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 1, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 179}, {"name": "Azure Halo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "wDef": 150, "aDef": 150, "lvl": 91, "intReq": 60, "agiReq": 30, "hprPct": 10, "mr": 10, "xpb": 10, "ref": 23, "def": 8, "spRegen": 30, "hprRaw": 170, "tDamPct": -10, "eDamPct": -10, "fDefPct": 20, "sprintReg": 10, "id": 182}, {"name": "Ba'al's Betrayal", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -45, "lvl": 30, "ls": 23, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 185}, {"name": "Azurite", "tier": "Unique", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2675, "wDef": 90, "eDef": 80, "lvl": 92, "strReq": 35, "intReq": 35, "sdPct": 27, "mdPct": 20, "str": 7, "int": 9, "eSteal": 6, "mdRaw": 175, "tDamPct": -25, "id": 184}, {"name": "Babbling Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "36-53", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -12, "ref": 13, "int": 7, "spd": 5, "sdRaw": 30, "fDamPct": -30, "id": 183}, {"name": "Back Protector", "tier": "Unique", "type": "leggings", "thorns": 2, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 130, "wDef": -6, "lvl": 24, "strReq": 5, "def": 5, "id": 186}, {"name": "Babylon's Scale", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "10-400", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "agiReq": 65, "agi": 13, "def": -10, "expd": -13, "spd": 13, "fDamPct": -19, "aDamPct": 19, "fDefPct": -16, "aDefPct": 16, "id": 187}, {"name": "Bakteri", "tier": "Rare", "type": "boots", "poison": 680, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": -50, "wDef": -70, "aDef": -50, "tDef": 65, "eDef": 90, "lvl": 77, "strReq": 50, "dexReq": 50, "ls": 140, "atkTier": -1, "hprRaw": -120, "wDamPct": -30, "tDamPct": 45, "eDamPct": 30, "id": 191}, {"name": "Backfire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "126-149", "fDam": "149-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "137-171", "atkSpd": "SUPER_SLOW", "lvl": 69, "strReq": 30, "defReq": 30, "mdPct": 8, "ls": -105, "ms": -5, "str": 5, "expd": 14, "id": 189}, {"name": "Backlash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-185", "eDam": "85-85", "atkSpd": "SLOW", "lvl": 77, "strReq": 20, "dexReq": 35, "mdPct": 12, "ls": 180, "str": 5, "dex": 5, "hpBonus": -500, "hprRaw": -90, "id": 207}, {"name": "Bad Wolf", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1350, "aDef": -100, "tDef": 70, "lvl": 60, "dexReq": 35, "mdPct": 15, "xpb": 32, "dex": 8, "spd": 7, "mdRaw": 65, "tDamPct": 15, "id": 188}, {"name": "Ballad", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 20, "wDef": 20, "lvl": 50, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "mdPct": -10, "spRegen": 15, "id": 192}, {"name": "Balankia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 380, "lvl": 39, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 193}, {"name": "Ballista", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "125-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-150", "atkSpd": "VERY_SLOW", "lvl": 55, "strReq": 30, "mdPct": 10, "dex": -2, "def": 5, "expd": 10, "spd": -10, "id": 190}, {"name": "Balloon's Bane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "200-320", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 55, "sdPct": -15, "ls": 115, "def": 5, "expd": 15, "fDamPct": 9, "fDefPct": 15, "aDefPct": 9, "id": 194}, {"name": "Bantisu's Approach", "tier": "Unique", "type": "leggings", "sprint": 10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2500, "fDef": 10, "wDef": 10, "aDef": 80, "tDef": 10, "eDef": 10, "lvl": 86, "mr": 5, "ms": 5, "xpb": 25, "lb": 15, "str": 1, "dex": 1, "int": 1, "agi": 8, "def": 1, "spd": 10, "aDefPct": 20, "sprintReg": 10, "id": 197}, {"name": "Balm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 630, "aDef": 30, "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 10, "xpb": 6, "str": -4, "agi": 4, "spd": 6, "hprRaw": 20, "id": 195}, {"name": "Barbarian", "tier": "Unique", "type": "leggings", "sprint": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": 80, "eDef": 70, "lvl": 92, "strReq": 40, "agiReq": 30, "sdPct": -15, "mdPct": 12, "def": 9, "spd": 9, "mdRaw": 300, "tDamPct": -10, "id": 198}, {"name": "Bamboo Cuff", "tier": "Unique", "poison": 125, "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 15, "dexReq": 15, "mdRaw": 26, "tDamPct": 4, "eDamPct": 4, "fDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 196}, {"name": "Bard's Song", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "23-69", "aDam": "23-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "intReq": 45, "agiReq": 35, "sdPct": -7, "mdPct": -11, "xpb": 12, "ref": 12, "spRegen": 12, "wDamPct": 19, "aDamPct": 19, "id": 203}, {"name": "Barbed Spear", "tier": "Unique", "type": "spear", "poison": 120, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "65-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "strReq": 10, "hprPct": -10, "sdPct": -7, "id": 199}, {"name": "Barrage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 28, "dexReq": 10, "dex": 4, "tDamPct": 5, "type": "ring", "id": 201}, {"name": "Bardiche", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-170", "fDam": "0-0", "wDam": "70-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 35, "agiReq": 40, "hprPct": 25, "ref": 15, "agi": 12, "spd": 14, "spRegen": 10, "aDamPct": 18, "eDamPct": -20, "wDefPct": 23, "id": 200}, {"name": "Basaltic Schynbalds", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "wDef": 40, "eDef": 40, "lvl": 50, "strReq": 20, "intReq": 20, "hprPct": 12, "spd": -8, "wDefPct": 10, "eDefPct": 10, "id": 208}, {"name": "Andesite-hewn Bow", "displayName": "Andesite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 202}, {"name": "Andesite-hewn Relik", "displayName": "Andesite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 204}, {"name": "Andesite-hewn Shears", "displayName": "Andesite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "id": 205}, {"name": "Standard Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 445, "lvl": 50, "id": 211}, {"name": "Andesite-hewn Stick", "displayName": "Andesite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 206}, {"name": "Andesite-hewn Spear", "displayName": "Andesite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 209}, {"name": "Unfinished Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 265, "lvl": 41, "id": 210}, {"name": "Standard Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "lvl": 51, "id": 212}, {"name": "Standard Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "lvl": 52, "id": 213}, {"name": "Refined Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 560, "lvl": 54, "id": 214}, {"name": "Refined Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 590, "lvl": 55, "id": 218}, {"name": "Refined Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 530, "lvl": 53, "id": 215}, {"name": "Refined Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 56, "id": 216}, {"name": "High-Quality Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 58, "id": 220}, {"name": "High-Quality Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 735, "lvl": 59, "id": 222}, {"name": "Unfinished Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 43, "id": 223}, {"name": "Unfinished Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 285, "lvl": 42, "id": 219}, {"name": "Unfinished Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 320, "lvl": 44, "id": 225}, {"name": "Flawed Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 355, "lvl": 46, "id": 224}, {"name": "Flawed Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "lvl": 47, "id": 227}, {"name": "Flawed Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "lvl": 45, "id": 226}, {"name": "Standard Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 420, "lvl": 49, "id": 229}, {"name": "Flawed Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 400, "lvl": 48, "id": 228}, {"name": "Dim Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1540, "lvl": 81, "id": 230}, {"name": "Cloudy Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1985, "lvl": 90, "id": 233}, {"name": "Cloudy Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2040, "lvl": 91, "id": 240}, {"name": "Cloudy Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "lvl": 92, "id": 232}, {"name": "Clear Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2215, "lvl": 94, "id": 231}, {"name": "High-Quality Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 57, "id": 217}, {"name": "Clear Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2155, "lvl": 93, "id": 234}, {"name": "Clear Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2335, "lvl": 96, "id": 235}, {"name": "Clear Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2270, "lvl": 95, "id": 236}, {"name": "Brilliant Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2400, "lvl": 97, "id": 237}, {"name": "High-Quality Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "lvl": 60, "id": 221}, {"name": "Brilliant Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2460, "lvl": 98, "id": 238}, {"name": "Brilliant Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2530, "lvl": 99, "id": 242}, {"name": "Brilliant Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2600, "lvl": 100, "id": 244}, {"name": "Dim Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1630, "lvl": 83, "id": 243}, {"name": "Dim Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1680, "lvl": 84, "id": 248}, {"name": "Smoky Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1725, "lvl": 85, "id": 241}, {"name": "Dim Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1585, "lvl": 82, "id": 239}, {"name": "Smoky Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "lvl": 86, "id": 246}, {"name": "Smoky Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1830, "lvl": 87, "id": 253}, {"name": "Smoky Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1880, "lvl": 88, "id": 251}, {"name": "Diorite-hewn Bow", "displayName": "Diorite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 249}, {"name": "Diorite-hewn Shears", "displayName": "Diorite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "id": 252}, {"name": "Diorite-hewn Relik", "displayName": "Diorite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 247}, {"name": "Cloudy Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1935, "lvl": 89, "id": 245}, {"name": "Aged Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 71, "lvl": 21, "id": 256}, {"name": "Diorite-hewn Stick", "displayName": "Diorite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 255}, {"name": "Used Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 127, "lvl": 30, "id": 254}, {"name": "Used Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 148, "lvl": 32, "id": 266}, {"name": "Used Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 137, "lvl": 31, "id": 261}, {"name": "New Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 158, "lvl": 33, "id": 257}, {"name": "Diorite-hewn Spear", "displayName": "Diorite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 250}, {"name": "New Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 168, "lvl": 34, "id": 258}, {"name": "New Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 178, "lvl": 35, "id": 259}, {"name": "Shining Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 206, "lvl": 37, "id": 262}, {"name": "New Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 192, "lvl": 36, "id": 260}, {"name": "Aged Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 78, "lvl": 22, "id": 264}, {"name": "Shining Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 233, "lvl": 39, "id": 263}, {"name": "Aged Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 86, "lvl": 24, "id": 267}, {"name": "Shining Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "lvl": 38, "id": 265}, {"name": "Aged Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "lvl": 23, "id": 268}, {"name": "Shining Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 247, "lvl": 40, "id": 270}, {"name": "Worn Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 92, "lvl": 25, "id": 271}, {"name": "Worn Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 26, "id": 272}, {"name": "Worn Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 109, "lvl": 27, "id": 274}, {"name": "Worn Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 111, "lvl": 28, "id": 273}, {"name": "Granite-hewn Bow", "displayName": "Granite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "68-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 276}, {"name": "Granite-hewn Shears", "displayName": "Granite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "id": 279}, {"name": "Granite-hewn Relik", "displayName": "Granite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 277}, {"name": "Granite-hewn Spear", "displayName": "Granite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 278}, {"name": "Granite-hewn Stick", "displayName": "Granite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 281}, {"name": "Cracked Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "lvl": 61, "id": 282}, {"name": "Used Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 119, "lvl": 29, "id": 275}, {"name": "Plated Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1090, "lvl": 70, "id": 280}, {"name": "Plated Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "lvl": 71, "id": 283}, {"name": "Plated Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1165, "lvl": 72, "id": 285}, {"name": "Solid Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1205, "lvl": 73, "id": 284}, {"name": "Solid Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1280, "lvl": 75, "id": 286}, {"name": "Solid Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1320, "lvl": 76, "id": 288}, {"name": "Solid Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1240, "lvl": 74, "id": 287}, {"name": "Reinforced Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1405, "lvl": 78, "id": 289}, {"name": "Reinforced Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "lvl": 79, "id": 290}, {"name": "Reinforced Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1365, "lvl": 77, "id": 291}, {"name": "Reinforced Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1490, "lvl": 80, "id": 296}, {"name": "Cracked Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 860, "lvl": 63, "id": 293}, {"name": "Cracked Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "lvl": 62, "id": 292}, {"name": "Cracked Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 890, "lvl": 64, "id": 294}, {"name": "Thin Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 955, "lvl": 66, "id": 295}, {"name": "Thin Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "lvl": 65, "id": 299}, {"name": "Plated Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1055, "lvl": 69, "id": 297}, {"name": "Thin Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 990, "lvl": 67, "id": 300}, {"name": "Thin Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "lvl": 68, "id": 298}, {"name": "Padded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 26, "lvl": 10, "id": 305}, {"name": "Padded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 11, "id": 301}, {"name": "Plain Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3, "lvl": 1, "id": 302}, {"name": "Hard Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 36, "lvl": 13, "id": 304}, {"name": "Padded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 12, "id": 303}, {"name": "Hard Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 40, "lvl": 14, "id": 308}, {"name": "Hard Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 49, "lvl": 16, "id": 309}, {"name": "Studded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 54, "lvl": 17, "id": 306}, {"name": "Hard Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 44, "lvl": 15, "id": 307}, {"name": "Studded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 55, "lvl": 18, "id": 317}, {"name": "Plain Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 2, "id": 311}, {"name": "Studded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 19, "id": 310}, {"name": "Studded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 65, "lvl": 20, "id": 314}, {"name": "Plain Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 7, "lvl": 3, "id": 312}, {"name": "Tanned Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 14, "lvl": 6, "id": 316}, {"name": "Plain Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 9, "lvl": 4, "id": 313}, {"name": "Tanned Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 17, "lvl": 7, "id": 319}, {"name": "Tanned Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 8, "id": 318}, {"name": "Tanned Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 11, "lvl": 5, "id": 315}, {"name": "Padded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 23, "lvl": 9, "id": 321}, {"name": "Light Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 320}, {"name": "Light Birch Wood Shears", "displayName": "Light Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "id": 324}, {"name": "Light Birch Wood Stick", "displayName": "Light Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 329}, {"name": "Light Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 326}, {"name": "Light Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 322}, {"name": "Light Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 323}, {"name": "Light Jungle Wood Stick", "displayName": "Light Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 325}, {"name": "Light Jungle Wood Shears", "displayName": "Light Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 25, "id": 327}, {"name": "Light Oak Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 332}, {"name": "Light Oak Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 328}, {"name": "Light Oak Wood Shears", "displayName": "Light Oak Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "id": 331}, {"name": "Light Oak Wood Stick", "displayName": "Light Oak Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 330}, {"name": "Light Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 336}, {"name": "Light Spruce Wood Shears", "displayName": "Light Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "id": 333}, {"name": "Stone-hewn Bow", "displayName": "Stone-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "17-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 337}, {"name": "Light Spruce Wood Stick", "displayName": "Light Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 335}, {"name": "Stone-hewn Relik", "displayName": "Stone-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 339}, {"name": "Stone-hewn Shears", "displayName": "Stone-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "id": 365}, {"name": "Light Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 334}, {"name": "Stone-hewn Spear", "displayName": "Stone-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 343}, {"name": "Stone-hewn Stick", "displayName": "Stone-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 340}, {"name": "Battle Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "wDef": 60, "tDef": -30, "lvl": 50, "intReq": 35, "sdPct": 10, "mdPct": 5, "str": 4, "int": 4, "sdRaw": 45, "wDamPct": 15, "id": 344}, {"name": "Battleground Dancer", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 50, "agiReq": 60, "sdPct": -25, "mdPct": -8, "str": 6, "agi": 6, "spd": 16, "atkTier": 1, "mdRaw": 135, "id": 342}, {"name": "Bear Opener", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 47, "strReq": 35, "hprPct": -15, "sdPct": -12, "ls": 55, "xpb": 12, "str": 5, "expd": 8, "id": 346}, {"name": "Bastille", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 98, "defReq": 50, "sdPct": -5, "mdPct": -5, "ms": 10, "dex": 13, "spd": -10, "fDamPct": 17, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 338}, {"name": "Bedrock Eater", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 12, "ls": 3, "ms": 5, "id": 348}, {"name": "Bear Pelt", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 57, "lvl": 13, "sdPct": -6, "str": 4, "spd": -3, "hpBonus": 10, "mdRaw": 17, "id": 345}, {"name": "Bedruthan", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-170", "atkSpd": "NORMAL", "lvl": 92, "strReq": 45, "intReq": 55, "mr": 5, "sdPct": 12, "mdPct": 12, "ms": 5, "str": 9, "int": 9, "wDamPct": 30, "tDefPct": -25, "id": 349}, {"name": "Beauty", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "xpb": 4, "type": "necklace", "id": 347}, {"name": "Behemoth", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "110-610", "eDam": "375-535", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 40, "dexReq": 35, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 25, "spd": -20, "tDamPct": 15, "eDamPct": 15, "id": 350}, {"name": "Bejeweled Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 17, "lb": 5, "type": "bracelet", "id": 353}, {"name": "Belcon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-105", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 92, "strReq": 30, "intReq": 40, "sdPct": 8, "mdPct": 8, "str": 8, "spRegen": 30, "eDamPct": 20, "aDefPct": -30, "tDefPct": -30, "id": 354}, {"name": "Bete Noire", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2150, "tDef": 100, "eDef": 100, "lvl": 80, "strReq": 80, "dexReq": 80, "sdPct": 30, "ms": 10, "str": 20, "dex": 20, "atkTier": -7, "spRegen": -150, "hprRaw": -155, "mdRaw": 1100, "id": 352}, {"name": "Battery", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-75", "fDam": "0-0", "wDam": "50-150", "aDam": "0-0", "tDam": "0-200", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "dexReq": 60, "intReq": 60, "mr": 5, "sdPct": 15, "ms": 5, "wDamPct": 15, "tDamPct": 15, "eDamPct": -20, "eDefPct": -30, "id": 341}, {"name": "Belligerence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "lvl": 91, "sdPct": -15, "mdPct": 25, "ls": -145, "str": 8, "dex": 8, "hprRaw": 125, "id": 351}, {"name": "Bianco", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "42-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-38", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "xpb": 9, "ref": 12, "agi": 5, "spRegen": 10, "id": 355}, {"name": "Bibliotek", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "207-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 49, "xpb": 15, "lb": 15, "str": 11, "dex": 11, "int": 11, "agi": 11, "def": 11, "hpBonus": -300, "spPct2": 25, "spPct4": -24, "id": 359}, {"name": "Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 361}, {"name": "Big Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "430-900", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 90, "strReq": 55, "mdPct": 30, "str": 15, "expd": 15, "spd": -15, "eDamPct": 231, "aDefPct": -25, "id": 357}, {"name": "Birch Wood Shears", "displayName": "Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 6, "id": 360}, {"name": "Big Ol' Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-25", "atkSpd": "SLOW", "lvl": 23, "strReq": 20, "mdPct": 6, "str": 5, "agi": -4, "spd": -4, "fDamPct": 7, "eDamPct": 7, "id": 356}, {"name": "Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 358}, {"name": "Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 367}, {"name": "Bismuthinite", "tier": "Legendary", "type": "wand", "poison": 1825, "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-195", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 35, "dexReq": 55, "str": 12, "spd": 15, "tDamPct": 40, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "id": 368}, {"name": "Birch Wood Stick", "displayName": "Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 364}, {"name": "Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "lvl": 20, "classReq": "Mage", "intReq": 30, "sdPct": -25, "mdPct": -25, "int": 5, "wDamPct": 35, "id": 362}, {"name": "Black Abyss", "tier": "Unique", "type": "relik", "poison": 1414, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "690-715", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 94, "dexReq": 55, "mdPct": 15, "str": 75, "dex": -100, "spd": -12, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": 22, "eDamPct": -50, "id": 366}, {"name": "Bizzles", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-125", "fDam": "0-0", "wDam": "125-185", "aDam": "0-0", "tDam": "25-255", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 15, "ms": 5, "int": 7, "hpBonus": -850, "wDamPct": 8, "aDamPct": -25, "tDamPct": 13, "id": 363}, {"name": "Black Arrow", "tier": "Unique", "type": "bow", "poison": 2000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "283-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 40, "ls": 215, "ms": -15, "id": 370}, {"name": "Black", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "65-115", "wDam": "0-0", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "dexReq": 55, "defReq": 55, "mr": -10, "sdPct": 19, "ms": 15, "spRegen": -25, "fDamPct": 19, "wDamPct": -30, "tDamPct": 19, "aDefPct": -40, "eDefPct": -40, "id": 369}, {"name": "Black Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 72, "dexReq": 15, "mdPct": 6, "tDamPct": 6, "type": "ring", "id": 379}, {"name": "Black Sheep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "lvl": 79, "strReq": 50, "spd": 20, "eDamPct": 8, "id": 373}, {"name": "Black Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-130", "fDam": "0-0", "wDam": "0-0", "aDam": "50-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "agiReq": 10, "mdPct": 10, "ls": 135, "dex": -5, "agi": 9, "spd": 5, "aDamPct": 9, "id": 374}, {"name": "Blackened Boots", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "tDef": 20, "eDef": -15, "lvl": 41, "dexReq": 15, "sdPct": 6, "ms": 5, "dex": 4, "spRegen": -15, "wDamPct": -10, "tDamPct": 12, "id": 371}, {"name": "Blade of Purity", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "175-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "mr": 10, "sdPct": 15, "mdPct": 15, "xpb": 20, "spRegen": 20, "sdRaw": 160, "mdRaw": 165, "fDamPct": -150, "wDamPct": -150, "aDamPct": -150, "tDamPct": -150, "eDamPct": -150, "id": 377}, {"name": "Blackout", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "fDef": 6, "tDef": -6, "lvl": 22, "defReq": 5, "dex": -2, "def": 3, "fDamPct": 5, "tDamPct": -5, "type": "bracelet", "id": 372}, {"name": "Blade of Snow", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-28", "fDam": "0-0", "wDam": "12-19", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "intReq": 10, "mr": 5, "sdPct": 6, "ref": 8, "spd": -9, "aDamPct": 5, "fDefPct": -7, "aDefPct": 10, "id": 376}, {"name": "Bladeguard", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "70-100", "fDam": "35-70", "wDam": "0-0", "aDam": "35-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "agiReq": 35, "defReq": 25, "sdPct": -10, "ref": 15, "agi": 15, "def": 15, "fDefPct": 15, "aDefPct": 15, "id": 375}, {"name": "Blade of Wisdom", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 24, "intReq": 8, "mr": 5, "xpb": 8, "lb": 8, "int": 4, "wDamPct": 5, "tDamPct": -5, "id": 378}, {"name": "Bladerunners", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 40, "aDef": -20, "tDef": 20, "eDef": -40, "lvl": 53, "dexReq": 20, "intReq": 20, "hprPct": -16, "dex": 5, "int": 4, "spd": 7, "sdRaw": 35, "id": 382}, {"name": "Bleeding Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-41", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": -13, "ls": 33, "hpBonus": 50, "id": 381}, {"name": "Blank", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "hprPct": 5, "type": "necklace", "id": 383}, {"name": "Blessed Wrappings", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 5, "hprPct": 12, "xpb": 10, "def": 3, "hpBonus": 15, "id": 385}, {"name": "Blight", "tier": "Rare", "type": "wand", "poison": 1000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-20", "atkSpd": "SLOW", "lvl": 55, "eDefPct": 33, "id": 395}, {"name": "Bladestorm", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "37-50", "tDam": "22-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dex": 12, "spd": 15, "aDefPct": -7, "id": 380}, {"name": "Blightsaber", "tier": "Unique", "type": "relik", "poison": 800, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-76", "eDam": "70-76", "atkSpd": "FAST", "lvl": 91, "strReq": 33, "dexReq": 33, "sdPct": 19, "mdPct": 19, "ms": 5, "str": 8, "dex": 8, "hprRaw": -150, "spRaw1": -15, "spRaw2": 15, "id": 384}, {"name": "Blindblight", "tier": "Rare", "type": "helmet", "poison": 95, "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -3, "wDef": -3, "aDef": -3, "tDef": -3, "eDef": -3, "lvl": 29, "ls": 15, "str": 8, "dex": -4, "hprRaw": -10, "mdRaw": 36, "id": 386}, {"name": "Blind Thrust", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3725, "tDef": -300, "lvl": 90, "strReq": 95, "ms": 10, "str": 10, "atkTier": -14, "mdRaw": 1600, "eDamPct": 31, "id": 388}, {"name": "Blizzard", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "29-37", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "intReq": 35, "agiReq": 35, "sdPct": 11, "mdPct": -13, "int": 5, "spd": 10, "fDamPct": -12, "fDefPct": -17, "id": 387}, {"name": "Blood-Soaked Claws", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "mdPct": 8, "ls": 12, "hprRaw": -6, "id": 390}, {"name": "Bloodless", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 250, "lvl": 44, "hprPct": -30, "ls": 41, "hpBonus": 300, "hprRaw": -20, "id": 397}, {"name": "Block Buster", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-100", "atkSpd": "SLOW", "lvl": 76, "strReq": 35, "expd": 48, "eDefPct": -6, "id": 389}, {"name": "Bloodlust", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": -100, "aDef": -100, "tDef": 100, "eDef": 100, "lvl": 87, "strReq": 45, "dexReq": 45, "hprPct": -25, "sdPct": -7, "mdPct": 20, "ls": 240, "str": 7, "dex": 7, "int": -8, "spd": 25, "mdRaw": 190, "id": 391}, {"name": "Blossom", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-65", "atkSpd": "NORMAL", "lvl": 33, "strReq": 30, "intReq": 10, "sdPct": 10, "int": 7, "spd": -10, "eDamPct": 8, "fDefPct": -20, "id": 392}, {"name": "Bloudil", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1380, "lvl": 65, "xpb": 14, "ref": 6, "agi": 5, "spd": 14, "id": 394}, {"name": "Blue Mask", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1, "lvl": 68, "str": 12, "dex": 12, "int": 12, "agi": 12, "def": 12, "id": 393}, {"name": "Blossom Haze", "tier": "Fabled", "type": "dagger", "majorIds": ["CHERRY_BOMBS"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-185", "atkSpd": "FAST", "lvl": 87, "strReq": 65, "ms": 5, "expd": 22, "spd": -20, "atkTier": -1, "aDamPct": 25, "eDamPct": 25, "wDefPct": 26, "spRaw4": -5, "id": 3610}, {"name": "Blueberry", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 870, "wDef": 40, "tDef": -30, "lvl": 58, "ms": 5, "xpb": 16, "ref": 6, "wDamPct": 5, "id": 396}, {"name": "Blur", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "55-73", "tDam": "40-90", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "dexReq": 40, "agiReq": 40, "ms": 10, "dex": 9, "agi": 9, "spd": 14, "fDamPct": -21, "aDamPct": 14, "tDamPct": 14, "eDefPct": -18, "id": 398}, {"name": "Blues Whistle", "tier": "Unique", "type": "bow", "poison": 1500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "FAST", "lvl": 99, "strReq": 50, "ls": -295, "ms": 10, "agi": 9, "def": 9, "eDamPct": 20, "fDefPct": -30, "id": 400}, {"name": "Bob's Lost Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 880, "fDef": 30, "lvl": 58, "sdPct": 5, "mdPct": 5, "xpb": 8, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 402}, {"name": "Blushwind", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 110, "wDef": -75, "aDef": 110, "lvl": 88, "agiReq": 60, "defReq": 30, "ms": 5, "int": -25, "agi": 7, "spd": 14, "hpBonus": 3000, "fDefPct": 12, "aDefPct": 12, "spPct2": -14, "spPct3": -7, "id": 399}, {"name": "Boiler", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "30-48", "wDam": "30-48", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "hprPct": 16, "mr": 10, "int": 4, "def": 4, "fDefPct": 13, "wDefPct": 13, "id": 403}, {"name": "Bombardier", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "25-45", "fDam": "15-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "defReq": 10, "expd": 20, "spd": -10, "hpBonus": -50, "id": 405}, {"name": "Bolt", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-9", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "xpb": 5, "lb": 5, "tDamPct": 5, "id": 401}, {"name": "Bonethrasher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "56-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 83, "agiReq": 40, "sdPct": -20, "dex": 13, "int": -7, "agi": 13, "mdRaw": 75, "id": 406}, {"name": "Bolter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-110", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "dexReq": 40, "sdPct": -15, "ref": 16, "dex": 8, "mdRaw": 75, "tDamPct": 8, "aDefPct": -8, "tDefPct": 12, "id": 404}, {"name": "Booster Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2800, "wDef": 130, "aDef": 100, "lvl": 84, "intReq": 25, "agiReq": 50, "xpb": 12, "agi": 10, "spd": 35, "wDamPct": 15, "aDamPct": 15, "tDefPct": -18, "jh": 3, "id": 408}, {"name": "Boots of Blue Stone", "tier": "Unique", "type": "boots", "sprint": 13, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 82, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "sdRaw": 120, "mdRaw": 160, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "sprintReg": 13, "id": 407}, {"name": "Boots of the Sorcerer", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 96, "wDef": 5, "tDef": 10, "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "mdPct": -7, "int": 3, "wDamPct": 10, "tDamPct": 10, "id": 410}, {"name": "Boulder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": 6, "lvl": 24, "strReq": 10, "sdRaw": -2, "mdRaw": 8, "eDefPct": 5, "type": "ring", "id": 409}, {"name": "Bottled Sky", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "aDef": 150, "eDef": -100, "lvl": 95, "agiReq": 60, "ref": 10, "dex": 6, "int": -24, "agi": 6, "def": 6, "spd": 18, "wDamPct": -25, "spPct1": -7, "spPct3": -7, "spPct4": -14, "id": 446}, {"name": "Bourreau", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "ls": -2, "sdRaw": 4, "mdRaw": 4, "type": "bracelet", "id": 415}, {"name": "Bough of Fir", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 53, "strReq": 20, "intReq": 10, "mr": 5, "sdPct": 16, "lb": 16, "int": 9, "spRegen": 19, "fDamPct": -20, "wDamPct": 20, "fDefPct": -15, "eDefPct": 30, "id": 411}, {"name": "Bovine Killer", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 65, "aDef": -5, "eDef": 5, "lvl": 12, "mdPct": 15, "str": 10, "agi": -4, "id": 413}, {"name": "Bovemist Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 5, "tDef": 5, "lvl": 18, "intReq": 8, "hprPct": 8, "int": 3, "spRegen": 3, "type": "necklace", "id": 412}, {"name": "Bow of Retribution", "tier": "Unique", "type": "bow", "thorns": 18, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-20", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "ls": 39, "ms": 5, "ref": 18, "id": 414}, {"name": "Bow Of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 417}, {"name": "Bow of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 420}, {"name": "Brackenwall", "tier": "Unique", "type": "chestplate", "poison": 360, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -40, "eDef": 110, "lvl": 83, "strReq": 40, "mdPct": 13, "str": 7, "spd": -8, "mdRaw": 145, "eDamPct": 13, "fDefPct": -10, "id": 418}, {"name": "Brass Knuckle", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 20, "mdPct": 8, "str": 4, "eSteal": 3, "aDamPct": -6, "type": "ring", "id": 422}, {"name": "Brass Brand", "tier": "Legendary", "type": "dagger", "thorns": 60, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-160", "atkSpd": "FAST", "lvl": 86, "strReq": 40, "dexReq": 55, "ls": -290, "ref": 20, "dex": 25, "sdRaw": 169, "tDamPct": 40, "fDefPct": -20, "tDefPct": -20, "id": 426}, {"name": "Bravery", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 46, "strReq": 15, "agiReq": 20, "mdPct": 8, "str": 5, "spd": 6, "hpBonus": 150, "eDamPct": 8, "fDefPct": 10, "id": 419}, {"name": "Breakbeat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1800, "fDef": -40, "wDef": -20, "tDef": -20, "eDef": -20, "lvl": 79, "agiReq": 55, "sdPct": 5, "spd": 10, "mdRaw": 120, "fDamPct": 7, "wDamPct": 7, "aDamPct": 10, "tDamPct": 7, "eDamPct": 4, "id": 423}, {"name": "Breaker Bar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "280-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 25, "agiReq": 25, "str": 8, "agi": 8, "spd": 15, "fDamPct": -40, "wDamPct": -40, "aDamPct": 40, "tDamPct": -40, "eDamPct": 40, "id": 424}, {"name": "Breath of the Dragon", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "13-17", "wDam": "0-0", "aDam": "23-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 11, "defReq": 11, "agi": 6, "def": 6, "hprRaw": 9, "fDamPct": 15, "aDefPct": 15, "spRaw1": 5, "id": 428}, {"name": "Breath of the Vampire", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "35-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 35, "agiReq": 25, "ls": 190, "agi": 7, "spd": 10, "aDamPct": 5, "tDamPct": 20, "id": 427}, {"name": "Bridge of the Divide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 650, "wDef": 50, "tDef": 50, "lvl": 51, "dexReq": 20, "intReq": 20, "mr": 5, "ms": 5, "xpb": 20, "ref": 10, "wDamPct": -10, "tDamPct": 20, "wDefPct": 20, "tDefPct": -10, "id": 430}, {"name": "Brocach", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": -150, "eDef": 175, "lvl": 94, "strReq": 65, "mdPct": 10, "spd": -9, "eDamPct": 19, "aDefPct": -15, "eDefPct": 23, "id": 432}, {"name": "Breeze", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "8-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "dex": 3, "agi": 3, "spd": 5, "id": 425}, {"name": "Bright Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 15, "tDef": 3, "eDef": -3, "lvl": 5, "xpb": 6, "id": 431}, {"name": "Broken Balance", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": -500, "lvl": 50, "sdPct": 75, "mdPct": 75, "str": -7, "dex": -7, "int": -7, "agi": -7, "def": -7, "id": 433}, {"name": "Broken Gauntlet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 410, "wDef": -25, "aDef": -25, "lvl": 79, "strReq": 15, "defReq": 15, "sdPct": -5, "mdPct": 6, "type": "bracelet", "id": 434}, {"name": "Brimstone", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "110-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "defReq": 45, "hprPct": 20, "mr": -5, "mdPct": 8, "str": 10, "expd": 12, "hpBonus": 1500, "fDamPct": 8, "eDamPct": 27, "id": 429}, {"name": "Broken Cross", "tier": "Unique", "type": "spear", "thorns": 45, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-257", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "86-143", "eDam": "86-143", "atkSpd": "SUPER_SLOW", "lvl": 62, "strReq": 25, "dexReq": 15, "mdPct": 13, "xpb": 20, "lb": 10, "ref": 45, "def": -40, "hpBonus": 831, "spRegen": -13, "fDefPct": -30, "wDefPct": -30, "aDefPct": -30, "id": 435}, {"name": "Broken Harp", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 10, "sdPct": 10, "int": 4, "tDamPct": -5, "wDefPct": 10, "id": 436}, {"name": "Broken Trident", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "intReq": 10, "sdPct": 8, "mdPct": -8, "wDamPct": 5, "wDefPct": 3, "id": 438}, {"name": "Bronze-Plated Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "aDef": -5, "lvl": 26, "strReq": 10, "defReq": 10, "ref": 10, "str": 4, "def": 4, "id": 437}, {"name": "Bubble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 50, "lvl": 72, "sdPct": 4, "type": "ring", "id": 443}, {"name": "Brook", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 130, "tDef": -150, "lvl": 73, "intReq": 45, "mr": 5, "ref": 10, "fDamPct": -7, "wDamPct": 10, "wDefPct": 10, "tDefPct": -15, "id": 439}, {"name": "Brook Keeper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 460, "wDef": 30, "tDef": -20, "lvl": 49, "intReq": 15, "mr": 5, "sdPct": 10, "spd": 3, "fDamPct": -10, "wDamPct": 5, "id": 440}, {"name": "Bull", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "20-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "FAST", "lvl": 63, "mdPct": 8, "str": 5, "agi": -7, "def": 5, "hpBonus": 450, "aDamPct": -25, "fDefPct": 15, "eDefPct": 25, "id": 441}, {"name": "Bulldozer", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 20, "mdPct": 10, "expd": 20, "spd": -20, "hpBonus": -100, "mdRaw": 105, "eDamPct": 8, "id": 444}, {"name": "Bullseye", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 1, "dex": 4, "id": 449}, {"name": "Bubbline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1875, "wDef": 140, "tDef": -90, "lvl": 81, "intReq": 40, "mr": 10, "mdPct": -15, "ref": 30, "int": 8, "fDefPct": 7, "wDefPct": 15, "id": 442}, {"name": "Bumblebee", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "mdPct": 5, "xpb": 6, "id": 447}, {"name": "Burning Pants", "tier": "Rare", "type": "leggings", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": -5, "wDef": -5, "lvl": 18, "defReq": 10, "expd": 5, "spd": 8, "hpBonus": -20, "fDamPct": 7, "id": 448}, {"name": "Burn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 73, "expd": 6, "fDamPct": 8, "type": "ring", "id": 445}, {"name": "Buster Bracer", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 20, "strReq": 20, "sdPct": 10, "str": 5, "expd": 10, "hpBonus": -45, "mdRaw": 20, "type": "bracelet", "id": 451}, {"name": "Burning Torch", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "10-30", "fDam": "110-180", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 25, "sdPct": -12, "mdPct": 5, "expd": 5, "hpBonus": -90, "fDamPct": 7, "wDamPct": -30, "wDefPct": -20, "aDefPct": -5, "id": 452}, {"name": "Butcher's Clever", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-55", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "intReq": 15, "mr": 5, "int": 8, "wDamPct": 5, "tDamPct": -10, "tDefPct": -10, "id": 453}, {"name": "Burnout", "tier": "Rare", "type": "boots", "sprint": 16, "category": "armor", "drop": "NORMAL", "hp": 3200, "fDef": -80, "aDef": -80, "lvl": 96, "agiReq": 40, "defReq": 60, "mr": -5, "sdPct": -14, "def": 10, "spd": 12, "atkTier": 1, "hprRaw": 175, "fDamPct": 10, "aDamPct": 10, "sprintReg": -8, "id": 450}, {"name": "Butter Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 5, "lb": 20, "id": 457}, {"name": "Butterfly Wings", "tier": "Unique", "type": "relik", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "ref": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 454}, {"name": "Butter Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "lvl": 15, "agi": 4, "id": 455}, {"name": "Bygones", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "120-960", "wDam": "0-0", "aDam": "0-0", "tDam": "390-690", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 35, "defReq": 35, "hprPct": -30, "mdPct": 25, "ls": -290, "ms": 15, "expd": 20, "mdRaw": 610, "wDefPct": -35, "id": 456}, {"name": "Bylvis' Pitchfork", "tier": "Unique", "type": "spear", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-0", "wDam": "70-90", "aDam": "70-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 15, "wDamPct": 17, "aDamPct": 17, "tDamPct": -20, "fDefPct": -30, "tDefPct": -10, "id": 458}, {"name": "Wybel Paw", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 32, "hprPct": -100, "sdPct": -100, "mdPct": -100, "agi": 5, "spd": 35, "fixID": true, "id": 459}, {"name": "Cadence", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 94, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "xpb": 12, "lb": 12, "fDamPct": 17, "wDamPct": 17, "aDamPct": 17, "tDamPct": 17, "eDamPct": 17, "id": 461}, {"name": "Foreword", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "90-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "agiReq": 20, "xpb": 20, "lb": 20, "spd": 20, "aDamPct": 20, "aDefPct": 20, "fixID": true, "id": 460}, {"name": "Cactus", "tier": "Unique", "thorns": 12, "category": "accessory", "drop": "lootchest", "lvl": 36, "ls": -11, "type": "ring", "id": 464}, {"name": "Permafrosted Saxifrage", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "50-73", "tDam": "0-0", "eDam": "60-63", "atkSpd": "NORMAL", "lvl": 45, "strReq": 18, "agiReq": 18, "mdPct": 10, "str": 5, "agi": 5, "aDamPct": 10, "eDamPct": 10, "fDefPct": -20, "wDefPct": 20, "fixID": true, "id": 462}, {"name": "Calcined Estoc", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-99", "aDam": "0-0", "tDam": "0-0", "eDam": "90-99", "atkSpd": "NORMAL", "lvl": 68, "strReq": 40, "intReq": 40, "mr": 5, "mdPct": 15, "str": 8, "dex": -15, "spd": -15, "wDefPct": 10, "eDefPct": 10, "id": 465}, {"name": "Caffeine", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -160, "lvl": 74, "agiReq": 40, "agi": 3, "spd": 12, "hprRaw": -15, "aDamPct": 5, "type": "ring", "id": 469}, {"name": "Cage of Bones", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 80, "wDef": -100, "tDef": 60, "lvl": 57, "dexReq": 35, "defReq": 25, "hprPct": -20, "mdPct": 20, "def": 7, "spd": -10, "mdRaw": 130, "fDamPct": 15, "tDamPct": 20, "wDefPct": -20, "id": 466}, {"name": "Calcite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "fDef": 50, "lvl": 67, "defReq": 20, "mdPct": -3, "def": 13, "spd": -5, "fDamPct": 5, "fDefPct": 7, "id": 467}, {"name": "Caldera", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "36-60", "fDam": "40-85", "wDam": "55-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "sdPct": 10, "int": 5, "def": 7, "hpBonus": -1200, "fDamPct": 15, "wDamPct": 18, "tDefPct": -25, "eDefPct": -15, "id": 468}, {"name": "Calidade Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "fDef": -80, "aDef": -80, "tDef": -80, "lvl": 97, "dexReq": 55, "defReq": 50, "sdPct": -15, "mdPct": 30, "ms": 5, "dex": 5, "agi": 6, "def": 4, "atkTier": 1, "hprRaw": -145, "mdRaw": -113, "fDamPct": 10, "tDamPct": 10, "id": 471}, {"name": "Caledonia", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-455", "fDam": "180-225", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 90, "sdPct": -11, "mdPct": -11, "xpb": 15, "def": 9, "hpBonus": 825, "hprRaw": 125, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 472}, {"name": "Call to Concord", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 25, "aDef": 25, "eDef": 10, "lvl": 64, "defReq": 40, "hprPct": 15, "ref": 10, "def": 5, "spRegen": 5, "tDamPct": -8, "type": "bracelet", "id": 476}, {"name": "Calidum Aurea", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1650, "fDef": 100, "wDef": -95, "lvl": 74, "defReq": 25, "sdPct": -10, "xpb": 5, "lb": 19, "def": 5, "fDamPct": 12, "id": 470}, {"name": "Cancer\u058e", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5200, "fDef": 180, "lvl": 98, "defReq": 80, "int": 10, "def": 15, "hprRaw": 300, "wDefPct": 50, "id": 475}, {"name": "Calming Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 260, "wDef": 60, "tDef": -60, "lvl": 93, "intReq": 35, "int": 5, "wDamPct": 7, "wDefPct": 7, "type": "necklace", "id": 474}, {"name": "Canopy", "tier": "Unique", "type": "leggings", "thorns": 14, "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1300, "fDef": -100, "wDef": 80, "eDef": 60, "lvl": 69, "strReq": 30, "intReq": 30, "sdPct": 4, "ref": 8, "eDamPct": 8, "wDefPct": 10, "id": 485}, {"name": "Canyon Spirit", "tier": "Unique", "type": "wand", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "agiReq": 35, "mdPct": 12, "xpb": 10, "lb": 10, "agi": 13, "aDamPct": 19, "id": 477}, {"name": "Capricorn", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 99, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 15, "ms": 5, "int": 12, "agi": 12, "spd": 18, "id": 480}, {"name": "Capsaicin", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 700, "fDef": -40, "lvl": 52, "defReq": 20, "hprPct": -15, "sdPct": 20, "mdPct": 20, "spd": 15, "hprRaw": -40, "sdRaw": 50, "fDamPct": 20, "fDefPct": -20, "id": 483}, {"name": "Carapace", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 70, "strReq": 20, "sdPct": -10, "mdPct": 10, "str": 13, "agi": -5, "spd": -10, "hpBonus": 700, "eDamPct": 10, "aDefPct": -20, "id": 479}, {"name": "Capstone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 880, "fDef": 35, "wDef": -30, "aDef": -30, "eDef": 35, "lvl": 55, "strReq": 10, "defReq": 30, "lb": 14, "str": 4, "def": 7, "spd": -6, "fDefPct": 14, "eDefPct": 14, "id": 481}, {"name": "Cardiac Arrest", "tier": "Legendary", "type": "chestplate", "poison": 1000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "tDef": 90, "eDef": 130, "lvl": 91, "strReq": 70, "dexReq": 50, "hprPct": -40, "sdPct": 30, "agi": -20, "def": -20, "atkTier": -1, "hprRaw": -200, "spPct2": -32, "spPct3": -21, "spPct4": -24, "id": 482}, {"name": "Cardinal Ruler", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "300-370", "fDam": "65-75", "wDam": "0-0", "aDam": "0-0", "tDam": "5-135", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 88, "dexReq": 35, "defReq": 35, "hprPct": -30, "sdPct": 15, "ls": 260, "ms": 10, "dex": 16, "spd": -20, "fDamPct": 15, "tDamPct": 15, "id": 488}, {"name": "Call of the Void", "tier": "Legendary", "type": "helmet", "thorns": 65, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 56, "hprPct": 10, "ls": -75, "ref": 65, "agi": -8, "hprRaw": 50, "id": 473}, {"name": "Careless Whisper", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "165-188", "wDam": "0-0", "aDam": "165-188", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "agiReq": 40, "defReq": 40, "mr": 5, "agi": 11, "def": 11, "spd": -8, "hpBonus": 1750, "hprRaw": 125, "spPct1": -48, "id": 490}, {"name": "Carnivorous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -8, "lvl": 33, "mdPct": 6, "ls": 10, "hprRaw": 4, "mdRaw": 9, "type": "ring", "id": 484}, {"name": "Carvel's Creation", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 51, "wDef": 7, "aDef": 7, "lvl": 14, "mr": 5, "xpb": 6, "lb": 6, "spd": 9, "id": 487}, {"name": "Carrot", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1-190", "atkSpd": "VERY_SLOW", "lvl": 58, "strReq": 15, "mdPct": 25, "ls": -90, "ms": -5, "str": 13, "int": -20, "agi": -5, "eDamPct": 40, "id": 486}, {"name": "Cascade", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "18-30", "fDam": "15-30", "wDam": "15-30", "aDam": "15-30", "tDam": "15-30", "eDam": "15-30", "atkSpd": "VERY_FAST", "lvl": 98, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "mr": 10, "sdPct": 30, "str": -6, "dex": -6, "int": -6, "agi": -6, "def": -6, "expd": 30, "spd": 30, "mdRaw": 65, "id": 489}, {"name": "Carvel's Sight", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "9-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "intReq": 8, "mr": 5, "sdPct": 4, "xpb": 4, "lb": 4, "id": 495}, {"name": "Candlestick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-22", "fDam": "11-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "sdPct": 8, "int": 5, "expd": 4, "fDamPct": 10, "wDamPct": -20, "id": 478}, {"name": "Cassiterite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 50, "eDef": 50, "lvl": 71, "strReq": 30, "defReq": 30, "hprPct": 15, "mdPct": 10, "xpb": 10, "mdRaw": 150, "fDefPct": 10, "eDefPct": 10, "id": 491}, {"name": "Cataract", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-1630", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "intReq": 50, "sdPct": 15, "ls": -130, "ms": 10, "dex": -30, "int": 10, "atkTier": -1, "wDamPct": 15, "tDefPct": -30, "id": 492}, {"name": "Caterpillar", "tier": "Rare", "type": "leggings", "poison": 3500, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2885, "aDef": -110, "eDef": 130, "lvl": 92, "strReq": 55, "dexReq": 40, "xpb": 8, "str": 8, "def": 5, "spd": -8, "atkTier": -8, "eDamPct": 20, "id": 497}, {"name": "Cave In", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 21, "strReq": 18, "lb": 10, "expd": 35, "spd": -20, "hprRaw": -20, "eDamPct": 25, "spPct3": -21, "id": 493}, {"name": "Celestial", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-16", "fDam": "0-0", "wDam": "0-0", "aDam": "6-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "agiReq": 8, "mr": 5, "xpb": 5, "ref": 3, "id": 501}, {"name": "Ceiling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-120", "tDam": "0-0", "eDam": "40-80", "atkSpd": "FAST", "lvl": 70, "strReq": 30, "agiReq": 35, "sdPct": -10, "mdPct": 10, "xpb": 15, "spd": 12, "wDamPct": -17, "id": 494}, {"name": "Celebration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "xpb": 25, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 5, "id": 500}, {"name": "Cementing Arrow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "140-175", "aDam": "0-0", "tDam": "0-0", "eDam": "140-175", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 8, "agi": -12, "spd": -12, "wDamPct": 8, "eDamPct": 8, "id": 496}, {"name": "Cemented Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "160-200", "fDam": "0-0", "wDam": "360-465", "aDam": "0-0", "tDam": "0-0", "eDam": "360-465", "atkSpd": "SUPER_SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 10, "agi": -12, "spd": -12, "wDamPct": 12, "eDamPct": 12, "id": 498}, {"name": "Cementing String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 48, "strReq": 20, "intReq": 20, "sdPct": 8, "mdPct": 8, "str": 5, "agi": -8, "spd": -8, "wDamPct": 6, "eDamPct": 6, "id": 503}, {"name": "Cenote", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 40, "eDef": 40, "lvl": 68, "strReq": 50, "intReq": 50, "hprPct": 20, "str": 4, "int": 4, "hprRaw": 55, "wDefPct": 12, "eDefPct": 12, "id": 504}, {"name": "Centrifugal", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-95", "atkSpd": "SLOW", "lvl": 90, "strReq": 25, "intReq": 25, "sdPct": 6, "mdPct": 6, "ms": 5, "spd": -7, "eDamPct": 8, "aDefPct": -10, "id": 502}, {"name": "Centennial", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2125, "fDef": 100, "wDef": 100, "lvl": 80, "intReq": 20, "defReq": 20, "hprPct": 18, "mr": 5, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 499}, {"name": "Ceramic Shell Greaves", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2555, "fDef": 135, "aDef": 70, "tDef": -135, "eDef": -70, "lvl": 91, "agiReq": 25, "defReq": 45, "sdPct": -40, "int": -12, "agi": 8, "expd": 18, "spd": 15, "wDamPct": 40, "fDefPct": 12, "aDefPct": 12, "spPct1": -21, "id": 507}, {"name": "Cerid's Dynamo", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 59, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "id": 506}, {"name": "Chain Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "45-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "strReq": 50, "agiReq": 20, "sdPct": -12, "mdPct": 8, "str": 8, "agi": 4, "eDamPct": 19, "fDefPct": -9, "id": 508}, {"name": "Cerid's Precision", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "wDef": -20, "tDef": 30, "eDef": -20, "lvl": 42, "dexReq": 25, "sdPct": 10, "dex": 9, "expd": 5, "mdRaw": 60, "tDamPct": 8, "eDamPct": -10, "wDefPct": -10, "eDefPct": -10, "id": 505}, {"name": "Chain Link", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 400, "lvl": 45, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdRaw": 30, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 511}, {"name": "Chain Rule", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "wDef": 85, "tDef": -75, "eDef": 145, "lvl": 85, "strReq": 105, "hprPct": -36, "ms": 5, "sdRaw": 135, "wDamPct": -20, "tDamPct": -22, "eDamPct": 20, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3617}, {"name": "Chains of Steel", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 280, "lvl": 38, "xpb": 5, "str": 7, "hpBonus": 40, "id": 510}, {"name": "Chained Pixels", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 512, "fDef": 16, "wDef": 16, "aDef": 16, "tDef": 16, "eDef": 16, "lvl": 38, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "xpb": 16, "lb": 16, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 509}, {"name": "Chakram", "tier": "Legendary", "type": "dagger", "poison": 350, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-50", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "22-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 60, "agi": 13, "spd": 21, "atkTier": 1, "eSteal": 5, "tDamPct": 10, "tDefPct": 10, "id": 513}, {"name": "Chaleur", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "70-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 25, "hprPct": -25, "int": -5, "def": 7, "expd": 15, "sdRaw": 35, "mdRaw": 59, "fDamPct": 15, "wDefPct": -25, "id": 512}, {"name": "Chandelle", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "5-8", "fDam": "5-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "hprPct": 5, "hpBonus": 10, "id": 540}, {"name": "Chameleon", "tier": "Unique", "type": "helmet", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 750, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 57, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 9, "mdPct": 9, "ref": 9, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "spd": 9, "id": 515}, {"name": "Chaos", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 62, "sdPct": 30, "mdPct": 30, "hpBonus": 1200, "sdRaw": 70, "mdRaw": 90, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 514}, {"name": "Chaotic", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-193", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 71, "dexReq": 40, "dex": 9, "expd": 7, "spd": 7, "eDamPct": -30, "eDefPct": -30, "id": 517}, {"name": "Charm of the Magma", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 45, "eDef": 45, "lvl": 88, "classReq": "Warrior", "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 10, "xpb": 6, "lb": 6, "spd": -8, "hpBonus": 500, "type": "necklace", "id": 516}, {"name": "Charm of the Storms", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -200, "wDef": 30, "aDef": 30, "tDef": -70, "lvl": 88, "classReq": "Archer", "intReq": 40, "agiReq": 40, "mdPct": -8, "xpb": 6, "lb": 6, "agi": 5, "wDamPct": 13, "aDamPct": 13, "type": "necklace", "id": 518}, {"name": "Charm of the Tides", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": 40, "tDef": -80, "lvl": 88, "classReq": "Mage", "intReq": 40, "defReq": 40, "mr": 5, "sdPct": -21, "mdPct": -21, "xpb": 6, "lb": 6, "wDamPct": 15, "type": "necklace", "id": 520}, {"name": "Charm of the Tempest", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 25, "tDef": 25, "eDef": -60, "lvl": 88, "classReq": "Assassin", "dexReq": 40, "agiReq": 40, "hprPct": -15, "xpb": 6, "lb": 6, "mdRaw": 52, "aDamPct": 11, "tDamPct": 11, "type": "necklace", "id": 523}, {"name": "Charm of the Flea", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 15, "lvl": 20, "agiReq": 8, "ls": 4, "agi": 3, "type": "necklace", "id": 522}, {"name": "Charm of the Leech", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 100, "lvl": 50, "intReq": 15, "ls": 21, "ms": 5, "tDefPct": -7, "type": "necklace", "id": 521}, {"name": "Charm of the Tick", "tier": "Unique", "poison": 60, "category": "accessory", "drop": "lootchest", "hp": 45, "lvl": 35, "ls": 9, "type": "necklace", "id": 524}, {"name": "Charon's Left Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-13", "eDam": "10-17", "atkSpd": "SLOW", "lvl": 21, "strReq": 10, "ls": 14, "ms": -5, "str": 4, "dex": 4, "spd": -5, "tDamPct": 10, "fDefPct": -15, "id": 525}, {"name": "Charm of the Vampire", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 65, "ls": 45, "tDamPct": 5, "type": "necklace", "id": 526}, {"name": "Charybdis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "wDef": 80, "tDef": -120, "eDef": 80, "lvl": 85, "strReq": 40, "intReq": 40, "mr": 5, "sdPct": 6, "str": 5, "int": 5, "spd": -8, "mdRaw": 190, "wDamPct": 12, "eDamPct": 12, "tDefPct": -12, "id": 528}, {"name": "Chef Hamsey's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 3, "drop": "never", "hp": 2900, "fDef": -150, "wDef": -150, "tDef": 150, "lvl": 96, "hprPct": 25, "mr": 10, "int": 7, "def": 7, "spRegen": 10, "id": 527}, {"name": "Cherufe", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "75-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-75", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "defReq": 20, "ls": 50, "def": 5, "mdRaw": 145, "eDamPct": 10, "wDefPct": -18, "id": 530}, {"name": "Chief", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "4-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 14, "xpb": 7, "lb": 8, "def": 4, "hpBonus": 40, "fDamPct": 5, "id": 533}, {"name": "Chest Breaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "strReq": 30, "sdPct": 7, "mdPct": 18, "str": 7, "def": -4, "expd": 8, "hpBonus": -210, "aDefPct": -15, "id": 531}, {"name": "Chestplate of Ineptitude", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3375, "lvl": 98, "sdPct": -10, "mdPct": 10, "str": -3, "dex": -3, "int": -3, "agi": -3, "def": -3, "atkTier": 1, "sdRaw": -110, "mdRaw": 140, "id": 529}, {"name": "Chill", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -40, "fDef": -5, "wDef": 5, "aDef": 5, "lvl": 41, "intReq": 15, "spd": -3, "sdRaw": 13, "wDamPct": 5, "aDamPct": 5, "type": "ring", "id": 534}, {"name": "Chimaera", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 78, "lvl": 13, "ls": 5, "str": 7, "agi": 7, "def": 7, "id": 536}, {"name": "Chinked Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "fDef": 90, "aDef": -160, "lvl": 72, "defReq": 20, "hprPct": 12, "def": 8, "spd": -9, "hpBonus": 650, "fDefPct": 15, "aDefPct": -15, "tDefPct": 7, "eDefPct": 7, "id": 537}, {"name": "Chipped Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "never", "hp": 7, "lvl": 3, "id": 539}, {"name": "Chipped Leather Pants", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "never", "hp": 11, "lvl": 5, "id": 535}, {"name": "Chipped Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "hp": 3, "lvl": 1, "id": 541}, {"name": "Chipped Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "hp": 16, "lvl": 7, "id": 538}, {"name": "Chimney", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 760, "fDef": 55, "wDef": -55, "aDef": 55, "lvl": 52, "agiReq": 25, "defReq": 25, "hprPct": 20, "agi": 5, "def": 5, "expd": 8, "wDamPct": -15, "fDefPct": 12, "aDefPct": 12, "id": 532}, {"name": "Chlorine", "tier": "Unique", "poison": 170, "category": "accessory", "drop": "lootchest", "tDef": -20, "lvl": 64, "intReq": 15, "hprPct": -7, "sdPct": 6, "wDamPct": 5, "type": "ring", "id": 542}, {"name": "Chlorofury", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-40", "fDam": "0-0", "wDam": "35-40", "aDam": "0-0", "tDam": "0-0", "eDam": "35-40", "atkSpd": "NORMAL", "lvl": 63, "strReq": 30, "intReq": 30, "sdPct": 8, "mdPct": 8, "hpBonus": -250, "sdRaw": 60, "mdRaw": 80, "id": 545}, {"name": "Chroma Cannon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "20-60", "wDam": "20-60", "aDam": "20-60", "tDam": "20-60", "eDam": "20-60", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "hpBonus": -150, "spRegen": -30, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 543}, {"name": "Cigar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 43, "expd": 5, "fDamPct": 12, "eDamPct": 6, "id": 546}, {"name": "Chrysoprase", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-100", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "SLOW", "lvl": 59, "strReq": 25, "defReq": 25, "sdPct": -13, "mdPct": 11, "hpBonus": 300, "fDamPct": 12, "wDamPct": -15, "eDamPct": 12, "wDefPct": -15, "id": 544}, {"name": "Ciocca", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "0-0", "aDam": "10-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "agiReq": 15, "sdPct": 8, "mdPct": -5, "spd": 8, "fDefPct": -8, "eDefPct": 8, "id": 548}, {"name": "Circuit Buster", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-31", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "dexReq": 10, "hprPct": -9, "dex": 5, "sdRaw": 15, "mdRaw": 20, "id": 547}, {"name": "Cinnabar", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 90, "wDef": -75, "aDef": 90, "tDef": -75, "lvl": 77, "agiReq": 55, "defReq": 55, "hprPct": 25, "sdPct": -12, "mdPct": -12, "agi": 9, "def": 9, "expd": 30, "hprRaw": 80, "fDefPct": 15, "aDefPct": 15, "id": 550}, {"name": "Cirrus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 40, "aDef": 70, "tDef": -90, "eDef": -70, "lvl": 69, "agiReq": 50, "ms": 5, "agi": 7, "spd": 12, "wDamPct": 6, "aDamPct": 10, "wDefPct": 10, "aDefPct": 6, "id": 553}, {"name": "Clairvoyance", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "intReq": 55, "sdPct": 20, "ms": 10, "ref": 20, "dex": 13, "spRegen": 5, "wDefPct": 14, "tDefPct": 14, "id": 551}, {"name": "Circuit Flights", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "43-60", "tDam": "52-74", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 66, "dexReq": 25, "agiReq": 25, "ls": -169, "xpb": 12, "mdRaw": 75, "aDamPct": 18, "tDamPct": 18, "eDefPct": 24, "id": 549}, {"name": "Clap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "mdPct": 4, "mdRaw": 4, "type": "ring", "id": 552}, {"name": "Clarity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 12, "int": 3, "type": "ring", "id": 556}, {"name": "Cleanshear", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 875, "lvl": 63, "dexReq": 60, "ls": 75, "ref": 3, "dex": 8, "spd": 6, "mdRaw": 100, "eDamPct": -10, "id": 554}, {"name": "Cleansing Flame", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "8-16", "fDam": "45-55", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 20, "defReq": 20, "mr": 5, "def": 8, "spd": -10, "hpBonus": 200, "wDamPct": 15, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 560}, {"name": "Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 5, "xpb": 3, "id": 557}, {"name": "Clash Hook", "tier": "Legendary", "type": "spear", "thorns": 34, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "5-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 10, "xpb": 10, "agi": 7, "spd": 5, "id": 555}, {"name": "Clearwater", "tier": "Unique", "type": "bow", "poison": -200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "intReq": 55, "hprPct": 20, "mr": 5, "int": 9, "spRegen": 5, "wDefPct": 14, "tDefPct": -8, "id": 558}, {"name": "Clerical", "tier": "Rare", "type": "leggings", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "wDef": 195, "tDef": -110, "lvl": 94, "intReq": 60, "mr": 5, "sdPct": -50, "mdPct": -60, "ref": 25, "int": 10, "wDamPct": 40, "tDamPct": -25, "wDefPct": 25, "id": 3605}, {"name": "Clay", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 50, "lvl": 73, "mdPct": 6, "type": "ring", "id": 559}, {"name": "Clock Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "xpb": 8, "id": 563}, {"name": "Cloud Cover", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "aDef": 80, "tDef": -70, "lvl": 72, "intReq": 15, "agiReq": 40, "ms": 5, "agi": 8, "spd": 6, "hprRaw": 60, "fDamPct": -11, "wDamPct": 8, "wDefPct": 11, "id": 561}, {"name": "Cloud Nine", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "30-100", "aDam": "10-10", "tDam": "50-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "intReq": 40, "mdPct": -11, "ref": 20, "dex": 8, "int": 8, "fDamPct": -40, "fDefPct": 15, "wDefPct": 25, "aDefPct": 20, "tDefPct": 25, "eDefPct": 15, "id": 564}, {"name": "Cloudbreaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-65", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "35-52", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "agiReq": 25, "dex": 7, "agi": 7, "spd": 20, "fDamPct": -5, "aDamPct": 20, "tDamPct": 20, "eDamPct": -10, "id": 562}, {"name": "Clovis Leg Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "fDef": -40, "aDef": 15, "eDef": 15, "lvl": 46, "strReq": 20, "agiReq": 20, "sdPct": -20, "mdPct": 8, "spd": 8, "mdRaw": 65, "aDamPct": 10, "eDamPct": 10, "id": 565}, {"name": "Cloudburst", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "aDef": 10, "lvl": 19, "agiReq": 20, "def": -5, "spd": 12, "mdRaw": 30, "aDamPct": 15, "id": 568}, {"name": "Cnidocyte", "tier": "Unique", "type": "leggings", "poison": 450, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 70, "aDef": -80, "tDef": -80, "eDef": 90, "lvl": 78, "strReq": 45, "intReq": 25, "hprPct": -16, "sdPct": 6, "mdPct": 6, "str": 7, "tDefPct": -20, "id": 566}, {"name": "Cluster", "tier": "Legendary", "type": "bow", "poison": 800, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-240", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "ls": 585, "ms": 10, "expd": 65, "eSteal": 10, "id": 567}, {"name": "Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "fDef": 15, "wDef": -15, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 3, "def": 4, "expd": 8, "spd": -5, "hpBonus": 70, "id": 570}, {"name": "Coba", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 80, "wDef": -70, "tDef": 80, "eDef": -100, "lvl": 78, "dexReq": 45, "defReq": 40, "sdPct": 7, "ls": 125, "xpb": 10, "lb": 15, "dex": 4, "hpBonus": -150, "spRegen": -5, "id": 569}, {"name": "Corase Torc", "displayName": "Coarse Torc", "tier": "Unique", "poison": 80, "category": "accessory", "drop": "lootchest", "hp": 55, "aDef": -20, "eDef": 20, "lvl": 43, "strReq": 15, "str": 3, "eDamPct": 7, "type": "necklace", "id": 571}, {"name": "Coat of Byakko", "tier": "Unique", "type": "chestplate", "thorns": 20, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -100, "aDef": 75, "eDef": 75, "lvl": 85, "strReq": 30, "agiReq": 30, "mdPct": -10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 220, "aDamPct": 10, "eDamPct": 10, "id": 574}, {"name": "Cobra", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "dexReq": 15, "xpb": 6, "lb": 6, "dex": 4, "eSteal": 6, "mdRaw": 23, "aDamPct": 6, "id": 573}, {"name": "Cockleburr", "tier": "Unique", "type": "dagger", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-155", "atkSpd": "SLOW", "lvl": 96, "strReq": 45, "ls": 290, "ms": 5, "spd": -8, "mdRaw": 190, "eDamPct": 7, "fDefPct": -10, "aDefPct": 12, "id": 575}, {"name": "Coconut\u058e", "displayName": "Coconut", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-105", "aDam": "0-0", "tDam": "0-0", "eDam": "90-105", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 20, "intReq": 15, "hprPct": 10, "mdPct": 12, "str": 7, "spd": -10, "id": 576}, {"name": "Coeur de Lion", "tier": "Rare", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-75", "fDam": "30-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 30, "hprPct": 15, "mr": 5, "def": 10, "hpBonus": 600, "fDefPct": 20, "wDefPct": -20, "id": 572}, {"name": "Cognizance", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "lvl": 49, "intReq": 40, "str": -4, "int": 10, "def": -4, "wDamPct": 7, "eDamPct": -7, "fDefPct": -7, "wDefPct": 7, "id": 580}, {"name": "Coiled Briar", "tier": "Rare", "thorns": 11, "category": "accessory", "drop": "lootchest", "fDef": -15, "lvl": 90, "mdPct": 5, "ref": -6, "spd": -5, "eDamPct": 8, "type": "ring", "id": 578}, {"name": "Cold Integrity", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "24-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 74, "intReq": 55, "agiReq": 40, "mr": 5, "int": 15, "hpBonus": -1500, "spRegen": 15, "sdRaw": 800, "wDamPct": 72, "aDefPct": 30, "id": 579}, {"name": "Col Legno", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-35", "eDam": "30-35", "atkSpd": "FAST", "lvl": 48, "strReq": 24, "dexReq": 24, "ls": -50, "def": -10, "mdRaw": 52, "tDamPct": 10, "eDamPct": 10, "id": 577}, {"name": "Cold Wave", "tier": "Fabled", "majorIds": ["FLASHFREEZE"], "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 75, "intReq": 40, "sdPct": 6, "spd": -10, "wDamPct": 8, "fDefPct": -14, "type": "ring", "id": 3556}, {"name": "Collector", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "necklace", "id": 583}, {"name": "Comfort", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 6, "hpBonus": 8, "hprRaw": 2, "mdRaw": -3, "type": "bracelet", "id": 588}, {"name": "Columns", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 50, "aDef": -5, "eDef": 5, "lvl": 11, "str": 4, "def": 4, "spd": -5, "hpBonus": 20, "id": 584}, {"name": "Collier Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "fDef": 7, "wDef": -5, "lvl": 14, "hprPct": 8, "def": 3, "hpBonus": 15, "id": 582}, {"name": "Concentration", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 8, "mr": 5, "type": "ring", "id": 581}, {"name": "Conclave Crossfire", "tier": "Rare", "type": "relik", "poison": 99, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "12-15", "wDam": "0-0", "aDam": "0-0", "tDam": "12-15", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 13, "defReq": 13, "str": -10, "dex": 15, "expd": -100, "aDamPct": -50, "eDamPct": -50, "id": 587}, {"name": "Conductor", "tier": "Legendary", "type": "leggings", "thorns": 9, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "wDef": -10, "tDef": -10, "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 14, "dex": 8, "expd": 7, "tDamPct": 16, "id": 585}, {"name": "Conflagrate", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1800, "fDef": 180, "lvl": 84, "defReq": 90, "ls": 260, "int": -16, "def": 16, "mdRaw": 285, "fDamPct": 50, "wDefPct": -30, "spRaw3": -5, "id": 589}, {"name": "Conductor's Baton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "27-37", "aDam": "0-0", "tDam": "27-37", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 25, "intReq": 35, "sdPct": 12, "ls": -120, "ms": 5, "dex": 5, "int": 7, "eDefPct": -12, "id": 600}, {"name": "Conference Call", "tier": "Legendary", "type": "relik", "poison": 1111, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-30", "fDam": "72-78", "wDam": "0-0", "aDam": "0-0", "tDam": "72-78", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 94, "dexReq": 47, "defReq": 47, "ls": 350, "ms": 10, "str": -15, "dex": 15, "expd": -100, "fDamPct": 15, "tDamPct": 15, "aDefPct": -70, "eDefPct": -70, "id": 591}, {"name": "Conrupt", "tier": "Rare", "type": "helmet", "poison": 600, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2950, "wDef": -100, "aDef": -100, "tDef": 110, "eDef": 110, "lvl": 99, "strReq": 50, "dexReq": 50, "mdPct": 15, "ls": 295, "str": 8, "dex": 8, "spRegen": -20, "hprRaw": -125, "tDamPct": 20, "eDamPct": 20, "id": 590}, {"name": "Conspirator's Trickpockets", "tier": "Fabled", "type": "leggings", "majorIds": ["CHERRY_BOMBS"], "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": -80, "eDef": -80, "lvl": 78, "classReq": "Assassin", "agiReq": 65, "mr": 5, "expd": 23, "eSteal": 5, "sdRaw": 140, "aDamPct": 19, "tDamPct": -58, "wDefPct": -20, "spRaw4": 5, "id": 3551}, {"name": "Contrail", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 10, "aDef": 50, "lvl": 94, "agiReq": 45, "agi": 4, "spd": 10, "aDamPct": 8, "type": "bracelet", "id": 597}, {"name": "Collier's Guard", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "fDef": 75, "wDef": -40, "aDef": -40, "lvl": 64, "defReq": 25, "hprPct": 21, "agi": -2, "def": 7, "expd": 5, "spd": -7, "hpBonus": 275, "id": 598}, {"name": "Contamination", "tier": "Legendary", "type": "bow", "poison": 1000, "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-30", "atkSpd": "SLOW", "lvl": 51, "sdPct": -15, "expd": 65, "spd": 6, "id": 593}, {"name": "Convallaria", "tier": "Legendary", "type": "leggings", "poison": 300, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -65, "eDef": 55, "lvl": 55, "strReq": 40, "ls": 75, "spd": -8, "mdRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 594}, {"name": "Cooler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -30, "wDef": 40, "aDef": 25, "tDef": -30, "lvl": 50, "intReq": 20, "ms": 5, "ref": 12, "int": 5, "spd": -11, "sdRaw": 55, "fDamPct": -5, "id": 596}, {"name": "Cool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 8, "sdPct": 4, "agi": 3, "type": "bracelet", "id": 592}, {"name": "Copper-Alloy Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-38", "fDam": "8-14", "wDam": "0-0", "aDam": "0-0", "tDam": "8-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "dexReq": 10, "defReq": 10, "sdPct": 5, "ms": 5, "fDamPct": 12, "tDamPct": 12, "eDefPct": -15, "id": 601}, {"name": "Copper-Alloy Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "fDef": 8, "wDef": -10, "tDef": 8, "eDef": -10, "lvl": 38, "dexReq": 10, "defReq": 10, "mdPct": 8, "hprRaw": 15, "fDamPct": 5, "wDamPct": -7, "tDamPct": 5, "eDamPct": -7, "id": 599}, {"name": "Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "fDef": -8, "tDef": -8, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 9, "ref": 5, "fDamPct": 6, "tDamPct": 8, "id": 605}, {"name": "Centipede", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 80, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "sdPct": -1000, "spd": 24, "atkTier": 2, "eSteal": 8, "fixID": true, "id": 604}, {"name": "Air Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": -50, "aDef": 300, "lvl": 80, "agiReq": 70, "aDamPct": 85, "fixID": true, "id": 602}, {"name": "Earth Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "aDef": -80, "eDef": 330, "lvl": 80, "strReq": 70, "eDamPct": 85, "fixID": true, "id": 603}, {"name": "Copper Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "73-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "73-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "strReq": 40, "dexReq": 35, "ms": 10, "tDamPct": 12, "eDamPct": 25, "fDefPct": -20, "wDefPct": -20, "tDefPct": -15, "id": 595}, {"name": "Fire Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 350, "wDef": -100, "lvl": 80, "defReq": 70, "fDamPct": 85, "fixID": true, "id": 608}, {"name": "Rainbow Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 80, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "fDamPct": 85, "wDamPct": 85, "aDamPct": 85, "tDamPct": 85, "eDamPct": 85, "fixID": true, "id": 606}, {"name": "Thunder Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "tDef": 320, "eDef": -70, "lvl": 80, "dexReq": 70, "tDamPct": 85, "fixID": true, "id": 609}, {"name": "Dust Skaters", "tier": "Rare", "type": "boots", "poison": 800, "thorns": 18, "sprint": 12, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2375, "aDef": 55, "eDef": -80, "lvl": 87, "agiReq": 55, "sdPct": 18, "agi": 8, "spd": 24, "mdRaw": 210, "eDamPct": 15, "aDefPct": 45, "fixID": true, "sprintReg": 12, "id": 611}, {"name": "Corrupted Nii Mukluk", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2275, "fDef": 100, "tDef": -50, "lvl": 78, "defReq": 65, "def": 10, "fDamPct": 20, "fDefPct": 10, "fixID": true, "id": 610, "set": "Corrupted Nii"}, {"name": "Water Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "wDef": 340, "tDef": -90, "lvl": 80, "intReq": 70, "wDamPct": 85, "fixID": true, "id": 615}, {"name": "Dune Storm", "tier": "Rare", "type": "helmet", "sprint": 28, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -1300, "aDef": 260, "eDef": 190, "lvl": 87, "strReq": 60, "agiReq": 70, "str": 12, "agi": 16, "spd": 36, "mdRaw": 520, "aDamPct": 56, "eDamPct": 48, "fixID": true, "id": 607}, {"name": "Golden Scarab", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "tDef": 80, "lvl": 88, "dexReq": 80, "sdPct": 24, "mdPct": 24, "ms": 10, "xpb": 16, "lb": 32, "dex": 8, "spd": 8, "eSteal": 8, "tDamPct": 8, "eDamPct": -64, "fixID": true, "id": 613}, {"name": "Infidel", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-875", "fDam": "0-0", "wDam": "0-1000", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 50, "intReq": 45, "sdPct": 20, "ms": 10, "dex": 5, "int": 10, "sdRaw": 285, "tDamPct": 30, "fDefPct": -70, "fixID": true, "id": 612}, {"name": "Judas", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-45", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 60, "mdPct": 33, "ls": -1085, "ms": 10, "lb": 30, "dex": 10, "spRegen": -30, "sdRaw": 125, "wDamPct": -70, "tDamPct": 20, "fixID": true, "id": 619}, {"name": "Lion's Pelt", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "aDef": -70, "tDef": 100, "eDef": 120, "lvl": 89, "strReq": 60, "mdPct": 15, "ls": 310, "str": 8, "eDamPct": 20, "eDefPct": 40, "fixID": true, "id": 614}, {"name": "Plague", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "500-720", "fDam": "500-720", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 55, "defReq": 45, "ls": 700, "ms": 15, "ref": 30, "def": 10, "expd": 30, "tDamPct": 15, "fDefPct": 30, "wDefPct": -40, "aDefPct": 35, "tDefPct": 25, "fixID": true, "id": 617}, {"name": "Manna", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "150-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 55, "intReq": 40, "mr": 10, "sdPct": 15, "str": 5, "int": 5, "hpBonus": 1800, "hprRaw": 175, "eDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "id": 616}, {"name": "Sacramentalia", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "aDef": 20, "tDef": 20, "lvl": 89, "strReq": 50, "intReq": 40, "mr": 10, "sdPct": -12, "spRegen": 10, "hprRaw": 50, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 618}, {"name": "Corrupted Nii Shako", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1650, "fDef": 50, "wDef": 50, "tDef": -50, "lvl": 70, "intReq": 50, "defReq": 50, "hprPct": 30, "mr": 5, "fDefPct": 15, "wDefPct": 15, "fixID": true, "id": 624, "set": "Corrupted Nii"}, {"name": "Corrupted Uth Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2850, "fDef": 150, "wDef": -70, "lvl": 86, "defReq": 75, "def": 10, "fDamPct": 15, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 620, "set": "Corrupted Uth"}, {"name": "Ghoul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "75-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "agiReq": 55, "ls": 235, "ms": 10, "agi": 10, "spd": 20, "aDamPct": 10, "tDamPct": 14, "fixID": true, "id": 621}, {"name": "Nest", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "NORMAL", "lvl": 76, "strReq": 20, "mdPct": 10, "xpb": 15, "fDamPct": -15, "aDamPct": -15, "tDamPct": -15, "eDamPct": 35, "fixID": true, "id": 623}, {"name": "Corrupted Nii Plate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1625, "wDef": 100, "tDef": -75, "lvl": 74, "intReq": 65, "int": 10, "wDamPct": 20, "wDefPct": 10, "fixID": true, "id": 622, "set": "Corrupted Nii"}, {"name": "Salticidae", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "315-815", "tDam": "0-0", "eDam": "95-495", "atkSpd": "SUPER_SLOW", "lvl": 76, "strReq": 30, "agiReq": 40, "sdPct": -10, "agi": 30, "spd": 42, "fixID": true, "jh": 3, "id": 676}, {"name": "Scytodidae", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "180-230", "fDam": "0-0", "wDam": "130-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "intReq": 40, "mr": 10, "ms": 10, "def": -20, "sdRaw": 130, "fDefPct": -10, "fixID": true, "id": 625}, {"name": "Vanguard", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 77, "sdPct": 10, "mdPct": 10, "xpb": 15, "lb": 10, "type": "bracelet", "fixID": true, "id": 626}, {"name": "Argos", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3900, "lvl": 86, "defReq": 50, "sdPct": -65, "ls": 275, "def": 15, "atkTier": -1, "fDamPct": 100, "fDefPct": 20, "fixID": true, "id": 630}, {"name": "Achilles", "tier": "Legendary", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3600, "fDef": 200, "wDef": -850, "aDef": 200, "tDef": 200, "eDef": 250, "lvl": 86, "strReq": 40, "defReq": 20, "str": 7, "def": 15, "mdRaw": 380, "fDamPct": 15, "eDamPct": 15, "fDefPct": 40, "eDefPct": 500, "fixID": true, "id": 627}, {"name": "Drain", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 375, "lvl": 85, "ls": 200, "xpb": 10, "spRegen": -75, "type": "necklace", "fixID": true, "id": 631}, {"name": "Corrupted Uth Plume", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "wDef": -60, "aDef": 150, "lvl": 82, "agiReq": 75, "agi": 10, "spd": 20, "aDamPct": 15, "fixID": true, "id": 632, "set": "Corrupted Uth"}, {"name": "Black Catalyst", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -325, "lvl": 83, "xpb": -5, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": -5, "type": "ring", "fixID": true, "id": 628, "set": "Black Catalyst"}, {"name": "Tophet", "tier": "Legendary", "type": "leggings", "poison": 666, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3050, "fDef": 100, "wDef": -120, "tDef": 100, "lvl": 85, "dexReq": 40, "ms": 10, "str": 5, "dex": 8, "def": 5, "expd": 35, "fDamPct": 25, "wDamPct": -15, "tDamPct": 20, "eDamPct": 20, "eDefPct": 25, "fixID": true, "id": 635}, {"name": "Prognosticum", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 84, "intReq": 40, "ms": 10, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 634}, {"name": "Coronium", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "wDef": -40, "tDef": 30, "lvl": 50, "dexReq": 20, "defReq": 15, "hprPct": -8, "xpb": 8, "def": 5, "expd": 12, "wDamPct": -10, "tDamPct": 10, "id": 638}, {"name": "Coriolis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "aDef": 55, "eDef": -60, "lvl": 58, "agiReq": 35, "ref": 6, "agi": 4, "spd": 12, "aDamPct": 11, "aDefPct": 8, "eDefPct": -10, "id": 633}, {"name": "Brace of the Ninth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "113-119", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "intReq": 55, "mr": 10, "ref": 20, "int": 40, "spd": -20, "wDamPct": 15, "fixID": true, "id": 636}, {"name": "Desperation", "tier": "Rare", "type": "dagger", "thorns": -100, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-76", "wDam": "0-0", "aDam": "0-160", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 91, "agiReq": 35, "defReq": 50, "hprPct": 50, "ls": 360, "ref": -100, "str": -20, "spd": 35, "hpBonus": -1000, "wDamPct": -20, "fixID": true, "id": 637}, {"name": "Closure", "tier": "Rare", "type": "bow", "poison": 1500, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "120-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-355", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "dexReq": 35, "defReq": 45, "ms": 15, "xpb": 15, "ref": 15, "sdRaw": 145, "fDamPct": 80, "aDamPct": -100, "aDefPct": -20, "fixID": true, "id": 643}, {"name": "Final Compulsion", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "270-315", "fDam": "130-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 35, "defReq": 50, "hprPct": -100, "mdPct": 40, "ls": 290, "spd": -10, "hpBonus": 2875, "tDamPct": -20, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 640}, {"name": "Pulse Stopper", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 20, "eDef": 20, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": -10, "sdPct": 10, "ls": 130, "sdRaw": 50, "type": "necklace", "fixID": true, "id": 642}, {"name": "Peaceful Rest", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "16-24", "fDam": "52-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 55, "defReq": 45, "sdPct": 35, "int": 8, "spd": -25, "atkTier": -30, "spRegen": 100, "wDamPct": 30, "tDamPct": -30, "fDefPct": 40, "wDefPct": 40, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "id": 644}, {"name": "Pulse Starter", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 650, "fDef": 35, "tDef": 35, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": 10, "hprRaw": 80, "fDamPct": 7, "tDamPct": 7, "type": "necklace", "fixID": true, "id": 641}, {"name": "Rune of Safe Passage", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": -25, "wDef": -30, "aDef": -25, "lvl": 92, "spd": 7, "spRegen": 5, "fDefPct": 15, "wDefPct": 10, "aDefPct": 15, "type": "ring", "fixID": true, "id": 645}, {"name": "Corrupted Uth Sandals", "tier": "Set", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3400, "fDef": 75, "wDef": -80, "aDef": 75, "lvl": 90, "agiReq": 85, "defReq": 85, "ref": 20, "spd": 30, "fixID": true, "id": 646, "set": "Corrupted Uth"}, {"name": "The Crossing", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "tDef": -75, "eDef": -75, "lvl": 93, "mr": -10, "spRegen": 10, "sdRaw": 425, "wDamPct": -20, "fixID": true, "id": 651}, {"name": "Corrupted Witherhead's Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "37-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-170", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 74, "dexReq": 75, "agiReq": 10, "sdPct": 20, "dex": 10, "spd": -15, "spRegen": -10, "aDamPct": 14, "tDamPct": 7, "fixID": true, "id": 667}, {"name": "Depth", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "45-55", "fDam": "30-45", "wDam": "0-0", "aDam": "55-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "agiReq": 40, "defReq": 20, "def": 5, "spd": 10, "hpBonus": 900, "fDamPct": 12, "aDamPct": 12, "fixID": true, "id": 649}, {"name": "Bane", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 120, "lvl": 72, "dexReq": 50, "dex": 17, "expd": 30, "mdRaw": 125, "fixID": true, "id": 647}, {"name": "Demonio", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "90-110", "fDam": "130-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 71, "defReq": 60, "ls": 190, "xpb": 10, "str": 5, "expd": 30, "eDamPct": 20, "fixID": true, "id": 648}, {"name": "Nightmare", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "defReq": 70, "hprPct": 30, "ls": 255, "agi": 12, "fDamPct": 10, "wDamPct": -20, "aDamPct": 15, "fixID": true, "id": 650}, {"name": "Gaze from the Snowbank", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3200, "wDef": -50, "aDef": -75, "lvl": 92, "strReq": 75, "ls": -240, "ms": 20, "spd": -12, "atkTier": -2, "eSteal": 8, "mdRaw": 700, "eDamPct": 40, "fixID": true, "id": 694}, {"name": "Destructor", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "460-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "dexReq": 50, "sdPct": -15, "mdPct": 35, "expd": 100, "spd": -100, "mdRaw": 315, "tDamPct": 10, "eDamPct": 25, "fixID": true, "id": 652}, {"name": "Wall Breaker", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "225-335", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-1125", "atkSpd": "SUPER_SLOW", "lvl": 72, "strReq": 80, "sdPct": -60, "mdPct": 65, "str": 10, "expd": 100, "spd": -20, "aDamPct": 15, "fixID": true, "id": 654}, {"name": "Corruption Seal", "tier": "Unique", "type": "boots", "poison": 675, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2650, "wDef": -90, "aDef": -90, "tDef": 90, "eDef": 90, "lvl": 92, "strReq": 40, "dexReq": 40, "ls": 205, "ms": 5, "str": 7, "dex": 7, "spRegen": -10, "hprRaw": -125, "tDamPct": 23, "eDamPct": 23, "id": 655}, {"name": "Cotton Swab", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "130-138", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 83, "agiReq": 40, "agi": 40, "fDefPct": -50, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 656}, {"name": "Void", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "aDef": 80, "lvl": 73, "agiReq": 60, "xpb": 15, "lb": 15, "int": -10, "spd": 15, "aDamPct": 15, "fixID": true, "id": 653}, {"name": "Cosmium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 450, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 657}, {"name": "Couteau", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "66-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 56, "sdPct": -5, "mdPct": 10, "str": 8, "dex": 8, "id": 662}, {"name": "Countdown", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-52", "fDam": "10-62", "wDam": "10-62", "aDam": "0-72", "tDam": "0-72", "eDam": "20-52", "atkSpd": "FAST", "lvl": 84, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": -15, "sdPct": 15, "mdPct": 15, "hprRaw": -290, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "id": 661}, {"name": "Coursing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1250, "wDef": -60, "eDef": -60, "lvl": 68, "dexReq": 25, "dex": 7, "expd": 10, "mdRaw": 105, "wDamPct": -7, "tDamPct": 13, "eDamPct": -7, "id": 659}, {"name": "Coyote Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 67, "dexReq": 20, "dex": 5, "agi": 3, "mdRaw": 16, "type": "necklace", "id": 663}, {"name": "Crack the Skies", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-160", "tDam": "80-110", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 100, "dexReq": 35, "agiReq": 50, "sdPct": 15, "dex": 7, "agi": 13, "spd": 15, "aDamPct": 10, "tDamPct": 12, "eDefPct": -16, "id": 664}, {"name": "Cracklers", "tier": "Unique", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 80, "wDef": -115, "tDef": 50, "lvl": 86, "defReq": 35, "hprPct": 30, "ls": 200, "def": 12, "expd": 20, "atkTier": -7, "mdRaw": 750, "fDamPct": 15, "tDamPct": 10, "wDefPct": -10, "id": 668}, {"name": "Coyopa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "52-96", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 25, "mr": -5, "sdPct": 12, "ls": 60, "ms": 5, "dex": 4, "expd": 15, "id": 660}, {"name": "Crackshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "149-149", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 11, "ms": 5, "xpb": 15, "id": 669}, {"name": "Crash", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -215, "wDef": -50, "tDef": 30, "eDef": 40, "lvl": 63, "strReq": 20, "dexReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "spd": -5, "type": "necklace", "id": 692}, {"name": "Crafted Gem", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "1-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 44, "xpb": 15, "lb": 12, "id": 665}, {"name": "Crater Print", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "wDef": -80, "aDef": -120, "eDef": 120, "lvl": 93, "strReq": 70, "sdPct": 19, "ms": 5, "str": 10, "spd": -15, "hprRaw": 155, "mdRaw": 255, "eDamPct": 15, "id": 671}, {"name": "Creek", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "wDef": 50, "tDef": -50, "lvl": 54, "intReq": 20, "mr": 5, "ref": 7, "spd": -10, "spRegen": 10, "wDefPct": 20, "id": 670}, {"name": "Crescendo", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 45, "wDef": 45, "lvl": 57, "intReq": 30, "defReq": 30, "hprPct": 22, "mr": 5, "sdPct": -15, "mdPct": -15, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "id": 673}, {"name": "Creeper Mask", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "thorns": 5, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 14, "expd": 5, "fixID": true, "id": 672}, {"name": "Crescent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-145", "fDam": "0-0", "wDam": "115-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "intReq": 50, "mr": 5, "xpb": 12, "spRegen": 10, "wDamPct": 15, "wDefPct": 15, "tDefPct": -10, "id": 677}, {"name": "Crestfallen", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -90, "lvl": 99, "strReq": 50, "agiReq": 40, "sdPct": 10, "mdPct": -15, "ms": 10, "sdRaw": 170, "fDamPct": -20, "tDamPct": -20, "id": 675}, {"name": "Cross", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "41-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "sdPct": -4, "mdPct": -3, "xpb": 10, "lb": 5, "id": 674}, {"name": "Cross-aegis", "displayName": "Cross-Aegis", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-105", "fDam": "31-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 30, "hprPct": 19, "def": 9, "spd": -12, "hpBonus": 450, "hprRaw": 32, "fDefPct": 13, "wDefPct": -30, "aDefPct": 13, "tDefPct": 12, "eDefPct": 12, "id": 678}, {"name": "Crimson", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-90", "fDam": "95-110", "wDam": "95-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 30, "ls": 436, "ms": -5, "int": 13, "def": 13, "hprRaw": 207, "aDefPct": 35, "tDefPct": 35, "eDefPct": 35, "id": 679}, {"name": "Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 42, "sdPct": 20, "mdPct": 20, "str": 7, "spd": -20, "id": 681}, {"name": "Crossroad Killer", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "314-486", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "194-686", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "dexReq": 70, "sdPct": -15, "mdPct": 19, "dex": 14, "def": -5, "eDefPct": -10, "id": 680}, {"name": "Crowbeak", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "21-24", "tDam": "14-36", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "sdPct": 5, "agi": 5, "spd": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": -6, "tDefPct": -6, "eDefPct": -6, "id": 682}, {"name": "Crown of Suzaku", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 2100, "fDef": 250, "wDef": -90, "aDef": 250, "lvl": 88, "strReq": 40, "dexReq": 40, "ls": 165, "ms": 5, "str": 5, "dex": 5, "agi": -5, "def": -5, "expd": 20, "spd": -9, "eSteal": 8, "tDamPct": 14, "eDamPct": 14, "id": 683}, {"name": "Crustacean", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "35-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "mr": 5, "hpBonus": 25, "id": 729}, {"name": "Crwth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "65-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "95-120", "atkSpd": "VERY_FAST", "lvl": 83, "strReq": 35, "defReq": 35, "mr": 5, "ms": -5, "spd": -10, "fDamPct": 23, "eDamPct": 23, "aDefPct": -15, "id": 687}, {"name": "Cruel Sun", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-85", "fDam": "75-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 24, "defReq": 15, "mdPct": 20, "ls": 20, "def": 10, "expd": 30, "hprRaw": -10, "fDamPct": 15, "spRaw1": 10, "id": 684}, {"name": "Crust Crusher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "195-210", "fDam": "210-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-270", "atkSpd": "VERY_SLOW", "lvl": 99, "strReq": 35, "defReq": 35, "sdPct": -8, "mdPct": 20, "str": 10, "def": 10, "expd": 20, "spd": -15, "id": 685}, {"name": "Cryoseism", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "241-275", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "intReq": 70, "mr": 10, "mdPct": -35, "int": 15, "spd": -10, "wDamPct": 25, "spRaw1": 5, "spRaw3": -5, "spRaw4": 5, "id": 686}, {"name": "Crystal", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1575, "wDef": 110, "aDef": 110, "tDef": -70, "eDef": -70, "lvl": 69, "intReq": 45, "agiReq": 45, "mr": 10, "ref": 50, "int": 9, "agi": 9, "spd": 10, "id": 688}, {"name": "Crystal Senbon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "77-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 690}, {"name": "Crystal Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 28, "strReq": 3, "dexReq": 3, "intReq": 3, "agiReq": 3, "defReq": 3, "ref": 5, "type": "necklace", "id": 689}, {"name": "Crystal Thorn", "tier": "Rare", "type": "wand", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "NORMAL", "lvl": 80, "strReq": 30, "intReq": 30, "mr": 10, "mdPct": 5, "ref": 12, "aDefPct": -10, "tDefPct": -10, "id": 693}, {"name": "Culex", "tier": "Rare", "type": "leggings", "poison": 172, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 585, "aDef": -20, "tDef": -25, "lvl": 50, "agiReq": 20, "ls": 60, "agi": 9, "id": 695}, {"name": "Cue Stick", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "220-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "150-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 50, "mdPct": 12, "ms": 5, "dex": 16, "eSteal": 5, "tDefPct": 77, "id": 691}, {"name": "Cumulus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1225, "wDef": 30, "aDef": 60, "tDef": -80, "lvl": 70, "agiReq": 40, "agi": 8, "spd": 9, "wDamPct": 10, "id": 701}, {"name": "Curador Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3300, "fDef": 120, "wDef": 120, "tDef": -150, "lvl": 99, "intReq": 45, "defReq": 45, "hprPct": 20, "ls": 255, "ms": 10, "dex": 8, "int": 5, "def": 5, "expd": -30, "hprRaw": 160, "eDamPct": -20, "id": 698}, {"name": "Curse", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "9-11", "aDam": "0-0", "tDam": "0-0", "eDam": "9-11", "atkSpd": "VERY_FAST", "lvl": 38, "strReq": 5, "hprPct": 12, "mr": 5, "ls": -20, "int": 7, "tDamPct": -10, "eDamPct": 10, "wDefPct": 10, "tDefPct": -10, "id": 697}, {"name": "Cursed Spike", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-185", "atkSpd": "FAST", "lvl": 80, "strReq": 45, "hprPct": -30, "hpBonus": -1700, "spRegen": -15, "eDefPct": 6, "id": 699}, {"name": "Cursed Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 18, "mr": -10, "ms": 20, "xpb": 10, "lb": 10, "spRegen": -5, "aDefPct": -15, "id": 702}, {"name": "Cursed Jackboots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 80, "tDef": 50, "lvl": 66, "dexReq": 20, "intReq": 20, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 120, "wDamPct": 12, "tDamPct": 12, "eDefPct": -35, "fixID": true, "id": 3630}, {"name": "Cyanine", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 90, "tDef": -120, "lvl": 73, "intReq": 55, "mdPct": -17, "int": 5, "wDamPct": 25, "tDefPct": -12, "id": 700}, {"name": "Cyclo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 21, "dexReq": 4, "agiReq": 8, "dex": 4, "agi": 8, "spd": 10, "sdRaw": 23, "mdRaw": 26, "id": 705}, {"name": "Cyclone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-45", "fDam": "0-0", "wDam": "0-0", "aDam": "30-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "agiReq": 25, "defReq": 40, "agi": 10, "spd": 25, "hprRaw": -150, "mdRaw": 45, "fDamPct": 30, "fDefPct": 8, "aDefPct": 8, "id": 703}, {"name": "Cyclops' Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "intReq": 10, "hprPct": -8, "mr": 5, "sdPct": 6, "int": 7, "sdRaw": 15, "id": 704}, {"name": "Cypress", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "9-57", "aDam": "0-0", "tDam": "0-0", "eDam": "16-50", "atkSpd": "SLOW", "lvl": 35, "strReq": 18, "intReq": 18, "sdPct": 10, "mdPct": 10, "str": 4, "int": 4, "wDamPct": 8, "eDamPct": 8, "aDefPct": -19, "id": 706}, {"name": "Czytash's Compass", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 20, "lvl": 55, "lb": 6, "agi": 4, "spd": 4, "type": "bracelet", "id": 707}, {"name": "Butterfly", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 70, "lvl": 24, "agiReq": 10, "agi": 12, "spd": 6, "aDefPct": 10, "fixID": true, "id": 709}, {"name": "Widow", "tier": "Rare", "type": "relik", "poison": 2400, "thorns": 55, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "42-43", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "dexReq": 40, "defReq": 30, "ls": 220, "ref": 30, "str": 40, "fixID": true, "spPct1": 105, "id": 708}, {"name": "Brise", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 135, "lvl": 24, "intReq": 12, "mr": 5, "sdPct": 15, "int": 5, "fixID": true, "id": 710}, {"name": "Garoth's Hope", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 160, "fDef": 15, "wDef": -20, "lvl": 26, "spd": -5, "fDamPct": 30, "fDefPct": 20, "fixID": true, "id": 713}, {"name": "Field", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 8, "wDef": 10, "aDef": 4, "tDef": 2, "eDef": 6, "lvl": 30, "fDamPct": 6, "wDamPct": 5, "aDamPct": 7, "tDamPct": 8, "eDamPct": 9, "type": "ring", "fixID": true, "id": 712}, {"name": "Gold Digger", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 120, "lvl": 25, "xpb": 10, "lb": 30, "spd": 3, "fixID": true, "id": 714}, {"name": "Mud", "tier": "Legendary", "type": "boots", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 280, "eDef": 20, "lvl": 28, "strReq": 15, "mdPct": 38, "str": 6, "spd": -10, "fixID": true, "id": 711}, {"name": "Nauticals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "75-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-140", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 45, "intReq": 60, "mr": 15, "sdPct": -25, "mdPct": -25, "ms": 15, "dex": 15, "int": 15, "spd": -10, "wDamPct": 30, "fixID": true, "id": 715}, {"name": "Vitre", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 26, "int": 5, "def": -5, "type": "bracelet", "fixID": true, "id": 716}, {"name": "Black Amaranth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-250", "atkSpd": "SLOW", "lvl": 95, "strReq": 60, "str": 10, "hpBonus": 1500, "hprRaw": -150, "eDamPct": 30, "eDefPct": 30, "fixID": true, "spRaw1": -10, "id": 718}, {"name": "Dying Lobelia", "tier": "Legendary", "poison": 1150, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 97, "strReq": 65, "hprPct": -20, "mdPct": 13, "wDamPct": -25, "type": "bracelet", "fixID": true, "id": 719}, {"name": "Forest Aconite", "tier": "Rare", "type": "dagger", "poison": 3300, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "strReq": 70, "hpBonus": -1000, "aDefPct": -25, "fixID": true, "spPct4": 28, "rainbowRaw": 1275, "id": 720}, {"name": "Flashfire Gauntlet", "tier": "Set", "thorns": 6, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 40, "lvl": 94, "defReq": 40, "def": 4, "hprRaw": 90, "type": "bracelet", "fixID": true, "id": 722, "set": "Flashfire"}, {"name": "Yellow Rose", "tier": "Rare", "type": "wand", "thorns": 80, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-925", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 95, "dexReq": 60, "mdPct": 15, "ls": 400, "str": 30, "int": 30, "agi": -30, "def": -30, "fixID": true, "id": 723}, {"name": "Flashfire Knuckle", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 450, "fDef": 10, "wDef": -30, "lvl": 94, "defReq": 40, "ls": 90, "sdRaw": -50, "type": "ring", "fixID": true, "id": 724, "set": "Flashfire"}, {"name": "Royal Hydrangea", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "150-175", "aDam": "140-185", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 65, "ref": 50, "int": 15, "agi": 25, "wDamPct": -25, "aDamPct": -25, "fixID": true, "spPct1": -105, "id": 721}, {"name": "Salpinx", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "113-167", "fDam": "0-0", "wDam": "0-0", "aDam": "113-167", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "agiReq": 77, "mr": -35, "ls": -277, "ms": 35, "agi": 21, "aDamPct": 21, "fixID": true, "spPct2": -54, "spPct3": -34, "id": 726}, {"name": "Paranoia", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "81-81", "fDam": "80-80", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "agiReq": 35, "defReq": 35, "mr": -5, "ls": 200, "ms": 10, "spd": 15, "hprRaw": -100, "fixID": true, "spPct1": -28, "id": 730}, {"name": "Byte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 91, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "type": "ring", "fixID": true, "id": 727}, {"name": "Anti-Static", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "tDef": 200, "eDef": 300, "lvl": 91, "strReq": 80, "ref": 15, "str": 10, "def": 8, "eDamPct": 15, "fDefPct": 10, "wDefPct": 5, "aDefPct": 15, "tDefPct": 30, "eDefPct": 20, "fixID": true, "id": 725}, {"name": "Discharge", "tier": "Rare", "type": "chestplate", "thorns": 15, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2800, "wDef": -100, "tDef": -50, "eDef": -150, "lvl": 91, "dexReq": 80, "dex": 10, "mdRaw": 155, "wDamPct": 10, "tDamPct": 70, "fixID": true, "id": 728}, {"name": "Compiler", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "500-685", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 55, "mdPct": 20, "xpb": 20, "str": 20, "dex": 20, "int": 20, "agi": 20, "def": 20, "eDamPct": 20, "fixID": true, "id": 856}, {"name": "Hardcore", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-149", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 75, "ms": 5, "mdRaw": 90, "tDamPct": -20, "eDamPct": 30, "wDefPct": -20, "aDefPct": -35, "fixID": true, "spRaw3": -10, "id": 733}, {"name": "Heat Sink", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3750, "fDef": 160, "lvl": 92, "agiReq": 55, "defReq": 45, "hprPct": 25, "ls": 400, "agi": 10, "def": 5, "spd": 15, "fDamPct": 15, "aDefPct": 20, "fixID": true, "sprintReg": 10, "id": 732}, {"name": "Megabyte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 92, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "type": "bracelet", "fixID": true, "id": 737}, {"name": "Packet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "65-185", "fDam": "0-0", "wDam": "0-0", "aDam": "155-155", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "agiReq": 50, "sdPct": 10, "agi": 5, "expd": 100, "spd": 10, "sdRaw": 210, "aDamPct": 15, "fixID": true, "id": 735}, {"name": "Sawtooth", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "20-45", "fDam": "10-35", "wDam": "10-35", "aDam": "10-35", "tDam": "10-35", "eDam": "10-35", "atkSpd": "SUPER_FAST", "lvl": 91, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 20, "mdPct": 20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 736}, {"name": "Wick", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "58-90", "fDam": "0-0", "wDam": "0-0", "aDam": "30-55", "tDam": "20-65", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "dexReq": 55, "agiReq": 45, "ms": 10, "ref": 30, "agi": 7, "spd": 25, "aDamPct": 15, "eDamPct": -25, "tDefPct": 20, "fixID": true, "id": 741}, {"name": "Sine", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2550, "wDef": 60, "tDef": 75, "lvl": 93, "dexReq": 75, "intReq": 75, "ms": 15, "dex": 15, "int": 15, "wDamPct": 15, "tDamPct": 15, "aDefPct": -45, "fixID": true, "id": 734}, {"name": "Ensa's Faith", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "fDef": -30, "wDef": 60, "lvl": 73, "intReq": 25, "hprPct": 23, "mr": 5, "xpb": 10, "ref": 10, "spRegen": 15, "type": "necklace", "id": 2263}, {"name": "Gale's Sight", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 2000, "fDef": -140, "aDef": 210, "tDef": 140, "lvl": 80, "agiReq": 60, "xpb": 30, "ref": 30, "dex": 7, "agi": 10, "spd": 20, "aDamPct": 15, "aDefPct": 25, "spRaw2": -15, "jh": 2, "id": 2265}, {"name": "Cerid's Ingenuity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 630, "fDef": 50, "wDef": 50, "aDef": 30, "lvl": 45, "intReq": 15, "defReq": 20, "hprPct": 18, "mr": 5, "fDamPct": 23, "wDamPct": 23, "tDefPct": -18, "eDefPct": -23, "id": 2262}, {"name": "Remikas' Authority", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "hp": 350, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 66, "defReq": 60, "str": 3, "dex": 2, "int": 3, "agi": 2, "def": 6, "type": "bracelet", "id": 2267}, {"name": "Rycar's Elation", "tier": "Legendary", "poison": 340, "category": "accessory", "drop": "DUNGEON", "hp": -140, "lvl": 59, "str": 7, "hprRaw": -25, "type": "ring", "id": 2266}, {"name": "Ohms' Rage", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 440, "aDef": 20, "tDef": 50, "lvl": 52, "dexReq": 40, "mr": -5, "mdPct": 30, "ms": -5, "tDamPct": 30, "wDefPct": -45, "eDefPct": -55, "spPct2": -14, "spPct3": -10, "id": 2264}, {"name": "Kindled Orchid", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": -80, "eDef": -80, "lvl": 96, "dexReq": 50, "defReq": 45, "hprPct": -30, "mr": -5, "mdPct": 10, "ls": 265, "def": 10, "atkTier": 1, "sdRaw": -75, "fixID": true, "id": 740}, {"name": "Ra", "tier": "Legendary", "category": "accessory", "drop": "dungeon", "wDef": -20, "lvl": 36, "hprPct": 12, "hprRaw": 12, "fDamPct": 6, "type": "bracelet", "id": 739}, {"name": "Tisaun's Valor", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 3075, "lvl": 87, "strReq": 50, "defReq": 60, "mdPct": 15, "xpb": 20, "str": 15, "def": 10, "atkTier": 1, "id": 2268}, {"name": "Rat Skull", "tier": "Unique", "type": "helmet", "poison": 4, "category": "armor", "slots": 1, "drop": "dungeon", "hp": 40, "aDef": 3, "lvl": 10, "spd": 8, "id": 744}, {"name": "Scorpion Tail", "tier": "Rare", "type": "leggings", "poison": 135, "category": "armor", "slots": 1, "drop": "dungeon", "restrict": "Untradable", "hp": 250, "lvl": 36, "spd": 5, "id": 738}, {"name": "Witherhead's Bow", "tier": "Legendary", "type": "bow", "poison": 40, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "3-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-17", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 12, "ms": 5, "agi": -3, "sdRaw": 8, "id": 742}, {"name": "Vertebra", "tier": "Unique", "category": "accessory", "drop": "dungeon", "lvl": 8, "def": 4, "hpBonus": 8, "type": "bracelet", "id": 743}, {"name": "Arakadicus' Body", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "dungeon", "hp": 145, "aDef": -10, "eDef": 15, "lvl": 21, "xpb": 10, "lb": 10, "str": 5, "dex": 5, "agi": 10, "spd": 10, "tDamPct": 15, "eDamPct": 15, "id": 745}, {"name": "Silkwrap", "tier": "Rare", "category": "accessory", "drop": "dungeon", "hp": 15, "lvl": 17, "defReq": 5, "mdPct": -3, "spd": -3, "hprRaw": 4, "type": "ring", "id": 747}, {"name": "Spider's Eye Pendant", "tier": "Rare", "category": "accessory", "drop": "dungeon", "lvl": 20, "mdPct": 8, "dex": 4, "type": "necklace", "id": 746}, {"name": "Spider Bracelet", "tier": "Unique", "poison": 18, "category": "accessory", "drop": "dungeon", "eDef": 5, "lvl": 19, "agi": 4, "type": "bracelet", "id": 748}, {"name": "Spiderweb String", "tier": "Unique", "type": "bow", "poison": 57, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "40-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 17, "ls": 15, "spd": -6, "id": 752}, {"name": "Webstring", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "16-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "14-16", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "dexReq": 5, "ms": 5, "dex": 7, "spd": -6, "eSteal": 3, "id": 749}, {"name": "Blasphemy", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "wDef": 30, "lvl": 50, "intReq": 40, "ls": 55, "ms": 30, "xpb": 10, "fixID": true, "id": 751}, {"name": "Brainfreeze", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 550, "wDef": 20, "aDef": 20, "lvl": 46, "sdPct": 18, "mdPct": 18, "int": -10, "spRegen": 10, "fixID": true, "id": 756}, {"name": "Criistal", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 49, "xpb": 15, "lb": 10, "spd": 5, "type": "necklace", "fixID": true, "id": 757}, {"name": "Heartbreak", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 550, "tDef": 30, "lvl": 49, "dexReq": 50, "dex": 5, "atkTier": 1, "tDamPct": 10, "fixID": true, "id": 753}, {"name": "Iron Foot", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "lvl": 49, "strReq": 35, "mdPct": 25, "str": 8, "spd": -10, "eDamPct": 15, "fDefPct": -10, "eDefPct": 20, "fixID": true, "id": 758}, {"name": "Hearthfire", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 48, "defReq": 30, "ls": 50, "def": 7, "fDefPct": 45, "fixID": true, "id": 754}, {"name": "Shade", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 450, "aDef": 40, "lvl": 48, "agiReq": 30, "agi": 10, "spd": 20, "fDamPct": -10, "wDamPct": -10, "aDamPct": 25, "tDamPct": -10, "eDamPct": -10, "fixID": true, "id": 755}, {"name": "Vapor", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 45, "intReq": 35, "fDamPct": 15, "wDamPct": -10, "fDefPct": 15, "type": "ring", "fixID": true, "id": 760}, {"name": "Barbed", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "dexReq": 50, "mdPct": 10, "ref": 20, "def": 5, "tDamPct": 15, "tDefPct": 10, "fixID": true, "id": 759}, {"name": "Cuthroat", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-65", "fDam": "65-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "defReq": 40, "ls": 75, "def": 5, "hpBonus": 980, "fixID": true, "id": 761}, {"name": "Jungle Spirit", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 45, "agi": 10, "spd": 10, "aDamPct": 22, "fixID": true, "id": 764}, {"name": "Granite Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 800, "lvl": 55, "strReq": 40, "sdPct": -30, "mdPct": 40, "spd": -15, "eDamPct": 10, "fixID": true, "id": 763}, {"name": "Fetish", "tier": "Rare", "type": "leggings", "poison": 250, "thorns": 10, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 30, "lvl": 55, "dexReq": 35, "dex": 5, "spd": 5, "mdRaw": 90, "tDamPct": 10, "fixID": true, "id": 762}, {"name": "Lobotomy", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 640, "aDef": 40, "lvl": 54, "agiReq": 35, "int": -20, "agi": 5, "spd": 10, "aDamPct": 25, "fixID": true, "id": 768}, {"name": "Molten Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 80, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 56, "defReq": 30, "hprPct": 10, "str": 4, "fDamPct": 15, "eDamPct": 15, "fixID": true, "id": 765}, {"name": "Sacrificial", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "79-95", "eDam": "80-85", "atkSpd": "NORMAL", "lvl": 55, "strReq": 30, "dexReq": 30, "ls": 85, "ms": 5, "tDamPct": 10, "eDamPct": 10, "fixID": true, "spRaw1": -5, "id": 770}, {"name": "Admiral", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 45, "wDef": 45, "aDef": 45, "tDef": 45, "eDef": 45, "lvl": 67, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "xpb": 15, "lb": 20, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "fixID": true, "id": 771}, {"name": "Whirlwind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "55-80", "fDam": "0-0", "wDam": "0-0", "aDam": "50-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "agiReq": 40, "sdPct": 7, "ref": 40, "spd": 10, "aDamPct": 6, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 767}, {"name": "Piranha", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "dungeon", "restrict": "Untradable", "hp": 470, "wDef": 20, "lvl": 56, "intReq": 35, "ms": 10, "dex": 5, "agi": 5, "wDamPct": 25, "fixID": true, "id": 766}, {"name": "Algaa", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-330", "atkSpd": "VERY_SLOW", "lvl": 64, "strReq": 40, "lb": 10, "str": 5, "int": 5, "wDamPct": 16, "fixID": true, "id": 774}, {"name": "Grounder", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "SLOW", "lvl": 64, "strReq": 40, "sdPct": -5, "mdPct": 10, "xpb": 18, "tDamPct": 10, "fixID": true, "id": 769}, {"name": "Ouragan", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "35-50", "fDam": "0-0", "wDam": "40-80", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 35, "mr": 10, "sdPct": 15, "agi": 4, "spd": 5, "aDamPct": 10, "fixID": true, "id": 772}, {"name": "Redbeard's Hand Cannon", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "960-1223", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 66, "strReq": 10, "lb": 30, "expd": 40, "spd": -20, "eSteal": 10, "fixID": true, "id": 776}, {"name": "The Evolved", "tier": "Legendary", "type": "bow", "poison": 3500, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 75, "hprPct": -80, "str": 25, "hpBonus": 2250, "mdRaw": 550, "fixID": true, "spRaw1": -20, "id": 777}, {"name": "Gaping Cavity", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "fDef": -80, "lvl": 100, "dexReq": 10, "ls": 1200, "ms": 20, "fixID": true, "id": 775}, {"name": "Rumble", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "6-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 64, "dexReq": 40, "mdPct": 10, "ls": 105, "eSteal": 5, "fDamPct": -10, "wDamPct": -10, "tDamPct": 15, "fixID": true, "id": 778}, {"name": "The Exploited", "tier": "Legendary", "type": "dagger", "majorIds": ["GREED"], "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "45-65", "wDam": "0-0", "aDam": "25-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "agiReq": 40, "defReq": 65, "sdPct": -30, "spd": 12, "eSteal": 10, "mdRaw": 135, "fixID": true, "spRaw4": -15, "id": 779}, {"name": "The Forsaken", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-100", "fDam": "0-0", "wDam": "28-65", "aDam": "28-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "intReq": 60, "agiReq": 60, "mr": -15, "ms": 15, "int": 10, "spd": 15, "sdRaw": 210, "tDamPct": 30, "fDefPct": -50, "eDefPct": -50, "fixID": true, "id": 780}, {"name": "The Watched", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "57-63", "wDam": "45-50", "aDam": "57-63", "tDam": "57-63", "eDam": "57-63", "atkSpd": "FAST", "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "sdPct": -25, "hpBonus": 5000, "wDamPct": 35, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "spRaw1": -5, "id": 783}, {"name": "Sprout", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-130", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 30, "sdPct": -25, "mdPct": 25, "spd": -25, "eDamPct": 12, "fixID": true, "id": 786}, {"name": "Clunderthap", "tier": "Rare", "type": "wand", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 20, "xpb": 20, "dex": 5, "hpBonus": -50, "tDamPct": 20, "fixID": true, "id": 784}, {"name": "Writhing Growth", "tier": "Legendary", "type": "leggings", "poison": 998, "thorns": 51, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4204, "fDef": 129, "tDef": 97, "eDef": 106, "lvl": 100, "strReq": 49, "dexReq": 31, "defReq": 37, "agi": -43, "atkTier": -6, "mdRaw": 1997, "fixID": true, "spPct1": 23, "spPct2": 15, "spPct3": 32, "spPct4": 23, "id": 782}, {"name": "Chaser", "tier": "Legendary", "type": "bow", "poison": 150, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-24", "fDam": "0-0", "wDam": "0-0", "aDam": "39-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "agiReq": 30, "agi": 10, "spd": 30, "fixID": true, "id": 785}, {"name": "Hashr Claw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-50", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 39, "dexReq": 30, "xpb": 10, "spd": 10, "sdRaw": 40, "wDamPct": 10, "fixID": true, "id": 790}, {"name": "Dune Beast Jaw", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 400, "lvl": 36, "strReq": 15, "mdPct": 10, "str": 10, "spd": 5, "fixID": true, "id": 787}, {"name": "Miasma", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-40", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 35, "ls": 39, "ms": 15, "agi": 3, "spd": 10, "fixID": true, "id": 802}, {"name": "Jaw Breaker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-135", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "mdPct": 10, "xpb": 10, "str": 8, "expd": 15, "spd": -5, "fixID": true, "id": 788}, {"name": "Springtrap", "tier": "Legendary", "type": "chestplate", "thorns": 65, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "eDef": 50, "lvl": 39, "hprPct": -25, "ref": 50, "expd": 40, "fixID": true, "id": 791}, {"name": "Tremolo", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "35-36", "tDam": "34-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 13, "agiReq": 13, "xpb": 11, "lb": 11, "str": -11, "dex": 11, "agi": 11, "fixID": true, "jh": 1, "id": 750}, {"name": "Sol", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-30", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 15, "hprPct": 12, "ref": 10, "hpBonus": 360, "hprRaw": 21, "eDamPct": 10, "fixID": true, "id": 794}, {"name": "Corpse", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-9", "atkSpd": "SLOW", "lvl": 8, "mdPct": 6, "lb": 6, "str": 1, "fixID": true, "id": 793}, {"name": "Defibrillator", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "4-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-15", "eDam": "0-0", "atkSpd": "FAST", "lvl": 9, "dex": 4, "mdRaw": 9, "tDamPct": 7, "fixID": true, "id": 792}, {"name": "Knee", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 38, "lvl": 9, "xpb": 5, "agi": 5, "fixID": true, "id": 797}, {"name": "Macabre", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "untradable", "nDam": "10-12", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "ls": 6, "def": 3, "fDamPct": 6, "fixID": true, "id": 798}, {"name": "Serpent's Kiss", "tier": "Rare", "type": "wand", "poison": 40, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "agi": 3, "fixID": true, "id": 795}, {"name": "Ribcage", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 58, "wDef": -3, "aDef": -3, "eDef": 5, "lvl": 12, "hprRaw": 5, "eDamPct": 6, "fixID": true, "id": 796}, {"name": "Sketiq", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "1-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "agi": 3, "spd": 5, "aDamPct": 6, "fixID": true, "id": 800}, {"name": "Skull Breaker", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "40-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 10, "sdPct": -6, "mdPct": 8, "spd": -3, "fixID": true, "id": 801}, {"name": "Fangs", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "sdPct": 7, "ms": 5, "xpb": 6, "int": 2, "fixID": true, "id": 799}, {"name": "Stale", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "sdPct": 10, "int": 3, "wDamPct": 6, "fixID": true, "id": 803}, {"name": "Witherhead's Talisman", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 12, "sdPct": 5, "xpb": 8, "lb": 5, "type": "necklace", "fixID": true, "id": 804}, {"name": "Hourglass", "tier": "Rare", "type": "relik", "poison": 135, "thorns": 18, "category": "weapon", "drop": "never", "restrict": "untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "agi": 4, "fixID": true, "spPct1": 105, "id": 805}, {"name": "Iklaj", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "9-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "agiReq": 5, "str": -3, "dex": 2, "agi": 4, "spd": 10, "tDamPct": 8, "fixID": true, "id": 812}, {"name": "Abdomen", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 20, "agi": 4, "spd": 7, "fixID": true, "id": 806, "set": "Spider"}, {"name": "Maul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "86-114", "atkSpd": "SUPER_SLOW", "lvl": 21, "strReq": 10, "mr": -5, "mdPct": 10, "spd": -6, "fixID": true, "id": 807}, {"name": "Cephalothorax", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 75, "lvl": 16, "dex": 4, "spd": 7, "fixID": true, "id": 809, "set": "Spider"}, {"name": "Spinneret", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 95, "lvl": 19, "dex": 3, "agi": 3, "spd": 7, "fixID": true, "id": 808, "set": "Spider"}, {"name": "Stingy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "wDef": -5, "lvl": 20, "wDamPct": -8, "tDamPct": 17, "fixID": true, "id": 813}, {"name": "Spider Ring", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 3, "lvl": 18, "ls": 3, "spd": 3, "type": "ring", "fixID": true, "id": 811}, {"name": "Sting", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "10-18", "fDam": "14-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "defReq": 5, "ls": 10, "fixID": true, "id": 814}, {"name": "Web Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 50, "fDef": -10, "eDef": 5, "lvl": 22, "ls": 16, "ms": 10, "spd": -10, "eDamPct": 5, "fixID": true, "id": 810}, {"name": "Abolition", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "50-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "defReq": 15, "ls": 38, "xpb": 22, "lb": 22, "fDamPct": 10, "fixID": true, "id": 816}, {"name": "Black Ripper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 250, "wDef": -10, "lvl": 30, "dexReq": 15, "mdRaw": 43, "tDamPct": 20, "fixID": true, "id": 820}, {"name": "Cathedral", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "14-24", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "agiReq": 20, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "aDefPct": 10, "fixID": true, "id": 817}, {"name": "Damnation", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "defReq": 20, "xpb": 10, "def": 4, "mdRaw": 70, "fDamPct": 32, "fixID": true, "id": 818}, {"name": "Dead Samurai's Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": 10, "wDef": 10, "aDef": 12, "lvl": 27, "agiReq": 10, "xpb": 8, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fixID": true, "id": 819}, {"name": "Hymn of the Dead", "tier": "Legendary", "type": "wand", "poison": 220, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "spd": 10, "aDamPct": 20, "fixID": true, "id": 823}, {"name": "Death's Reach", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "42-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "44-55", "atkSpd": "SLOW", "lvl": 29, "strReq": 10, "sdPct": -20, "mdPct": 20, "str": 4, "spd": -50, "eDamPct": 35, "fixID": true, "id": 822}, {"name": "Sanies", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-42", "fDam": "0-0", "wDam": "20-42", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 15, "sdPct": 40, "ms": -10, "wDamPct": 5, "eDamPct": 10, "fixID": true, "id": 821}, {"name": "Putrid", "tier": "Rare", "type": "wand", "poison": 60, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "14-18", "aDam": "0-0", "tDam": "0-0", "eDam": "16-22", "atkSpd": "NORMAL", "lvl": 28, "spd": -3, "hpBonus": 150, "fixID": true, "id": 825}, {"name": "Thriller", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "6-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 28, "dexReq": 20, "ms": 5, "spd": 8, "hpBonus": -100, "sdRaw": 40, "tDamPct": 13, "tDefPct": 13, "fixID": true, "id": 824}, {"name": "Styx's Grab", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "0-0", "wDam": "20-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "intReq": 12, "sdPct": 20, "ls": 24, "ms": 10, "fixID": true, "id": 826}, {"name": "Dalaam", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1480, "fDef": -75, "aDef": 75, "tDef": -75, "eDef": 75, "lvl": 67, "strReq": 30, "agiReq": 30, "mdPct": 10, "str": 10, "agi": 10, "spd": 10, "eDamPct": 10, "aDefPct": 10, "id": 828}, {"name": "Damasse", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 2, "lb": 6, "int": 3, "hpBonus": 3, "id": 827}, {"name": "Dance Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "fDef": -10, "aDef": 15, "eDef": -10, "lvl": 46, "agiReq": 20, "agi": 5, "spd": 11, "fDamPct": -5, "aDamPct": 5, "eDamPct": -5, "id": 829}, {"name": "Web Spitter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "13-26", "fDam": "0-0", "wDam": "14-20", "aDam": "10-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "agi": 3, "spd": 10, "aDamPct": 6, "fixID": true, "id": 815}, {"name": "Dancing Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-55", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "agiReq": 45, "ref": 15, "agi": 10, "spd": 15, "aDamPct": 15, "fDefPct": -15, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 832}, {"name": "Dancer's Rhythm", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-75", "fDam": "0-0", "wDam": "0-0", "aDam": "20-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "agiReq": 20, "agi": 7, "def": -5, "spd": 15, "id": 830}, {"name": "Dandelion", "tier": "Unique", "type": "chestplate", "thorns": 12, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "wDef": 5, "aDef": -6, "eDef": 5, "lvl": 22, "hprPct": 15, "sdRaw": 10, "id": 831}, {"name": "Dapper Trilby", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "lvl": 9, "xpb": 5, "lb": 4, "int": 3, "id": 833}, {"name": "Dark Ambience", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "ls": 5, "lb": 7, "id": 835}, {"name": "Dark Channeler", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "wDef": 90, "aDef": -100, "tDef": 90, "eDef": -100, "lvl": 93, "dexReq": 45, "intReq": 45, "mr": 5, "sdPct": 7, "ms": 5, "spRegen": -5, "sdRaw": 148, "wDamPct": 16, "tDamPct": 16, "aDefPct": -40, "eDefPct": -40, "id": 834}, {"name": "Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-14", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 6, "ms": 5, "eDefPct": -5, "id": 839}, {"name": "Dark Mage Robes", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "wDef": 30, "tDef": 30, "lvl": 52, "dexReq": 15, "intReq": 15, "mr": 5, "sdPct": 10, "mdPct": -10, "ms": 5, "wDamPct": 12, "tDamPct": 12, "fDefPct": -10, "aDefPct": -10, "eDefPct": -10, "id": 841}, {"name": "Dark Shroud", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "aDef": 50, "tDef": 70, "lvl": 82, "dexReq": 15, "agiReq": 50, "sdPct": -15, "mdPct": -20, "ms": 5, "ref": 30, "dex": 15, "agi": 35, "spd": 25, "aDefPct": 40, "id": 836}, {"name": "Karma", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "intReq": 25, "mr": 10, "sdPct": 108, "int": 6, "wDamPct": 10, "aDamPct": 20, "fixID": true, "id": 789}, {"name": "Darkiron Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "defReq": 5, "def": 4, "spd": -3, "hprRaw": 5, "type": "ring", "id": 837}, {"name": "Darkiron Scrap", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 25, "lvl": 3, "def": 7, "spd": -4, "hprRaw": 3, "id": 838}, {"name": "Darksteel Full Helm", "tier": "Rare", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "fDef": 100, "wDef": -120, "tDef": 100, "eDef": -80, "lvl": 90, "dexReq": 45, "defReq": 45, "ref": 15, "str": 10, "dex": 10, "def": 10, "spd": 15, "atkTier": -15, "mdRaw": 1050, "fDamPct": 15, "wDamPct": -15, "tDamPct": 15, "id": 840}, {"name": "Darksteel Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 450, "fDef": 40, "wDef": -30, "tDef": 40, "eDef": -30, "lvl": 96, "dexReq": 20, "defReq": 40, "dex": 5, "def": 4, "spd": -7, "hpBonus": 200, "type": "ring", "id": 862}, {"name": "Darkiron Zweihander", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-125", "fDam": "50-125", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 36, "agiReq": 15, "defReq": 25, "mdPct": 10, "ls": 39, "def": 7, "wDamPct": -15, "fDefPct": 20, "aDefPct": 20, "id": 843}, {"name": "Daybreak", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-50", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 40, "dexReq": 10, "defReq": 15, "hprPct": 10, "sdPct": 15, "lb": 10, "spd": -15, "atkTier": -1, "hpBonus": 125, "wDamPct": -15, "id": 881}, {"name": "Dart Frog's Skin", "tier": "Unique", "type": "boots", "poison": 3000, "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "fDef": 60, "aDef": -130, "eDef": 70, "lvl": 85, "strReq": 40, "defReq": 35, "sdPct": -10, "mdPct": -50, "ref": 20, "str": 4, "agi": 7, "spd": 12, "atkTier": -1, "tDefPct": -20, "id": 874}, {"name": "Darkweaver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "250-380", "aDam": "0-0", "tDam": "250-380", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 89, "dexReq": 40, "intReq": 40, "mr": -15, "sdPct": 19, "ms": 10, "ref": 17, "spd": -10, "wDamPct": 17, "tDamPct": 17, "eDefPct": -17, "id": 842}, {"name": "Dart Sling", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "sdPct": 6, "dex": 4, "id": 844}, {"name": "Dead Man's Flats", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "fDef": 40, "wDef": -75, "aDef": 30, "lvl": 55, "agiReq": 25, "defReq": 25, "hprPct": -10, "mdPct": 9, "spd": -9, "fDamPct": 12, "aDefPct": 11, "id": 845}, {"name": "Death Growl", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "str": 6, "id": 851}, {"name": "Deathbringer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-120", "eDam": "82-100", "atkSpd": "SLOW", "lvl": 83, "strReq": 35, "dexReq": 35, "mr": -5, "sdPct": 16, "mdPct": 22, "ls": 205, "ms": 5, "spd": -7, "hprRaw": -95, "id": 849}, {"name": "Dead Sands", "tier": "Legendary", "type": "leggings", "poison": 145, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 32, "hprPct": -35, "mdPct": 12, "ls": 26, "hpBonus": -100, "fDefPct": 15, "wDefPct": -20, "id": 847}, {"name": "Death's Toe", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "eDef": -35, "lvl": 49, "dexReq": 10, "ls": 28, "ms": 10, "id": 846}, {"name": "Decoder Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "intReq": 8, "sdPct": 6, "xpb": 9, "lb": 6, "type": "ring", "id": 855}, {"name": "Deathsplinter", "tier": "Unique", "type": "wand", "poison": 1420, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-170", "eDam": "0-170", "atkSpd": "SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "ls": 725, "ms": 5, "str": 25, "dex": 25, "hprRaw": -500, "aDefPct": -30, "id": 850}, {"name": "Deepwood Root", "tier": "Unique", "type": "wand", "thorns": 6, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "50-75", "atkSpd": "SLOW", "lvl": 86, "strReq": 30, "intReq": 35, "mr": 5, "sdPct": 10, "wDamPct": 8, "fDefPct": -20, "eDefPct": 12, "id": 848}, {"name": "Defiance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "aDef": 50, "lvl": 60, "agiReq": 40, "defReq": 40, "sdPct": -8, "mdPct": -8, "agi": 8, "def": 8, "spd": -12, "wDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 854}, {"name": "Deja Vu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "82-94", "wDam": "82-94", "aDam": "82-94", "tDam": "7-7", "eDam": "7-7", "atkSpd": "NORMAL", "lvl": 86, "strReq": 32, "dexReq": 32, "ls": 100, "lb": 25, "spd": 15, "hprRaw": -100, "fDamPct": -21, "wDamPct": -21, "aDamPct": -21, "tDamPct": 51, "eDamPct": 51, "id": 853}, {"name": "Delirium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "aDef": -200, "tDef": 125, "eDef": 70, "lvl": 87, "strReq": 50, "dexReq": 60, "mdPct": 14, "ls": -275, "ms": 5, "str": 13, "spd": 50, "tDamPct": 22, "eDamPct": 22, "id": 857}, {"name": "Demeter", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -90, "aDef": 50, "eDef": 40, "lvl": 68, "strReq": 35, "agiReq": 35, "agi": 7, "def": -8, "spd": 8, "mdRaw": 165, "fDamPct": -40, "eDamPct": 16, "aDefPct": 12, "id": 859}, {"name": "Deluge", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 700, "lvl": 56, "strReq": 45, "dexReq": 15, "mdPct": 12, "dex": 4, "mdRaw": 100, "tDamPct": 12, "eDamPct": 6, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 852}, {"name": "Dematerialized", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-61", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "intReq": 15, "agiReq": 40, "mr": 5, "ms": 5, "agi": 8, "spd": 16, "hpBonus": -180, "fDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 861}, {"name": "Demon Seeker", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "sdPct": 20, "xpb": 20, "lb": 20, "ref": 10, "id": 858}, {"name": "Demon Tide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2625, "fDef": 65, "wDef": -200, "tDef": 65, "lvl": 87, "dexReq": 65, "defReq": 45, "sdPct": -45, "mdPct": -40, "int": 10, "fDamPct": 10, "wDamPct": 20, "tDamPct": 10, "spPct1": -21, "spPct2": -14, "spPct3": -17, "spPct4": -21, "id": 860}, {"name": "Demon's Will", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-145", "fDam": "90-170", "wDam": "0-0", "aDam": "0-0", "tDam": "90-170", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "dexReq": 35, "defReq": 35, "ls": 440, "ms": 10, "expd": 5, "spRegen": -5, "sdRaw": 135, "fDamPct": 12, "tDamPct": 15, "wDefPct": -12, "aDefPct": -12, "id": 863}, {"name": "Depressing Shears", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 865}, {"name": "Depressing Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 864}, {"name": "Depressing Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 867}, {"name": "Deracine", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "mdPct": -20, "int": 5, "hpBonus": -50, "wDamPct": 12, "wDefPct": 10, "id": 869}, {"name": "Depressing Stick", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 866}, {"name": "Derecho", "tier": "Rare", "sprint": 9, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -60, "lvl": 85, "agiReq": 65, "agi": 13, "aDamPct": -7, "type": "necklace", "id": 3603}, {"name": "Dern's Desolation", "tier": "Rare", "type": "spear", "poison": 100, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-24", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "dexReq": 15, "mr": 5, "ms": 5, "aDamPct": -15, "id": 868}, {"name": "Dern's Shadow", "tier": "Rare", "type": "spear", "poison": 24, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "id": 873}, {"name": "Despair", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-80", "fDam": "0-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "dexReq": 25, "defReq": 25, "hprPct": -13, "sdPct": 13, "ls": 75, "ms": 5, "spRegen": -7, "wDamPct": -13, "id": 872}, {"name": "Deserter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "55-105", "tDam": "0-0", "eDam": "65-95", "atkSpd": "NORMAL", "lvl": 90, "strReq": 35, "agiReq": 35, "xpb": 8, "str": 16, "agi": 16, "spd": 8, "wDamPct": -20, "aDamPct": 12, "eDefPct": 12, "id": 870}, {"name": "Requiem", "displayName": "Desperado", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "12-40", "fDam": "13-91", "wDam": "0-0", "aDam": "0-0", "tDam": "22-30", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 40, "defReq": 50, "ms": 10, "agi": -10, "hpBonus": -1250, "sdRaw": 115, "fDamPct": 23, "wDamPct": -25, "tDamPct": 12, "eDefPct": -20, "id": 871}, {"name": "Detlas' Legacy", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "10-15", "aDam": "0-0", "tDam": "5-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 12, "mdPct": -5, "xpb": 8, "dex": 5, "int": 5, "wDamPct": 7, "id": 875}, {"name": "Determination", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 78, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 30, "sdPct": -30, "mdPct": -30, "spRegen": 10, "hprRaw": 120, "id": 877}, {"name": "Detlas' Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 172, "wDef": 20, "tDef": -15, "lvl": 29, "intReq": 5, "defReq": 5, "xpb": 15, "lb": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": -5, "id": 879}, {"name": "Detlas' Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-5", "fDam": "0-0", "wDam": "1-3", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 7, "mr": 5, "xpb": 6, "int": 4, "id": 876}, {"name": "Deux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "fDef": -80, "wDef": 150, "aDef": -80, "tDef": 150, "eDef": -80, "lvl": 81, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 5, "mdPct": -20, "ms": 10, "str": -4, "dex": 6, "int": 6, "agi": -4, "def": -4, "spRegen": 5, "id": 913}, {"name": "Devilish", "tier": "Rare", "poison": 192, "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": -15, "lvl": 52, "dexReq": 5, "defReq": 10, "ls": 29, "expd": 5, "hpBonus": -90, "spRegen": -5, "type": "bracelet", "id": 884}, {"name": "Devil's Scissor", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-24", "fDam": "16-24", "wDam": "0-0", "aDam": "0-0", "tDam": "16-24", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "dexReq": 10, "defReq": 10, "mdPct": 5, "ls": 25, "str": 7, "id": 878}, {"name": "Devotion", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 15, "lvl": 58, "hprPct": 5, "sdPct": 5, "spRegen": 5, "mdRaw": -16, "type": "necklace", "id": 883}, {"name": "Dhoruba", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "dexReq": 40, "ms": 10, "xpb": 15, "lb": 15, "str": -8, "dex": 8, "aDefPct": -30, "tDefPct": 15, "eDefPct": 15, "id": 882}, {"name": "Diablo", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-80", "fDam": "60-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "strReq": 10, "defReq": 30, "sdPct": -24, "mdPct": 36, "def": 7, "expd": 33, "spd": -10, "fDamPct": 25, "wDamPct": -50, "wDefPct": -30, "id": 888}, {"name": "Devoreuse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "hprPct": 10, "mr": 5, "ls": 41, "ms": 5, "int": -3, "wDamPct": -15, "id": 880}, {"name": "Diaminar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-70", "fDam": "320-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "defReq": 50, "ls": 315, "def": 8, "spd": -5, "hpBonus": 1500, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 886}, {"name": "Diamond Sky", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "xpb": 8, "lb": 18, "id": 885}, {"name": "Diamond Dust", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2375, "lvl": 93, "xpb": 19, "lb": 34, "ref": 19, "fDefPct": -11, "wDefPct": -11, "aDefPct": -11, "tDefPct": -11, "eDefPct": -11, "id": 887}, {"name": "Digested Dagger", "tier": "Unique", "type": "dagger", "poison": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "str": 3, "dex": 3, "id": 892}, {"name": "Diet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 17, "agiReq": 5, "str": -2, "agi": 4, "spd": 6, "type": "ring", "id": 890}, {"name": "Diode", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "lvl": 24, "dexReq": 10, "ref": 6, "dex": 5, "spd": 4, "tDamPct": 10, "id": 891}, {"name": "Dionaea", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3850, "fDef": 80, "eDef": 110, "lvl": 96, "strReq": 40, "defReq": 40, "sdPct": -8, "mdPct": 12, "ls": 225, "mdRaw": 195, "wDefPct": 25, "aDefPct": -15, "tDefPct": -10, "id": 889}, {"name": "Diorite Boots", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "fDef": 20, "wDef": -40, "eDef": 15, "lvl": 40, "strReq": 25, "defReq": 15, "mdPct": 12, "def": 8, "expd": 6, "fDamPct": 12, "eDamPct": 12, "wDefPct": -24, "id": 894}, {"name": "Disappeared", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -50, "aDef": 10, "lvl": 26, "agiReq": 8, "agi": 7, "type": "necklace", "id": 895}, {"name": "Dirge", "tier": "Unique", "type": "wand", "poison": 485, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "55-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "strReq": 20, "agiReq": 10, "ls": 110, "str": 7, "agi": -2, "aDamPct": -10, "eDamPct": 20, "id": 893}, {"name": "Disco", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 27, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spd": 11, "id": 896}, {"name": "Discordant", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 92, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 897}, {"name": "Discord", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 370, "fDef": -15, "wDef": -15, "aDef": -15, "eDef": -30, "lvl": 40, "dexReq": 40, "sdPct": 6, "mdPct": 6, "dex": 7, "expd": 10, "spd": 6, "tDamPct": 20, "id": 899}, {"name": "Dislocater", "tier": "Legendary", "type": "dagger", "thorns": 7, "category": "weapon", "drop": "NORMAL", "nDam": "31-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "sdPct": -10, "mdPct": 12, "str": 7, "id": 900}, {"name": "Discotek", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-33", "wDam": "23-33", "aDam": "23-33", "tDam": "23-33", "eDam": "23-33", "atkSpd": "FAST", "lvl": 49, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "sdPct": 15, "mdPct": 15, "spd": 10, "hpBonus": -300, "spPct1": 25, "spPct3": -24, "jh": 1, "id": 898}, {"name": "Dissector", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "ls": 55, "xpb": 5, "lb": 5, "spd": 5, "id": 902}, {"name": "Djinni", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "140-170", "wDam": "0-0", "aDam": "160-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "agiReq": 35, "defReq": 40, "hprPct": 20, "sdPct": 16, "mdPct": -30, "lb": 15, "hprRaw": 160, "fDamPct": 25, "id": 904}, {"name": "Dizzy Spell", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 120, "tDef": -120, "eDef": 120, "lvl": 88, "strReq": 50, "agiReq": 50, "mr": -10, "ls": 215, "ms": 10, "str": 9, "agi": 9, "spd": 16, "mdRaw": 215, "id": 901}, {"name": "Dofotri", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 1, "spd": 5, "type": "ring", "id": 905}, {"name": "Dolomite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "aDef": -50, "eDef": 50, "lvl": 57, "strReq": 35, "sdPct": -10, "mdPct": 12, "lb": 7, "expd": 15, "spd": -10, "eDamPct": 8, "id": 903}, {"name": "Doppler", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": -45, "aDef": 30, "tDef": 30, "eDef": -45, "lvl": 50, "dexReq": 25, "agiReq": 25, "sdPct": 4, "def": -5, "spd": 15, "aDamPct": 12, "tDamPct": 12, "fDefPct": -13, "id": 907}, {"name": "Doomsday", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "strReq": 40, "dexReq": 15, "mr": -5, "mdPct": 10, "ms": 5, "dex": 8, "wDamPct": -20, "eDamPct": 20, "id": 906}, {"name": "Double Vision", "tier": "Fabled", "quest": "Realm of Light V - The Realm of Light", "majorIds": ["LIGHTWEIGHT"], "sprint": 11, "category": "accessory", "drop": "never", "hp": -750, "aDef": -50, "lvl": 79, "xpb": 17, "agi": 3, "spd": 11, "type": "bracelet", "sprintReg": 11, "jh": 3, "id": 3581}, {"name": "Dorian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-106", "fDam": "100-106", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "defReq": 45, "hprPct": 15, "sdPct": 12, "mdPct": -10, "ls": -105, "def": 8, "hprRaw": 45, "wDamPct": -19, "id": 909}, {"name": "Doubt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "530-600", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "560-670", "atkSpd": "SUPER_SLOW", "lvl": 93, "strReq": 35, "defReq": 50, "mdPct": 15, "fDamPct": 35, "wDamPct": -55, "aDamPct": -55, "tDamPct": -25, "fDefPct": 25, "wDefPct": 15, "tDefPct": 15, "eDefPct": 20, "id": 935}, {"name": "Downfall", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -600, "wDef": -35, "aDef": -35, "lvl": 98, "strReq": 60, "defReq": 55, "str": 6, "spd": 12, "mdRaw": 70, "fDamPct": 8, "eDamPct": 8, "type": "ring", "id": 910}, {"name": "Paradox", "displayName": "Dragon Dance", "tier": "Rare", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "fDef": 30, "wDef": 30, "aDef": 150, "tDef": 30, "eDef": -150, "lvl": 98, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 15, "sdPct": 21, "mdPct": -50, "ls": -235, "ms": 5, "str": -99, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 20, "hprRaw": -195, "sdRaw": 145, "eDefPct": -20, "jh": 1, "id": 2092}, {"name": "Dragon Hide Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 510, "fDef": 50, "wDef": -50, "lvl": 47, "defReq": 25, "sdPct": 5, "lb": 5, "str": 7, "def": 7, "expd": 3, "fDamPct": 10, "wDamPct": -50, "fDefPct": 10, "wDefPct": -20, "id": 912}, {"name": "Dragon Fang", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "4-18", "fDam": "22-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "defReq": 15, "xpb": 5, "def": 7, "expd": 10, "fDamPct": 10, "wDamPct": -20, "fDefPct": 10, "id": 908}, {"name": "Dragon Hide Plate", "tier": "Rare", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2000, "fDef": 100, "lvl": 82, "hprPct": 20, "mr": 5, "xpb": 20, "def": 10, "expd": 20, "fDamPct": 20, "fDefPct": 20, "id": 911}, {"name": "Dragon Slayer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-80", "fDam": "60-70", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 79, "defReq": 40, "xpb": 7, "hpBonus": 500, "fDamPct": 5, "aDamPct": 10, "id": 914}, {"name": "Dragon Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": 30, "wDef": -20, "lvl": 57, "defReq": 10, "sdPct": 5, "lb": 15, "fDamPct": 7, "wDamPct": -10, "id": 915}, {"name": "Dragon's Tongue", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-110", "wDam": "70-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 55, "defReq": 55, "hprPct": 46, "mr": 10, "sdPct": -24, "mdPct": -24, "int": 10, "def": 10, "hprRaw": 131, "tDamPct": -45, "eDamPct": -45, "id": 918}, {"name": "Draken", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "tDef": 70, "eDef": -100, "lvl": 70, "dexReq": 65, "ms": 10, "str": -7, "dex": 9, "tDamPct": 18, "eDamPct": -12, "tDefPct": 10, "eDefPct": -12, "id": 919}, {"name": "Drale's Hide", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "eDef": 5, "lvl": 9, "mdPct": 4, "str": 4, "spd": 6, "id": 917}, {"name": "Dread", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "sdPct": 4, "dex": 3, "spd": 4, "hpBonus": -18, "id": 921}, {"name": "Dravarden", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 950, "fDef": 30, "wDef": 30, "tDef": 30, "lvl": 56, "dexReq": 15, "intReq": 15, "defReq": 15, "hprPct": 20, "mr": 5, "sdPct": 15, "dex": 7, "int": 7, "def": 7, "aDamPct": -40, "eDamPct": -40, "aDefPct": -25, "eDefPct": -25, "id": 916}, {"name": "Dreamcloud", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 70, "wDef": 70, "aDef": 70, "tDef": 70, "eDef": 70, "lvl": 88, "intReq": 30, "agiReq": 30, "hprPct": 20, "mr": 10, "hprRaw": 160, "fDamPct": -8, "wDamPct": -2, "aDamPct": -2, "tDamPct": -8, "eDamPct": -5, "id": 922}, {"name": "Drifter", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-62", "fDam": "0-0", "wDam": "36-88", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 62, "intReq": 30, "dex": -4, "int": 8, "agi": 4, "spd": 13, "sdRaw": 70, "wDamPct": 12, "wDefPct": 17, "tDefPct": -20, "id": 925}, {"name": "Drizzling Doublet", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 375, "tDef": -30, "lvl": 56, "intReq": 40, "mr": 10, "mdPct": -10, "ms": 10, "xpb": 15, "int": 5, "wDamPct": 7, "wDefPct": 7, "tDefPct": -20, "id": 923}, {"name": "Druid's Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "wDef": 20, "eDef": 20, "lvl": 65, "strReq": 5, "intReq": 5, "wDamPct": 5, "eDamPct": 5, "wDefPct": 10, "eDefPct": 10, "type": "ring", "id": 924}, {"name": "Droplets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-95", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 40, "mr": 10, "xpb": 8, "ref": 15, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 926}, {"name": "Dune Sandals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -15, "wDef": -15, "aDef": 20, "eDef": 15, "lvl": 33, "agiReq": 10, "str": 4, "spd": 7, "wDamPct": -10, "aDamPct": 9, "eDamPct": 12, "id": 928}, {"name": "Dunesweeper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "110-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 92, "strReq": 25, "agiReq": 35, "lb": 12, "spd": 15, "mdRaw": 155, "tDamPct": -6, "eDamPct": 19, "aDefPct": 19, "id": 930}, {"name": "Drumstick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "34-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "agiReq": 30, "dex": 13, "mdRaw": 41, "aDamPct": 25, "id": 927}, {"name": "Drifting Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "50-100", "aDam": "15-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "intReq": 25, "agiReq": 25, "xpb": 9, "int": 4, "agi": 5, "spd": 11, "fDamPct": -20, "aDamPct": 15, "wDefPct": 15, "aDefPct": 18, "id": 920}, {"name": "DuskHelm", "displayName": "Duskhelm", "tier": "Unique", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "fDef": 10, "wDef": -7, "lvl": 26, "ref": 5, "fDamPct": -15, "wDamPct": 15, "fDefPct": 5, "wDefPct": -5, "id": 929}, {"name": "Durum's Journey", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 550, "fDef": -20, "wDef": 15, "tDef": -25, "eDef": 30, "lvl": 48, "mr": 5, "sdPct": -15, "xpb": 15, "int": 7, "spd": 10, "hpBonus": 70, "hprRaw": 25, "aDefPct": -15, "id": 932}, {"name": "Dusk Painter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": -5, "sdPct": 7, "mdPct": 7, "ls": 12, "ms": 10, "hprRaw": -8, "id": 931}, {"name": "Dust Bowl", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 500, "aDef": 20, "eDef": 15, "lvl": 51, "strReq": 20, "agiReq": 15, "str": 7, "spd": 10, "sdRaw": -30, "aDamPct": 10, "eDamPct": 12, "id": 939}, {"name": "Dust Devil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -10, "lvl": 88, "agiReq": 30, "spd": 8, "aDamPct": 9, "eDamPct": 9, "type": "ring", "id": 937}, {"name": "DuskShield", "displayName": "Duskshield", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "wDef": 15, "tDef": 15, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -5, "ref": 8, "fDamPct": -8, "eDamPct": -8, "wDefPct": 6, "tDefPct": 6, "id": 934}, {"name": "Dust", "tier": "Rare", "type": "chestplate", "poison": 105, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "aDef": -15, "lvl": 32, "hprPct": -9, "agi": 5, "aDamPct": 8, "eDamPct": 4, "wDefPct": -6, "id": 933}, {"name": "Dusty Staff", "tier": "Unique", "type": "wand", "poison": 80, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "12-16", "atkSpd": "SLOW", "lvl": 26, "strReq": 8, "lb": 12, "aDefPct": -4, "eDefPct": 7, "id": 938}, {"name": "Dying Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "131-141", "aDam": "121-151", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 38, "agiReq": 38, "sdPct": 20, "ls": -217, "int": 10, "agi": 10, "spd": 10, "wDamPct": 15, "aDamPct": 15, "id": 941}, {"name": "Dynamic", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 7, "eDef": -7, "lvl": 28, "dexReq": 10, "dex": 4, "mdRaw": 5, "tDamPct": 6, "type": "bracelet", "id": 940}, {"name": "Dysnomia", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": -40, "aDef": -40, "lvl": 52, "strReq": 25, "dexReq": 40, "hprPct": -40, "ms": 10, "spd": 10, "wDamPct": -20, "eDamPct": 10, "id": 944}, {"name": "Earth Breaker", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "fDef": 90, "aDef": -150, "eDef": 90, "lvl": 90, "strReq": 50, "defReq": 40, "ls": 220, "str": 9, "def": 8, "expd": 25, "atkTier": -10, "mdRaw": 1150, "fDamPct": 31, "eDamPct": 15, "id": 942}, {"name": "Earth Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-200", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 943}, {"name": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 945}, {"name": "Earthquake", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-114", "fDam": "80-149", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-149", "atkSpd": "SUPER_SLOW", "lvl": 60, "strReq": 25, "defReq": 25, "sdPct": -10, "mdPct": 10, "expd": 25, "spd": -15, "fDamPct": 10, "eDamPct": 10, "wDefPct": -15, "id": 948}, {"name": "Earth Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-190", "atkSpd": "VERY_SLOW", "lvl": 60, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 949}, {"name": "Earth Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-70", "atkSpd": "SLOW", "lvl": 55, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 946}, {"name": "Earthsky Equinox", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "100-165", "tDam": "0-0", "eDam": "120-145", "atkSpd": "FAST", "lvl": 98, "strReq": 50, "agiReq": 50, "mdPct": 15, "str": 16, "agi": 16, "spd": 15, "atkTier": 1, "tDefPct": -30, "id": 947}, {"name": "Dusty Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "agi": 3, "type": "ring", "id": 936}, {"name": "Eater", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "ls": 3, "type": "ring", "id": 952}, {"name": "Ebrithil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "intReq": 40, "sdPct": 4, "int": 5, "spRegen": 8, "type": "necklace", "id": 950}, {"name": "Ebb and Flow", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-24", "fDam": "0-0", "wDam": "46-54", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 37, "intReq": 20, "mr": 5, "sdPct": 11, "str": -5, "dex": -5, "int": 14, "agi": -5, "def": -5, "spRegen": 16, "wDamPct": 11, "id": 951}, {"name": "Echolocation", "tier": "Unique", "type": "relik", "poison": 111, "thorns": -10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "39-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 35, "ls": 18, "ref": -10, "id": 954}, {"name": "Eclipse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "10-30", "wDam": "10-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "intReq": 22, "defReq": 22, "hprPct": 15, "hprRaw": 20, "sdRaw": -10, "mdRaw": -13, "fDefPct": 10, "wDefPct": 10, "id": 956}, {"name": "Ectoplasm", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "wDef": 55, "aDef": 55, "tDef": -100, "lvl": 63, "intReq": 40, "mr": 5, "sdPct": 10, "mdPct": -15, "ms": 10, "spd": -15, "wDefPct": 10, "aDefPct": -10, "id": 957}, {"name": "Echo", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 22, "agiReq": 8, "agi": 3, "aDamPct": 7, "type": "ring", "id": 955}, {"name": "Edgy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 12, "mdPct": 6, "dex": 3, "type": "bracelet", "id": 953}, {"name": "Effervescence", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "0-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 24, "mr": 5, "sdPct": 22, "int": 8, "hprRaw": -14, "id": 958}, {"name": "Efilim Sage Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 60, "eDef": 60, "lvl": 77, "strReq": 30, "intReq": 40, "mr": 5, "sdPct": 7, "mdPct": -10, "xpb": 10, "str": 7, "int": 7, "spRegen": 10, "hprRaw": 60, "id": 961}, {"name": "Efteling", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "wDef": 50, "aDef": 50, "tDef": -200, "lvl": 94, "intReq": 60, "agiReq": 60, "mr": -25, "sdPct": 30, "ls": 175, "ms": 10, "spd": 16, "sdRaw": 150, "wDamPct": 20, "aDamPct": 20, "id": 959}, {"name": "Egression", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 100, "eDef": -100, "lvl": 73, "agiReq": 60, "sdPct": -45, "mdPct": -45, "xpb": 15, "agi": 13, "spd": 23, "aDamPct": 70, "id": 960}, {"name": "Ehwaz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 39, "agiReq": 10, "agi": 3, "spd": 10, "type": "ring", "id": 962}, {"name": "Eil", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": 13, "hpBonus": 500, "id": 963}, {"name": "Ekeloch", "tier": "Unique", "type": "boots", "poison": 455, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1310, "aDef": -150, "tDef": 150, "lvl": 69, "tDamPct": 5, "id": 966}, {"name": "Electric Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 140, "tDef": 30, "eDef": -30, "lvl": 54, "dexReq": 20, "mdPct": 5, "dex": 4, "tDamPct": 8, "type": "necklace", "id": 965}, {"name": "Ein", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 1, "sdPct": 1, "mdPct": 1, "sdRaw": 1, "mdRaw": 1, "type": "ring", "id": 973}, {"name": "Electrolytic", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-47", "fDam": "0-0", "wDam": "14-58", "aDam": "0-0", "tDam": "3-69", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 33, "intReq": 33, "sdPct": 10, "mdPct": -10, "ms": 5, "sdRaw": 70, "fDamPct": -20, "aDamPct": -20, "eDamPct": -20, "id": 968}, {"name": "Electrocharge Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "tDef": 60, "eDef": -60, "lvl": 61, "dexReq": 50, "ms": -5, "dex": 7, "spd": 10, "atkTier": 1, "hprRaw": -60, "mdRaw": 90, "tDamPct": 10, "eDefPct": -30, "id": 967}, {"name": "Electrophorus", "tier": "Unique", "type": "helmet", "poison": 300, "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 60, "eDef": -60, "lvl": 64, "intReq": 40, "sdRaw": 74, "tDamPct": 12, "id": 971}, {"name": "Eitr", "tier": "Rare", "type": "leggings", "poison": 415, "category": "armor", "drop": "NORMAL", "hp": 1430, "fDef": 65, "wDef": -50, "tDef": 55, "eDef": -70, "lvl": 66, "dexReq": 15, "defReq": 30, "mr": -5, "def": 4, "fDamPct": 16, "wDamPct": -18, "tDamPct": 13, "id": 964}, {"name": "Eleven", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "hprPct": 11, "mdPct": 11, "sdRaw": 11, "id": 996}, {"name": "Eliminere", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-83", "eDam": "0-213", "atkSpd": "SUPER_FAST", "lvl": 87, "strReq": 35, "dexReq": 35, "hprPct": -140, "sdPct": 20, "mdPct": 20, "expd": 25, "hpBonus": -1370, "hprRaw": -135, "id": 991}, {"name": "Electrum", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "tDef": 45, "eDef": -90, "lvl": 58, "dexReq": 35, "intReq": 25, "sdPct": 6, "sdRaw": 75, "fDamPct": -20, "wDamPct": 8, "aDamPct": -20, "tDamPct": 8, "eDamPct": -30, "id": 969}, {"name": "Embers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-30", "fDam": "11-19", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "defReq": 10, "hprPct": 13, "ls": 17, "fDamPct": 7, "wDamPct": -9, "id": 974}, {"name": "Emerald Chopper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "150-250", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "agiReq": 25, "defReq": 35, "lb": 25, "expd": 25, "eSteal": 7, "fDamPct": 40, "id": 970}, {"name": "Emerald Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-80", "atkSpd": "SLOW", "lvl": 72, "lb": 25, "eSteal": 10, "sdRaw": -50, "mdRaw": -65, "id": 975}, {"name": "Elven Moccasins", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 8, "lvl": 3, "hprPct": 8, "id": 972}, {"name": "Emotion", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-30", "fDam": "24-28", "wDam": "23-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "intReq": 12, "defReq": 10, "mr": 5, "sdPct": -5, "mdPct": -5, "ls": -8, "int": 12, "agi": -5, "def": 10, "hprRaw": 8, "id": 977}, {"name": "Empire Builder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 8, "drop": "NORMAL", "nDam": "50-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 978}, {"name": "Enchanter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "3-5", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "str": -3, "int": 4, "id": 976}, {"name": "End of Limits", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-150", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "strReq": 60, "dexReq": 40, "mr": -5, "sdPct": 11, "mdPct": 16, "ls": -205, "xpb": 10, "sdRaw": 75, "mdRaw": 100, "eDamPct": 16, "id": 979}, {"name": "Enderman's Feet", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": -30, "aDef": -60, "tDef": 80, "lvl": 62, "dexReq": 30, "sdPct": 6, "ref": 12, "dex": 8, "wDamPct": -5, "tDamPct": 6, "tDefPct": 10, "id": 981}, {"name": "Endurance", "tier": "Rare", "type": "chestplate", "thorns": 65, "category": "armor", "drop": "NORMAL", "hp": 2050, "wDef": -150, "lvl": 79, "def": 7, "hprRaw": 65, "fDamPct": 15, "wDamPct": -10, "id": 980}, {"name": "Enduzskam", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "wDef": 50, "tDef": 80, "eDef": -90, "lvl": 83, "dexReq": 35, "intReq": 35, "mr": 5, "sdPct": 14, "dex": 9, "wDamPct": 12, "tDamPct": 16, "eDamPct": -14, "eDefPct": -10, "id": 986}, {"name": "Endotherm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "fDef": 80, "aDef": 80, "lvl": 71, "agiReq": 40, "defReq": 40, "hprPct": 25, "sdPct": -20, "mdPct": -20, "hpBonus": 300, "hprRaw": 75, "fDefPct": 14, "aDefPct": 14, "id": 982}, {"name": "Enmity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -80, "eDef": -40, "lvl": 100, "strReq": 60, "ms": 10, "dex": 4, "spd": 8, "sdRaw": 53, "mdRaw": 55, "fDefPct": -18, "wDefPct": -18, "aDefPct": -18, "type": "bracelet", "id": 983}, {"name": "Ensa's Failure", "tier": "Rare", "poison": 450, "thorns": 11, "category": "accessory", "drop": "lootchest", "hp": -250, "lvl": 98, "strReq": 40, "dexReq": 40, "spRegen": -15, "tDamPct": 11, "eDamPct": 11, "wDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 984}, {"name": "Ensa's Resolve", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "0-0", "wDam": "120-155", "aDam": "100-175", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "intReq": 40, "agiReq": 35, "hprPct": 30, "mr": 10, "xpb": 19, "ref": 15, "agi": 7, "spRegen": 11, "mdRaw": -95, "fDefPct": 12, "wDefPct": 20, "id": 990}, {"name": "Enzan's Lucky Charm", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 3, "xpb": 3, "eSteal": 1, "type": "bracelet", "id": 988}, {"name": "Ensa's Ideals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "wDef": 100, "aDef": 100, "lvl": 84, "intReq": 45, "agiReq": 40, "hprPct": 15, "mr": 5, "xpb": 15, "ref": 15, "int": 7, "hpBonus": 962, "spRegen": 25, "hprRaw": 115, "wDefPct": 15, "aDefPct": 15, "id": 985}, {"name": "Entanglement", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": 70, "aDef": -100, "tDef": 70, "lvl": 89, "dexReq": 50, "intReq": 45, "mr": -5, "sdPct": 25, "ms": -5, "dex": 10, "int": 10, "wDamPct": 9, "tDamPct": 9, "wDefPct": 9, "tDefPct": 9, "id": 3612}, {"name": "Equalizer", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1555, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 86, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "mr": 5, "sdPct": 18, "mdPct": 18, "ls": 155, "ms": 5, "ref": 18, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "hprRaw": 105, "id": 989}, {"name": "Equilibrium", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 24, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 987}, {"name": "Erhu", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "60-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "agiReq": 15, "mr": 5, "xpb": 15, "ref": 10, "agi": 7, "spRegen": 10, "fDamPct": -10, "wDamPct": 10, "tDamPct": -10, "id": 995}, {"name": "Equinox", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -22, "lvl": 88, "intReq": 33, "defReq": 33, "expd": 6, "spRegen": 6, "fDamPct": 9, "wDamPct": 9, "type": "ring", "id": 994}, {"name": "Erratio", "tier": "Legendary", "type": "chestplate", "poison": 61, "thorns": 11, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 413, "lvl": 35, "dexReq": 6, "agiReq": 12, "ls": 55, "ref": 3, "spRegen": -2, "hprRaw": -6, "mdRaw": 16, "aDamPct": 4, "aDefPct": 13, "id": 993}, {"name": "Errant", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "fDef": -60, "aDef": 60, "lvl": 95, "agiReq": 45, "sdPct": 7, "spd": 8, "fDamPct": -5, "aDamPct": 5, "fDefPct": -10, "type": "necklace", "id": 992}, {"name": "Eruption", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-160", "atkSpd": "VERY_SLOW", "lvl": 49, "strReq": 30, "defReq": 10, "sdPct": -15, "mdPct": 25, "str": 7, "def": 9, "expd": 25, "spd": -15, "hpBonus": 550, "fDamPct": 20, "id": 997}, {"name": "Esclavage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 93, "strReq": 15, "defReq": 45, "xpb": 7, "lb": 5, "str": 5, "dex": -1, "def": 5, "spd": -4, "type": "bracelet", "id": 999}, {"name": "Espoir", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 7, "lb": 7, "spRegen": 3, "type": "ring", "id": 1000}, {"name": "Esper's Focus", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "400-505", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 84, "intReq": 40, "mr": 5, "mdPct": -40, "xpb": 15, "hpBonus": -700, "wDamPct": 30, "id": 998}, {"name": "Estuarine", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "71-85", "aDam": "0-0", "tDam": "0-0", "eDam": "100-110", "atkSpd": "NORMAL", "lvl": 71, "strReq": 28, "intReq": 32, "mr": 5, "mdPct": -20, "int": 8, "spd": -12, "mdRaw": 130, "wDamPct": 35, "eDefPct": 30, "id": 1002}, {"name": "Essence Bastion", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-165", "fDam": "110-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 40, "spd": -10, "hpBonus": 1385, "spRegen": 10, "hprRaw": 125, "id": 1001}, {"name": "Eternity's Edge", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "340-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "340-340", "eDam": "340-340", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 35, "dexReq": 35, "ms": 10, "str": 16, "dex": 16, "spd": -16, "sdRaw": 140, "spRaw2": -10, "id": 1004}, {"name": "Ethereal", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-22", "fDam": "0-0", "wDam": "44-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "intReq": 60, "mr": 10, "sdPct": 25, "mdPct": -20, "int": 7, "agi": 7, "spRegen": 10, "wDamPct": 7, "aDamPct": 19, "eDamPct": -30, "tDefPct": -20, "id": 1003}, {"name": "Etikal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "8-12", "wDam": "8-12", "aDam": "8-12", "tDam": "8-12", "eDam": "8-12", "atkSpd": "SLOW", "lvl": 35, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 5, "lb": 5, "id": 1005}, {"name": "Euthanasia", "tier": "Rare", "type": "dagger", "poison": 100, "category": "weapon", "drop": "NORMAL", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "spRegen": -10, "hprRaw": -8, "sdRaw": 32, "id": 1008}, {"name": "Evalach", "tier": "Rare", "type": "leggings", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "lvl": 27, "defReq": 12, "hprPct": 18, "ref": 4, "def": 8, "spd": -7, "wDamPct": -6, "wDefPct": -6, "id": 1010}, {"name": "Evanescent", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-150", "fDam": "0-0", "wDam": "55-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 52, "intReq": 30, "agiReq": 20, "mr": 5, "mdPct": -40, "ms": 5, "agi": 10, "spd": 15, "wDamPct": 15, "aDamPct": 20, "id": 1006}, {"name": "Evening Primrose", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": 60, "wDef": -40, "aDef": -40, "tDef": 60, "eDef": -40, "lvl": 67, "dexReq": 30, "defReq": 30, "hprPct": 12, "def": 13, "spd": -15, "hpBonus": -500, "hprRaw": 70, "fDamPct": 15, "tDamPct": 15, "id": 1015}, {"name": "Evaporator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 60, "intReq": 20, "defReq": 35, "spd": -8, "aDamPct": -18, "aDefPct": -13, "id": 1009}, {"name": "Euouae", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -75, "lvl": 75, "dexReq": 30, "agiReq": 60, "dex": 5, "agi": 9, "spd": 6, "fDamPct": -15, "tDamPct": 5, "type": "bracelet", "id": 1007}, {"name": "Event Horizon", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-140", "eDam": "0-140", "atkSpd": "VERY_FAST", "lvl": 99, "strReq": 55, "dexReq": 55, "hpBonus": 5000, "wDamPct": -35, "fDefPct": -76, "wDefPct": -76, "aDefPct": -76, "tDefPct": -76, "eDefPct": -76, "id": 1012}, {"name": "Example", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "int": 8, "type": "bracelet", "id": 3626}, {"name": "Executioner Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "lvl": 75, "mdPct": 27, "ls": 265, "ms": 10, "hpBonus": 115, "sdRaw": 150, "id": 1013}, {"name": "Exhaustion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": 140, "wDef": -65, "lvl": 90, "defReq": 70, "hprPct": 35, "mr": -5, "ls": 345, "def": 7, "spd": -20, "atkTier": -1, "hpBonus": 500, "hprRaw": 150, "fDefPct": 18, "id": 1014}, {"name": "Exion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 21, "tDef": 3, "eDef": -6, "lvl": 5, "mr": 5, "spd": 6, "sdRaw": 4, "id": 1018}, {"name": "Facedown", "tier": "Unique", "type": "helmet", "thorns": -15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 89, "dexReq": 55, "sdPct": 20, "mdPct": 20, "xpb": 15, "ref": -15, "dex": 10, "agi": -5, "tDamPct": 15, "id": 1017}, {"name": "Exosphere", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 81, "dexReq": 24, "agiReq": 24, "mr": 5, "sdPct": 18, "ref": 18, "spRegen": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": 6, "tDefPct": 6, "id": 1016}, {"name": "Facile", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 99, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 8, "sdPct": 6, "mdPct": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "ring", "id": 1019}, {"name": "Facetious", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 40, "tDef": -20, "lvl": 98, "strReq": 50, "sdPct": 7, "mdPct": -6, "spd": 5, "wDamPct": 5, "type": "bracelet", "id": 1020}, {"name": "Faith Healer", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "wDef": 65, "aDef": 65, "lvl": 78, "intReq": 40, "agiReq": 40, "hprPct": 15, "sdPct": -15, "mdPct": -15, "spRegen": 20, "hprRaw": 75, "wDefPct": 10, "aDefPct": 10, "id": 1021}, {"name": "Faith of the Bovemist", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 45, "int": 4, "spRegen": 15, "tDefPct": 7, "type": "ring", "id": 1023}, {"name": "Faded", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 190, "lvl": 39, "xpb": 15, "ref": 5, "spRegen": 3, "id": 1024}, {"name": "Fatigue", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "spd": -6, "mdRaw": 26, "id": 1029}, {"name": "Fate's Shear", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "45-50", "aDam": "0-0", "tDam": "0-0", "eDam": "65-105", "atkSpd": "SUPER_FAST", "lvl": 97, "strReq": 45, "intReq": 50, "ms": 5, "spRegen": 10, "hprRaw": -300, "sdRaw": 180, "mdRaw": 85, "wDamPct": 15, "eDamPct": 15, "fDefPct": -35, "id": 1026}, {"name": "Fault Lines", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-130", "atkSpd": "VERY_SLOW", "lvl": 32, "strReq": 15, "defReq": 15, "mdPct": 18, "str": 8, "agi": -10, "def": 8, "spd": -15, "fDamPct": 18, "aDamPct": -20, "eDamPct": 18, "aDefPct": -20, "id": 1025}, {"name": "Faustian Contract", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "0-0", "tDam": "175-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "dexReq": 50, "defReq": 40, "hprPct": -25, "mr": -10, "sdPct": 30, "ms": 10, "expd": 20, "spd": -20, "atkTier": -1, "mdRaw": 550, "id": 1027}, {"name": "Ex Nihilo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "fDef": -100, "wDef": -100, "lvl": 98, "strReq": 50, "agiReq": 50, "sdPct": 25, "ls": 280, "int": 15, "def": -15, "spd": 15, "mdRaw": 235, "fDamPct": -40, "id": 1011}, {"name": "Featherweight", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 8, "agi": 4, "spd": 11, "id": 1031}, {"name": "Feedback", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 45, "ref": 25, "dex": 17, "hprRaw": -90, "tDamPct": 16, "eDamPct": -16, "wDefPct": -8, "id": 1028}, {"name": "Fehu", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 97, "xpb": 7, "lb": 13, "type": "ring", "id": 1033}, {"name": "Feithid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "fDef": -5, "lvl": 40, "agiReq": 20, "ls": 20, "agi": 7, "spd": 7, "aDamPct": 7, "id": 1032}, {"name": "Female Pirate Wig", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "hp": 3075, "lvl": 98, "xpb": 10, "lb": 15, "spd": 5, "eSteal": 3, "fixID": true, "id": 1037}, {"name": "Favian's Wing", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": -10, "tDef": -15, "lvl": 36, "agiReq": 20, "spd": 12, "aDamPct": 5, "type": "bracelet", "id": 1030}, {"name": "Fenmask", "tier": "Legendary", "type": "helmet", "thorns": 80, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": 105, "eDef": 140, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 30, "mr": 5, "ref": -40, "wDamPct": 18, "eDamPct": 18, "id": 1035}, {"name": "Fermion", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "sdPct": -7, "mdPct": -7, "ref": 15, "spRegen": 15, "id": 1034}, {"name": "Fern", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "2-6", "atkSpd": "VERY_FAST", "lvl": 16, "hprPct": 8, "ls": 11, "hpBonus": 40, "id": 1036}, {"name": "Fever Dream", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "39-39", "fDam": "39-39", "wDam": "0-0", "aDam": "39-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 35, "defReq": 35, "mr": -5, "sdPct": 28, "mdPct": 28, "str": 10, "dex": 10, "fDefPct": -26, "wDefPct": -33, "aDefPct": -26, "id": 1041}, {"name": "Fibreglass", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-50", "tDam": "0-0", "eDam": "10-40", "atkSpd": "FAST", "lvl": 51, "strReq": 17, "agiReq": 17, "sdPct": -10, "mdPct": 10, "mdRaw": 46, "fDefPct": -30, "id": 1039}, {"name": "Fierte", "tier": "Legendary", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "55-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "defReq": 35, "ref": 8, "def": 8, "hpBonus": 700, "fDamPct": 13, "wDefPct": -20, "id": 1040}, {"name": "Fierce Thunder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 39, "dexReq": 20, "sdPct": 7, "mdPct": 7, "xpb": 8, "spd": 15, "wDamPct": 20, "tDefPct": 10, "eDefPct": -25, "id": 1038}, {"name": "Fiery Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1043}, {"name": "Fiery Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1045}, {"name": "Fiery Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1042}, {"name": "Fiery Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1044}, {"name": "Fiery Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1048}, {"name": "Fiery Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": -40, "lvl": 69, "defReq": 25, "hprPct": 12, "def": 4, "fDamPct": 7, "type": "necklace", "id": 1047}, {"name": "Fighting Spirit", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": 15, "sdPct": 12, "mdPct": 12, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1046}, {"name": "Fingertrap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 55, "dex": -1, "hprRaw": -5, "mdRaw": 26, "type": "ring", "id": 1049}, {"name": "Finesse", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 89, "dexReq": 25, "intReq": 25, "dex": 5, "int": 4, "sdRaw": 35, "type": "ring", "id": 1050}, {"name": "Fire Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-100", "fDam": "70-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 440, "hprRaw": 40, "fDamPct": 10, "fDefPct": 20, "id": 1055}, {"name": "Fire Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-90", "fDam": "70-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 770, "hprRaw": 65, "fDamPct": 10, "fDefPct": 20, "id": 1053}, {"name": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1052}, {"name": "Fireball", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "lvl": 86, "defReq": 30, "sdPct": 5, "expd": 4, "fDamPct": 8, "wDamPct": -10, "type": "ring", "id": 1051}, {"name": "Fire Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 590, "hprRaw": 50, "fDamPct": 10, "fDefPct": 20, "id": 1068}, {"name": "Firecloud", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 38, "def": 3, "mdRaw": 13, "fDamPct": 4, "type": "ring", "id": 1057}, {"name": "Firesworn", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "61-82", "fDam": "61-82", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "defReq": 25, "sdPct": 61, "mdPct": 15, "hprRaw": -36, "fDamPct": 20, "fDefPct": -25, "id": 1060}, {"name": "Firequake", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 70, "wDef": -85, "aDef": -85, "eDef": 70, "lvl": 63, "strReq": 40, "defReq": 30, "xpb": 6, "str": 5, "expd": 26, "hprRaw": -65, "fDamPct": 21, "eDamPct": 21, "id": 1058}, {"name": "Firefly", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 65, "wDef": -70, "aDef": 50, "lvl": 66, "agiReq": 20, "defReq": 20, "hprPct": 20, "ls": 105, "agi": 5, "spd": 6, "fDamPct": 8, "aDefPct": 8, "id": 1054}, {"name": "Fishscale", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2525, "fDef": 80, "wDef": 80, "tDef": -180, "lvl": 93, "intReq": 40, "defReq": 40, "ms": 10, "spd": 7, "sdRaw": 175, "fDamPct": 15, "wDamPct": 15, "aDefPct": -15, "tDefPct": -30, "id": 1059}, {"name": "Fission Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-74", "fDam": "0-74", "wDam": "0-0", "aDam": "0-0", "tDam": "0-74", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "defReq": 25, "sdPct": 5, "mdPct": 5, "ls": 150, "expd": 33, "hprRaw": -70, "fDamPct": 5, "wDamPct": -143, "tDamPct": 5, "id": 1063}, {"name": "Flameshot Hilt", "tier": "Legendary", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "1100-1300", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "defReq": 60, "mdPct": 15, "def": 20, "expd": 45, "fDamPct": 25, "wDamPct": -150, "fDefPct": 35, "spRaw3": -15, "id": 1062}, {"name": "Firestorm Bellows", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-95", "fDam": "45-135", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "agiReq": 50, "defReq": 50, "mdPct": 15, "int": -8, "expd": 30, "spd": 20, "hpBonus": 750, "hprRaw": -125, "fDamPct": 15, "wDefPct": -33, "id": 1056}, {"name": "Fissure", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-170", "atkSpd": "VERY_SLOW", "lvl": 48, "strReq": 40, "sdPct": -9, "mdPct": 18, "str": 10, "expd": 26, "spd": -10, "fDamPct": 25, "aDamPct": -10, "eDamPct": 11, "aDefPct": -12, "id": 1061}, {"name": "Flamiche", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-24", "fDam": "18-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "defReq": 25, "hprPct": 16, "def": 7, "hpBonus": 250, "fDefPct": 10, "wDefPct": -5, "id": 1064}, {"name": "Flaming Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "6-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "hpBonus": 16, "id": 1065}, {"name": "Flaming Fangs", "tier": "Unique", "type": "dagger", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-68", "fDam": "32-42", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -3, "def": 10, "expd": 5, "sdRaw": 50, "id": 1066}, {"name": "Flash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "36-100", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "dexReq": 50, "agiReq": 20, "ms": 5, "dex": 4, "agi": 8, "spd": 20, "hpBonus": -400, "id": 1069}, {"name": "Flare Blitz", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "73-87", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "defReq": 24, "mdPct": 10, "ls": 40, "def": 8, "hpBonus": -100, "hprRaw": -15, "fDamPct": 8, "id": 1067}, {"name": "Flashing Boots", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "aDef": 60, "tDef": 100, "eDef": -200, "lvl": 87, "dexReq": 30, "agiReq": 15, "ref": 20, "int": -40, "spd": 8, "spPct1": -17, "spPct2": -10, "spPct3": -17, "spPct4": -10, "id": 1070}, {"name": "Flawed Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 58, "lvl": 17, "id": 1074}, {"name": "Flawed Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 44, "lvl": 15, "id": 1071}, {"name": "Flawless Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "77-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1075}, {"name": "Flawless Andesite Shears", "displayName": "Flawless Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "id": 1076}, {"name": "Flawed Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 35, "lvl": 13, "id": 1073}, {"name": "Flawless Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "130-154", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1077}, {"name": "Flawless Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "80-109", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1078}, {"name": "Flawed Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 31, "lvl": 11, "id": 1072}, {"name": "Flawless Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "49-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1080}, {"name": "Flawless Andesite Stick", "displayName": "Flawless Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1083}, {"name": "Flawless Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "63-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1079}, {"name": "Flawless Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1085}, {"name": "Flawless Birch Stick", "displayName": "Flawless Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1082}, {"name": "Flawless Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 155, "lvl": 33, "id": 1084}, {"name": "Flawless Birch Shears", "displayName": "Flawless Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "29-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "id": 1081}, {"name": "Flawless Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "lvl": 31, "id": 1089}, {"name": "Flawless Chain Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 192, "lvl": 37, "id": 1086}, {"name": "Flawless Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 176, "lvl": 35, "id": 1087}, {"name": "Flawless Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "178-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1092}, {"name": "Flawless Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "104-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1088}, {"name": "Flawless Diorite Shears", "displayName": "Flawless Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "id": 1090}, {"name": "Flawless Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "112-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1091}, {"name": "Flawless Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "213-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1097}, {"name": "Flawless Diorite Stick", "displayName": "Flawless Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "47-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1095}, {"name": "Flawless Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1093}, {"name": "Flawless Granite Shears", "displayName": "Flawless Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "id": 1094}, {"name": "Flawless Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "150-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1096}, {"name": "Flawless Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1098}, {"name": "Flawless Granite Stick", "displayName": "Flawless Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1099}, {"name": "Flawless Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1101}, {"name": "Flawless Jungle Shears", "displayName": "Flawless Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "id": 1122}, {"name": "Flawless Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1100}, {"name": "Flawless Jungle Stick", "displayName": "Flawless Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1103}, {"name": "Flawless Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "56-72", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1104}, {"name": "Flawless Light Birch Shears", "displayName": "Flawless Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "id": 1107}, {"name": "Flawless Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1102}, {"name": "Flawless Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "37-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1108}, {"name": "Flawless Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1110}, {"name": "Flawless Light Birch Stick", "displayName": "Flawless Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1106}, {"name": "Flawless Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1105}, {"name": "Flawless Light Jungle Shears", "displayName": "Flawless Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "id": 1111}, {"name": "Flawless Light Jungle Stick", "displayName": "Flawless Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1109}, {"name": "Flawless Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1112}, {"name": "Flawless Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1113}, {"name": "Flawless Light Oak Shears", "displayName": "Flawless Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "id": 1118}, {"name": "Flawless Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1114}, {"name": "Flawless Light Oak Stick", "displayName": "Flawless Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1117}, {"name": "Flawless Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1115}, {"name": "Flawless Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1119}, {"name": "Flawless Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "67-69", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1125}, {"name": "Flawless Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1123}, {"name": "Flawless Light Spruce Stick", "displayName": "Flawless Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1120}, {"name": "Flawless Light Spruce Shears", "displayName": "Flawless Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "id": 1116}, {"name": "Flawless Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1121}, {"name": "Flawless Oak Shears", "displayName": "Flawless Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "id": 1126}, {"name": "Flawless Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1127}, {"name": "Flawless Oak Stick", "displayName": "Flawless Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1129}, {"name": "Flawless Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1130}, {"name": "Flawless Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1128}, {"name": "Flawless Spruce Shears", "displayName": "Flawless Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "42-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "id": 1132}, {"name": "Flawless Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "63-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1131}, {"name": "Flawless Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "90-106", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1137}, {"name": "Flawless Spruce Stick", "displayName": "Flawless Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1134}, {"name": "Flawless Stone Shears", "displayName": "Flawless Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "id": 1135}, {"name": "Flawless Stone Stick", "displayName": "Flawless Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1133}, {"name": "Flawless Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "55-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1136}, {"name": "Fleet", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "wDef": 15, "aDef": 15, "tDef": -20, "lvl": 43, "intReq": 10, "agiReq": 20, "mdPct": -8, "xpb": 9, "int": 5, "spd": 14, "mdRaw": -45, "aDamPct": 7, "wDefPct": 11, "aDefPct": 10, "id": 1140}, {"name": "Flex", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -95, "aDef": 40, "eDef": 50, "lvl": 72, "strReq": 70, "mr": -5, "mdPct": 12, "str": 8, "int": -6, "agi": 5, "hpBonus": 400, "mdRaw": 130, "id": 1139}, {"name": "Flood Bath", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-156", "wDam": "147-159", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "intReq": 30, "defReq": 30, "sdPct": -11, "mdPct": -11, "hpBonus": 661, "fDamPct": 33, "wDamPct": 33, "aDamPct": -33, "tDamPct": -33, "eDamPct": -33, "spPct3": -23, "id": 1143}, {"name": "Flintlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-150", "fDam": "40-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-170", "atkSpd": "SLOW", "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 7, "str": 25, "def": 25, "expd": 40, "spd": -7, "wDefPct": -14, "id": 1142}, {"name": "Floodgate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "intReq": 55, "sdPct": 10, "int": 13, "fDamPct": -40, "wDamPct": 10, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 1141}, {"name": "Fluffster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-95", "fDam": "0-0", "wDam": "0-0", "aDam": "85-140", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "agiReq": 15, "hprPct": 19, "xpb": 5, "ref": 10, "spd": 15, "hpBonus": 300, "id": 1144}, {"name": "Hero's End", "displayName": "Flummox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 115, "wDef": -130, "tDef": 115, "eDef": -100, "lvl": 94, "dexReq": 40, "defReq": 40, "hprPct": 25, "mdPct": -15, "ls": 245, "def": 9, "sdRaw": 175, "fDamPct": 14, "tDamPct": 14, "eDamPct": -35, "id": 1354}, {"name": "Flawless Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "51-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1138}, {"name": "Fluffy Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 10, "mdPct": -15, "def": 8, "hpBonus": 125, "fDefPct": 8, "aDefPct": 8, "id": 1148}, {"name": "Fluorescence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "lvl": 82, "hprPct": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spd": 20, "eSteal": 6, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 88}, {"name": "Flux and Flow", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "dexReq": 10, "sdPct": 5, "sdRaw": 27, "wDamPct": 13, "tDamPct": 5, "spPct1": 14, "id": 1145}, {"name": "Fluorine", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -1, "lvl": 9, "mdPct": 7, "expd": 2, "type": "necklace", "id": 1146}, {"name": "Foam Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "aDef": 10, "tDef": -45, "lvl": 66, "intReq": 15, "sdPct": 6, "xpb": 6, "wDamPct": 4, "type": "bracelet", "id": 1149}, {"name": "Flush", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 30, "spd": 8, "wDamPct": 20, "tDefPct": -20, "id": 1147}, {"name": "Fog", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 30, "tDef": -25, "eDef": -40, "lvl": 68, "intReq": 10, "agiReq": 25, "wDamPct": 4, "aDamPct": 7, "wDefPct": 4, "aDefPct": 7, "type": "bracelet", "id": 1151}, {"name": "Follow The Wind", "displayName": "Follow the Wind", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 50, "eDef": 40, "lvl": 90, "agiReq": 60, "mdPct": -10, "xpb": 10, "ref": 10, "spd": 18, "eDamPct": -10, "type": "bracelet", "id": 1153}, {"name": "Fog of Creation", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "165-200", "fDam": "55-60", "wDam": "55-60", "aDam": "55-60", "tDam": "55-60", "eDam": "55-60", "atkSpd": "SLOW", "lvl": 100, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprRaw": 200, "sdRaw": 140, "mdRaw": 180, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1182}, {"name": "Foot Warmers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 30, "lvl": 48, "defReq": 10, "hprPct": 15, "xpb": 6, "def": 5, "spd": -5, "fDamPct": 7, "wDefPct": 6, "aDefPct": 6, "id": 1150}, {"name": "Foreboding", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 93, "dexReq": 50, "mdPct": 5, "xpb": 5, "dex": 7, "eDamPct": -20, "type": "bracelet", "id": 1154}, {"name": "Fortitude", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 40, "fDef": 5, "wDef": -8, "lvl": 28, "defReq": 12, "mdPct": -6, "def": 5, "spd": -6, "hpBonus": 25, "hprRaw": 6, "type": "bracelet", "id": 1156}, {"name": "Forgotten", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 36, "lvl": 12, "lb": 7, "str": 2, "dex": 3, "int": 2, "agi": 1, "def": 3, "id": 1152}, {"name": "Fractured", "tier": "Legendary", "thorns": 6, "category": "accessory", "drop": "lootchest", "hp": 300, "fDef": 30, "wDef": -60, "tDef": 20, "lvl": 95, "dexReq": 40, "defReq": 40, "ls": 165, "int": -4, "hpBonus": 150, "type": "ring", "id": 1161}, {"name": "Fragment", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "30-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 94, "dexReq": 40, "agiReq": 40, "mdPct": 18, "ms": -5, "aDamPct": 14, "tDamPct": 14, "fDefPct": -30, "wDefPct": -25, "eDefPct": -15, "id": 1159}, {"name": "Fourchette", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 5, "hprPct": 11, "id": 1157}, {"name": "Frenzy", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "39-109", "fDam": "0-0", "wDam": "0-0", "aDam": "29-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 50, "spd": 23, "atkTier": 1, "mdRaw": 50, "fDefPct": -10, "wDefPct": -10, "aDefPct": -5, "tDefPct": -10, "eDefPct": -10, "id": 1164}, {"name": "Frenzied Mockery", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2727, "fDef": 95, "wDef": -135, "aDef": -75, "tDef": 115, "lvl": 90, "dexReq": 50, "defReq": 40, "sdPct": 20, "ms": 5, "hpBonus": -400, "sdRaw": 144, "fDamPct": 14, "tDamPct": 14, "fDefPct": -50, "tDefPct": -50, "id": 1158}, {"name": "Founder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "aDef": -50, "eDef": 50, "lvl": 97, "strReq": 25, "defReq": 35, "hprPct": 12, "str": 5, "def": 4, "spd": -6, "hpBonus": 270, "type": "necklace", "id": 1155}, {"name": "Frigid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1270, "fDef": -75, "wDef": 75, "aDef": 75, "tDef": -75, "lvl": 74, "intReq": 35, "agiReq": 35, "mr": 5, "int": 4, "agi": 4, "wDamPct": 12, "aDamPct": 12, "fDefPct": -11, "tDefPct": -11, "id": 1160}, {"name": "Frontier", "tier": "Unique", "type": "relik", "thorns": 10, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "363-369", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "182-184", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 45, "hprPct": 20, "hpBonus": 800, "aDefPct": 15, "eDefPct": 20, "id": 1163}, {"name": "Frontliner", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 50, "aDef": 50, "lvl": 82, "agiReq": 60, "defReq": 60, "ls": 190, "ms": 5, "agi": 9, "def": 15, "wDamPct": -25, "fDefPct": 30, "wDefPct": -30, "aDefPct": 30, "id": 1162}, {"name": "Frostbite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 60, "aDef": 60, "lvl": 63, "intReq": 40, "agiReq": 30, "hprPct": -35, "ms": 10, "wDamPct": 15, "aDamPct": 15, "fDefPct": -20, "id": 1166}, {"name": "Frozen Brook", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-80", "fDam": "0-0", "wDam": "30-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "intReq": 20, "mr": 5, "sdPct": 12, "ref": 10, "int": 10, "agi": -5, "spd": -20, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 1168}, {"name": "Flawless Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1124}, {"name": "Frustration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-77", "fDam": "39-39", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "defReq": 35, "expd": 15, "hpBonus": 300, "hprRaw": -90, "fDamPct": 10, "eDamPct": 17, "wDefPct": -12, "id": 1167}, {"name": "Frosted Leggings", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "wDef": 60, "lvl": 57, "intReq": 30, "ms": 5, "int": 7, "spd": -5, "fDamPct": -15, "wDamPct": 20, "fDefPct": -35, "wDefPct": 30, "id": 1165}, {"name": "Full Charge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "490-605", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "mr": 5, "sdPct": 13, "ls": 305, "ms": -15, "spd": -15, "id": 1172}, {"name": "Fulmine Belt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "aDef": -50, "tDef": 100, "eDef": -50, "lvl": 83, "dexReq": 40, "sdPct": 14, "mdPct": 14, "dex": 6, "expd": 14, "aDamPct": -10, "tDamPct": 10, "tDefPct": 10, "id": 1169}, {"name": "Fyrespit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "115-160", "fDam": "120-180", "wDam": "45-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "intReq": 35, "defReq": 30, "mr": 5, "xpb": 8, "hpBonus": 1500, "hprRaw": 100, "fDamPct": 10, "wDamPct": 15, "id": 1173}, {"name": "Funnel", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 7, "ls": 2, "xpb": 5, "id": 1171}, {"name": "Fuse", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 50, "lvl": 75, "hprRaw": 30, "type": "ring", "id": 1170}, {"name": "Gert Bow", "displayName": "Gert Shootstick Tossflinger", "tier": "Legendary", "type": "bow", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1350-1750", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 79, "strReq": 70, "sdPct": -60, "mdPct": 30, "atkTier": -1, "mdRaw": 710, "fixID": true, "id": 1219}, {"name": "Gert Boots", "displayName": "Gert Shakestomper Toefeet", "tier": "Rare", "type": "boots", "quest": "The Hunger of Gerts Part 1", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1800, "aDef": -80, "eDef": 70, "lvl": 78, "strReq": 60, "mdPct": 50, "expd": 40, "spd": -15, "atkTier": -1, "mdRaw": 300, "fixID": true, "id": 1174}, {"name": "Gert Knife", "displayName": "Gert Swingpoke Cuttyrock", "tier": "Legendary", "type": "dagger", "quest": "The Hunger of Gerts Part 2", "poison": 800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "22-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "strReq": 30, "dexReq": 40, "mr": -10, "atkTier": 1, "tDamPct": 20, "fixID": true, "id": 1176}, {"name": "Gert Hammer", "displayName": "Gert Rock Smashbanger", "tier": "Legendary", "type": "spear", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "450-550", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "strReq": 40, "hprPct": -30, "str": 5, "eDamPct": 65, "fixID": true, "id": 1175}, {"name": "Gert Relik", "displayName": "Gert Bangswing Manypointystick", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NEVER", "restrict": "Untradable", "nDam": "650-880", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 55, "agiReq": 35, "sdPct": -300, "ms": 10, "xpb": 6, "atkTier": -1, "mdRaw": 410, "eDamPct": 20, "fixID": true, "id": 421}, {"name": "Gert Leggings", "displayName": "Gert Bumpstump Legcovercloth", "tier": "Rare", "type": "leggings", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 70, "eDef": 70, "lvl": 78, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 8, "str": 4, "agi": 4, "fixID": true, "id": 1191}, {"name": "Gert Super Special Magic Ultistick", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "sdPct": -1, "id": 1177}, {"name": "Gert Wand", "displayName": "Gert Whooshy Bonkpole", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "140-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 40, "agiReq": 40, "sdPct": -45, "mdPct": 30, "spd": 7, "wDamPct": -20, "aDamPct": 30, "fixID": true, "id": 1179}, {"name": "Reinforced Gert Chestplate", "displayName": "Gert Veryhard Chestclothes", "tier": "Rare", "type": "chestplate", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2425, "fDef": 110, "wDef": -70, "lvl": 78, "defReq": 40, "sdPct": -15, "mdPct": 12, "def": 6, "eDamPct": 15, "fixID": true, "id": 1178}, {"name": "Gale's Force", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-123", "fDam": "0-0", "wDam": "0-0", "aDam": "100-123", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "agiReq": 55, "xpb": 15, "ref": 15, "dex": 7, "agi": 13, "spd": 30, "spRegen": 15, "aDamPct": 25, "eDamPct": -50, "id": 1180}, {"name": "Gale Rider", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "14-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "agiReq": 15, "lb": 12, "agi": 8, "def": -5, "spd": 20, "hpBonus": -60, "aDefPct": 11, "id": 1186}, {"name": "Galloping Spurs", "tier": "Fabled", "type": "boots", "majorIds": ["CAVALRYMAN"], "thorns": 10, "category": "armor", "drop": "NORMAL", "hp": 560, "eDef": 20, "lvl": 40, "strReq": 25, "mdPct": 8, "xpb": 15, "spd": 10, "eDamPct": 15, "id": 1187}, {"name": "Galaxy Piercer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "hprPct": 5, "sdPct": 5, "dex": 3, "id": 1183}, {"name": "Galena", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": 60, "wDef": -80, "lvl": 59, "defReq": 45, "mdPct": -15, "ls": 60, "def": 5, "spd": -20, "hpBonus": 200, "hprRaw": 50, "fDamPct": 8, "id": 1181}, {"name": "Galvanization", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": -80, "wDef": 60, "tDef": 60, "eDef": -80, "lvl": 83, "dexReq": 30, "intReq": 30, "hprPct": -12, "mr": 5, "sdPct": 12, "ms": 5, "fDamPct": -15, "wDamPct": 15, "tDamPct": 15, "eDamPct": -15, "fDefPct": -14, "id": 1185}, {"name": "Gargantuan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 15, "sdPct": -10, "mdPct": 20, "str": 7, "spd": -10, "hpBonus": 50, "id": 1188}, {"name": "Garnet", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "20-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 54, "intReq": 20, "defReq": 35, "sdPct": 10, "mdPct": -10, "def": 7, "hprRaw": -48, "fDamPct": 18, "id": 1184}, {"name": "Garnet Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": 20, "lvl": 67, "defReq": 20, "def": 4, "hprRaw": 18, "fDefPct": 6, "type": "ring", "id": 1189}, {"name": "Gavel's Memory", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-30", "fDam": "0-0", "wDam": "0-0", "aDam": "14-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "agi": 4, "spd": 15, "wDamPct": 15, "eDefPct": -15, "id": 1190}, {"name": "Geis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 850, "wDef": -90, "lvl": 54, "strReq": 40, "dexReq": 40, "ms": 10, "xpb": 25, "int": -15, "agi": -10, "def": -10, "hprRaw": 40, "tDamPct": 15, "eDamPct": 15, "id": 1192}, {"name": "Gemini", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 4550, "lvl": 95, "dexReq": 55, "agiReq": 55, "sdPct": -10, "mdPct": -10, "ls": 310, "ms": 10, "dex": 10, "agi": 10, "spd": 15, "eSteal": 8, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "id": 1194}, {"name": "Gearbox Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "xpb": 20, "lb": 10, "id": 1193}, {"name": "Genoxyde", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-310", "fDam": "0-0", "wDam": "0-0", "aDam": "290-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "agiReq": 30, "defReq": 40, "ls": 290, "expd": 15, "spd": 12, "hpBonus": -1000, "fDamPct": 20, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1196}, {"name": "Geothermal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -10, "eDef": 10, "lvl": 38, "strReq": 10, "defReq": 5, "hprPct": 10, "mdPct": 6, "fDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 1200}, {"name": "Gert Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MzY1MTUwOTY5NzcsInByb2ZpbGVJZCI6IjA3NmVjZDVhMzEzMzRjMzRiOTEyNDBhNTQ5MGY0YzgwIiwicHJvZmlsZU5hbWUiOiJibWFucnVsZXMiLCJpc1B1YmxpYyI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhZWUyZjMwMTE2MzhjOTllNDI4NTk2NjRhZWIxM2RlYWRhOGRmZDZiM2ZkYmQ2YmNhNTEzNWE3ZTBlNiJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1300, "fDef": -40, "eDef": 40, "lvl": 75, "id": 1198}, {"name": "Genesis", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 78, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": 35, "spRegen": 10, "hprRaw": 140, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1195}, {"name": "Gestation", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "21-33", "atkSpd": "SLOW", "lvl": 23, "strReq": 10, "xpb": 15, "str": 5, "spd": -8, "hpBonus": 60, "hprRaw": 25, "spPct1": 14, "spRaw3": -5, "id": 1197}, {"name": "Geyser", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "fDef": 65, "wDef": 65, "aDef": 65, "lvl": 74, "intReq": 35, "agiReq": 35, "defReq": 35, "mr": 10, "mdPct": -20, "agi": 7, "expd": 19, "spd": 15, "hprRaw": 100, "tDamPct": -100, "aDefPct": 15, "id": 1203}, {"name": "Ghostly Blades", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-17", "aDam": "13-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 40, "intReq": 15, "agiReq": 15, "mdPct": -10, "ms": 10, "str": -5, "int": 7, "agi": 7, "spd": 10, "spRegen": 5, "sdRaw": 30, "id": 1206}, {"name": "Giant's Bracer", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "lvl": 42, "strReq": 20, "mdPct": 19, "str": 12, "dex": -2, "agi": -2, "spd": -7, "sdRaw": -70, "mdRaw": 90, "id": 1199}, {"name": "Ghost", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 25, "lvl": 77, "intReq": 5, "agiReq": 15, "sdPct": 5, "agi": 5, "spd": 6, "spRegen": 5, "type": "ring", "id": 1201}, {"name": "Giant Step", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "lvl": 37, "hprPct": 25, "mr": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 10, "id": 1207}, {"name": "Giant Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 68, "mdPct": 15, "xpb": 9, "id": 1204}, {"name": "Gibyeong", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "75-115", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "intReq": 40, "defReq": 50, "mr": 5, "sdPct": 7, "ref": 13, "int": 8, "def": 9, "hprRaw": 140, "fDamPct": 25, "eDamPct": -15, "id": 1202}, {"name": "Ginto", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 28, "sdPct": 9, "lb": 18, "int": 4, "fDefPct": -6, "id": 1210}, {"name": "Gilded Cuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 24, "lb": 8, "type": "bracelet", "id": 1205}, {"name": "Gilded Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 24, "xpb": 8, "lb": 12, "id": 1211}, {"name": "Glare", "tier": "Legendary", "type": "wand", "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-40", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "dexReq": 15, "xpb": 10, "ref": 40, "sdRaw": 50, "fDamPct": 10, "eDamPct": -15, "id": 1209}, {"name": "Glitchtean", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-117", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "sdPct": -18, "mdPct": -16, "xpb": 6, "lb": 10, "ref": 13, "sdRaw": 115, "mdRaw": 70, "id": 1215}, {"name": "Glissando", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "drop": "NORMAL", "nDam": "0-7", "fDam": "0-7", "wDam": "0-7", "aDam": "0-7", "tDam": "0-7", "eDam": "0-7", "atkSpd": "FAST", "lvl": 92, "spd": 10, "eSteal": 10, "sdRaw": 1170, "mdRaw": 750, "sprintReg": 10, "jh": 1, "id": 1214}, {"name": "Glacial Crest", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "20-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 20, "mr": 5, "sdPct": 8, "mdPct": 15, "ls": 36, "hpBonus": -75, "hprRaw": -15, "fDamPct": -30, "aDamPct": 15, "id": 1208}, {"name": "Glitz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 34, "lb": 8, "type": "ring", "id": 1212}, {"name": "Glowing Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-6", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 15, "hprPct": 12, "hpBonus": 15, "spRegen": 1, "id": 1218}, {"name": "Gnarl", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 20, "sdPct": 12, "mdPct": 12, "ms": -10, "str": 7, "spd": -5, "aDefPct": -12, "eDefPct": 12, "id": 1216}, {"name": "Glowstone Killer", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-47", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "56-73", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "xpb": 17, "str": -3, "dex": 7, "tDamPct": 12, "id": 1221}, {"name": "Gloomstone", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -25, "aDef": -15, "eDef": -10, "lvl": 85, "dexReq": 60, "sdPct": 6, "spd": 4, "spRegen": -5, "sdRaw": 25, "tDamPct": 6, "type": "ring", "id": 1213}, {"name": "Gnir", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "hp": 220, "wDef": 25, "lvl": 85, "strReq": 30, "intReq": 20, "str": 4, "spd": -7, "hprRaw": 25, "type": "ring", "id": 1217}, {"name": "Gnocchi", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 74, "lvl": 17, "mr": 5, "sdPct": 8, "mdPct": -5, "xpb": 8, "spRegen": 3, "id": 1234}, {"name": "Goliath", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": 4, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 19, "defReq": 12, "hprRaw": 5, "id": 1225}, {"name": "Golden Pants of Fortune", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 19, "xpb": 5, "lb": 15, "dex": 3, "agi": 3, "id": 1220}, {"name": "Golden Embrace", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 116, "lvl": 19, "sdPct": -6, "mdPct": -6, "ref": 4, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1222}, {"name": "Gospel", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "agiReq": 20, "xpb": 10, "spRegen": 10, "aDamPct": 5, "type": "necklace", "id": 1223}, {"name": "Goswhit", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 50, "lvl": 48, "defReq": 40, "hprPct": 10, "def": 5, "spd": -12, "hprRaw": 23, "fDamPct": 8, "wDamPct": -10, "id": 1224}, {"name": "Grandfather", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 20, "mr": 5, "ms": 5, "hpBonus": -24, "id": 1230}, {"name": "Gouttes", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 8, "tDef": -4, "lvl": 38, "intReq": 20, "sdPct": 6, "int": 4, "type": "ring", "id": 1226}, {"name": "Grateful Dead", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "835-835", "fDam": "0-0", "wDam": "3-3", "aDam": "3-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 83, "intReq": 35, "agiReq": 35, "mr": 5, "ms": 5, "def": -10, "wDefPct": 15, "aDefPct": 15, "tDefPct": 20, "id": 1228}, {"name": "Granite Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 20, "aDef": 60, "eDef": 20, "lvl": 63, "strReq": 45, "defReq": 5, "def": 9, "expd": 26, "spd": -9, "hpBonus": 400, "mdRaw": 130, "wDefPct": -25, "aDefPct": 20, "eDefPct": 20, "id": 1227}, {"name": "Graviton Lance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "355-355", "aDam": "0-0", "tDam": "255-455", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "dexReq": 36, "intReq": 36, "ms": -5, "str": -20, "dex": 55, "int": 55, "agi": -20, "def": -20, "id": 1232}, {"name": "Great Brace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 150, "fDef": 20, "wDef": -20, "lvl": 51, "defReq": 25, "hprPct": 5, "hprRaw": 18, "wDamPct": -7, "fDefPct": 7, "type": "bracelet", "id": 1233}, {"name": "Gravity", "tier": "Legendary", "type": "chestplate", "majorIds": ["MAGNET"], "thorns": 30, "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 5500, "fDef": 250, "wDef": 250, "aDef": 250, "tDef": 250, "eDef": 250, "lvl": 100, "strReq": 55, "dexReq": 55, "intReq": 55, "agiReq": 55, "defReq": 55, "ls": 295, "ms": 5, "ref": 30, "spd": -25, "atkTier": -1, "hprRaw": 200, "sdRaw": -105, "id": 1231}, {"name": "Great Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 40, "xpb": 5, "hpBonus": 125, "type": "necklace", "id": 1236}, {"name": "Greaves of the Veneer", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4000, "fDef": 200, "wDef": 65, "aDef": 65, "eDef": 200, "lvl": 89, "strReq": 30, "defReq": 60, "mr": 5, "def": 20, "spd": -10, "hpBonus": 1500, "hprRaw": 200, "wDamPct": -5, "aDamPct": -15, "tDamPct": -15, "wDefPct": 50, "aDefPct": 40, "tDefPct": 40, "id": 1237}, {"name": "Grenouille", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-75", "fDam": "0-0", "wDam": "20-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "intReq": 30, "sdPct": 8, "mdPct": -8, "agi": 5, "spd": 5, "aDamPct": 8, "id": 1241}, {"name": "Green Helmet", "tier": "Unique", "type": "helmet", "poison": 200, "category": "armor", "drop": "NORMAL", "hp": 1850, "eDef": 60, "lvl": 80, "xpb": 20, "eSteal": 2, "eDamPct": 20, "eDefPct": 20, "id": 1235}, {"name": "Gridlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "dexReq": 25, "intReq": 25, "ms": 10, "spd": -15, "wDamPct": 10, "tDamPct": 10, "eDefPct": -25, "id": 1242}, {"name": "Griffin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "40-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "intReq": 60, "agiReq": 30, "mr": 10, "sdPct": 8, "mdPct": -15, "int": 10, "spd": 15, "fDamPct": -20, "wDamPct": 19, "id": 1240}, {"name": "Green Perfection", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-25", "fDam": "11-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "lb": 6, "str": 5, "eSteal": 5, "eDamPct": 10, "id": 1238}, {"name": "Grillface", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3400, "fDef": 175, "aDef": 150, "eDef": -150, "lvl": 87, "agiReq": 55, "defReq": 70, "int": -20, "agi": 15, "expd": 25, "hprRaw": 192, "mdRaw": 240, "fDamPct": 20, "aDamPct": 20, "wDefPct": -40, "id": 1239}, {"name": "Griswold's Edge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "mr": 5, "mdPct": 7, "xpb": 7, "lb": 7, "dex": 7, "spd": 7, "tDamPct": 7, "id": 1255}, {"name": "Grip of the Land", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2350, "fDef": 140, "wDef": -120, "eDef": 140, "lvl": 88, "strReq": 55, "defReq": 45, "hprPct": 65, "str": 7, "def": 7, "spd": -15, "hprRaw": -65, "fDamPct": 12, "eDamPct": 12, "fDefPct": 12, "eDefPct": 12, "id": 1244}, {"name": "Groundshakers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "aDef": -80, "eDef": 80, "lvl": 72, "strReq": 35, "mr": -5, "mdPct": 7, "lb": 10, "str": 5, "sdRaw": -55, "mdRaw": 165, "eDamPct": 10, "eDefPct": 10, "id": 1245}, {"name": "Guacamole", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "128-131", "aDam": "0-0", "tDam": "0-0", "eDam": "128-131", "atkSpd": "NORMAL", "lvl": 88, "strReq": 30, "intReq": 30, "mr": 5, "str": 17, "int": 17, "hpBonus": 940, "hprRaw": 110, "spRaw4": -5, "id": 1243}, {"name": "Gust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -5, "aDef": 5, "lvl": 20, "agiReq": 5, "spd": 5, "aDamPct": 5, "type": "bracelet", "id": 1246}, {"name": "Gungnir", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "xpb": 25, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1247}, {"name": "Gwydion", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "NORMAL", "lvl": 69, "strReq": 20, "intReq": 45, "sdPct": 12, "mdPct": -12, "int": 7, "eSteal": 5, "wDamPct": 20, "aDamPct": -12, "aDefPct": -12, "id": 1248}, {"name": "Gypsum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "aDef": -20, "eDef": 20, "lvl": 37, "strReq": 25, "sdPct": -12, "expd": 5, "spd": -10, "mdRaw": 70, "eDamPct": 8, "id": 1250}, {"name": "Abyss-Imbued Leggings", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3400, "wDef": 175, "aDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "intReq": 40, "agiReq": 40, "ls": 425, "ms": 20, "dex": -30, "def": -30, "sdRaw": 265, "mdRaw": 320, "wDamPct": 20, "aDamPct": 20, "eDamPct": 20, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1252}, {"name": "Ambertoise Shell", "set": "Earth Hive", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3000, "fDef": 100, "wDef": 150, "tDef": 150, "eDef": 100, "lvl": 88, "strReq": 30, "defReq": 30, "hprPct": 25, "mdPct": 20, "ms": 5, "str": 5, "agi": 10, "def": 5, "fDefPct": 20, "wDefPct": 25, "tDefPct": 25, "eDefPct": 20, "fixID": true, "id": 1251}, {"name": "Boreal-Patterned Aegis", "displayName": "Anima-Infused Cuirass", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 200, "wDef": 200, "tDef": 200, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "mr": 10, "str": -30, "agi": -30, "fDamPct": 20, "wDamPct": 20, "tDamPct": 20, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "fixID": true, "spRaw1": -5, "spRaw3": -5, "spRaw4": -5, "id": 1249}, {"name": "Beetle Aegis", "set": "Earth Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": -60, "aDef": -60, "tDef": 120, "eDef": 120, "lvl": 91, "strReq": 55, "dexReq": 45, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 9, "dex": 9, "agi": -6, "def": -6, "tDamPct": 30, "eDamPct": 30, "fixID": true, "id": 1253}, {"name": "Bottled Thunderstorm", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 81, "dexReq": 20, "agiReq": 20, "dex": 6, "agi": 6, "aDamPct": 10, "tDamPct": 10, "type": "necklace", "fixID": true, "id": 1254}, {"name": "Breezehands", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 85, "dexReq": 55, "agiReq": 55, "spd": 5, "atkTier": 1, "type": "ring", "fixID": true, "id": 1257}, {"name": "Chaos-Woven Greaves", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "poison": 2250, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "wDef": 100, "tDef": 100, "eDef": 100, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "sdPct": 50, "mdPct": 50, "ms": 15, "agi": -30, "def": -30, "wDamPct": 30, "tDamPct": 30, "eDamPct": 30, "wDefPct": 5, "tDefPct": 5, "eDefPct": 5, "fixID": true, "id": 1256}, {"name": "Grindcore", "tier": "Rare", "type": "relik", "poison": 100, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "24-28", "eDam": "20-28", "atkSpd": "SLOW", "lvl": 25, "strReq": 10, "dexReq": 10, "ls": -15, "str": 4, "dex": 4, "mdRaw": 52, "spPct1": 18, "id": 1261}, {"name": "Cinderchain", "set": "Fire Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2875, "fDef": 150, "wDef": -150, "tDef": 150, "eDef": -150, "lvl": 98, "dexReq": 30, "defReq": 60, "sdPct": 10, "dex": 10, "def": 7, "expd": 25, "atkTier": -1, "mdRaw": 420, "fDamPct": 45, "aDamPct": -65, "tDamPct": 40, "eDamPct": -65, "fixID": true, "id": 1259}, {"name": "Clockwork", "set": "Fire Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 60, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 97, "defReq": 60, "hprPct": 20, "ref": 20, "type": "bracelet", "fixID": true, "id": 1258}, {"name": "Coral Ring", "set": "Water Hive", "tier": "Rare", "poison": -365, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 800, "wDef": 50, "lvl": 93, "hprPct": 10, "mr": 5, "dex": -4, "type": "ring", "fixID": true, "id": 1262}, {"name": "Contrast", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "poison": 750, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "lvl": 100, "mr": 10, "ls": 200, "spd": 15, "hprRaw": 150, "type": "necklace", "fixID": true, "id": 1260}, {"name": "Dupliblaze", "set": "Fire Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 40, "wDef": -80, "lvl": 98, "defReq": 60, "def": 6, "expd": 18, "fDamPct": 24, "wDefPct": -12, "type": "bracelet", "fixID": true, "id": 1265}, {"name": "Hephaestus-Forged Greaves", "displayName": "Eden-Blessed Guards", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4600, "fDef": 300, "wDef": 300, "aDef": 300, "lvl": 100, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 50, "mr": 20, "str": -30, "dex": -30, "spRegen": 25, "hprRaw": 325, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "fixID": true, "id": 1263}, {"name": "Elder Oak Roots", "set": "Earth Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": 120, "eDef": 120, "lvl": 90, "strReq": 40, "intReq": 30, "hprPct": 20, "mr": 10, "sdPct": 15, "spd": -12, "hprRaw": 200, "wDamPct": 20, "eDamPct": 20, "aDefPct": -25, "fixID": true, "id": 1266}, {"name": "Elysium-Engraved Aegis", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "fDef": 200, "aDef": 200, "eDef": 200, "lvl": 100, "strReq": 40, "agiReq": 40, "defReq": 40, "mdPct": 15, "dex": -30, "int": -30, "spd": 20, "hprRaw": 275, "mdRaw": 500, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1264}, {"name": "Flashstep", "set": "Air Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "aDef": 100, "lvl": 85, "agiReq": 50, "agi": 12, "spd": 40, "aDamPct": 15, "fDefPct": -20, "fixID": true, "id": 1270}, {"name": "Gaea-Hewn Boots", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5000, "fDef": 225, "wDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "intReq": 40, "defReq": 40, "mr": 15, "sdPct": 15, "dex": -30, "agi": -30, "expd": 20, "hprRaw": 300, "fDamPct": 10, "wDamPct": 10, "eDamPct": 10, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 1268}, {"name": "Golemlus Core", "set": "Earth Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1225, "fDef": 50, "wDef": -30, "aDef": 50, "tDef": -30, "eDef": 50, "lvl": 90, "strReq": 25, "defReq": 25, "spd": -6, "hprRaw": 110, "tDamPct": -10, "eDamPct": 8, "type": "necklace", "fixID": true, "id": 1271}, {"name": "Gale's Freedom", "set": "Air Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2225, "aDef": 120, "tDef": 120, "lvl": 87, "dexReq": 30, "agiReq": 30, "sdPct": 20, "xpb": 20, "ref": 20, "dex": 7, "int": 12, "agi": 7, "spd": 20, "fixID": true, "id": 1269}, {"name": "Hephaestus-Forged Sabatons", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 250, "aDef": 250, "tDef": 250, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "ls": 500, "ms": 20, "str": -30, "int": -30, "spd": 25, "fDamPct": 10, "aDamPct": 10, "tDamPct": 10, "fDefPct": 25, "aDefPct": 25, "tDefPct": 25, "fixID": true, "spPct3": -28, "id": 1272}, {"name": "Humbark Moccasins", "set": "Earth Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "aDef": -100, "tDef": 80, "eDef": 80, "lvl": 89, "strReq": 50, "dexReq": 50, "sdPct": -20, "mdPct": 15, "ls": 210, "agi": 10, "spd": 15, "atkTier": 1, "fixID": true, "id": 1273}, {"name": "Infused Hive Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1274}, {"name": "Infused Hive Bow", "tier": "Legendary", "type": "bow", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "250-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1276}, {"name": "Infused Hive Relik", "tier": "Legendary", "type": "relik", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "260-290", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1277}, {"name": "Insulated Plate Mail", "set": "Thunder Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 150, "wDef": 100, "aDef": 100, "tDef": 150, "eDef": 150, "lvl": 83, "dexReq": 55, "defReq": 55, "ls": 270, "def": 10, "spd": -15, "atkTier": -1, "tDamPct": -15, "wDefPct": 30, "tDefPct": 40, "eDefPct": 40, "fixID": true, "spPct3": -17, "spPct4": -17, "id": 1279}, {"name": "Infused Hive Spear", "tier": "Legendary", "type": "spear", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "160-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1275}, {"name": "Infused Hive Wand", "tier": "Legendary", "type": "wand", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "125-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1278}, {"name": "Lightning Flash", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 82, "sdPct": 10, "dex": 5, "spd": 12, "eDamPct": -5, "type": "necklace", "fixID": true, "id": 1296}, {"name": "Intensity", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 425, "lvl": 100, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "type": "ring", "fixID": true, "id": 1280}, {"name": "Mantlewalkers", "set": "Fire Hive", "tier": "Rare", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "fDef": 125, "eDef": 150, "lvl": 97, "strReq": 25, "defReq": 50, "str": 7, "def": 7, "expd": 50, "fDamPct": 40, "wDamPct": -20, "eDamPct": 40, "fixID": true, "id": 1281}, {"name": "Moon Pool Circlet", "set": "Water Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 35, "lvl": 94, "intReq": 65, "mr": 10, "int": 3, "spRegen": 10, "type": "ring", "fixID": true, "id": 1282}, {"name": "Obsidian-Framed Helmet", "tier": "Legendary", "type": "helmet", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 225, "tDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "dexReq": 40, "defReq": 40, "ls": 450, "ms": 15, "int": -30, "agi": -30, "atkTier": -14, "mdRaw": 2000, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 20, "tDefPct": 20, "eDefPct": 20, "fixID": true, "id": 1283}, {"name": "Pride of the Aerie", "set": "Air Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2450, "fDef": -70, "aDef": 140, "eDef": 140, "lvl": 84, "strReq": 40, "agiReq": 50, "hprPct": 28, "str": 14, "agi": 7, "spd": 21, "atkTier": 1, "tDefPct": -35, "eDefPct": 21, "fixID": true, "id": 1286}, {"name": "Silt of the Seafloor", "set": "Water Hive", "tier": "Rare", "type": "boots", "thorns": 35, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3250, "wDef": 240, "aDef": -70, "tDef": -70, "eDef": 200, "lvl": 93, "strReq": 30, "intReq": 40, "mr": 10, "ms": 10, "ref": 30, "str": 8, "int": 15, "spd": -12, "fDefPct": 40, "wDefPct": 30, "eDefPct": 40, "fixID": true, "id": 1285}, {"name": "Soulflare", "set": "Fire Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 150, "wDef": 125, "tDef": -125, "lvl": 99, "intReq": 40, "defReq": 50, "mr": 10, "ls": 440, "ms": 10, "int": 10, "def": 10, "spRegen": 33, "wDefPct": 20, "tDefPct": -25, "fixID": true, "id": 1287}, {"name": "Sparkling Visor", "set": "Thunder Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2000, "tDef": 125, "lvl": 80, "dexReq": 45, "sdPct": 20, "ms": 15, "xpb": 20, "ref": 20, "tDamPct": 20, "tDefPct": 15, "eDefPct": -25, "fixID": true, "id": 1288}, {"name": "Sparkweaver", "set": "Fire Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3850, "fDef": 150, "tDef": 200, "lvl": 96, "defReq": 50, "ms": 15, "dex": 20, "def": 10, "wDamPct": -15, "fDefPct": 20, "tDefPct": 30, "fixID": true, "id": 1289}, {"name": "Stillwater Blue", "set": "Water Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2500, "wDef": 180, "tDef": -100, "lvl": 95, "intReq": 60, "mr": 20, "ref": 30, "int": 10, "spRegen": 15, "wDamPct": 25, "tDamPct": -20, "wDefPct": 20, "fixID": true, "id": 1290}, {"name": "Static-charged Leggings", "displayName": "Static-Charged Leggings", "set": "Thunder Hive", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2050, "tDef": 100, "eDef": -100, "lvl": 82, "dexReq": 55, "hprPct": -40, "ls": 175, "ref": 20, "atkTier": 1, "tDamPct": 40, "wDefPct": -25, "eDefPct": -15, "fixID": true, "id": 1293}, {"name": "Subur Clip", "set": "Earth Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 89, "strReq": 30, "def": -2, "spd": 10, "mdRaw": 105, "eDamPct": 12, "type": "bracelet", "fixID": true, "id": 1291}, {"name": "Trench Scourer", "set": "Water Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2450, "wDef": 130, "tDef": 100, "lvl": 94, "dexReq": 35, "intReq": 50, "ms": 20, "xpb": 40, "lb": 40, "eSteal": 5, "wDamPct": 25, "tDamPct": 25, "fixID": true, "id": 1294}, {"name": "Thunderous Step", "set": "Thunder Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": -80, "tDef": 125, "lvl": 81, "dexReq": 45, "agiReq": 30, "agi": 15, "def": -5, "spd": 16, "sdRaw": 235, "mdRaw": 400, "eDamPct": -25, "fixID": true, "id": 1297}, {"name": "Twilight-Gilded Cloak", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "aDef": 175, "tDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "dexReq": 40, "agiReq": 40, "sdPct": -40, "int": -30, "def": -30, "spd": 20, "atkTier": 2, "mdRaw": 90, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "fixID": true, "id": 1295}, {"name": "Vortex Bracer", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 400, "fDef": -40, "aDef": 40, "lvl": 86, "agiReq": 30, "spd": 10, "sdRaw": 65, "mdRaw": 85, "aDamPct": 12, "type": "bracelet", "fixID": true, "id": 1298}, {"name": "Whitecap Crown", "set": "Water Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2300, "wDef": 150, "tDef": -120, "lvl": 92, "intReq": 75, "int": 10, "sdRaw": 250, "fDamPct": -10, "wDamPct": 20, "tDefPct": -20, "fixID": true, "id": 1299}, {"name": "Turbine Greaves", "set": "Air Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 100, "aDef": 100, "lvl": 86, "ref": 25, "agi": 7, "def": 7, "spd": 20, "mdRaw": 275, "fDefPct": 20, "aDefPct": 20, "fixID": true, "sprintReg": 16, "id": 1292}, {"name": "Hailstone", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "wDef": 40, "aDef": 40, "tDef": -80, "lvl": 56, "intReq": 30, "agiReq": 30, "sdPct": 10, "mdPct": -10, "spd": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": -10, "id": 1300}, {"name": "Hairy Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4, "lvl": 1, "dex": 3, "id": 1302}, {"name": "Halbert", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "36-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "sdPct": -6, "mdPct": 6, "lb": 6, "str": 8, "spd": -6, "id": 1303}, {"name": "Hammer of the Forge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-180", "fDam": "190-390", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-390", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 25, "defReq": 25, "str": 7, "def": 7, "spd": -15, "hpBonus": 750, "fDamPct": 15, "wDamPct": -15, "eDamPct": 15, "wDefPct": -15, "id": 1304}, {"name": "Hammer of the Blacksmith", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "23-46", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "126-183", "atkSpd": "SUPER_SLOW", "lvl": 30, "strReq": 25, "sdPct": -15, "mdPct": 22, "spd": -7, "mdRaw": 105, "eDamPct": 15, "aDefPct": -12, "id": 1306}, {"name": "Hamsey's Brilliance", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 720, "fDef": 30, "wDef": 30, "lvl": 96, "intReq": 30, "defReq": 30, "mdPct": -7, "ms": 5, "int": 4, "spd": -10, "hprRaw": 60, "tDefPct": -10, "type": "bracelet", "id": 1308}, {"name": "Hallfred's Greed", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "spRegen": -3, "eSteal": 6, "type": "bracelet", "id": 1301}, {"name": "Handcuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 33, "strReq": 5, "defReq": 5, "mdPct": 7, "str": 4, "dex": -2, "def": 4, "spd": -4, "type": "bracelet", "id": 1305}, {"name": "Handmade Bucie Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-58", "fDam": "34-56", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "xpb": 7, "lb": 7, "str": 5, "hpBonus": 200, "eDamPct": 10, "wDefPct": -6, "id": 1310}, {"name": "Harbinger of Fate", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "130-130", "wDam": "0-0", "aDam": "0-0", "tDam": "100-160", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "dexReq": 40, "defReq": 40, "dex": 13, "def": 13, "expd": 40, "spRegen": -20, "hprRaw": -100, "fDamPct": 20, "tDamPct": 20, "id": 1313}, {"name": "Haqherphix", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-32", "eDam": "11-21", "atkSpd": "SUPER_FAST", "lvl": 42, "strReq": 30, "dexReq": 30, "mr": -10, "ms": 20, "xpb": 9, "expd": 17, "mdRaw": 20, "id": 1309}, {"name": "Hard Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "51-57", "wDam": "51-57", "aDam": "51-57", "tDam": "51-57", "eDam": "51-57", "atkSpd": "FAST", "lvl": 96, "strReq": 23, "dexReq": 23, "intReq": 23, "agiReq": 23, "defReq": 23, "mr": 5, "sdPct": 15, "mdPct": 15, "ms": 5, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "fDefPct": -25, "wDefPct": -25, "aDefPct": -25, "tDefPct": -25, "eDefPct": -25, "id": 1311}, {"name": "Hard Hat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 180, "lvl": 31, "defReq": 10, "ref": 4, "def": 7, "hpBonus": 50, "id": 1307}, {"name": "Hardline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 20, "wDef": -20, "aDef": -20, "eDef": 35, "lvl": 51, "strReq": 25, "defReq": 25, "sdPct": -8, "mdPct": 8, "str": 4, "spd": -8, "hpBonus": 325, "fDamPct": 6, "id": 1316}, {"name": "Harsh Noise", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 6, "expd": 15, "eSteal": 2, "sdRaw": 15, "id": 1312}, {"name": "Harwrol", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-50", "fDam": "0-0", "wDam": "0-0", "aDam": "60-85", "tDam": "0-0", "eDam": "60-85", "atkSpd": "FAST", "lvl": 97, "strReq": 55, "agiReq": 55, "mdPct": 19, "str": 13, "agi": 13, "spd": 23, "hpBonus": 2500, "wDamPct": -25, "tDamPct": -25, "fDefPct": 25, "tDefPct": 25, "id": 1315}, {"name": "Haze", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "20-50", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 20, "defReq": 20, "agi": 10, "def": 10, "hpBonus": 350, "wDefPct": -15, "id": 1320}, {"name": "Head Knocker", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 18, "sdPct": -12, "mdPct": 4, "int": -3, "spd": -4, "mdRaw": 36, "eDamPct": 4, "id": 1319}, {"name": "Heart of Fire", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 35, "wDef": -35, "lvl": 52, "defReq": 30, "hpBonus": 150, "hprRaw": 35, "fDamPct": 5, "wDamPct": -15, "fDefPct": 10, "id": 1317}, {"name": "Heartache", "tier": "Unique", "type": "spear", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-80", "fDam": "0-0", "wDam": "140-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "intReq": 40, "ls": -175, "ref": 12, "int": 10, "sdRaw": 115, "wDamPct": 20, "tDamPct": -20, "id": 1321}, {"name": "Hearts Club", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-32", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hprPct": 10, "sdPct": -5, "hpBonus": 20, "hprRaw": 5, "id": 1318}, {"name": "Heat Death", "tier": "Fabled", "type": "wand", "majorIds": ["FLASHFREEZE"], "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "36-38", "aDam": "26-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "intReq": 55, "agiReq": 35, "mr": 5, "ls": 110, "hpBonus": -500, "sdRaw": 110, "spPct4": -28, "id": 3557}, {"name": "Heartstrings", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "62-90", "fDam": "30-50", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "agiReq": 20, "defReq": 30, "hprPct": 20, "ls": 140, "xpb": 10, "def": 7, "hprRaw": 60, "fDefPct": 10, "aDefPct": 15, "id": 1322}, {"name": "Heat Burst", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-54", "fDam": "76-80", "wDam": "0-0", "aDam": "76-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "agiReq": 20, "defReq": 20, "sdPct": -15, "ls": 95, "fDamPct": 32, "wDamPct": -35, "aDamPct": 32, "id": 1323}, {"name": "Heatwave", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "400-750", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "defReq": 55, "def": 15, "fDamPct": 30, "wDamPct": -20, "fDefPct": 15, "wDefPct": -20, "id": 1324}, {"name": "Heatwind", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-26", "fDam": "23-31", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "agiReq": 20, "defReq": 30, "hprPct": 20, "agi": 5, "spd": 10, "aDamPct": 6, "fDefPct": 10, "id": 1326}, {"name": "Heavenly Wisp", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 25, "agiReq": 25, "mr": 10, "xpb": 10, "spd": 10, "spRegen": 10, "tDamPct": -20, "tDefPct": -20, "id": 1327}, {"name": "Heaven's Gate", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "20-66", "aDam": "20-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "agiReq": 30, "sdPct": 15, "mdPct": -10, "spd": 13, "spRegen": 25, "wDamPct": 12, "aDamPct": 12, "id": 1325}, {"name": "Heliophilia", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": 6, "lvl": 8, "hprPct": 20, "xpb": 12, "hpBonus": 30, "hprRaw": 10, "id": 1329}, {"name": "Heliophobia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 80, "tDef": -65, "lvl": 60, "intReq": 25, "ms": 10, "lb": 15, "ref": 12, "spRegen": 5, "sdRaw": 75, "tDamPct": -18, "tDefPct": -8, "id": 1332}, {"name": "HellRaiser", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "30-35", "fDam": "26-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "defReq": 10, "expd": 5, "fDamPct": 10, "wDamPct": -30, "id": 1328}, {"name": "Hell's Scream", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "120-200", "wDam": "0-0", "aDam": "80-240", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "agiReq": 35, "defReq": 35, "ls": 255, "str": -8, "agi": 10, "expd": 20, "spd": 18, "eDamPct": -100, "fDefPct": 30, "aDefPct": 30, "id": 1330}, {"name": "Hell Walk", "tier": "Unique", "type": "boots", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 140, "wDef": -160, "lvl": 67, "spd": -8, "fDefPct": 22, "id": 1333}, {"name": "Hellion", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 380, "fDef": 40, "wDef": -40, "lvl": 91, "defReq": 45, "ls": 85, "def": 4, "fDamPct": 6, "wDamPct": -8, "type": "ring", "id": 1334}, {"name": "Heavensent", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "54-66", "aDam": "54-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "intReq": 17, "agiReq": 17, "mr": 5, "xpb": 10, "int": 15, "agi": 15, "def": -8, "spd": 10, "id": 1331}, {"name": "Hellkite's Beak", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-130", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 25, "defReq": 25, "sdPct": 11, "mdPct": 11, "int": -6, "expd": 8, "spRegen": -6, "fDamPct": 8, "wDamPct": -8, "tDamPct": 8, "wDefPct": -20, "id": 1336}, {"name": "Hellbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-110", "fDam": "120-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "SLOW", "lvl": 76, "strReq": 10, "defReq": 40, "mdPct": 4, "spd": -3, "hpBonus": 300, "fDamPct": 3, "eDamPct": 7, "id": 1335}, {"name": "Hellkite's Wing", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-48", "wDam": "0-0", "aDam": "0-0", "tDam": "32-72", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "dexReq": 10, "defReq": 20, "sdPct": 9, "mdPct": 9, "ms": 5, "int": -5, "spRegen": -5, "fDamPct": 7, "wDamPct": -10, "tDamPct": 10, "wDefPct": -15, "id": 1337}, {"name": "Helm of Andesite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": 20, "wDef": -40, "eDef": 20, "lvl": 49, "strReq": 20, "agiReq": 10, "mdPct": 12, "str": 8, "expd": 6, "fDamPct": 12, "eDamPct": 10, "fDefPct": -5, "wDefPct": -15, "eDefPct": -5, "id": 1338}, {"name": "Hellstrand", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "230-290", "fDam": "150-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "defReq": 55, "hprPct": 25, "mr": 5, "sdPct": 15, "ls": 655, "dex": 13, "spRegen": -25, "wDamPct": -40, "aDefPct": 30, "id": 1341}, {"name": "Helm of Darkness", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "tDef": 15, "lvl": 35, "sdPct": 12, "ref": 30, "spd": 5, "tDamPct": 10, "id": 1339}, {"name": "Helm of the Dead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 390, "aDef": -30, "tDef": 20, "eDef": 15, "lvl": 44, "strReq": 5, "dexReq": 5, "hprPct": 15, "ls": 27, "str": 7, "agi": -5, "aDamPct": -10, "tDefPct": 5, "eDefPct": 5, "id": 1340}, {"name": "Helmet of Blue Stone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1050, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 62, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 7, "fDamPct": -5, "wDamPct": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": -5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1346}, {"name": "Helmet of Intelligence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 13, "lvl": 6, "int": 4, "id": 1344}, {"name": "Helter Skelter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "19-29", "tDam": "19-29", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "dexReq": 10, "agiReq": 5, "atkTier": 1, "hpBonus": -40, "sdRaw": -45, "aDamPct": 11, "tDamPct": 11, "spRaw2": -5, "jh": 1, "id": 1342}, {"name": "Heracul", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "580-840", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-225", "atkSpd": "VERY_SLOW", "lvl": 77, "strReq": 90, "mdPct": 30, "str": 20, "def": -10, "expd": 30, "spd": -20, "fDefPct": -8, "wDefPct": -6, "aDefPct": -10, "tDefPct": -4, "eDefPct": -2, "id": 1345}, {"name": "Helmet of Wisdom", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 12, "xpb": 3, "int": 5, "id": 1343}, {"name": "Hero's Beginning", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": 3, "wDef": 3, "aDef": 3, "tDef": 3, "eDef": 3, "lvl": 27, "strReq": 15, "sdPct": 5, "mdPct": 7, "str": 3, "spRegen": 3, "mdRaw": 33, "id": 1375}, {"name": "Hertz", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "tDef": 8, "eDef": -10, "lvl": 23, "dexReq": 10, "mdPct": 6, "tDamPct": 14, "id": 1349}, {"name": "Heroism", "tier": "Rare", "type": "helmet", "thorns": 31, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 120, "wDef": 50, "aDef": 120, "tDef": 50, "eDef": 50, "lvl": 96, "agiReq": 60, "defReq": 60, "hprPct": -143, "ls": 300, "ref": 31, "agi": 10, "def": 10, "spd": 23, "hpBonus": 1000, "hprRaw": -10, "id": 1348}, {"name": "Hesperium", "tier": "Fabled", "type": "bow", "majorIds": ["FISSION"], "poison": 600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "239-239", "fDam": "94-239", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "94-239", "atkSpd": "VERY_SLOW", "lvl": 65, "strReq": 50, "defReq": 40, "hprPct": 30, "dex": -20, "expd": 12, "atkTier": 1, "sdRaw": -165, "tDefPct": -60, "id": 3642}, {"name": "Heura", "tier": "Unique", "type": "chestplate", "thorns": 34, "category": "armor", "drop": "NORMAL", "hp": 3025, "fDef": -110, "wDef": 80, "eDef": 110, "lvl": 96, "strReq": 50, "mdPct": 8, "str": 8, "spd": -7, "mdRaw": 180, "eDamPct": 15, "fDefPct": -20, "wDefPct": 10, "id": 1350}, {"name": "Hetusol", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4200, "fDef": 180, "wDef": 80, "tDef": -160, "eDef": -100, "lvl": 98, "defReq": 55, "hprPct": 60, "mr": 10, "def": 10, "spd": -10, "spRegen": 15, "hprRaw": 100, "tDamPct": -30, "eDamPct": -20, "id": 1347}, {"name": "Hewa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-140", "fDam": "0-0", "wDam": "0-0", "aDam": "172-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "agiReq": 40, "ms": 10, "xpb": 15, "lb": 15, "agi": 8, "def": -8, "fDefPct": 15, "wDefPct": -30, "aDefPct": 15, "id": 1351}, {"name": "Hickory Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-80", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "defReq": 35, "sdPct": 6, "mdPct": 10, "def": 7, "hprRaw": 80, "fDefPct": 10, "wDefPct": -8, "aDefPct": 10, "id": 1355}, {"name": "Hiker's Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "aDef": -5, "eDef": 7, "lvl": 20, "strReq": 7, "mdPct": 7, "str": 4, "sdRaw": -8, "id": 1358}, {"name": "Hidden", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 7, "type": "ring", "id": 1353}, {"name": "Hilltop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "aDef": -7, "eDef": 15, "lvl": 33, "mdPct": 6, "spd": -4, "mdRaw": 46, "eDefPct": 6, "id": 1356}, {"name": "Hilt", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "8-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "xpb": 6, "sdRaw": -6, "mdRaw": -8, "id": 1357}, {"name": "Hirudo", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "74-120", "aDam": "0-0", "tDam": "0-0", "eDam": "84-110", "atkSpd": "NORMAL", "lvl": 82, "strReq": 30, "intReq": 25, "hprPct": 30, "ms": 5, "xpb": 13, "mdRaw": 130, "tDamPct": -17, "tDefPct": -17, "id": 1359}, {"name": "Holiday Spirit", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-22", "fDam": "30-36", "wDam": "30-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "intReq": 15, "defReq": 20, "mr": 15, "mdPct": -10, "lb": 20, "hprRaw": 45, "fixID": true, "id": 1362}, {"name": "Hollow", "tier": "Unique", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1500, "lvl": 75, "strReq": 40, "agiReq": 40, "ls": 110, "agi": 7, "spd": 8, "mdRaw": 140, "eDamPct": 10, "id": 1363}, {"name": "Hollow Branch", "tier": "Unique", "type": "wand", "poison": 560, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "ms": 5, "hpBonus": -250, "sdRaw": 65, "wDamPct": 12, "aDamPct": -12, "eDamPct": 12, "id": 1360}, {"name": "Holocene", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-110", "atkSpd": "SLOW", "lvl": 49, "strReq": 25, "fDamPct": -8, "wDamPct": -8, "aDamPct": -8, "tDamPct": -8, "eDamPct": 15, "spRaw4": -5, "id": 1361}, {"name": "Holy Greaves", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "wDef": 25, "tDef": 25, "eDef": -30, "lvl": 40, "hprPct": 20, "mr": 5, "ref": 15, "int": 9, "hpBonus": 75, "spRegen": 5, "eDefPct": -8, "id": 1365}, {"name": "Hope", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "mr": 5, "xpb": 18, "lb": 16, "id": 1364}, {"name": "Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "13-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "agiReq": 10, "xpb": 7, "dex": 4, "spd": 7, "aDamPct": 4, "tDamPct": 6, "id": 1367}, {"name": "Horizon", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": -100, "aDef": 100, "eDef": 120, "lvl": 90, "strReq": 60, "agiReq": 45, "mdPct": -10, "ref": 15, "dex": 5, "agi": 10, "spd": 14, "atkTier": 1, "hprRaw": 150, "sdRaw": -160, "id": 1366}, {"name": "Hornblende", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 340, "aDef": -15, "eDef": 20, "lvl": 40, "strReq": 5, "mdPct": 8, "str": 5, "fDamPct": 10, "eDefPct": 12, "id": 1369}, {"name": "Hostage", "tier": "Unique", "type": "spear", "quest": "Prison Story", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "str": 3, "spd": -3, "hpBonus": 10, "id": 1371}, {"name": "Hunter", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 23, "dexReq": 12, "xpb": 4, "lb": 5, "spd": 4, "eDamPct": -6, "id": 1373}, {"name": "Hothead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": 5, "lvl": 15, "mdPct": 8, "expd": 8, "hprRaw": 5, "id": 1368}, {"name": "Hunger", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 110, "lvl": 17, "mdPct": 10, "ls": 9, "ms": 5, "hprRaw": -7, "id": 1370}, {"name": "Hexed Amulet", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 51, "xpb": 16, "lb": 16, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": 5, "eSteal": 5, "type": "necklace", "id": 1352}, {"name": "Hydra", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-66", "fDam": "77-99", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "defReq": 55, "hprPct": 33, "ls": 160, "hpBonus": 777, "hprRaw": 99, "id": 1376}, {"name": "Hypercane", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-44", "wDam": "11-33", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "intReq": 25, "defReq": 25, "sdPct": 10, "fDamPct": 12, "wDamPct": 12, "tDefPct": -20, "eDefPct": -20, "id": 1372}, {"name": "Icarus", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -20, "aDef": 20, "lvl": 36, "agiReq": 15, "ref": 10, "agi": 5, "spd": 12, "fDamPct": -12, "aDamPct": 6, "fDefPct": -10, "id": 1378}, {"name": "Hysteria", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "fDef": 70, "wDef": -100, "tDef": 80, "eDef": -100, "lvl": 86, "dexReq": 55, "defReq": 20, "hprPct": 40, "mr": -5, "mdPct": 7, "ms": 10, "dex": 4, "def": 8, "spd": 10, "atkTier": -1, "fDamPct": 18, "tDamPct": 20, "id": 1374}, {"name": "Ice Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "0-0", "wDam": "12-42", "aDam": "2-52", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "intReq": 30, "agiReq": 30, "dex": -10, "int": 8, "agi": 8, "spd": 9, "wDamPct": 10, "aDamPct": 10, "tDamPct": -20, "tDefPct": -20, "id": 1380}, {"name": "Ice Band", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": 25, "lvl": 56, "intReq": 15, "ref": 9, "spd": -3, "wDamPct": 5, "type": "bracelet", "id": 1377}, {"name": "Ife", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": 25, "lvl": 59, "intReq": 10, "agiReq": 25, "mdPct": -9, "xpb": 6, "spd": 10, "hpBonus": 150, "spRegen": 10, "fDamPct": -14, "fDefPct": -10, "id": 1387}, {"name": "Ice Climbing Boots", "tier": "Rare", "type": "boots", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 440, "wDef": 30, "tDef": -40, "eDef": 10, "lvl": 43, "strReq": 5, "intReq": 10, "xpb": 8, "spd": -3, "sdRaw": 35, "fDamPct": -10, "wDamPct": 12, "eDamPct": 10, "id": 1379}, {"name": "Ignition", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-55", "fDam": "85-135", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "defReq": 65, "sdPct": -10, "mdPct": 10, "ls": 435, "def": 15, "expd": 40, "fDamPct": 20, "wDamPct": -30, "wDefPct": -30, "id": 1382}, {"name": "Ignatius", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "70-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "defReq": 25, "hprPct": 5, "def": 5, "hpBonus": 150, "hprRaw": 25, "fDamPct": 10, "fDefPct": 10, "id": 1381}, {"name": "Ik-El-Van", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "48-75", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 35, "hprPct": 16, "mr": 5, "sdPct": 10, "mdPct": -15, "ls": -120, "ms": 10, "tDamPct": -25, "tDefPct": -25, "id": 1383}, {"name": "Electro Mage's Boots", "tier": "Rare", "type": "boots", "quest": "The Envoy Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2400, "tDef": 80, "lvl": 89, "dexReq": 90, "xpb": 10, "dex": 10, "spd": 15, "tDamPct": 17, "eDefPct": -30, "spRaw1": -5, "spRaw2": 5, "spRaw3": -5, "id": 1386}, {"name": "Impact Winter", "tier": "Fabled", "type": "leggings", "majorIds": ["FLASHFREEZE"], "poison": 270, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "fDef": -90, "aDef": -90, "lvl": 66, "strReq": 40, "intReq": 25, "sdPct": 14, "ms": 10, "hprRaw": -75, "wDamPct": 15, "eDamPct": 24, "fDefPct": -20, "id": 3558}, {"name": "Impeccable Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "450-517", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1384}, {"name": "Impeccable Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "258-271", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1390}, {"name": "Impeccable Andesite Shears", "displayName": "Impeccable Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "id": 1388}, {"name": "Impeccable Andesite Stick", "displayName": "Impeccable Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "115-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1389}, {"name": "Impeccable Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "292-345", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1391}, {"name": "Impeccable Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "250-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1394}, {"name": "Impeccable Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "184-196", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1392}, {"name": "Impeccable Birch Shears", "displayName": "Impeccable Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "id": 1393}, {"name": "Impeccable Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "146-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1397}, {"name": "Impeccable Birch Stick", "displayName": "Impeccable Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1398}, {"name": "Impeccable Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "310-367", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1404}, {"name": "Impeccable Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "485-543", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1395}, {"name": "Impeccable Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "275-287", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1399}, {"name": "Impeccable Diorite Shears", "displayName": "Impeccable Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "158-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "id": 1396}, {"name": "Impeccable Diorite Stick", "displayName": "Impeccable Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1400}, {"name": "Impeccable Granite Shears", "displayName": "Impeccable Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "162-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1492}, {"name": "Impeccable Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "500-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1403}, {"name": "Impeccable Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1401}, {"name": "Impeccable Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "320-375", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1402}, {"name": "Impeccable Granite Stick", "displayName": "Impeccable Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1405}, {"name": "Impeccable Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-305", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1406}, {"name": "Impeccable Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "204-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1407}, {"name": "Impeccable Jungle Shears", "displayName": "Impeccable Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "id": 1423}, {"name": "Impeccable Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "163-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1409}, {"name": "Impeccable Jungle Stick", "displayName": "Impeccable Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1411}, {"name": "Impeccable Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-219", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1410}, {"name": "Impeccable Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1408}, {"name": "Impeccable Light Birch Shears", "displayName": "Impeccable Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "id": 1414}, {"name": "Illuminite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 725, "tDef": 60, "lvl": 55, "dexReq": 15, "intReq": 20, "sdPct": 15, "ms": 5, "xpb": 15, "ref": 5, "wDamPct": 10, "tDamPct": 5, "tDefPct": -10, "eDefPct": -10, "id": 1385}, {"name": "Impeccable Light Birch Stick", "displayName": "Impeccable Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "76-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1413}, {"name": "Impeccable Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1412}, {"name": "Impeccable Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "198-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1415}, {"name": "Impeccable Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1417}, {"name": "Impeccable Light Jungle Shears", "displayName": "Impeccable Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 98, "id": 1416}, {"name": "Impeccable Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-184", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1422}, {"name": "Impeccable Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "131-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1418}, {"name": "Impeccable Light Jungle Stick", "displayName": "Impeccable Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1420}, {"name": "Impeccable Light Oak Shears", "displayName": "Impeccable Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "id": 1421}, {"name": "Impeccable Light Oak Stick", "displayName": "Impeccable Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-81", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1427}, {"name": "Impeccable Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1419}, {"name": "Impeccable Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-226", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1425}, {"name": "Impeccable Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "116-132", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1424}, {"name": "Impeccable Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "168-174", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1426}, {"name": "Impeccable Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "132-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1431}, {"name": "Impeccable Light Spruce Shears", "displayName": "Impeccable Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "id": 1430}, {"name": "Impeccable Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "175-181", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1432}, {"name": "Impeccable Light Spruce Stick", "displayName": "Impeccable Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1429}, {"name": "Impeccable Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "235-263", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1428}, {"name": "Impeccable Oak Shears", "displayName": "Impeccable Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "107-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "id": 1433}, {"name": "Impeccable Oak Stick", "displayName": "Impeccable Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1434}, {"name": "Impeccable Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "149-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1435}, {"name": "Impeccable Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "270-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1437}, {"name": "Impeccable Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "197-208", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1439}, {"name": "Impeccable Spruce Shears", "displayName": "Impeccable Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "id": 1436}, {"name": "Impeccable Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "154-215", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1438}, {"name": "Impeccable Spruce Stick", "displayName": "Impeccable Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1440}, {"name": "Impeccable Stone Shears", "displayName": "Impeccable Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-163", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "id": 1441}, {"name": "Impeccable Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-491", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1444}, {"name": "Impeccable Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "243-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1443}, {"name": "Impeccable Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1449}, {"name": "Imperious", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "385-385", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "agiReq": 55, "int": 30, "agi": 15, "spd": 25, "eSteal": 8, "aDamPct": 15, "aDefPct": 15, "id": 1442}, {"name": "Impeccable Stone Stick", "displayName": "Impeccable Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1450}, {"name": "Impudent", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "agiReq": 25, "str": 5, "agi": 4, "mdRaw": 37, "type": "ring", "id": 1445}, {"name": "Incandescent", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "fDef": 30, "wDef": 30, "eDef": -50, "lvl": 50, "intReq": 20, "defReq": 20, "hprPct": 13, "xpb": 11, "ref": 17, "fDefPct": 8, "wDefPct": 8, "id": 1452}, {"name": "Impure Morph-Gold", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 125, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1447}, {"name": "Incendiary", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 255, "fDef": 40, "wDef": -30, "lvl": 71, "dexReq": 20, "defReq": 30, "xpb": 6, "expd": 8, "mdRaw": 39, "fDamPct": 6, "wDefPct": -12, "type": "necklace", "id": 1448}, {"name": "Impulse", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-229", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "126-371", "eDam": "126-371", "atkSpd": "SUPER_SLOW", "lvl": 53, "strReq": 25, "dexReq": 25, "mr": -35, "mdPct": 12, "ls": 110, "ms": 30, "int": -5, "hprRaw": -75, "tDamPct": 14, "eDamPct": 14, "id": 1446}, {"name": "Incense Burner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-46", "fDam": "31-51", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "defReq": 15, "xpb": 10, "def": 5, "spd": -5, "hpBonus": 70, "spRegen": 10, "hprRaw": 10, "id": 1453}, {"name": "Incinerator", "tier": "Unique", "type": "bow", "poison": 500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "121-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "defReq": 30, "def": 7, "fDamPct": 18, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 1451}, {"name": "Infatuation", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "27-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "agiReq": 5, "defReq": 25, "hprPct": 15, "ls": 48, "int": -5, "hpBonus": 450, "spRegen": 5, "sdRaw": -60, "aDamPct": 18, "id": 1456}, {"name": "Infected Band", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "lootchest", "hp": -60, "lvl": 65, "hprPct": -8, "ls": 30, "type": "bracelet", "id": 1454}, {"name": "Inferna Flamewreath", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "330-350", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 80, "sdPct": 10, "hprRaw": -200, "fDamPct": 20, "wDamPct": -50, "wDefPct": -30, "spRaw1": -5, "spRaw3": -5, "id": 1457}, {"name": "Infernal Impulse", "tier": "Fabled", "type": "leggings", "majorIds": ["RALLY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": 95, "wDef": -80, "aDef": -80, "tDef": 65, "lvl": 73, "dexReq": 20, "defReq": 55, "mr": -5, "sdPct": 16, "wDamPct": -30, "fDefPct": -14, "tDefPct": 18, "jh": 1, "id": 3599}, {"name": "Infilak", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-77", "fDam": "55-77", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "defReq": 50, "expd": 99, "spd": 10, "mdRaw": 188, "id": 1455}, {"name": "Ingrainment", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 230, "fDef": -40, "wDef": 90, "eDef": 90, "lvl": 59, "strReq": 30, "intReq": 40, "hprPct": 30, "ls": 46, "spd": -25, "hprRaw": 55, "fDamPct": -50, "tDamPct": -50, "eDefPct": 10, "id": 1460}, {"name": "Iniquity", "tier": "Rare", "poison": 395, "category": "accessory", "drop": "lootchest", "wDef": -40, "aDef": -60, "tDef": 60, "eDef": 40, "lvl": 74, "strReq": 30, "dexReq": 25, "dex": 4, "spRegen": -8, "wDamPct": -10, "tDamPct": 6, "eDamPct": 6, "type": "bracelet", "id": 1461}, {"name": "Inmate Outfit", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1550, "lvl": 72, "id": 773}, {"name": "Influence", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "54-66", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "hprPct": 14, "mdPct": 15, "ls": 46, "xpb": 19, "spRegen": -19, "tDamPct": 15, "id": 1458}, {"name": "Insulation", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 240, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 60, "fDamPct": -4, "tDamPct": -4, "type": "bracelet", "id": 1463}, {"name": "Interference", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-158", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "dexReq": 28, "ls": -38, "dex": 7, "sdRaw": 56, "tDamPct": 9, "eDefPct": -21, "spRaw3": -5, "id": 1462}, {"name": "Ionian", "tier": "Unique", "type": "dagger", "poison": 488, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 69, "strReq": 25, "sdPct": -5, "str": 5, "wDamPct": -15, "eDamPct": 12, "wDefPct": -10, "id": 1467}, {"name": "Inundatio", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 35, "tDef": 30, "eDef": -65, "lvl": 88, "dexReq": 15, "intReq": 65, "sdPct": 5, "mdPct": -10, "sdRaw": 35, "wDamPct": 6, "eDefPct": -10, "type": "necklace", "id": 1464}, {"name": "Iodide", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1180, "tDef": 70, "eDef": -60, "lvl": 73, "dexReq": 20, "intReq": 15, "sdPct": 12, "int": 4, "wDamPct": 7, "tDamPct": 10, "id": 1465}, {"name": "Iris", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-32", "fDam": "28-32", "wDam": "28-32", "aDam": "28-32", "tDam": "28-32", "eDam": "28-32", "atkSpd": "SLOW", "lvl": 85, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "sdPct": -10, "mdPct": -10, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "id": 1468}, {"name": "Iron Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 10, "def": 4, "spd": -3, "type": "bracelet", "id": 1471}, {"name": "Iron Grippers", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "20-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "200-400", "eDam": "250-350", "atkSpd": "VERY_SLOW", "lvl": 84, "strReq": 35, "dexReq": 35, "ms": 5, "str": 10, "spd": -10, "mdRaw": 390, "tDamPct": 25, "eDamPct": 20, "id": 1469}, {"name": "Iron Knuckle", "tier": "Legendary", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-9", "atkSpd": "SUPER_FAST", "lvl": 15, "strReq": 5, "xpb": 8, "str": 5, "def": 5, "eDamPct": 10, "id": 1470}, {"name": "Iron Incrusted Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 42, "wDef": -2, "eDef": 5, "lvl": 9, "def": 3, "spd": -7, "hpBonus": 10, "aDefPct": -5, "eDefPct": 10, "id": 1472}, {"name": "Iron Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "aDef": -2, "eDef": 5, "lvl": 12, "spd": -5, "hpBonus": 12, "eDamPct": 5, "id": 1476}, {"name": "Iron String", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "47-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 5, "sdPct": -3, "mdPct": 8, "str": 5, "agi": -2, "id": 1473}, {"name": "Iron Scrap", "tier": "Unique", "type": "chestplate", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": 30, "aDef": -40, "eDef": 30, "lvl": 48, "strReq": 10, "defReq": 15, "mdPct": 8, "spd": -5, "id": 1475}, {"name": "Irradiation", "tier": "Unique", "type": "wand", "poison": 487, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-41", "aDam": "0-0", "tDam": "17-72", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 28, "intReq": 28, "hprPct": -23, "dex": 8, "int": 5, "wDamPct": 20, "eDamPct": -30, "eDefPct": -15, "id": 1474}, {"name": "Ironclad", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 30, "eDef": 30, "lvl": 66, "strReq": 25, "defReq": 40, "mdPct": 14, "def": 9, "expd": 10, "wDamPct": -10, "wDefPct": -18, "id": 1478}, {"name": "Isaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-3", "fDam": "0-0", "wDam": "6-9", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "wDamPct": 10, "id": 1480}, {"name": "Island Chain", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-132", "fDam": "0-0", "wDam": "140-155", "aDam": "0-0", "tDam": "0-0", "eDam": "140-155", "atkSpd": "SLOW", "lvl": 83, "strReq": 40, "intReq": 40, "mr": 10, "mdPct": -20, "int": 10, "spd": -20, "hpBonus": 2500, "hprRaw": 165, "spRaw1": -5, "id": 1477}, {"name": "Ivory", "tier": "Legendary", "type": "dagger", "poison": -1000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-130", "fDam": "0-0", "wDam": "0-0", "aDam": "55-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 35, "ms": 10, "ref": 30, "agi": 13, "spRegen": 25, "hprRaw": 225, "tDamPct": -40, "fDefPct": 30, "tDefPct": 30, "id": 1479}, {"name": "Ivy", "tier": "Unique", "type": "bow", "poison": 50, "thorns": 6, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-16", "atkSpd": "SLOW", "lvl": 17, "id": 1481}, {"name": "Ivory Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "155-185", "fDam": "15-20", "wDam": "15-20", "aDam": "15-20", "tDam": "15-20", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 75, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1483}, {"name": "Infinity", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "FAST", "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1459}, {"name": "Jackal Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 24, "hprPct": 9, "hprRaw": 4, "type": "necklace", "id": 1482}, {"name": "Jackpot", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 77, "lvl": 77, "xpb": 7, "lb": 7, "eSteal": 7, "type": "necklace", "id": 1484}, {"name": "Jade Talon", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "108-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "mdPct": 19, "ms": 5, "str": 3, "dex": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1487}, {"name": "Jate", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 17, "sdPct": 8, "xpb": 4, "ref": 5, "id": 1486}, {"name": "Jag", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "lootchest", "lvl": 4, "mdRaw": 3, "type": "ring", "id": 1485}, {"name": "Javelin", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "dex": 4, "mdRaw": 8, "id": 1491}, {"name": "Jera", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 55, "xpb": 10, "lb": 40, "id": 1488}, {"name": "Jiandan Handwraps", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 83, "strReq": 40, "defReq": 40, "mdPct": 10, "xpb": 10, "hpBonus": 827, "mdRaw": 45, "type": "bracelet", "id": 1489}, {"name": "Jewel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1645, "fDef": 100, "wDef": -80, "lvl": 76, "sdPct": 7, "xpb": 10, "ref": 5, "fDamPct": -20, "wDamPct": 10, "id": 1490}, {"name": "Jike", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 16, "lb": 4, "spd": 5, "mdRaw": 14, "id": 1495}, {"name": "Jilted", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 45, "defReq": 30, "def": 5, "hpBonus": 100, "spRegen": -5, "fDamPct": 4, "fDefPct": 6, "id": 1497}, {"name": "Jingu Headband", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "wDef": 6, "tDef": 6, "eDef": -12, "lvl": 33, "dexReq": 10, "intReq": 10, "ms": 5, "xpb": 11, "wDamPct": 8, "tDamPct": 8, "eDefPct": -10, "id": 1494}, {"name": "Joker", "tier": "Rare", "type": "spear", "poison": 120, "thorns": 1, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-40", "wDam": "0-0", "aDam": "0-40", "tDam": "0-0", "eDam": "0-40", "atkSpd": "NORMAL", "lvl": 45, "strReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "ref": 1, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "expd": 1, "spRegen": 1, "eSteal": 1, "id": 1493}, {"name": "Jolt of Inspiration", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "11-14", "aDam": "0-0", "tDam": "13-22", "eDam": "0-0", "atkSpd": "FAST", "lvl": 40, "dexReq": 10, "intReq": 15, "mr": 5, "sdPct": 8, "ms": 5, "xpb": 10, "int": 4, "tDefPct": -15, "eDefPct": -18, "id": 1498}, {"name": "Juneberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "65-90", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 30, "agiReq": 30, "mr": 5, "sdPct": 10, "int": 8, "agi": 7, "spd": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": -14, "id": 1500}, {"name": "Jungle Sludge", "tier": "Unique", "type": "helmet", "poison": 265, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "eDef": 50, "lvl": 60, "hprPct": -15, "hpBonus": -275, "wDamPct": 11, "tDefPct": -7, "id": 1499}, {"name": "Jungle Artifact", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "140-210", "fDam": "70-210", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-280", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 21, "defReq": 21, "mdPct": 14, "str": 9, "agi": -7, "expd": 14, "spd": -21, "sdRaw": -77, "fDamPct": 14, "id": 1496}, {"name": "Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1505}, {"name": "Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1502}, {"name": "Jungle Wood Shears", "displayName": "Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "id": 1501}, {"name": "Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1511}, {"name": "Jungle Wood Stick", "displayName": "Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1504}, {"name": "Juniper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 26, "strReq": 8, "hprRaw": 4, "eDamPct": 4, "type": "ring", "id": 1503}, {"name": "Justice", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": 50, "wDef": -30, "tDef": -30, "lvl": 96, "defReq": 40, "hprPct": 12, "def": 5, "fDamPct": 8, "type": "bracelet", "id": 1507}, {"name": "Kaas' Fur", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 40, "lvl": 40, "intReq": 15, "mr": 10, "sdPct": -12, "ms": 5, "tDefPct": -10, "id": 1506}, {"name": "Kanata", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-32", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 20, "spd": 6, "eSteal": 3, "aDamPct": 6, "id": 1509}, {"name": "Kamikaze", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "20-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 27, "defReq": 18, "sdPct": 10, "mdPct": 12, "ls": -8, "agi": 7, "def": -3, "expd": 10, "fDamPct": 5, "wDamPct": -10, "id": 1517}, {"name": "Kapok", "tier": "Rare", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": -60, "wDef": 60, "tDef": -60, "eDef": 60, "lvl": 64, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "wDamPct": 8, "eDamPct": 8, "tDefPct": -15, "id": 1510}, {"name": "Kaleidoscope", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 47, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 10, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "id": 1508}, {"name": "Karabiner", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-48", "fDam": "23-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 5, "defReq": 25, "hprPct": 18, "lb": 8, "agi": 5, "def": 4, "spd": 6, "aDamPct": 10, "aDefPct": 10, "id": 1512}, {"name": "Karraska", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "aDef": -7, "lvl": 24, "strReq": 8, "sdPct": -5, "mdPct": 12, "str": 8, "agi": -2, "spd": -4, "hpBonus": 35, "eDamPct": 10, "aDefPct": -5, "eDefPct": 5, "id": 1513}, {"name": "Katana", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "74-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "dex": 7, "spd": 10, "sdRaw": -20, "mdRaw": 46, "id": 1514}, {"name": "Katoa's Warmth", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 185, "fDef": 15, "lvl": 23, "hprPct": 45, "hpBonus": 75, "spRegen": 10, "sdRaw": -25, "mdRaw": -26, "id": 1515}, {"name": "Kayde", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 10, "spRegen": 7, "type": "bracelet", "id": 1516}, {"name": "Kaze", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 91, "agiReq": 75, "agi": 5, "spd": 15, "aDefPct": 11, "type": "ring", "id": 1520}, {"name": "Keen Measure", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-18", "fDam": "0-0", "wDam": "11-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "intReq": 5, "mr": 5, "dex": 3, "int": 3, "spd": -4, "spPct2": -14, "id": 1519}, {"name": "Keeper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 4, "type": "bracelet", "id": 1518}, {"name": "Kekkai", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 66, "agiReq": 30, "ref": 11, "spd": -10, "fDamPct": -30, "wDefPct": 10, "aDefPct": 25, "tDefPct": 10, "eDefPct": 10, "id": 1521}, {"name": "Kelight's Gauntlet", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 435, "wDef": -15, "aDef": -15, "lvl": 69, "strReq": 40, "mdPct": 7, "str": 4, "mdRaw": 18, "wDefPct": -7, "aDefPct": -7, "type": "bracelet", "id": 1522}, {"name": "Kelight's Shield", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 75, "wDef": -60, "aDef": -45, "tDef": 75, "eDef": 60, "lvl": 64, "defReq": 40, "hprPct": 25, "xpb": 10, "def": 9, "hpBonus": 550, "fDefPct": 22, "wDefPct": -8, "tDefPct": 22, "id": 1535}, {"name": "Kelvik", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "fDef": 15, "lvl": 40, "defReq": 15, "def": 5, "spd": -6, "hpBonus": 80, "fDamPct": 8, "wDamPct": -7, "fDefPct": 10, "aDefPct": 5, "id": 1523}, {"name": "Kenaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-71", "fDam": "28-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 20, "ref": 13, "hpBonus": 150, "spRegen": 3, "fDamPct": 8, "wDamPct": -5, "wDefPct": -10, "id": 1526}, {"name": "Kelight's Toothbrush", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-9", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "mdPct": 5, "xpb": 4, "lb": 9, "eDamPct": -5, "eDefPct": -5, "id": 1538}, {"name": "Kernel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -150, "wDef": -60, "lvl": 94, "dexReq": 55, "intReq": 10, "int": 4, "sdRaw": 55, "wDamPct": -8, "tDamPct": 4, "type": "necklace", "id": 1524}, {"name": "Kickback", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -75, "aDef": 140, "eDef": -75, "lvl": 99, "agiReq": 80, "mdPct": 13, "str": 5, "agi": 5, "def": 5, "spd": 12, "mdRaw": 260, "aDamPct": 22, "wDefPct": -13, "tDefPct": -13, "jh": 1, "id": 1525}, {"name": "Kickers", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 10, "mdPct": 6, "hpBonus": -6, "id": 1529}, {"name": "Kilauea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "FAST", "lvl": 68, "strReq": 30, "defReq": 25, "sdPct": 7, "str": 5, "expd": 15, "spd": 12, "hpBonus": -750, "mdRaw": 115, "id": 1528}, {"name": "Kilij", "tier": "Legendary", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-5", "tDam": "0-0", "eDam": "2-4", "atkSpd": "FAST", "lvl": 40, "strReq": 20, "agiReq": 20, "sdPct": -30, "spd": 20, "mdRaw": 90, "aDamPct": 20, "tDamPct": -80, "eDamPct": 20, "id": 1531}, {"name": "Kilpkonn", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "wDef": 25, "tDef": -15, "lvl": 37, "defReq": 12, "ref": 6, "def": 10, "spd": -12, "hpBonus": 40, "hprRaw": 16, "id": 1527}, {"name": "King of Hearts", "tier": "Rare", "type": "wand", "poison": -25000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 75, "defReq": 65, "mr": 15, "hpBonus": 3692, "hprRaw": 200, "sdRaw": -25000, "mdRaw": -25000, "wDamPct": 81, "spRaw1": -5, "id": 1533}, {"name": "Kindle", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "lvl": 62, "defReq": 60, "hprPct": 7, "sdPct": -20, "mdPct": -20, "def": 9, "spRegen": 8, "hprRaw": 60, "fDefPct": 8, "id": 1532}, {"name": "King of Blocks", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "SLOW", "lvl": 73, "strReq": 20, "xpb": 15, "lb": 10, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "id": 1534}, {"name": "Kitten Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-75", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "sdPct": -6, "mdPct": -4, "dex": 13, "spd": 8, "mdRaw": 52, "id": 1530}, {"name": "Kivilu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-690", "wDam": "0-690", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "intReq": 45, "defReq": 45, "hprPct": 15, "mr": 10, "int": 20, "def": -20, "hpBonus": -3900, "hprRaw": 465, "fDamPct": 31, "wDamPct": 31, "id": 1537}, {"name": "Kizuato", "tier": "Unique", "type": "chestplate", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 80, "wDef": -70, "aDef": -70, "tDef": 80, "lvl": 74, "dexReq": 20, "defReq": 20, "ls": 140, "def": 3, "expd": 11, "id": 1536}, {"name": "Knight Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": 10, "wDef": -5, "aDef": -5, "eDef": 10, "lvl": 33, "strReq": 12, "defReq": 12, "hprPct": 20, "sdPct": -5, "mdPct": 10, "fDamPct": 10, "eDamPct": 10, "id": 1540}, {"name": "Knucklebones", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 99, "ls": -1835, "ms": -200, "xpb": 25, "lb": 25, "expd": 20, "atkTier": 2, "spRegen": -50, "eSteal": 5, "type": "bracelet", "id": 1539}, {"name": "Kolkhaar", "tier": "Unique", "type": "spear", "poison": 245, "category": "weapon", "drop": "NORMAL", "nDam": "21-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "13-33", "eDam": "17-29", "atkSpd": "SLOW", "lvl": 43, "strReq": 25, "dexReq": 25, "mdPct": -60, "spd": -7, "atkTier": 2, "spRegen": -10, "id": 1543}, {"name": "Kratke", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 58, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 1542}, {"name": "Krakem", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "343-503", "fDam": "0-0", "wDam": "137-229", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 55, "intReq": 25, "mdPct": 9, "str": 5, "int": 9, "sdRaw": 80, "fDamPct": -16, "eDamPct": 20, "id": 1541}, {"name": "Krolton's Cruelty", "tier": "Rare", "poison": 500, "category": "accessory", "drop": "lootchest", "fDef": 40, "wDef": -80, "tDef": 60, "lvl": 88, "strReq": 40, "dexReq": 70, "str": 5, "dex": 5, "hprRaw": -70, "mdRaw": 55, "type": "bracelet", "id": 1544}, {"name": "Kuuichi", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 6, "tDef": -2, "lvl": 11, "xpb": 6, "int": 5, "sdRaw": 10, "id": 1563}, {"name": "Kuiper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-5", "fDam": "9-17", "wDam": "9-17", "aDam": "9-17", "tDam": "9-17", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "hpBonus": -39, "id": 1545}, {"name": "Bronze Basic Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "eSteal": 5, "type": "bracelet", "fixID": true, "id": 1546}, {"name": "Bronze Basic Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "spRegen": 10, "type": "necklace", "fixID": true, "id": 1547}, {"name": "Diamond Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 65, "lvl": 95, "strReq": 100, "mdPct": 16, "str": 6, "eDamPct": 16, "eDefPct": 5, "type": "bracelet", "fixID": true, "id": 1548}, {"name": "Bronze Basic Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 12, "lb": 12, "type": "ring", "fixID": true, "id": 1549}, {"name": "Diamond Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 80, "lvl": 95, "strReq": 100, "str": 12, "eDamPct": 10, "eDefPct": 16, "type": "necklace", "fixID": true, "id": 1550}, {"name": "Diamond Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 100, "mdPct": 14, "str": 7, "expd": 12, "spd": -5, "mdRaw": 95, "type": "ring", "fixID": true, "id": 1552}, {"name": "Diamond Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "type": "bracelet", "fixID": true, "id": 1554}, {"name": "Diamond Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "type": "necklace", "fixID": true, "id": 1553}, {"name": "Diamond Fusion Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 7, "mdPct": 7, "ref": 10, "hpBonus": 500, "type": "ring", "fixID": true, "id": 1551}, {"name": "Diamond Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "mr": 5, "ms": 5, "int": 5, "wDamPct": 10, "wDefPct": 10, "type": "ring", "fixID": true, "id": 1556}, {"name": "Diamond Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 80, "lvl": 95, "intReq": 100, "mr": 10, "ref": 15, "int": 7, "sdRaw": 55, "type": "necklace", "fixID": true, "id": 1558}, {"name": "Diamond Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "sdPct": 8, "ms": 15, "int": 7, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 1555}, {"name": "Diamond Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 80, "lvl": 95, "defReq": 100, "def": 8, "expd": 15, "fDamPct": 14, "fDefPct": 7, "type": "bracelet", "fixID": true, "id": 1557}, {"name": "Diamond Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 120, "lvl": 95, "defReq": 100, "hprPct": 20, "def": 12, "fDamPct": 8, "fDefPct": 20, "type": "necklace", "fixID": true, "id": 1561}, {"name": "Diamond Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -450, "tDef": 100, "lvl": 95, "dexReq": 100, "sdPct": 8, "dex": 7, "sdRaw": 60, "tDamPct": 16, "tDefPct": 10, "type": "bracelet", "fixID": true, "id": 1559}, {"name": "Diamond Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": 60, "lvl": 95, "defReq": 100, "hprPct": 16, "sdPct": -5, "mdPct": -2, "def": 3, "hprRaw": 110, "fDefPct": 7, "type": "ring", "fixID": true, "id": 1562}, {"name": "Diamond Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 95, "dexReq": 100, "spd": 5, "atkTier": 1, "mdRaw": 29, "tDamPct": 6, "type": "necklace", "fixID": true, "id": 1560}, {"name": "Diamond Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 135, "lvl": 95, "agiReq": 100, "agi": 7, "spd": 18, "aDamPct": 8, "aDefPct": 12, "type": "bracelet", "fixID": true, "id": 1566}, {"name": "Diamond Static Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 70, "lvl": 95, "dexReq": 100, "hprPct": -10, "dex": 10, "tDamPct": 16, "type": "ring", "fixID": true, "id": 1564}, {"name": "Diamond Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 100, "lvl": 95, "agiReq": 100, "ref": 16, "agi": 12, "spd": 16, "aDamPct": 8, "aDefPct": 16, "type": "necklace", "fixID": true, "id": 1565}, {"name": "Gold Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 75, "mdPct": 12, "str": 4, "eDamPct": 11, "type": "bracelet", "fixID": true, "id": 1569}, {"name": "Diamond Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 50, "lvl": 95, "agiReq": 100, "agi": 5, "spd": 12, "aDamPct": 18, "aDefPct": 7, "type": "ring", "fixID": true, "id": 1568}, {"name": "Gold Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 75, "str": 9, "eDamPct": 7, "eDefPct": 12, "type": "necklace", "fixID": true, "id": 1567}, {"name": "Gold Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 35, "aDef": 35, "tDef": 35, "eDef": 35, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "lb": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "type": "bracelet", "fixID": true, "id": 1572}, {"name": "Gold Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 75, "mdPct": 11, "str": 5, "expd": 8, "spd": -4, "mdRaw": 80, "type": "ring", "fixID": true, "id": 1570}, {"name": "Gold Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "sdPct": 6, "ms": 10, "int": 5, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 1577}, {"name": "Gold Fusion Ring", "tier": "Legendary", "thorns": 7, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 4, "mdPct": 4, "ref": 7, "hpBonus": 375, "type": "ring", "fixID": true, "id": 1571}, {"name": "Gold Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "type": "necklace", "fixID": true, "id": 1573}, {"name": "Gold Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 65, "lvl": 95, "intReq": 75, "mr": 5, "ref": 5, "int": 5, "sdRaw": 40, "type": "necklace", "fixID": true, "id": 1583}, {"name": "Gold Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 775, "fDef": 50, "lvl": 95, "defReq": 75, "hprPct": 12, "sdPct": -3, "def": 2, "hprRaw": 70, "fDefPct": 4, "type": "ring", "fixID": true, "id": 1578}, {"name": "Gold Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 65, "lvl": 95, "defReq": 75, "def": 5, "expd": 5, "fDamPct": 9, "fDefPct": 4, "type": "bracelet", "fixID": true, "id": 1576}, {"name": "Gold Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 825, "fDef": 90, "lvl": 95, "defReq": 75, "hprPct": 10, "def": 9, "fDamPct": 5, "fDefPct": 15, "type": "necklace", "fixID": true, "id": 1575}, {"name": "Gold Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 40, "lvl": 95, "dexReq": 75, "spd": 2, "mdRaw": 25, "tDamPct": 4, "type": "necklace", "fixID": true, "id": 1580}, {"name": "Gold Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 75, "lvl": 95, "dexReq": 75, "sdPct": 5, "dex": 5, "sdRaw": 40, "tDamPct": 12, "tDefPct": 7, "type": "bracelet", "fixID": true, "id": 1581}, {"name": "Gold Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 105, "lvl": 95, "agiReq": 75, "agi": 4, "spd": 14, "aDamPct": 6, "aDefPct": 10, "type": "bracelet", "fixID": true, "id": 1585}, {"name": "Gold Static Ring", "tier": "Legendary", "thorns": 4, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 75, "hprPct": -7, "dex": 8, "tDamPct": 12, "type": "ring", "fixID": true, "id": 1579}, {"name": "Gold Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 35, "lvl": 95, "agiReq": 75, "agi": 3, "spd": 9, "aDamPct": 14, "aDefPct": 5, "type": "ring", "fixID": true, "id": 1582}, {"name": "Legendary Medallion", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 100, "type": "necklace", "id": 1587}, {"name": "Gold Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 75, "lvl": 95, "agiReq": 75, "ref": 8, "agi": 8, "spd": 12, "aDamPct": 4, "aDefPct": 10, "type": "necklace", "fixID": true, "id": 1626}, {"name": "Silver Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 2, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 1589}, {"name": "Silver Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 50, "str": 6, "eDamPct": 5, "eDefPct": 8, "type": "necklace", "fixID": true, "id": 1586}, {"name": "Silver Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 20, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 3, "spd": -3, "mdRaw": 65, "type": "ring", "fixID": true, "id": 1588}, {"name": "Silver Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "lb": 6, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 1584}, {"name": "Silver Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "type": "necklace", "fixID": true, "id": 1590}, {"name": "Silver Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "sdPct": 3, "ms": 5, "int": 4, "wDamPct": 5, "type": "bracelet", "fixID": true, "id": 1593}, {"name": "Silver Fusion Ring", "tier": "Legendary", "thorns": 5, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 3, "mdPct": 3, "ref": 5, "hpBonus": 250, "type": "ring", "fixID": true, "id": 1591}, {"name": "Silver Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "ms": 5, "int": 3, "wDamPct": 5, "wDefPct": 5, "type": "ring", "fixID": true, "id": 1594}, {"name": "Silver Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 50, "int": 3, "sdRaw": 35, "type": "necklace", "fixID": true, "id": 1592}, {"name": "Gold Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "mr": 5, "int": 4, "wDamPct": 7, "wDefPct": 7, "type": "ring", "fixID": true, "id": 1574}, {"name": "Silver Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 95, "defReq": 50, "def": 3, "fDamPct": 6, "fDefPct": 2, "type": "bracelet", "fixID": true, "id": 1595}, {"name": "Silver Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 750, "fDef": 70, "lvl": 95, "defReq": 50, "def": 6, "fDefPct": 10, "type": "necklace", "fixID": true, "id": 1599}, {"name": "Silver Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 40, "lvl": 95, "defReq": 50, "hprPct": 8, "def": 1, "hprRaw": 40, "type": "ring", "fixID": true, "id": 1596}, {"name": "Silver Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 90, "lvl": 95, "agiReq": 50, "agi": 2, "spd": 10, "aDamPct": 4, "aDefPct": 8, "type": "bracelet", "fixID": true, "id": 1600}, {"name": "Silver Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 95, "dexReq": 50, "mdRaw": 20, "tDamPct": 2, "type": "necklace", "fixID": true, "id": 1598}, {"name": "Silver Static Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -210, "tDef": 30, "lvl": 95, "dexReq": 50, "dex": 6, "tDamPct": 8, "type": "ring", "fixID": true, "id": 1602}, {"name": "Silver Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 60, "lvl": 95, "agiReq": 50, "ref": 4, "agi": 4, "spd": 10, "aDefPct": 5, "type": "necklace", "fixID": true, "id": 1603}, {"name": "Silver Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 20, "lvl": 95, "agiReq": 50, "agi": 1, "spd": 6, "aDamPct": 10, "aDefPct": 3, "type": "ring", "fixID": true, "id": 1601}, {"name": "Lacerator", "tier": "Unique", "type": "dagger", "poison": 195, "category": "weapon", "drop": "NORMAL", "nDam": "17-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "ls": 23, "dex": 7, "id": 1604}, {"name": "Laen's Curiosity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 6, "lvl": 25, "intReq": 12, "xpb": 8, "int": 5, "type": "bracelet", "id": 1605}, {"name": "Lake", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 23, "int": 3, "sdRaw": 5, "wDamPct": 2, "wDefPct": 5, "type": "ring", "id": 1606}, {"name": "Laoc Alcher", "tier": "Unique", "type": "bow", "poison": 665, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "114-800", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-343", "eDam": "0-343", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 35, "dexReq": 35, "hprPct": 25, "mr": -10, "ls": 220, "hpBonus": -1350, "hprRaw": 50, "mdRaw": 455, "id": 1608}, {"name": "Lapis Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 59, "intReq": 35, "mr": 5, "sdRaw": -25, "type": "necklace", "id": 1607}, {"name": "Largo", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 36, "strReq": 25, "mdPct": 10, "str": 8, "dex": -12, "expd": 20, "spd": -15, "mdRaw": 175, "id": 1609}, {"name": "Silver Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 50, "sdPct": 3, "dex": 3, "sdRaw": 25, "tDamPct": 8, "tDefPct": 5, "type": "bracelet", "fixID": true, "id": 1597}, {"name": "Last Perdition", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "320-330", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 30, "defReq": 30, "mr": -5, "dex": 10, "hpBonus": -500, "fDamPct": 15, "tDamPct": 15, "wDefPct": -10, "id": 1610}, {"name": "Lasting", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 63, "spd": -5, "spRegen": 5, "hprRaw": 33, "type": "bracelet", "id": 1611}, {"name": "Latchkey", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 77, "def": 8, "type": "bracelet", "id": 1612}, {"name": "Layton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "65-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "intReq": 40, "xpb": 10, "int": 15, "sdRaw": 120, "id": 1613}, {"name": "Lazybones", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "265-335", "fDam": "0-0", "wDam": "110-145", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "hprPct": 12, "mr": 5, "xpb": 15, "spd": -12, "id": 1617}, {"name": "Lead", "tier": "Unique", "poison": 235, "category": "accessory", "drop": "lootchest", "hp": -75, "eDef": 20, "lvl": 62, "strReq": 15, "str": 4, "int": -1, "spd": -4, "type": "ring", "id": 1615}, {"name": "Leaning Log", "tier": "Unique", "type": "wand", "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "135-180", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 35, "mdPct": 8, "str": 7, "int": 7, "hpBonus": 1200, "aDamPct": -20, "tDamPct": -20, "id": 1616}, {"name": "Leadlights", "tier": "Rare", "type": "boots", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3125, "lvl": 95, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "spRegen": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "fDefPct": 11, "wDefPct": 11, "aDefPct": 11, "tDefPct": 11, "eDefPct": 11, "id": 1614}, {"name": "Leather Face", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "lvl": 13, "xpb": 3, "lb": 4, "def": 3, "tDefPct": 5, "id": 1621}, {"name": "Leech Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "ls": 7, "def": 3, "id": 1620}, {"name": "Lecade's Rank", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 79, "mdPct": 8, "xpb": 8, "type": "bracelet", "id": 1618}, {"name": "Led Balloon", "tier": "Unique", "type": "relik", "sprint": -12, "category": "weapon", "drop": "NORMAL", "nDam": "97-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "51-57", "atkSpd": "SUPER_SLOW", "lvl": 23, "strReq": 10, "mdPct": 6, "spd": 5, "aDamPct": 10, "eDefPct": 8, "id": 1622}, {"name": "Leech Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "lvl": 20, "ls": 8, "id": 1623}, {"name": "Leg of the Scared", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": 80, "eDef": -60, "lvl": 66, "agiReq": 25, "agi": 5, "spd": 15, "aDamPct": 10, "id": 1619}, {"name": "Leggings of Desolation", "tier": "Rare", "type": "leggings", "poison": 800, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2400, "fDef": 50, "wDef": -200, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 89, "dexReq": 40, "defReq": 40, "hprPct": -20, "sdPct": 20, "mdPct": 20, "ls": 240, "ms": 10, "spRegen": -50, "wDamPct": -20, "id": 1627}, {"name": "Legendary Smasher", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-125", "fDam": "25-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "def": 4, "expd": 65, "wDamPct": -15, "wDefPct": -5, "id": 1624}, {"name": "Leggings of Haste", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "aDef": 60, "lvl": 79, "agiReq": 80, "sdPct": -20, "spd": 15, "atkTier": 1, "mdRaw": 120, "aDamPct": 15, "fDefPct": -50, "id": 1625}, {"name": "Leggings of Restoration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 60, "wDef": 60, "aDef": -60, "tDef": -60, "lvl": 74, "intReq": 20, "defReq": 20, "hprPct": 25, "mr": 5, "sdPct": -7, "mdPct": -7, "spRegen": 5, "hprRaw": 80, "id": 1629}, {"name": "Leictreach Makani", "tier": "Rare", "type": "leggings", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 150, "tDef": 150, "lvl": 95, "dexReq": 60, "agiReq": 60, "sdPct": 19, "ms": 5, "ref": 35, "dex": 15, "agi": 15, "spd": 27, "atkTier": 1, "aDamPct": 32, "tDamPct": 32, "eDefPct": -60, "id": 1632}, {"name": "Leggings of the Halt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 300, "lvl": 36, "defReq": 20, "spd": -19, "fDefPct": 10, "wDefPct": 10, "aDefPct": -5, "tDefPct": 10, "eDefPct": 10, "id": 1628}, {"name": "Leikkuri", "tier": "Rare", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-83", "fDam": "25-33", "wDam": "0-0", "aDam": "30-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "agiReq": 30, "defReq": 10, "agi": 7, "def": 7, "spd": 11, "fDefPct": 12, "wDefPct": -10, "aDefPct": 8, "id": 1630}, {"name": "Lemon Legs", "tier": "Legendary", "type": "leggings", "poison": 35, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "tDef": 15, "eDef": -5, "lvl": 18, "mdPct": 15, "xpb": 7, "dex": 7, "sdRaw": 15, "tDamPct": 10, "eDamPct": -12, "eDefPct": -10, "id": 1633}, {"name": "Lethality", "tier": "Unique", "type": "relik", "poison": 575, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-32", "fDam": "30-32", "wDam": "0-0", "aDam": "0-0", "tDam": "30-32", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 110, "ms": -10, "expd": 15, "id": 1635}, {"name": "Leo", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4200, "fDef": 200, "wDef": -200, "lvl": 93, "sdPct": -30, "mdPct": -30, "hpBonus": 1400, "hprRaw": 200, "fDamPct": 30, "id": 1631}, {"name": "Lerteco", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "eDef": -50, "lvl": 78, "dexReq": 50, "mdPct": 5, "str": -10, "dex": 13, "mdRaw": 135, "tDamPct": 5, "tDefPct": 5, "id": 1637}, {"name": "Ley Lines", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1975, "wDef": 90, "tDef": 90, "eDef": -175, "lvl": 82, "intReq": 50, "mr": 10, "xpb": 8, "hpBonus": -550, "spRegen": 8, "sdRaw": 120, "id": 1636}, {"name": "Lichcall", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 20, "sdPct": 15, "mdPct": 11, "ms": 5, "wDamPct": -30, "aDamPct": -15, "id": 1638}, {"name": "Libella", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 32, "agi": 4, "spd": 4, "aDamPct": 4, "type": "ring", "id": 1639}, {"name": "Libra", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3150, "lvl": 91, "strReq": 33, "dexReq": 33, "intReq": 33, "agiReq": 33, "defReq": 33, "mr": 5, "str": 7, "dex": 7, "int": 7, "agi": 7, "def": 7, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 1641}, {"name": "Lichclaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 20, "sdPct": 11, "mdPct": 15, "ls": 135, "wDefPct": -20, "aDefPct": -10, "id": 1640}, {"name": "Lichenwal", "tier": "Unique", "type": "boots", "poison": 245, "thorns": 7, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "aDef": -80, "eDef": 120, "lvl": 84, "strReq": 40, "str": 10, "expd": 15, "hprRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 1644}, {"name": "Ligfamblawende", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-111", "fDam": "200-244", "wDam": "0-0", "aDam": "167-277", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "agiReq": 40, "defReq": 35, "ls": 260, "agi": 8, "def": 8, "hpBonus": 800, "fDamPct": 10, "wDamPct": -25, "fDefPct": 20, "aDefPct": 20, "id": 1643}, {"name": "Life Extractor", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "32-46", "fDam": "32-46", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "ls": 35, "lb": 5, "hpBonus": 46, "fDefPct": 5, "wDefPct": -10, "id": 1642}, {"name": "Light Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 1647}, {"name": "Light Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 1646}, {"name": "Light Kaekell", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "aDef": 15, "tDef": 15, "lvl": 55, "dexReq": 25, "agiReq": 25, "sdPct": 10, "mdPct": 10, "dex": 4, "agi": 4, "spd": 10, "aDamPct": 10, "tDamPct": 10, "eDefPct": -30, "id": 1648}, {"name": "Light Oak Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 1645}, {"name": "Lightning Edge", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "72-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-145", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 94, "dexReq": 50, "ls": 245, "ms": 5, "dex": 9, "hprRaw": -120, "tDamPct": 12, "tDefPct": 10, "eDefPct": -15, "id": 1686}, {"name": "Light Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 1651}, {"name": "Limbo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-275", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1200", "eDam": "385-385", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 45, "dexReq": 45, "mr": -20, "mdPct": 25, "str": 9, "dex": 13, "hprRaw": -250, "aDamPct": 50, "tDamPct": 15, "eDamPct": 20, "id": 1655}, {"name": "Lightningrod", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-67", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 30, "intReq": 35, "sdPct": 8, "dex": 8, "wDamPct": 23, "fDefPct": -20, "tDefPct": 30, "id": 1649}, {"name": "Lightshow", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "19-23", "wDam": "18-25", "aDam": "17-26", "tDam": "16-27", "eDam": "20-22", "atkSpd": "SUPER_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 70, "spRegen": 20, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 1650}, {"name": "Liquified Sun", "displayName": "Liquefied Sun", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-90", "fDam": "80-85", "wDam": "0-0", "aDam": "0-0", "tDam": "45-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "dexReq": 45, "defReq": 35, "ref": 20, "def": 10, "hpBonus": 1731, "wDamPct": -20, "eDamPct": -20, "fDefPct": 25, "tDefPct": 25, "id": 1654}, {"name": "Lithium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 14, "xpb": 5, "hprRaw": 2, "type": "necklace", "id": 1652}, {"name": "Little Inferno", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "wDef": -20, "lvl": 27, "defReq": 15, "sdPct": 20, "mdPct": 10, "expd": 25, "fDamPct": 15, "wDefPct": -25, "id": 1653}, {"name": "Little Machine", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "13-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-8", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "dex": 4, "sdRaw": 13, "mdRaw": 13, "spPct1": 18, "id": 1658}, {"name": "Lizard", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 18, "lvl": 18, "fDamPct": 5, "type": "ring", "id": 1656}, {"name": "Loaded Question", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "140-165", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 70, "ms": 10, "int": -10, "def": -15, "sdRaw": 240, "mdRaw": 140, "tDamPct": 30, "fDefPct": -30, "wDefPct": -30, "id": 1660}, {"name": "Loam", "tier": "Unique", "type": "wand", "poison": 180, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-15", "atkSpd": "NORMAL", "lvl": 39, "strReq": 10, "intReq": 5, "int": 5, "wDamPct": 10, "tDamPct": -5, "eDefPct": 7, "id": 1657}, {"name": "Lockpick\u058e", "displayName": "Lockpick", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "14-21", "tDam": "14-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "agiReq": 15, "dex": 7, "spd": 10, "eSteal": 5, "eDamPct": -12, "eDefPct": -12, "id": 1659}, {"name": "Lodestone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "wDef": 10, "eDef": -15, "lvl": 56, "intReq": 25, "mr": -5, "sdPct": 11, "xpb": 10, "sdRaw": 30, "tDamPct": 6, "type": "ring", "id": 1665}, {"name": "Log Suit", "tier": "Unique", "type": "chestplate", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 21, "fDef": -3, "eDef": 5, "lvl": 6, "spd": -2, "id": 1662}, {"name": "Locrian", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "28-33", "aDam": "22-33", "tDam": "17-55", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 15, "intReq": 20, "agiReq": 15, "ls": 115, "ms": 15, "dex": 7, "int": 9, "agi": 7, "sdRaw": 125, "fDefPct": -40, "eDefPct": -40, "id": 1661}, {"name": "Logistics", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "wDef": 90, "tDef": 90, "eDef": -120, "lvl": 81, "dexReq": 50, "intReq": 40, "mdPct": -55, "dex": 8, "int": 8, "wDamPct": 40, "tDamPct": 40, "spRaw1": 5, "spRaw3": 5, "spRaw4": -5, "id": 1663}, {"name": "Lost Soul", "tier": "Rare", "type": "spear", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "70-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "agiReq": 50, "ls": 260, "spd": 7, "mdRaw": 110, "aDamPct": 8, "aDefPct": 9, "id": 1668}, {"name": "Long Bow", "tier": "Unique", "type": "bow", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "SLOW", "lvl": 38, "strReq": 25, "hprPct": 15, "lb": 5, "str": 7, "agi": -5, "spd": -10, "aDefPct": -15, "eDefPct": 10, "id": 1664}, {"name": "Topaz Staff", "displayName": "Lonesome", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "190-270", "tDam": "0-0", "eDam": "240-320", "atkSpd": "SUPER_SLOW", "lvl": 91, "strReq": 35, "agiReq": 30, "sdPct": -25, "mdPct": 19, "ms": -5, "spd": 12, "spRegen": -10, "aDefPct": 15, "id": 1667}, {"name": "Luas", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 3, "spd": 5, "type": "bracelet", "id": 1666}, {"name": "Lucky Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "lvl": 28, "lb": 10, "spRegen": 3, "eSteal": 3, "id": 1670}, {"name": "Lumina", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "285-350", "fDam": "0-0", "wDam": "0-0", "aDam": "300-335", "tDam": "640-680", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 80, "dexReq": 45, "agiReq": 35, "spd": 25, "atkTier": -1, "hpBonus": -1250, "mdRaw": 875, "aDamPct": 20, "tDamPct": 30, "wDefPct": -30, "id": 1671}, {"name": "Lullaby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 34, "intReq": 10, "hprPct": 10, "mr": 5, "mdPct": -6, "spd": -5, "wDamPct": 7, "id": 1669}, {"name": "Luminiferous Aether", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "tDef": 110, "eDef": -110, "lvl": 92, "dexReq": 60, "mdPct": -15, "dex": 10, "atkTier": 1, "hprRaw": 125, "mdRaw": 130, "tDamPct": 10, "id": 3627}, {"name": "Lucky Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 30, "lvl": 31, "lb": 5, "eSteal": 2, "type": "necklace", "id": 1672}, {"name": "Luminis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 52, "intReq": 30, "ms": 5, "sdRaw": 15, "tDamPct": 6, "type": "necklace", "id": 1673}, {"name": "Lurrun", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 100, "aDef": 80, "tDef": -70, "eDef": -70, "lvl": 77, "agiReq": 40, "defReq": 40, "hprPct": 14, "mdPct": -8, "ref": 9, "spd": 16, "fDamPct": 6, "aDamPct": 6, "wDefPct": -10, "id": 1676}, {"name": "Luster Purge", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-18", "fDam": "0-0", "wDam": "40-48", "aDam": "35-53", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "intReq": 25, "agiReq": 25, "sdPct": 15, "ref": -20, "hpBonus": 400, "mdRaw": -58, "wDamPct": 15, "aDamPct": 15, "spRaw3": -5, "id": 1677}, {"name": "Lunar Spine", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "616-616", "fDam": "0-0", "wDam": "0-210", "aDam": "0-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "intReq": 50, "agiReq": 50, "mr": -330, "sdPct": 66, "mdPct": 66, "ls": -370, "ms": 110, "atkTier": -66, "hprRaw": -333, "wDamPct": 33, "aDamPct": 33, "id": 1674}, {"name": "Lustrous", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "50-150", "fDam": "140-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "170-240", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 40, "defReq": 30, "mdPct": 10, "str": 7, "int": -12, "hpBonus": -2400, "mdRaw": 280, "fDamPct": 12, "eDamPct": 12, "wDefPct": -30, "id": 1678}, {"name": "Luto Aquarum", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "5-5", "aDam": "0-0", "tDam": "0-0", "eDam": "190-220", "atkSpd": "SLOW", "lvl": 98, "strReq": 50, "intReq": 40, "ls": 269, "ms": 15, "spd": -25, "hpBonus": 3000, "mdRaw": 169, "wDamPct": 40, "eDefPct": 20, "spPct3": -22, "id": 1680}, {"name": "Lycoris", "tier": "Legendary", "type": "boots", "poison": 155, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 15, "tDef": 15, "eDef": -40, "lvl": 39, "dexReq": 15, "intReq": 15, "sdPct": 12, "ls": -33, "hpBonus": -150, "wDamPct": 10, "tDamPct": 10, "id": 1679}, {"name": "Lydian", "tier": "Rare", "type": "spear", "poison": 450, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-70", "atkSpd": "SLOW", "lvl": 39, "strReq": 25, "spd": -12, "aDamPct": -10, "eDamPct": 10, "id": 1681}, {"name": "Lust", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "15-65", "wDam": "10-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 10, "mr": 5, "hprRaw": 15, "fDefPct": 10, "wDefPct": 10, "id": 1675}, {"name": "Cracked Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3560}, {"name": "Cracked Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3559}, {"name": "Cracked Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3563}, {"name": "Cracked Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3562}, {"name": "Cracked Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3561}, {"name": "Aftershock", "tier": "Mythic", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1245-1430", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 80, "sdPct": -20, "str": 20, "def": 20, "hpBonus": 1850, "eDamPct": 20, "eDefPct": 20, "spPct4": -28, "id": 1684}, {"name": "Alkatraz", "tier": "Mythic", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1350-1500", "atkSpd": "SUPER_SLOW", "lvl": 94, "strReq": 110, "mdPct": 40, "str": 40, "dex": -10, "int": -10, "agi": -10, "def": -10, "expd": 40, "eDamPct": 40, "id": 1683}, {"name": "Apocalypse", "tier": "Mythic", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-680", "fDam": "255-475", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "defReq": 95, "hprPct": -125, "ls": 666, "int": -20, "def": 35, "expd": 150, "spRegen": -20, "wDamPct": -50, "fDefPct": 20, "wDefPct": -50, "id": 1685}, {"name": "Az", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "110-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-250", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "dexReq": 80, "xpb": 15, "int": 15, "def": 15, "fDamPct": 40, "wDamPct": 40, "spPct1": -23, "id": 1689}, {"name": "Crusade Sabatons", "tier": "Mythic", "type": "boots", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5050, "fDef": 200, "eDef": 125, "lvl": 90, "strReq": 60, "defReq": 70, "hprPct": 31, "str": 20, "def": 30, "spd": -15, "hpBonus": 2500, "fDefPct": 20, "eDefPct": 30, "id": 1696}, {"name": "Discoverer", "tier": "Mythic", "type": "chestplate", "category": "armor", "drop": "lootchest", "lvl": 89, "xpb": 15, "lb": 154, "id": 1694}, {"name": "Grandmother", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-595", "atkSpd": "SLOW", "lvl": 95, "strReq": 110, "hprPct": -35, "sdPct": 21, "mdPct": 21, "xpb": 15, "lb": 25, "str": 15, "agi": 55, "spd": -6, "hprRaw": -605, "id": 1704}, {"name": "Hero", "tier": "Mythic", "type": "spear", "majorIds": ["HERO"], "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "120-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "agiReq": 110, "hprPct": 40, "mdPct": 40, "str": 20, "agi": 30, "spd": 40, "id": 1708}, {"name": "Archangel", "tier": "Mythic", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "165-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 69, "agiReq": 70, "hprPct": 30, "agi": 15, "def": 10, "spd": 41, "hpBonus": 1900, "hprRaw": 120, "id": 1688}, {"name": "Ignis", "tier": "Mythic", "type": "bow", "majorIds": ["ALTRUISM"], "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-210", "fDam": "160-235", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "defReq": 105, "hprPct": 40, "def": 20, "hpBonus": 4000, "hprRaw": 345, "fDamPct": 10, "fDefPct": 100, "aDefPct": 50, "spPct4": -35, "id": 1706}, {"name": "Moontower", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4150, "fDef": 75, "wDef": 125, "aDef": 125, "tDef": 225, "eDef": 75, "lvl": 95, "intReq": 70, "agiReq": 80, "str": -10, "dex": -10, "int": 35, "agi": 60, "def": -40, "spd": 25, "wDefPct": 40, "aDefPct": 40, "id": 1709}, {"name": "Quetzalcoatl", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "25-45", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "50-70", "atkSpd": "VERY_FAST", "lvl": 103, "strReq": 70, "agiReq": 70, "ls": 1423, "spd": 28, "sdRaw": 270, "mdRaw": 95, "wDamPct": -80, "jh": 2, "id": 3644}, {"name": "Singularity", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 15, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-275", "wDam": "150-250", "aDam": "100-300", "tDam": "75-325", "eDam": "175-225", "atkSpd": "SUPER_SLOW", "lvl": 99, "strReq": 42, "dexReq": 42, "intReq": 42, "agiReq": 42, "defReq": 42, "sdPct": 10, "mdPct": 15, "dex": 35, "spd": -40, "hprRaw": 250, "sdRaw": 222, "mdRaw": 444, "id": 1715}, {"name": "Stratiformis", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-175", "fDam": "0-0", "wDam": "0-0", "aDam": "170-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "agiReq": 115, "sdPct": 12, "mdPct": 12, "ref": 12, "agi": 25, "spd": 76, "hpBonus": -2000, "id": 1765}, {"name": "Sunstar", "tier": "Mythic", "type": "relik", "thorns": 30, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "375-545", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 115, "ls": 625, "ref": 90, "mdRaw": 577, "wDamPct": -30, "tDamPct": 20, "id": 1720}, {"name": "Mach", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-46", "fDam": "0-0", "wDam": "0-0", "aDam": "12-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 56, "agiReq": 25, "defReq": 10, "agi": 8, "expd": 12, "spd": 15, "atkTier": 1, "hprRaw": 30, "fDamPct": 20, "id": 1728}, {"name": "Warchief", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5225, "fDef": -100, "wDef": -100, "aDef": -100, "tDef": -150, "eDef": -150, "lvl": 98, "strReq": 80, "dexReq": 80, "mdPct": 40, "str": 20, "dex": 10, "expd": 35, "spd": -15, "mdRaw": 315, "tDamPct": 50, "eDamPct": 40, "id": 1725}, {"name": "Macht", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 5, "mdPct": 5, "str": 3, "type": "bracelet", "id": 1731}, {"name": "Maelstrom", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-90", "aDam": "40-100", "tDam": "60-110", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 15, "mdPct": 15, "dex": 8, "int": 8, "agi": 8, "spd": 20, "hpBonus": -550, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "id": 1727}, {"name": "Magic Bounce", "tier": "Unique", "type": "relik", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-37", "fDam": "30-37", "wDam": "30-37", "aDam": "30-37", "tDam": "30-37", "eDam": "30-37", "atkSpd": "FAST", "lvl": 78, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": 10, "xpb": 10, "lb": 10, "ref": 35, "expd": 35, "spRaw2": -5, "id": 1732}, {"name": "Magellan's Sail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "wDef": 70, "aDef": 60, "eDef": -80, "lvl": 75, "intReq": 45, "agiReq": 40, "mr": 5, "spd": 16, "hprRaw": -90, "wDamPct": 14, "aDamPct": 9, "id": 1730}, {"name": "Magicant", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "5-15", "wDam": "5-15", "aDam": "5-15", "tDam": "5-15", "eDam": "5-15", "atkSpd": "NORMAL", "lvl": 41, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 1735}, {"name": "Magma Rod", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "74-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "defReq": 40, "str": 5, "expd": 25, "hprRaw": -35, "fDamPct": 20, "wDamPct": -30, "fDefPct": 20, "wDefPct": -30, "eDefPct": 10, "id": 1739}, {"name": "Magma Chalice", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "110-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "strReq": 40, "defReq": 30, "hprPct": 31, "expd": 15, "hpBonus": 2335, "eDamPct": 20, "fDefPct": 20, "aDefPct": -15, "eDefPct": 20, "id": 1734}, {"name": "Magmarizer", "tier": "Unique", "type": "dagger", "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-110", "fDam": "60-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-70", "atkSpd": "NORMAL", "lvl": 93, "strReq": 30, "defReq": 35, "sdPct": -15, "hpBonus": 3200, "hprRaw": 120, "fDefPct": 15, "eDefPct": 15, "id": 1736}, {"name": "Magmawalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 775, "fDef": 15, "eDef": 40, "lvl": 56, "strReq": 15, "defReq": 15, "hprPct": 20, "str": 4, "def": 7, "expd": 8, "spd": -8, "aDamPct": -8, "fDefPct": 25, "eDefPct": 25, "id": 1738}, {"name": "Magmatic Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "wDef": -130, "lvl": 72, "strReq": 40, "defReq": 50, "mdPct": 22, "str": 9, "def": 10, "expd": 19, "fDamPct": 28, "eDamPct": 28, "wDefPct": -34, "id": 1733}, {"name": "Magnet Repulsor", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3225, "fDef": -100, "wDef": 100, "tDef": -175, "eDef": -100, "lvl": 96, "dexReq": 55, "intReq": 60, "mdPct": -20, "ms": 10, "int": 5, "expd": 12, "sdRaw": 205, "tDefPct": -20, "id": 3597}, {"name": "Magnus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "355-535", "fDam": "445-600", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "intReq": 40, "defReq": 30, "sdPct": 15, "expd": 33, "wDamPct": 20, "aDamPct": -20, "fDefPct": 10, "wDefPct": 10, "id": 1737}, {"name": "Magnitude", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 50, "mdPct": 10, "ms": 5, "str": 7, "expd": 5, "fDamPct": -20, "aDamPct": -20, "eDamPct": 15, "id": 1740}, {"name": "Mail of the Sweltering", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": -120, "aDef": 30, "lvl": 60, "agiReq": 20, "defReq": 20, "ls": 75, "def": 5, "expd": 3, "hprRaw": 40, "aDamPct": 10, "fDefPct": 12, "id": 1741}, {"name": "Maji", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-95", "fDam": "0-0", "wDam": "110-138", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 83, "intReq": 40, "ls": 200, "xpb": 15, "lb": 15, "dex": -8, "int": 8, "hprRaw": 100, "wDefPct": 15, "tDefPct": 15, "eDefPct": -30, "id": 1742}, {"name": "Major", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "mdRaw": 9, "type": "ring", "id": 1743}, {"name": "Malachite", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 20, "eDef": 20, "lvl": 75, "strReq": 10, "dexReq": 10, "str": 3, "dex": 3, "sdRaw": 35, "mdRaw": 31, "type": "ring", "id": 1744}, {"name": "Maltic's Old Spear", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "xpb": 10, "str": 7, "dex": 7, "id": 1749}, {"name": "Malfunction", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-50", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "dexReq": 20, "intReq": 20, "hprPct": -20, "sdPct": 14, "ms": 5, "xpb": 10, "hpBonus": -150, "tDamPct": 12, "wDefPct": -20, "tDefPct": -20, "id": 1745}, {"name": "Maltic's Aid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 1746}, {"name": "Manablast", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "180-215", "aDam": "0-0", "tDam": "180-215", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 20, "mdPct": -20, "ms": -15, "expd": 20, "sdRaw": 231, "mdRaw": -235, "id": 1748}, {"name": "Mama Zomble's Memory", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1747}, {"name": "Manaflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 80, "eDef": -80, "lvl": 78, "intReq": 50, "mr": 5, "sdPct": 10, "mdPct": -13, "ls": -75, "str": -5, "int": 7, "wDamPct": 10, "eDamPct": -10, "id": 1751}, {"name": "Mangrove", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": -65, "wDef": 50, "eDef": 50, "lvl": 52, "strReq": 30, "intReq": 30, "hprPct": 10, "mr": 5, "spd": -11, "hprRaw": 30, "wDefPct": 8, "eDefPct": 8, "id": 1750}, {"name": "Maple", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "43-57", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "NORMAL", "lvl": 58, "str": 7, "hprRaw": 40, "eDamPct": 8, "fDefPct": -5, "id": 1752}, {"name": "Marble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 90, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 48, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "sdPct": 5, "sdRaw": 12, "type": "ring", "id": 1754}, {"name": "Marble Forest", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "133-136", "tDam": "0-0", "eDam": "133-136", "atkSpd": "NORMAL", "lvl": 87, "strReq": 30, "agiReq": 30, "str": 15, "dex": -15, "agi": 15, "def": -15, "fDamPct": -25, "aDamPct": 25, "tDamPct": -25, "eDamPct": 25, "fDefPct": -20, "aDefPct": 20, "tDefPct": -20, "eDefPct": 20, "id": 1753}, {"name": "Marrow", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "lvl": 65, "hprPct": 24, "mdPct": -4, "hprRaw": 60, "fDamPct": 7, "id": 1757}, {"name": "Marius' Lament", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -25, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": -25, "lvl": 49, "dexReq": 5, "intReq": 5, "agiReq": 5, "ls": 29, "agi": 5, "spRegen": 10, "type": "bracelet", "id": 1756}, {"name": "Marsh Runner", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": 75, "tDef": -60, "lvl": 58, "intReq": 20, "xpb": 8, "ref": 12, "int": 5, "wDamPct": 7, "tDamPct": -4, "id": 1755}, {"name": "Marsh Waders", "tier": "Rare", "type": "leggings", "poison": 788, "thorns": 22, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 100, "aDef": -100, "tDef": -60, "eDef": 60, "lvl": 86, "strReq": 20, "intReq": 20, "mr": 5, "str": 8, "spd": -7, "wDamPct": 15, "id": 1758}, {"name": "Marvel", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -100, "wDef": 15, "aDef": 15, "eDef": -25, "lvl": 72, "intReq": 50, "agiReq": 10, "sdPct": 11, "mdPct": -8, "ref": 14, "spd": 8, "type": "ring", "id": 1761}, {"name": "Martyr", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 15, "aDef": 15, "lvl": 77, "agiReq": 30, "defReq": 30, "hprPct": -12, "sdPct": 8, "mdPct": 12, "hprRaw": -36, "type": "ring", "id": 1829}, {"name": "Mask of the Spirits", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjdlODQ5MGMwZjk3ZTU5ZTJjNjA5MzI3MjVmMTAyMzVlOTdiNzQ0YmRhYjU5ODcwMmEwYjJlNzk5MGRlMzA0YyJ9fX0= ", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 3649}, {"name": "Masochist", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -40, "eDef": 30, "lvl": 59, "strReq": 30, "hprPct": 40, "sdPct": -45, "mdPct": 35, "ls": -230, "ms": -5, "xpb": 15, "str": 7, "eDamPct": 12, "id": 1759}, {"name": "Master", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 11, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "necklace", "id": 1760}, {"name": "Matchbook", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -60, "lvl": 83, "defReq": 65, "def": 13, "expd": 12, "fDamPct": -7, "type": "necklace", "id": 3622}, {"name": "Mazurka", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "1-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 73, "dexReq": 35, "dex": 5, "hpBonus": -750, "sdRaw": 101, "mdRaw": 54, "tDamPct": 15, "id": 1762}, {"name": "Meanderthal", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "eDef": 20, "lvl": 29, "strReq": 12, "mdPct": 10, "xpb": 10, "str": 9, "def": 9, "spd": -10, "id": 1766}, {"name": "Mech Core", "tier": "Rare", "quest": "Desperate Metal", "category": "accessory", "drop": "never", "fDef": 50, "wDef": -25, "lvl": 86, "defReq": 35, "hprPct": 10, "mr": -5, "int": -5, "def": 8, "hpBonus": 630, "hprRaw": 75, "type": "necklace", "id": 1861}, {"name": "Medico", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 17, "hprPct": 14, "hpBonus": 22, "hprRaw": 6, "id": 1768}, {"name": "Meep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "lvl": 59, "sdPct": -6, "mdPct": -6, "agi": 5, "spd": 11, "type": "ring", "id": 1767}, {"name": "Meditation Robe", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 10, "tDef": -25, "lvl": 35, "intReq": 25, "mr": 5, "mdPct": -10, "ms": 5, "xpb": 10, "wDamPct": 12, "tDefPct": -10, "id": 1769}, {"name": "Meikyo Shisui", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1500, "wDef": 60, "lvl": 66, "intReq": 60, "mr": 10, "ref": 10, "int": 7, "spd": -15, "spRegen": 10, "hprRaw": 40, "id": 1770}, {"name": "Melody", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 6, "lvl": 48, "agiReq": 24, "mdPct": 4, "agi": 3, "spd": 2, "sdRaw": 14, "type": "ring", "id": 1774}, {"name": "Melange", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-11", "fDam": "10-12", "wDam": "9-13", "aDam": "7-15", "tDam": "6-16", "eDam": "8-14", "atkSpd": "NORMAL", "lvl": 31, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "sdPct": 7, "mdPct": 7, "xpb": 7, "lb": 7, "spd": 7, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 1771}, {"name": "Melon Cutter", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-160", "atkSpd": "NORMAL", "lvl": 58, "strReq": 30, "mdPct": 20, "str": 10, "hpBonus": -350, "eDamPct": 10, "id": 1772}, {"name": "Melted Ruby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 10, "mr": 5, "sdPct": 9, "hpBonus": 25, "wDamPct": -5, "id": 1773}, {"name": "Meltok", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "3-5", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "hprPct": 10, "xpb": 4, "id": 1778}, {"name": "Meltsteel Greaves", "tier": "Unique", "type": "leggings", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 90, "wDef": -50, "aDef": -50, "lvl": 77, "strReq": 30, "defReq": 30, "mdPct": 11, "str": 5, "expd": 8, "spd": -8, "id": 1777}, {"name": "Memento", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "wDef": 150, "tDef": -150, "lvl": 92, "intReq": 80, "mr": 10, "sdPct": 15, "ls": -600, "xpb": 20, "spRegen": 15, "sdRaw": 120, "id": 1775}, {"name": "Mercury Bomb", "tier": "Legendary", "type": "relik", "poison": 1530, "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "42-48", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "dexReq": 35, "defReq": 35, "hprPct": -100, "ls": 30, "ms": -5, "def": 12, "expd": 39, "tDamPct": 20, "id": 1781}, {"name": "Mender", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "fDef": 60, "wDef": 60, "tDef": -80, "lvl": 61, "intReq": 30, "defReq": 20, "hprPct": 30, "int": 5, "def": 4, "tDamPct": -20, "fDefPct": 10, "wDefPct": 12, "id": 1776}, {"name": "Meridian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-32", "fDam": "0-0", "wDam": "14-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 5, "mr": 5, "xpb": 12, "int": 7, "wDamPct": 5, "id": 1784}, {"name": "Mercy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 71, "hprPct": 15, "sdPct": -2, "mdPct": -2, "xpb": 8, "type": "ring", "id": 1780}, {"name": "Mesosphere", "tier": "Rare", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": -70, "aDef": 70, "tDef": 90, "eDef": -90, "lvl": 91, "dexReq": 50, "agiReq": 25, "mr": 5, "ms": 5, "ref": 15, "agi": 5, "spd": 11, "sdRaw": 145, "mdRaw": 190, "tDamPct": 13, "id": 1785}, {"name": "Mesarock Arch", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 10, "xpb": 10, "lb": 10, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "id": 1782}, {"name": "Meteoric Aegis", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "mr": 10, "xpb": 10, "ref": 15, "id": 1783}, {"name": "Meteoric Arch", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 3, "hprRaw": 35, "sdRaw": 60, "id": 1786}, {"name": "Meteorite", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "10-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-25", "atkSpd": "FAST", "lvl": 40, "strReq": 10, "defReq": 10, "mdPct": 15, "expd": 10, "wDefPct": -10, "aDefPct": -10, "id": 1800}, {"name": "Midnight Bell", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "6-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "agi": 7, "spd": 5, "fDefPct": -5, "id": 1788}, {"name": "Mighty Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 15, "id": 1787}, {"name": "Mind Rot", "tier": "Rare", "type": "helmet", "poison": 420, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1700, "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 70, "hprPct": -12, "mr": -5, "ls": 115, "ms": 10, "int": -6, "hpBonus": -150, "mdRaw": 130, "id": 1792}, {"name": "Millennium", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 63, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 3, "hprRaw": 60, "sdRaw": 120, "id": 1789}, {"name": "Mind Cracker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "sdPct": 3, "int": 1, "type": "ring", "id": 1790}, {"name": "Minor", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "sdRaw": 7, "type": "ring", "id": 1791}, {"name": "Minus", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "75-99", "eDam": "84-90", "atkSpd": "SLOW", "lvl": 42, "strReq": 18, "dexReq": 18, "spd": -10, "hpBonus": -185, "spRegen": -15, "spRaw1": -5, "spRaw3": -5, "id": 1794}, {"name": "Mirror", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 56, "ref": 14, "type": "ring", "id": 1793}, {"name": "Mirror's Edge", "tier": "Fabled", "type": "leggings", "sprint": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 63, "agiReq": 60, "ref": 30, "agi": 20, "spd": 25, "spPct2": -42, "sprintReg": 100, "jh": 1, "id": 1795}, {"name": "Misericorde", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-25", "fDam": "14-15", "wDam": "14-15", "aDam": "14-15", "tDam": "14-15", "eDam": "14-15", "atkSpd": "NORMAL", "lvl": 42, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "mr": -10, "sdPct": -12, "mdPct": 10, "ls": 55, "ms": 15, "hprRaw": -28, "id": 1797}, {"name": "Mirror Shard", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-55", "aDam": "0-0", "tDam": "61-85", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "intReq": 30, "sdPct": 22, "ms": 5, "lb": 12, "ref": 30, "hprRaw": -71, "eDefPct": -25, "id": 1796}, {"name": "Misconduct", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "46-100", "aDam": "0-0", "tDam": "20-126", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "intReq": 40, "hprPct": -30, "sdPct": 20, "ms": 10, "spd": 12, "hpBonus": -1100, "hprRaw": -140, "id": 1799}, {"name": "Hornet", "displayName": "Missile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "43-55", "fDam": "0-0", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "agiReq": 25, "defReq": 35, "mdPct": 15, "ls": -260, "expd": 50, "spd": 20, "mdRaw": 80, "fDamPct": 40, "tDamPct": -20, "eDamPct": 19, "id": 1809}, {"name": "Misfit", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "81-83", "eDam": "81-83", "atkSpd": "SUPER_FAST", "lvl": 96, "strReq": 60, "dexReq": 60, "mr": -5, "mdPct": 20, "ms": -15, "lb": 15, "expd": 25, "tDamPct": 15, "eDamPct": 15, "spRaw4": -10, "id": 1798}, {"name": "Mist", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 56, "intReq": 20, "agiReq": 30, "sdPct": -10, "mdPct": -10, "xpb": 8, "ref": 8, "agi": 7, "spd": 4, "id": 1802}, {"name": "Mist Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-24", "fDam": "0-0", "wDam": "0-0", "aDam": "7-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "agiReq": 10, "ms": 5, "agi": 4, "wDamPct": 5, "aDamPct": 5, "id": 1801}, {"name": "Mistral", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "fDef": -80, "aDef": 80, "lvl": 85, "intReq": 30, "agiReq": 50, "mr": 5, "sdPct": 20, "mdPct": -20, "ref": 16, "spd": 16, "aDamPct": 20, "id": 1806}, {"name": "Mistweaver", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "69-75", "fDam": "0-0", "wDam": "69-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 20, "agiReq": 25, "agi": 5, "aDamPct": 20, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": -15, "id": 1807}, {"name": "Mistpuff", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": 20, "aDef": 30, "tDef": -60, "lvl": 53, "intReq": 15, "agiReq": 20, "ref": 9, "int": 4, "agi": 5, "def": -3, "spd": 9, "eDamPct": -12, "id": 1804}, {"name": "Mithril Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "fDef": -5, "wDef": -5, "aDef": -5, "tDef": -5, "lvl": 39, "strReq": 20, "mdPct": 5, "xpb": 5, "def": 10, "id": 1805}, {"name": "Mitten", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "hpBonus": 5, "hprRaw": 1, "id": 1811}, {"name": "Missing", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2500, "lvl": 80, "dexReq": 40, "defReq": 40, "ls": 195, "ms": 10, "int": -23, "eSteal": 10, "spPct1": -14, "spPct3": -7, "id": 1803}, {"name": "Mixolydian", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "agiReq": 25, "agi": 7, "spd": 15, "aDamPct": 10, "id": 1812}, {"name": "Moisture", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 15, "aDef": 20, "tDef": -50, "lvl": 51, "intReq": 30, "agiReq": 30, "mdPct": -20, "xpb": 15, "ref": 10, "spd": 10, "sdRaw": 40, "wDamPct": 8, "aDamPct": 10, "id": 1808}, {"name": "Molten Flow", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2425, "fDef": 120, "wDef": -130, "eDef": 50, "lvl": 84, "defReq": 50, "hprPct": 30, "str": 6, "def": 6, "spd": -8, "hprRaw": 110, "fDamPct": 16, "eDamPct": 14, "fDefPct": 6, "aDefPct": 20, "eDefPct": 18, "id": 1816}, {"name": "Molotov", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "35-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 21, "defReq": 20, "hprPct": -15, "mdPct": 12, "def": 5, "expd": 20, "fDamPct": 8, "id": 1810}, {"name": "Mercenary Hood", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "fDef": 4, "tDef": 6, "eDef": -8, "lvl": 19, "dexReq": 5, "hprPct": 15, "dex": 3, "mdRaw": 20, "id": 1779}, {"name": "Monk's Cowl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 2, "tDef": 2, "lvl": 12, "hprPct": 10, "xpb": 6, "spRegen": 10, "id": 1814}, {"name": "Momentum", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 79, "strReq": 50, "ms": 5, "str": 5, "dex": 4, "spd": -8, "atkTier": -1, "mdRaw": 275, "type": "bracelet", "id": 1813}, {"name": "Monk's Battle Staff", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "110-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-75", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 29, "sdPct": -10, "mdPct": 10, "spd": 3, "sdRaw": -45, "mdRaw": 130, "aDefPct": -12, "id": 1815}, {"name": "Montefiore", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1340, "lvl": 64, "hprPct": 25, "ms": -5, "spRegen": 5, "hprRaw": 65, "id": 1821}, {"name": "Moonsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-75", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 73, "dexReq": 10, "defReq": 20, "hprPct": 12, "xpb": 8, "int": -3, "expd": 5, "wDamPct": -15, "tDamPct": 10, "wDefPct": -5, "aDefPct": 5, "id": 1820}, {"name": "Morning Star", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-140", "fDam": "80-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "mdPct": 10, "ref": 15, "spRegen": 5, "wDamPct": -5, "aDamPct": 10, "fDefPct": 10, "aDefPct": 5, "id": 1822}, {"name": "Moonbeam", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": 80, "tDef": -80, "lvl": 89, "intReq": 60, "mr": 10, "sdPct": 8, "xpb": 12, "int": 8, "spRegen": 12, "wDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 1817}, {"name": "Mortar", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "aDef": -5, "eDef": 10, "lvl": 28, "strReq": 10, "mdPct": 10, "str": 4, "expd": 2, "aDamPct": -10, "eDamPct": 7, "id": 1819}, {"name": "Mosaic", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-60", "wDam": "40-60", "aDam": "40-60", "tDam": "40-60", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 76, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -9, "mdPct": -9, "hprRaw": 80, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1826}, {"name": "Moulded Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": -80, "eDef": 100, "lvl": 67, "strReq": 35, "sdPct": 7, "mdPct": 11, "expd": 12, "spd": -8, "atkTier": -1, "eDamPct": 40, "aDefPct": -20, "eDefPct": 20, "id": 1823}, {"name": "Moss", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "wDef": 65, "eDef": 65, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 25, "sdPct": -5, "mdPct": -5, "hprRaw": 100, "wDefPct": 15, "tDefPct": 25, "eDefPct": 15, "id": 1824}, {"name": "Mountain Spirit", "tier": "Rare", "type": "dagger", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "dexReq": 35, "agiReq": 35, "sdPct": 4, "xpb": 8, "dex": 5, "agi": 5, "mdRaw": 120, "aDamPct": 8, "tDamPct": 8, "id": 1825}, {"name": "Mouth of Fate", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "86-100", "tDam": "76-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 92, "dexReq": 38, "agiReq": 38, "sdPct": 9, "mdPct": 9, "dex": 9, "agi": 9, "spd": 9, "sdRaw": 135, "mdRaw": 110, "eDefPct": -30, "id": 1827}, {"name": "Mountaintop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": -70, "aDef": 70, "tDef": -150, "eDef": 150, "lvl": 92, "strReq": 35, "agiReq": 15, "mdPct": 12, "dex": 10, "spd": 8, "mdRaw": 175, "fDamPct": -12, "aDamPct": 5, "eDamPct": 5, "eDefPct": 12, "id": 1830}, {"name": "Msitu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "mr": 10, "xpb": 15, "lb": 15, "str": 8, "agi": -8, "fDefPct": -30, "aDefPct": 15, "eDefPct": 15, "id": 1828}, {"name": "Mud Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 46, "wDef": 5, "aDef": -7, "eDef": 5, "lvl": 13, "mdPct": 7, "spd": -4, "wDamPct": 4, "id": 1831}, {"name": "Muddy Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 410, "wDef": 10, "aDef": -20, "eDef": 15, "lvl": 45, "strReq": 15, "intReq": 5, "str": 7, "spd": -7, "aDamPct": -6, "fDefPct": 10, "wDefPct": 8, "tDefPct": 10, "eDefPct": 8, "id": 1833}, {"name": "Mullberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-10", "atkSpd": "NORMAL", "lvl": 11, "hprPct": 10, "xpb": 6, "hpBonus": 15, "id": 1835}, {"name": "Multitool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 76, "dex": 8, "type": "bracelet", "id": 3578}, {"name": "Murk", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 970, "wDef": 55, "tDef": -65, "lvl": 63, "intReq": 45, "sdPct": 5, "ms": 5, "spd": -6, "sdRaw": 85, "wDamPct": 5, "tDamPct": 8, "eDamPct": -6, "tDefPct": -8, "id": 1837}, {"name": "Mudskipper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "wDef": 60, "aDef": 60, "tDef": -100, "eDef": 60, "lvl": 70, "strReq": 25, "intReq": 25, "agiReq": 25, "sdPct": 7, "mdPct": 7, "str": 4, "agi": 4, "spd": 8, "wDamPct": 8, "tDefPct": -10, "id": 1832}, {"name": "Muskeg", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "aDef": -55, "eDef": 45, "lvl": 53, "strReq": 30, "intReq": 30, "mr": 5, "agi": -4, "spd": -8, "wDamPct": 12, "eDamPct": 12, "aDefPct": -10, "id": 1836}, {"name": "Muscle Shirt", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "lvl": 25, "strReq": 15, "str": 8, "id": 1834}, {"name": "Mustard Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 90, "fDef": -10, "wDef": 5, "eDef": 5, "lvl": 22, "strReq": 3, "intReq": 3, "expd": 3, "wDamPct": 5, "eDefPct": 5, "id": 1838}, {"name": "Mycelium Plating", "tier": "Unique", "type": "leggings", "poison": 720, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3025, "wDef": -60, "aDef": -80, "eDef": 130, "lvl": 96, "strReq": 50, "ls": -100, "ms": -5, "str": 7, "hprRaw": 150, "aDamPct": -15, "eDamPct": 20, "eDefPct": 12, "id": 1839}, {"name": "Mystic Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "wDef": 10, "tDef": -10, "lvl": 22, "intReq": 10, "mr": 5, "int": 4, "sdRaw": 15, "tDamPct": -6, "id": 1841}, {"name": "Myelin", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "wDef": 120, "tDef": 50, "lvl": 87, "dexReq": 20, "intReq": 50, "sdPct": 10, "mdPct": -25, "ms": 10, "int": 7, "sdRaw": 165, "tDamPct": 8, "tDefPct": 12, "id": 1842}, {"name": "Mythical Trousers", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 500, "lvl": 42, "defReq": 25, "hprPct": 20, "mr": -5, "ls": 37, "hpBonus": 150, "hprRaw": 27, "wDamPct": -7, "aDamPct": -7, "tDamPct": -7, "eDamPct": -7, "fDefPct": 20, "id": 1843}, {"name": "Mystical Lance", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-95", "fDam": "0-0", "wDam": "0-0", "aDam": "45-45", "tDam": "45-45", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "agiReq": 40, "sdPct": 7, "mdPct": 7, "dex": 18, "agi": 18, "def": -22, "fDamPct": -96, "fDefPct": -41, "id": 1844}, {"name": "Abyssal Amulet", "tier": "Legendary", "quest": "Eye of the Storm", "poison": 450, "category": "accessory", "drop": "never", "fDef": 30, "tDef": 30, "lvl": 72, "hprPct": -15, "ls": 75, "spRegen": -10, "type": "necklace", "id": 1847}, {"name": "Abysso Galoshes", "tier": "Legendary", "type": "boots", "quest": "Beneath the Depths", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": 80, "lvl": 60, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 100, "wDamPct": 10, "tDamPct": 10, "eDefPct": -35, "id": 1845}, {"name": "Aerolia Boots", "tier": "Unique", "type": "boots", "quest": "Suspended Flowers", "category": "armor", "slots": 1, "drop": "never", "hp": 55, "lvl": 14, "hprPct": 15, "mr": 5, "id": 1848}, {"name": "Air Relic Dagger", "displayName": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "39-66", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 30, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 1846}, {"name": "Air Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-65", "fDam": "0-0", "wDam": "0-0", "aDam": "25-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 15, "xpb": 15, "lb": 15, "agi": 5, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 1852}, {"name": "Amulet of Rejuvenation", "tier": "Rare", "quest": "Aldorei^s Secret Part II", "poison": -20000, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 15, "sdPct": -500, "mdPct": -500, "spd": -300, "hprRaw": 750, "sdRaw": -10000, "mdRaw": -10000, "type": "necklace", "fixID": true, "id": 1850}, {"name": "Altum Spatium", "tier": "Legendary", "quest": "???\u058e", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 251, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 80, "xpb": 19, "ref": 19, "type": "necklace", "id": 1849}, {"name": "Anya's Penumbra", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 30, "tDef": 30, "lvl": 100, "int": 15, "spRegen": -14, "type": "bracelet", "spRaw2": 5, "id": 1860}, {"name": "Ancient Runic Relik", "tier": "Legendary", "type": "relik", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "290-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1851}, {"name": "Mvuke", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-72", "fDam": "90-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "defReq": 40, "mr": 10, "xpb": 15, "lb": 15, "int": -8, "def": 8, "fDefPct": 15, "wDefPct": 15, "tDefPct": -30, "id": 1840}, {"name": "Avalanche", "tier": "Rare", "type": "helmet", "quest": "Fate of the Fallen", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 225, "fDef": -20, "lvl": 43, "intReq": 20, "mr": 10, "xpb": 10, "int": 7, "fDamPct": -10, "wDamPct": 10, "aDamPct": 5, "fDefPct": -12, "id": 1853}, {"name": "Blood Moon", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "hp": 2125, "wDef": -75, "eDef": 75, "lvl": 70, "sdPct": -50, "mdPct": 50, "sdRaw": -165, "mdRaw": 215, "id": 1856}, {"name": "Bear Head", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "id": 2393, "set": "Bear"}, {"name": "Bob's Battle Chestplate", "tier": "Unique", "type": "chestplate", "quest": "Bob's Lost Soul", "category": "armor", "slots": 3, "drop": "never", "hp": 450, "lvl": 45, "sdPct": 8, "mdPct": 8, "xpb": 8, "lb": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "id": 1855}, {"name": "Black Veil", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "poison": 105, "category": "armor", "drop": "never", "hp": 570, "tDef": 30, "eDef": -30, "lvl": 51, "sdPct": 15, "ls": 49, "ms": 5, "xpb": -8, "lb": -8, "spRegen": -8, "id": 1866}, {"name": "Bob's Mythic Bow", "tier": "Legendary", "type": "bow", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "380-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1857}, {"name": "Bob's Mythic Daggers", "tier": "Legendary", "type": "dagger", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "185-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1858}, {"name": "Bob's Mythic Spear", "tier": "Legendary", "type": "spear", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "250-310", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1918}, {"name": "Bob's Mythic Wand", "tier": "Legendary", "type": "wand", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1859}, {"name": "Bovine Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 50, "eDef": 20, "lvl": 55, "mdPct": 5, "str": 7, "type": "bracelet", "id": 1862}, {"name": "Calamaro's Bow", "tier": "Rare", "type": "bow", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-27", "fDam": "0-0", "wDam": "20-31", "aDam": "11-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1863}, {"name": "Calamaro's Spear", "tier": "Rare", "type": "spear", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-22", "fDam": "0-0", "wDam": "17-25", "aDam": "7-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1870}, {"name": "Breathing Helmet II", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 300, "wDef": 40, "tDef": -40, "lvl": 40, "ref": 20, "spd": 5, "wDamPct": 15, "fixID": true, "id": 1867}, {"name": "Calamaro's Relik", "tier": "Rare", "type": "relik", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-23", "fDam": "0-0", "wDam": "25-26", "aDam": "13-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1865}, {"name": "Calamaro's Staff", "tier": "Rare", "type": "wand", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "16-22", "aDam": "6-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1871}, {"name": "Calamaro's Sword", "tier": "Rare", "type": "dagger", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "18-28", "aDam": "9-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1868}, {"name": "Clearsight Spectacles", "tier": "Legendary", "type": "helmet", "quest": "Realm of Light IV - Finding the Light", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 71, "xpb": 20, "lb": 15, "ref": 50, "int": 5, "spRegen": 25, "hprRaw": 85, "id": 1873}, {"name": "Changeling's Chestplate", "tier": "Rare", "type": "chestplate", "quest": "General's Orders", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 55, "wDef": 55, "aDef": 55, "tDef": 55, "eDef": 55, "lvl": 80, "xpb": 15, "lb": 15, "str": -1, "dex": -1, "int": -1, "agi": -1, "def": -1, "spd": 15, "hprRaw": 100, "sdRaw": 135, "mdRaw": 175, "jh": 1, "id": 1869}, {"name": "Climbing Helmet", "tier": "Unique", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 350, "aDef": 30, "eDef": 30, "lvl": 42, "xpb": 10, "lb": 10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 56, "id": 1872}, {"name": "Confusing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 99, "lvl": 18, "int": -20, "id": 1874}, {"name": "Contest Wynner Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1875}, {"name": "Dark Diadem", "tier": "Rare", "quest": "The Dark Descent", "category": "accessory", "drop": "never", "wDef": -20, "lvl": 24, "sdPct": 4, "ms": 5, "xpb": 6, "spRegen": -10, "type": "necklace", "id": 1876}, {"name": "Detective's Ring", "tier": "Rare", "quest": "Murder Mystery", "category": "accessory", "drop": "never", "lvl": 74, "sdPct": 7, "xpb": 6, "int": 7, "type": "ring", "id": 1926}, {"name": "Breathing Helmet I", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 20, "wDef": 5, "tDef": -3, "lvl": 8, "id": 1864}, {"name": "Digested Corpse", "tier": "Unique", "type": "chestplate", "poison": 480, "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": -60, "lvl": 71, "strReq": 25, "dexReq": 25, "hprPct": -140, "mdPct": 7, "hprRaw": -9, "mdRaw": 125, "id": 1878}, {"name": "Cloak of Luminosity", "tier": "Rare", "type": "chestplate", "quest": "Realm of Light III - A Headless History", "category": "armor", "drop": "never", "hp": 1280, "fDef": 40, "wDef": 75, "aDef": 40, "tDef": 75, "eDef": 40, "lvl": 64, "mr": 5, "sdPct": 15, "ms": 5, "xpb": 15, "lb": 15, "ref": 15, "spRegen": 15, "wDamPct": 5, "tDamPct": 5, "id": 1877}, {"name": "Earth Relic Dagger", "displayName": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 30, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1880}, {"name": "Dull Ancient Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1350, "lvl": 77, "id": 1881}, {"name": "Earth Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-100", "atkSpd": "SLOW", "lvl": 45, "strReq": 15, "mdPct": 15, "xpb": 15, "lb": 15, "str": 5, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1884}, {"name": "Emerald Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "42-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "xpb": 7, "lb": 23, "eSteal": 7, "id": 1883}, {"name": "Empowered Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": -50, "lvl": 77, "id": 1888}, {"name": "Fire Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "defReq": 15, "xpb": 15, "lb": 15, "def": 5, "hpBonus": 335, "hprRaw": 30, "fDamPct": 10, "fDefPct": 20, "id": 1889}, {"name": "Fire Relic Dagger", "displayName": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 30, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1887}, {"name": "Factory Helmet", "tier": "Unique", "type": "helmet", "quest": "An Iron Heart Part I", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 500, "lvl": 50, "hprPct": 15, "mr": -5, "xpb": 10, "lb": 15, "ref": 10, "def": 7, "hpBonus": 200, "id": 1886}, {"name": "Fire Wire", "tier": "Rare", "type": "leggings", "quest": "From The Mountains", "thorns": 15, "category": "armor", "slots": 1, "drop": "never", "hp": 1600, "fDef": 120, "wDef": -90, "lvl": 67, "hprPct": 35, "def": 7, "spd": -15, "hprRaw": 50, "wDamPct": -15, "fDefPct": 12, "id": 1891}, {"name": "First Steps", "tier": "Unique", "quest": "Cook Assistant", "category": "accessory", "drop": "never", "hp": 4, "lvl": 5, "xpb": 3, "spd": 5, "type": "ring", "id": 3545}, {"name": "Generator Amulet", "tier": "Rare", "quest": "Heart of Llevigar", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": -10, "tDef": 10, "eDef": -20, "lvl": 41, "sdPct": 8, "expd": 5, "sdRaw": 20, "type": "necklace", "id": 1890}, {"name": "Gernald's Amulet", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 70, "fDef": 7, "wDef": 7, "aDef": 7, "tDef": 7, "eDef": 7, "lvl": 43, "xpb": -4, "lb": 11, "type": "necklace", "id": 1893}, {"name": "Gerten Ritual Mask", "tier": "Rare", "type": "helmet", "quest": "The Hunger of Gerts Part 2", "skin": "eyJ0aW1lc3RhbXAiOjE0Mzc5NTUxMDU1MjAsInByb2ZpbGVJZCI6ImRlZDdhMmFmMTVlNjRjOWVhYjIzZWFlOTkyMzUzMDY4IiwicHJvZmlsZU5hbWUiOiJFbmVyZ3l4eGVyIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzczYzIxYjNjYWY4YTZlYWI3ZDE4MTczNGE0MzBkYjUyMWIxZGI4MzNjODk4N2RkZTI0MTE4MDIzMWU0NzgyNiJ9fX0=", "category": "armor", "slots": 1, "drop": "never", "hp": 1800, "aDef": -60, "eDef": 100, "lvl": 78, "sdPct": -10, "str": 7, "spd": -10, "mdRaw": 180, "eDamPct": 20, "aDefPct": -10, "id": 1892}, {"name": "Essren's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 50, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 15, "int": 4, "sdRaw": 20, "wDamPct": 10, "id": 1885}, {"name": "Gnome's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": -250, "aDef": 30, "eDef": -10, "lvl": 76, "agiReq": 25, "mdPct": -8, "str": -3, "agi": 5, "spd": 8, "aDamPct": 7, "eDamPct": -8, "type": "ring", "id": 1895}, {"name": "Glaciate", "tier": "Rare", "type": "leggings", "quest": "Frost Bite", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "wDef": 30, "eDef": -30, "lvl": 48, "dexReq": 20, "intReq": 25, "ms": 5, "lb": 10, "ref": 20, "dex": 7, "spd": 10, "wDamPct": 6, "tDamPct": 8, "eDefPct": -15, "id": 1897}, {"name": "Giant's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": 250, "aDef": -10, "eDef": 30, "lvl": 76, "strReq": 25, "mdPct": 7, "str": 5, "agi": -3, "spd": -8, "aDamPct": -8, "eDamPct": 7, "type": "ring", "id": 1894}, {"name": "Gnomish Topper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "eDef": 50, "lvl": 75, "agiReq": 35, "sdPct": -10, "mdPct": 5, "xpb": 10, "str": 7, "agi": 4, "spd": 15, "id": 1896}, {"name": "Guard's Uniform", "tier": "Normal", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1150, "lvl": 72, "id": 1898}, {"name": "Greaves of Honor", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "hprPct": 20, "xpb": 30, "ref": 10, "spRegen": 3, "id": 1900}, {"name": "Hallowynn Mask", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "hp": 115, "tDef": 5, "lvl": 22, "xpb": 5, "sdRaw": 15, "mdRaw": 16, "id": 1899}, {"name": "Helmet of Legends", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1000, "lvl": 68, "id": 1901}, {"name": "Helmet of Shimmering Light", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Quest Item", "hp": 1850, "lvl": 74, "id": 1902}, {"name": "Hide of Gregg'r", "tier": "Rare", "type": "chestplate", "quest": "Green Skinned Trouble", "category": "armor", "slots": 1, "drop": "never", "hp": 600, "fDef": 40, "wDef": -50, "aDef": 20, "lvl": 44, "agiReq": 10, "defReq": 15, "sdPct": -10, "mdPct": 10, "expd": 8, "spd": 8, "fDamPct": 12, "id": 1903}, {"name": "Howler Hide", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 430, "fDef": -20, "eDef": 25, "lvl": 41, "strReq": 25, "mdPct": 20, "str": 10, "expd": 8, "spd": -5, "aDamPct": 16, "id": 1908}, {"name": "Inhibitor", "tier": "Fabled", "type": "chestplate", "category": "armor", "drop": "NEVER", "lvl": 100, "mr": -15, "sdPct": -300, "mdPct": -300, "spRegen": -150, "sdRaw": -800, "mdRaw": -1000, "id": 3650}, {"name": "Lazarus' Brace", "tier": "Rare", "quest": "Lazarus Pit", "category": "accessory", "drop": "never", "hp": -250, "lvl": 69, "hprPct": 10, "xpb": 5, "hprRaw": 40, "type": "bracelet", "id": 1904}, {"name": "Mask of the Dark Curse", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 70, "wDef": -5, "tDef": 10, "lvl": 15, "mr": -5, "sdPct": 6, "ls": 7, "ms": 5, "xpb": 10, "spRegen": -5, "id": 1906}, {"name": "Mummy's Rag", "tier": "Legendary", "type": "chestplate", "quest": "Wrath of the Mummy", "thorns": 5, "category": "armor", "drop": "never", "hp": 400, "aDef": 20, "eDef": 20, "lvl": 38, "ref": 5, "spd": -20, "atkTier": 1, "spRegen": -3, "id": 1907}, {"name": "Olux's Prized Bow", "tier": "Legendary", "type": "bow", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-100", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1905}, {"name": "Olux's Prized Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "55-60", "atkSpd": "FAST", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1911}, {"name": "Olux's Prized Spear", "tier": "Legendary", "type": "spear", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "65-90", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1910}, {"name": "Olux's Prized Relik", "tier": "Legendary", "type": "relik", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-64", "fDam": "0-0", "wDam": "40-48", "aDam": "0-0", "tDam": "0-0", "eDam": "70-72", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1909}, {"name": "Olux's Prized Wand", "tier": "Legendary", "type": "wand", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-40", "fDam": "0-0", "wDam": "15-30", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1915}, {"name": "Ominous Wind", "tier": "Rare", "quest": "One Thousand Meters Under", "thorns": 10, "category": "accessory", "drop": "never", "hp": -400, "aDef": 55, "eDef": 55, "lvl": 95, "sdPct": 6, "mdPct": -4, "xpb": 10, "spd": 11, "type": "necklace", "id": 1912}, {"name": "Orc Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 900, "lvl": 64, "id": 1913}, {"name": "Upgraded Orc Mask", "tier": "Unique", "type": "helmet", "quest": "A Fighting Species", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "slots": 3, "drop": "never", "hp": 1100, "lvl": 64, "mdPct": 10, "xpb": 20, "str": 5, "def": 4, "spd": -8, "hprRaw": 65, "id": 1914}, {"name": "Ornate Shadow Cloud", "set": "Ornate Shadow", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1916}, {"name": "Ornate Shadow Cowl", "set": "Ornate Shadow", "tier": "Fabled", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1917}, {"name": "Ornate Shadow Cover", "set": "Ornate Shadow", "tier": "Fabled", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1919}, {"name": "Ornate Shadow Garb", "set": "Ornate Shadow", "tier": "Fabled", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1922}, {"name": "Pendant of Prosperity", "tier": "Rare", "quest": "Fantastic Voyage", "category": "accessory", "drop": "never", "lvl": 90, "lb": 16, "hpBonus": -100, "eSteal": 5, "type": "necklace", "id": 1923}, {"name": "Paw", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "lvl": 70, "agi": 16, "spd": 30, "fDamPct": -6, "wDamPct": -6, "aDamPct": 24, "eDamPct": -18, "id": 1920}, {"name": "Phoenix Prince's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3900, "fDef": 125, "wDef": -125, "aDef": 125, "lvl": 90, "agiReq": 35, "defReq": 35, "hprPct": 27, "agi": 9, "def": 7, "spd": 15, "spRegen": 20, "hprRaw": 205, "fDefPct": 20, "id": 1921}, {"name": "Psychomend Vest", "tier": "Rare", "type": "chestplate", "quest": "Shattered Minds", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "lvl": 70, "hprPct": 19, "sdPct": -15, "mdPct": -5, "int": -3, "hpBonus": 600, "hprRaw": 100, "id": 1925}, {"name": "Purified Helmet of the Legends", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1450, "lvl": 68, "hprPct": 20, "sdPct": 12, "mdPct": 12, "xpb": 10, "lb": 10, "spRegen": 5, "id": 1927}, {"name": "Quartron's Eye", "tier": "Rare", "quest": "Rise of the Quartron", "category": "accessory", "drop": "never", "hp": -60, "lvl": 49, "expd": 10, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "ring", "id": 1924}, {"name": "Quicksand Crossers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 235, "wDef": -20, "aDef": 10, "eDef": 10, "lvl": 34, "agiReq": 15, "lb": 10, "agi": 7, "spd": 9, "eDefPct": 12, "id": 1928}, {"name": "Raging Wind", "tier": "Rare", "quest": "Beyond the Grave", "category": "accessory", "drop": "never", "fDef": -20, "aDef": 20, "lvl": 87, "agiReq": 40, "agi": 5, "spd": 12, "aDamPct": 9, "type": "ring", "id": 1929}, {"name": "Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-22", "fDam": "20-22", "wDam": "20-22", "aDam": "20-22", "tDam": "20-22", "eDam": "20-22", "atkSpd": "NORMAL", "lvl": 45, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1932}, {"name": "Restored Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 2100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 77, "mr": 5, "xpb": 15, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 8, "id": 1934}, {"name": "Randall's Leg Plating", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 450, "lvl": 38, "defReq": 45, "sdPct": -15, "mdPct": -8, "lb": 15, "str": 4, "def": 15, "fDefPct": 17, "id": 1930}, {"name": "Ring of Generosity", "tier": "Rare", "quest": "Memory Paranoia", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 10, "hpBonus": 350, "spRegen": 5, "type": "ring", "id": 1933}, {"name": "Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -280, "lvl": 75, "xpb": 8, "lb": 12, "eSteal": 8, "type": "ring", "id": 1935}, {"name": "Pirate Queen's Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -50, "lvl": 75, "xpb": 6, "lb": 9, "eSteal": 2, "type": "ring", "id": 1936}, {"name": "Royal Blazing Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "def": 3, "hpBonus": 650, "fDamPct": 5, "type": "necklace", "fixID": true, "id": 1939}, {"name": "Royal Cyclone Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "agi": 3, "spd": 10, "aDamPct": 5, "type": "necklace", "fixID": true, "id": 1937}, {"name": "Royal Dusty Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mdPct": 8, "xpb": 5, "lb": 5, "str": 3, "eDamPct": 5, "type": "necklace", "fixID": true, "id": 1938}, {"name": "Royal Shocking Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "thorns": 5, "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "dex": 3, "mdRaw": 25, "tDamPct": 5, "type": "necklace", "fixID": true, "id": 1941}, {"name": "Royal Stormy Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mr": 5, "xpb": 5, "lb": 5, "int": 3, "wDamPct": 5, "type": "necklace", "fixID": true, "id": 1943}, {"name": "Bandit's Bangle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -15, "lvl": 36, "lb": 6, "eSteal": 4, "type": "bracelet", "id": 1942, "set": "Bandit's"}, {"name": "Bandit's Ring", "tier": "Set", "category": "accessory", "drop": "never", "hp": -20, "lvl": 32, "lb": 7, "eSteal": 3, "type": "ring", "id": 1946, "set": "Bandit's"}, {"name": "Builder's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1947, "set": "Builder's"}, {"name": "Bandit's Locket", "tier": "Set", "category": "accessory", "drop": "never", "hp": -10, "lvl": 38, "lb": 4, "eSteal": 5, "type": "necklace", "id": 1945, "set": "Bandit's"}, {"name": "Builder's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1951, "set": "Builder's"}, {"name": "Builder's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1944, "set": "Builder's"}, {"name": "Bandit's Knuckle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -25, "lvl": 34, "lb": 3, "eSteal": 6, "type": "ring", "id": 1940, "set": "Bandit's"}, {"name": "GM's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1949, "set": "GM's"}, {"name": "GM's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1953, "set": "GM's"}, {"name": "GM's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1954, "set": "GM's"}, {"name": "Builder's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1950, "set": "Builder's"}, {"name": "GM's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1948, "set": "GM's"}, {"name": "Sandshooter", "tier": "Rare", "type": "bow", "thorns": 10, "category": "weapon", "slots": 1, "drop": "never", "nDam": "25-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 15, "lb": 15, "str": 9, "wDamPct": -15, "aDamPct": 7, "id": 1952}, {"name": "Sandslasher", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "strReq": 10, "agiReq": 10, "sdPct": -5, "spd": 4, "sdRaw": -20, "mdRaw": 52, "aDamPct": 12, "eDamPct": 10, "id": 1957}, {"name": "Santa Boots", "tier": "Rare", "type": "boots", "quest": "Meaningful Holiday", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "fDef": 20, "lvl": 33, "hprPct": 20, "xpb": 15, "lb": 10, "hpBonus": 55, "aDefPct": 10, "id": 1955}, {"name": "Santa's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 260, "lvl": 32, "xpb": 15, "lb": 15, "hpBonus": 40, "hprRaw": 15, "id": 1958}, {"name": "Seekers Aid", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1959}, {"name": "Shameful Greaves", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "poison": 285, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "ls": 75, "lb": 30, "eSteal": 5, "id": 1961}, {"name": "Sodeta Boots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 3, "drop": "never", "hp": 1150, "lvl": 66, "hprPct": 14, "mr": 10, "sdPct": 22, "ls": 50, "xpb": 24, "id": 1965}, {"name": "Skeletal Legs", "tier": "Rare", "type": "leggings", "quest": "Pit of the Dead", "poison": 41, "category": "armor", "slots": 1, "drop": "never", "hp": 144, "lvl": 23, "ls": 11, "ms": 5, "def": -3, "hpBonus": -30, "id": 1962}, {"name": "Sound Proof Earmuff", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 1500, "tDef": 50, "eDef": -50, "lvl": 73, "id": 1964}, {"name": "Santa Hat", "tier": "Rare", "type": "helmet", "quest": "Craftmas Chaos", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "lvl": 30, "hprPct": 30, "xpb": 15, "lb": 15, "hpBonus": 25, "wDefPct": 10, "id": 1956}, {"name": "Shadow Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "1-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "dexReq": 10, "lb": 15, "dex": 10, "agi": 4, "spd": 10, "hpBonus": -60, "id": 1963}, {"name": "Spiketop", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NEVER", "restrict": "Untradable", "fDef": 3, "lvl": 9, "hpBonus": 92, "id": 3546}, {"name": "Sunblight Boots", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1650, "wDef": 80, "aDef": -90, "tDef": -90, "eDef": 100, "lvl": 76, "id": 1968}, {"name": "Santa's Pants", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 250, "wDef": 25, "tDef": -20, "lvl": 31, "hprPct": 20, "xpb": 10, "lb": 15, "hpBonus": 35, "fDefPct": 5, "id": 1960}, {"name": "Temporal Cage", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 20, "ms": 10, "spd": 10, "hprRaw": -7, "sdRaw": 20, "mdRaw": 26, "tDamPct": 10, "id": 1967}, {"name": "Spear of Testiness", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "90-90", "fDam": "1-10", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 3651}, {"name": "The Juggernaut", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "hp": 275, "fDef": 10, "wDef": -10, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 33, "defReq": 20, "lb": 10, "def": 9, "spd": -15, "hpBonus": 77, "id": 1969}, {"name": "The Queen's Headpiece", "tier": "Rare", "type": "helmet", "quest": "Royal Trials", "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "aDef": 100, "tDef": 75, "lvl": 98, "dexReq": 25, "agiReq": 50, "ms": 5, "agi": 9, "spd": 19, "eSteal": 7, "mdRaw": 260, "aDamPct": 12, "tDamPct": 12, "fDefPct": -25, "eDefPct": -25, "id": 1966}, {"name": "Thoracic", "tier": "Rare", "type": "chestplate", "quest": "The Sewers of Ragni", "category": "armor", "slots": 1, "drop": "never", "hp": 45, "aDef": -2, "tDef": 5, "lvl": 9, "xpb": 7, "lb": -2, "dex": 7, "mdRaw": 13, "tDamPct": 6, "id": 1971}, {"name": "Thunder Relic Dagger", "displayName": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "22-99", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "22-99", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 30, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 1972}, {"name": "Thunder Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "dexReq": 15, "ms": 5, "xpb": 15, "lb": 15, "dex": 5, "mdRaw": 59, "tDamPct": 20, "tDefPct": 10, "id": 1974}, {"name": "Treasure Boots", "tier": "Unique", "type": "boots", "quest": "Underwater", "category": "armor", "slots": 1, "drop": "never", "hp": 24, "lvl": 7, "xpb": 5, "lb": 20, "id": 1973}, {"name": "Trick", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": -10, "expd": 10, "type": "ring", "id": 1975, "set": "Hallowynn 2016"}, {"name": "Treat", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": 10, "expd": -10, "type": "ring", "id": 1970, "set": "Hallowynn 2016"}, {"name": "Vandalizer", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "50-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 10, "ls": 39, "lb": 15, "expd": 10, "eSteal": 15, "wDefPct": -15, "id": 1980}, {"name": "Troms Kid Badge", "tier": "Rare", "quest": "Out of my Mind\u058e", "category": "accessory", "drop": "never", "lvl": 63, "xpb": 4, "lb": 7, "spd": 7, "spRegen": 4, "hprRaw": 19, "type": "necklace", "id": 1976}, {"name": "Vindicator", "tier": "Fabled", "quest": "The Mercenary", "majorIds": ["MAGNET"], "category": "accessory", "drop": "never", "hp": 50, "lvl": 30, "xpb": 7, "lb": 7, "type": "bracelet", "id": 1979}, {"name": "Waist Apron", "tier": "Rare", "type": "leggings", "quest": "Infested Plants", "thorns": 8, "category": "armor", "drop": "NEVER", "hp": 30, "lvl": 7, "xpb": 5, "expd": 8, "id": 3547}, {"name": "Dodegar's Ultimate Weapon", "tier": "Legendary", "type": "dagger", "quest": "The Ultimate Weapon", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "id": 1978}, {"name": "Water Relic Dagger", "displayName": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 1977}, {"name": "Water Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-60", "fDam": "0-0", "wDam": "50-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "intReq": 15, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 5, "wDamPct": 10, "wDefPct": 20, "id": 1982}, {"name": "Wynnter Fair 2017 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1981}, {"name": "Wynnter Fair 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1983}, {"name": "Wynnterfest 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 2109}, {"name": "Nacreous", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 51, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "xpb": 9, "lb": 9, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1988}, {"name": "Yellow Content Cap of Fame", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1986}, {"name": "Necklace of a Thousand Storms", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -300, "aDef": 60, "lvl": 98, "agiReq": 50, "hprPct": -20, "str": -5, "agi": 10, "spd": 15, "fDamPct": -15, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "type": "necklace", "id": 1985}, {"name": "Naragath's Hoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "fDef": 60, "wDef": -100, "tDef": 60, "lvl": 58, "dexReq": 30, "defReq": 30, "dex": 8, "int": -6, "def": 8, "expd": 10, "spRegen": -20, "fDamPct": 15, "wDamPct": -20, "tDamPct": 15, "wDefPct": -20, "id": 1991}, {"name": "Naga Viper", "tier": "Rare", "type": "leggings", "poison": 275, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "lvl": 56, "strReq": 10, "agiReq": 10, "agi": 9, "spd": 9, "hpBonus": -125, "eSteal": 2, "eDamPct": 12, "aDefPct": -10, "id": 1984}, {"name": "Namazu", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "240-320", "fDam": "0-0", "wDam": "328-455", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 30, "intReq": 25, "str": 10, "spd": -7, "atkTier": -3, "mdRaw": 350, "eDamPct": 18, "tDefPct": -10, "id": 1989}, {"name": "Narcissist", "tier": "Fabled", "type": "relik", "majorIds": ["GEOCENTRISM"], "thorns": 50, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "225-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "600-600", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 70, "sdPct": -20, "mdPct": -20, "ref": 65, "int": -5, "spd": 30, "hprRaw": 175, "eDefPct": 25, "id": 3648}, {"name": "Narima Pasukan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 500, "lvl": 48, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 9, "wDamPct": 9, "aDamPct": 9, "tDamPct": 9, "eDamPct": 9, "id": 1994}, {"name": "Nature's Gift", "tier": "Legendary", "poison": 240, "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 20, "aDef": 20, "eDef": 20, "lvl": 61, "strReq": 30, "intReq": 20, "xpb": 5, "spRegen": 8, "hprRaw": 35, "fDefPct": -18, "type": "necklace", "id": 1987}, {"name": "Nebulous", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 99, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 9, "sdRaw": 45, "type": "bracelet", "id": 1995}, {"name": "Needle Cuff", "tier": "Unique", "thorns": 11, "category": "accessory", "drop": "lootchest", "lvl": 81, "dexReq": 20, "mdRaw": 13, "type": "bracelet", "id": 1993}, {"name": "Cancer", "displayName": "Necrosis", "tier": "Legendary", "type": "helmet", "poison": 4000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "aDef": -150, "tDef": 100, "lvl": 98, "dexReq": 120, "sdPct": -1000, "mdPct": -1000, "ls": 385, "ms": 10, "atkTier": 3, "mdRaw": -1000, "id": 1990}, {"name": "Neolithic", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "lvl": 20, "strReq": 5, "defReq": 10, "hprPct": 20, "sdPct": -10, "mdPct": 5, "str": 3, "def": 7, "hpBonus": 80, "eDamPct": 12, "id": 1997}, {"name": "Nemract's Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "lb": 5, "id": 1992}, {"name": "Neodymium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 25, "tDef": 6, "eDef": -2, "lvl": 6, "hprRaw": 4, "sdRaw": 4, "mdRaw": 5, "id": 1998}, {"name": "Nemract's Ruin", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 20, "aDef": -10, "tDef": -10, "eDef": 20, "lvl": 27, "strReq": 10, "intReq": 5, "sdPct": 12, "int": 7, "mdRaw": 52, "fDamPct": -6, "wDamPct": 10, "tDamPct": -6, "eDamPct": 12, "id": 1999}, {"name": "Nemract's Rage", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 25, "mr": 10, "sdPct": 23, "tDefPct": -25, "id": 1996}, {"name": "Neon", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "bracelet", "id": 2001}, {"name": "Nephilim", "tier": "Rare", "type": "helmet", "sprint": 16, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "lvl": 88, "dexReq": 45, "agiReq": 55, "ls": 180, "ms": 10, "ref": 20, "dex": 8, "agi": 7, "spd": 20, "atkTier": 1, "aDamPct": 15, "tDamPct": 15, "id": 2002}, {"name": "Nepta Floodbringer", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "70-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 80, "mr": 5, "sdPct": 20, "int": 13, "hpBonus": -1750, "wDamPct": 15, "tDamPct": -100, "tDefPct": -30, "id": 2000}, {"name": "Nerium Great Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "150-230", "tDam": "0-0", "eDam": "150-230", "atkSpd": "VERY_SLOW", "lvl": 85, "strReq": 35, "agiReq": 35, "mdPct": 15, "str": 10, "spd": -16, "mdRaw": 220, "aDefPct": 12, "eDefPct": 12, "id": 2014}, {"name": "Nesaak's Shadow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 730, "wDef": 50, "tDef": -30, "lvl": 54, "dexReq": 10, "agiReq": 10, "ls": 65, "lb": 8, "eSteal": 5, "aDamPct": 5, "tDamPct": 5, "id": 2003}, {"name": "Nesaak's Will", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "46-68", "fDam": "0-0", "wDam": "21-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "strReq": 10, "intReq": 10, "xpb": 11, "spd": -5, "spRegen": 3, "eDamPct": 10, "wDefPct": 10, "id": 2004}, {"name": "Nerium Long Spear", "tier": "Unique", "type": "spear", "poison": 360, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "77-97", "tDam": "0-0", "eDam": "77-97", "atkSpd": "VERY_SLOW", "lvl": 59, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 10, "str": 8, "spd": -12, "aDefPct": 10, "eDefPct": 10, "id": 2005}, {"name": "Nerium Old Spear", "tier": "Unique", "type": "spear", "poison": 180, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "24-30", "tDam": "0-0", "eDam": "24-30", "atkSpd": "VERY_SLOW", "lvl": 39, "strReq": 15, "agiReq": 15, "sdPct": -10, "mdPct": 5, "str": 5, "spd": -8, "aDefPct": 8, "eDefPct": 8, "id": 2006}, {"name": "Nether's Deep", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "40-50", "wDam": "0-0", "aDam": "0-0", "tDam": "20-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "dexReq": 25, "defReq": 35, "hprPct": 23, "ls": 225, "ms": -5, "hpBonus": 1154, "spRegen": -8, "wDamPct": -20, "tDamPct": 12, "fDefPct": 12, "wDefPct": -20, "id": 2010}, {"name": "Nether's Reach", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 100, "wDef": -80, "tDef": 100, "eDef": -120, "lvl": 95, "dexReq": 20, "defReq": 40, "hprPct": 20, "str": 8, "hpBonus": 450, "hprRaw": 140, "mdRaw": 175, "fDamPct": 7, "wDamPct": -15, "tDamPct": 7, "id": 2008}, {"name": "Nether's Scar", "tier": "Legendary", "type": "boots", "poison": 525, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 140, "aDef": -140, "tDef": 140, "eDef": -140, "lvl": 95, "dexReq": 50, "defReq": 50, "hprPct": 140, "mdPct": 10, "dex": 12, "def": 12, "expd": 15, "atkTier": 1, "hprRaw": -571, "fDamPct": 10, "tDamPct": 10, "id": 2007}, {"name": "Neuron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2150, "wDef": 100, "tDef": -150, "lvl": 95, "dexReq": 50, "intReq": 20, "mr": 10, "sdPct": 20, "dex": 7, "wDamPct": 11, "tDamPct": 11, "id": 2011}, {"name": "Neutrino", "tier": "Rare", "type": "leggings", "poison": -3000, "thorns": 23, "category": "armor", "slots": 6, "drop": "NORMAL", "hp": 3575, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 30, "ref": 23, "expd": -100, "fDefPct": 23, "wDefPct": 23, "aDefPct": 23, "tDefPct": 23, "eDefPct": 23, "id": 2015}, {"name": "Nettle", "tier": "Unique", "poison": 40, "category": "accessory", "drop": "lootchest", "lvl": 25, "strReq": 5, "hprPct": -4, "eDamPct": 4, "type": "necklace", "id": 2009}, {"name": "Nehza", "displayName": "Nezha", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": -70, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 83, "defReq": 90, "fDamPct": 7, "type": "ring", "id": 2013}, {"name": "Niflheim", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "110-120", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "intReq": 50, "mr": 10, "ms": -10, "ref": 20, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 2012}, {"name": "NightMail", "displayName": "Nightmail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": -3, "aDef": 3, "tDef": 3, "eDef": -3, "lvl": 16, "dexReq": 3, "agiReq": 3, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "aDamPct": 5, "tDamPct": 5, "id": 2016}, {"name": "Night Rush", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "182-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "agiReq": 50, "agi": 30, "spd": 25, "aDamPct": 35, "eDamPct": -20, "fDefPct": 20, "eDefPct": -20, "id": 2019}, {"name": "Nighthawk", "tier": "Fabled", "type": "helmet", "majorIds": ["HAWKEYE"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "tDef": -125, "lvl": 94, "classReq": "Archer", "mdPct": -20, "spd": 12, "hpBonus": -1000, "sdRaw": 175, "id": 2021}, {"name": "Nightlife", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-94", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 32, "defReq": 32, "hprPct": -20, "mdPct": 11, "ls": 240, "def": 11, "spd": 11, "spRegen": 11, "fDamPct": 35, "id": 2025}, {"name": "NightVest", "displayName": "Nightvest", "tier": "Unique", "type": "chestplate", "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2150, "fDef": -100, "aDef": 175, "lvl": 93, "agiReq": 50, "agi": 20, "def": -15, "spd": 15, "sprintReg": 10, "id": 2018}, {"name": "Nimble Fingers", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 41, "dexReq": 25, "mdPct": -4, "lb": 5, "dex": 4, "eSteal": 4, "type": "bracelet", "id": 2020}, {"name": "Nightshade", "tier": "Unique", "poison": 400, "category": "accessory", "drop": "lootchest", "fDef": -20, "lvl": 82, "hprRaw": -15, "type": "ring", "id": 2028}, {"name": "Nipun", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 27, "lvl": 7, "sdPct": 5, "mdPct": 5, "dex": 4, "id": 2029}, {"name": "Nightling", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "tDef": 80, "eDef": -100, "lvl": 76, "dexReq": 35, "mdPct": 5, "dex": 8, "agi": 3, "spd": 12, "mdRaw": 125, "tDamPct": 8, "eDamPct": -20, "id": 2022}, {"name": "Nimbus", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "33-88", "aDam": "55-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "intReq": 25, "agiReq": 30, "mr": 5, "xpb": 8, "int": 5, "agi": 8, "spd": 12, "fDamPct": -10, "aDamPct": 10, "id": 2024}, {"name": "Nivla's Arch", "tier": "Unique", "type": "bow", "poison": 250, "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-136", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-96", "atkSpd": "VERY_SLOW", "lvl": 45, "spd": -10, "eDamPct": 5, "id": 2026}, {"name": "Nitre", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "fDef": -20, "wDef": -30, "lvl": 55, "dexReq": 15, "defReq": 30, "hprPct": -15, "sdPct": 11, "mdPct": 5, "def": 5, "expd": 45, "wDamPct": -6, "id": 2023}, {"name": "Noble Phantasm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "85-145", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "defReq": 55, "def": 30, "hpBonus": 2700, "hprRaw": 153, "fDefPct": -60, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2027}, {"name": "Noise Stream", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-1", "wDam": "1-1", "aDam": "1-160", "tDam": "1-1", "eDam": "1-1", "atkSpd": "VERY_FAST", "lvl": 94, "agiReq": 55, "ls": 210, "ms": 5, "fDamPct": 10, "wDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fDefPct": -10, "wDefPct": -10, "tDefPct": -10, "eDefPct": -10, "id": 2030}, {"name": "Noisemaker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": -15, "aDef": 25, "eDef": -15, "lvl": 51, "agiReq": 35, "sdPct": 9, "mdPct": 9, "xpb": 12, "spd": 5, "hpBonus": -120, "aDamPct": 13, "id": 2031}, {"name": "Noctilucent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "15-25", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "intReq": 17, "agiReq": 17, "sdPct": 6, "mdPct": -8, "spd": 8, "wDamPct": 6, "aDamPct": 6, "id": 2033}, {"name": "Nordstrom", "tier": "Unique", "type": "wand", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-38", "atkSpd": "SLOW", "lvl": 49, "strReq": 15, "mdPct": 9, "agi": 5, "spd": 7, "aDamPct": 12, "wDefPct": -8, "id": 2045}, {"name": "Nightstar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 45, "mr": 5, "sdPct": 12, "xpb": 8, "spRegen": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "id": 2017}, {"name": "Nucleoken", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "sdPct": 5, "xpb": 8, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 2034}, {"name": "Nuance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -50, "eDef": -50, "lvl": 90, "dexReq": 55, "agiReq": 55, "mr": 5, "sdPct": 22, "ms": 5, "dex": 8, "agi": 8, "spd": 15, "mdRaw": 190, "aDefPct": -25, "tDefPct": -25, "sprintReg": 12, "id": 2032}, {"name": "Noun", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-360", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 64, "dexReq": 50, "ms": 5, "str": -7, "dex": 9, "tDamPct": 16, "eDamPct": -32, "id": 2037}, {"name": "Breakdown", "displayName": "Nychthemeron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2375, "wDef": -50, "tDef": -50, "eDef": -50, "lvl": 93, "strReq": 65, "dexReq": 65, "sdPct": 10, "mdPct": 70, "ls": 190, "ms": 10, "str": 10, "dex": 10, "atkTier": -10, "spRegen": -15, "tDamPct": 15, "eDamPct": 15, "id": 3595}, {"name": "Nutrition", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "necklace", "id": 2035}, {"name": "Nymeria", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "dexReq": 5, "agi": 3, "spd": 5, "id": 2040}, {"name": "Oak Wood Relik", "tier": "Normal", "type": "relik", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2038}, {"name": "Oak Wood Spear", "tier": "Normal", "type": "spear", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2041}, {"name": "Oak Wood Shears", "displayName": "Oak Wood Dagger", "tier": "Normal", "type": "dagger", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 2039}, {"name": "Oak Wood Bow", "tier": "Normal", "type": "bow", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2036}, {"name": "Oasis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-37", "fDam": "0-0", "wDam": "108-128", "aDam": "0-0", "tDam": "0-0", "eDam": "108-128", "atkSpd": "VERY_SLOW", "lvl": 51, "strReq": 18, "intReq": 18, "mr": 5, "mdPct": -12, "lb": 12, "spd": -12, "hprRaw": 24, "id": 2044}, {"name": "Oak Wood Stick", "displayName": "Oak Wood Wand", "tier": "Normal", "type": "wand", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2042}, {"name": "Obsidian", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "38-52", "atkSpd": "SLOW", "lvl": 41, "strReq": 30, "sdPct": -5, "mdPct": 8, "lb": 8, "str": 5, "spd": -6, "fDamPct": -20, "eDamPct": 8, "id": 2043}, {"name": "Ocean Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-20", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "intReq": 25, "mr": 5, "sdPct": 12, "def": -3, "sdRaw": 25, "wDamPct": 5, "tDamPct": -10, "id": 2048}, {"name": "Octahedron", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "10-40", "wDam": "15-35", "aDam": "5-45", "tDam": "0-50", "eDam": "20-30", "atkSpd": "FAST", "lvl": 91, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 16, "mdPct": -32, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "id": 2049}, {"name": "Obsidian Spire", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "105-115", "fDam": "140-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-135", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 20, "defReq": 25, "mdPct": 8, "spd": -8, "hpBonus": 500, "fDefPct": 36, "wDefPct": -24, "eDefPct": 18, "id": 2046}, {"name": "Ocelot Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 27, "mr": -5, "sdPct": 8, "mdPct": 8, "spd": 12, "id": 2047}, {"name": "October Fires", "tier": "Legendary", "type": "relik", "thorns": 55, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "730-740", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 70, "defReq": 65, "ls": 130, "ms": 5, "def": 12, "expd": 40, "hpBonus": -828, "hprRaw": 90, "wDamPct": -30, "id": 2050}, {"name": "Odyssey", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 15, "ls": -75, "ms": -5, "spd": 15, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "id": 2051}, {"name": "Ogre Faceplate", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "aDef": -110, "eDef": 75, "lvl": 83, "strReq": 30, "dexReq": 25, "mdPct": 15, "str": 9, "atkTier": -4, "mdRaw": 750, "tDamPct": 5, "eDamPct": 5, "id": 2053}, {"name": "Ohms' Wish", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 25, "agiReq": 25, "sdPct": 15, "ms": 5, "dex": 9, "agi": 7, "spd": 10, "spRegen": 10, "aDamPct": 20, "eDamPct": -20, "aDefPct": 30, "id": 2052}, {"name": "Oktavist", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "190-250", "fDam": "445-495", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 50, "mdPct": 10, "def": 16, "expd": 20, "spd": -8, "hprRaw": 150, "mdRaw": 560, "tDefPct": -15, "id": 2054}, {"name": "Okit", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 55, "fDef": 10, "wDef": -2, "lvl": 42, "fDamPct": 6, "type": "ring", "id": 2056}, {"name": "Omnitread Boots", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 90, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 15, "agiReq": 10, "spd": 20, "id": 2062}, {"name": "Old Keeper's Ring", "tier": "Legendary", "majorIds": ["GREED"], "category": "accessory", "drop": "lootchest", "hp": -109, "lvl": 82, "lb": 22, "hpBonus": -300, "hprRaw": -50, "type": "ring", "id": 2055}, {"name": "Old Maple Spear", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "57-80", "atkSpd": "SLOW", "lvl": 64, "strReq": 35, "mdPct": 10, "mdRaw": 105, "eDefPct": 15, "id": 2060}, {"name": "Olive", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": -30, "wDef": 40, "eDef": 40, "lvl": 98, "strReq": 40, "intReq": 30, "sdPct": 9, "int": 5, "eDamPct": 6, "type": "ring", "id": 2058}, {"name": "Oni Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 240, "wDef": -15, "tDef": 20, "lvl": 30, "hprPct": -15, "mdPct": 10, "ls": 19, "ms": 5, "mdRaw": 39, "tDamPct": 8, "wDefPct": -15, "id": 2059}, {"name": "Omega", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "32-116", "eDam": "32-116", "atkSpd": "SUPER_FAST", "lvl": 93, "strReq": 40, "dexReq": 40, "hprPct": -40, "sdPct": 15, "mdPct": 15, "int": -11, "agi": -11, "def": -11, "expd": -50, "sdRaw": 115, "mdRaw": 150, "id": 2057}, {"name": "One Thousand Voices", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-155", "fDam": "0-0", "wDam": "0-0", "aDam": "145-155", "tDam": "145-155", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 44, "agiReq": 44, "dex": 8, "agi": 8, "expd": 100, "hpBonus": -1250, "sdRaw": 150, "fDamPct": 45, "wDamPct": -25, "eDamPct": -25, "spPct3": -23, "id": 2063}, {"name": "Onion Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 12, "xpb": 7, "lb": 7, "type": "ring", "id": 2064}, {"name": "Opalite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "lvl": 62, "intReq": 45, "mr": 5, "sdPct": 10, "xpb": 10, "ref": 10, "spRegen": 10, "fDefPct": -5, "wDefPct": -2, "aDefPct": -5, "tDefPct": -5, "eDefPct": -5, "id": 2066}, {"name": "Ophiuchus", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "fDef": 100, "wDef": 100, "eDef": -200, "lvl": 98, "intReq": 70, "defReq": 70, "mr": 10, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "tDamPct": -20, "tDefPct": -40, "eDefPct": -15, "id": 2065}, {"name": "Onyx", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-70", "fDam": "10-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-35", "atkSpd": "SLOW", "lvl": 51, "strReq": 15, "defReq": 15, "mdPct": 8, "str": 5, "def": 5, "hpBonus": 300, "wDefPct": -12, "id": 2067}, {"name": "Orient", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-130", "wDam": "85-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "intReq": 30, "defReq": 35, "hprPct": 10, "mr": 10, "sdPct": -15, "mdPct": -15, "xpb": 15, "hprRaw": 70, "id": 2070}, {"name": "Opulenity", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 11, "xpb": 10, "lb": 25, "eSteal": 5, "id": 2068}, {"name": "Ormus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": -75, "aDef": 55, "tDef": 55, "eDef": -45, "lvl": 61, "dexReq": 45, "agiReq": 25, "sdPct": 6, "xpb": 8, "spd": 12, "sdRaw": 55, "aDamPct": 8, "tDamPct": 10, "id": 2086}, {"name": "Ormrod's Isolation", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": 5, "eDef": 10, "lvl": 33, "strReq": 5, "agiReq": 8, "mdPct": 6, "spd": 8, "hprRaw": -7, "aDamPct": 4, "type": "bracelet", "id": 2069}, {"name": "Orographine", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1350, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 73, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": -15, "mdPct": -15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": -12, "hpBonus": 400, "id": 2071}, {"name": "Ornithopter", "tier": "Fabled", "type": "helmet", "majorIds": ["FREERUNNER"], "sprint": -115, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "lvl": 86, "strReq": 35, "agiReq": 70, "str": 15, "spd": 20, "mdRaw": 330, "sprintReg": 320, "id": 3608}, {"name": "Ouroboros", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "lvl": 86, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "ls": 110, "ms": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2072}, {"name": "Outburst", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -55, "eDef": -55, "lvl": 72, "dexReq": 45, "agiReq": 45, "mr": -5, "sdPct": 13, "mdPct": 13, "dex": 9, "agi": 9, "aDamPct": 16, "tDamPct": 16, "id": 2108}, {"name": "Outrage", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": 100, "lvl": 86, "strReq": 70, "mdPct": 50, "ls": 210, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": 5, "id": 3619}, {"name": "Overcharger", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "325-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "dexReq": 70, "ls": -220, "ms": 20, "expd": 25, "spd": 10, "hpBonus": -700, "id": 2073}, {"name": "Overdrive", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "104-112", "aDam": "0-0", "tDam": "104-112", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 44, "intReq": 44, "sdPct": 1150, "mdPct": -35, "ms": 5, "atkTier": 7, "hprRaw": -100, "sdRaw": 940, "wDamPct": 10, "tDamPct": 10, "id": 2074}, {"name": "Overclocker", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "39-69", "aDam": "0-0", "tDam": "39-69", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 68, "dexReq": 45, "intReq": 45, "sdPct": 20, "ms": 10, "fDefPct": -21, "aDefPct": -21, "eDefPct": -21, "id": 2076}, {"name": "Overgrown", "tier": "Rare", "type": "wand", "poison": 650, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "NORMAL", "lvl": 96, "strReq": 55, "mr": 5, "str": 10, "spd": -25, "fDamPct": -40, "eDamPct": 19, "eDefPct": 15, "id": 2075}, {"name": "Oxalate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-0", "wDam": "20-44", "aDam": "0-0", "tDam": "0-0", "eDam": "20-44", "atkSpd": "SLOW", "lvl": 45, "strReq": 20, "intReq": 20, "hprPct": 16, "str": 5, "int": 5, "wDamPct": 9, "tDamPct": -2, "aDefPct": -15, "eDefPct": 9, "id": 2077}, {"name": "Oxford", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "hprPct": -15, "xpb": 12, "lb": 10, "ref": 10, "mdRaw": 39, "tDamPct": 10, "id": 2079}, {"name": "Overly Ironed Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 610, "lvl": 51, "lb": 10, "expd": 10, "id": 2078}, {"name": "Oxidation", "tier": "Unique", "type": "leggings", "poison": 45, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 27, "agiReq": 10, "hprPct": -10, "xpb": 3, "spd": 8, "aDamPct": 6, "id": 2080}, {"name": "Oyster", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 15, "lvl": 45, "intReq": 15, "lb": 6, "wDamPct": 5, "wDefPct": 4, "type": "necklace", "id": 2091}, {"name": "Ozoth's Breath", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 25, "lvl": 49, "defReq": 25, "dex": 5, "type": "ring", "id": 2083}, {"name": "Pacemaker", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": -10, "wDef": -10, "aDef": -10, "tDef": 50, "eDef": -20, "lvl": 51, "dexReq": 20, "xpb": 8, "spd": 6, "hpBonus": 155, "tDamPct": 15, "tDefPct": 12, "id": 2084}, {"name": "Pacifist", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 20, "eDef": 45, "lvl": 74, "intReq": 20, "agiReq": 25, "hprPct": 15, "mr": 10, "ls": -185, "ms": -10, "lb": 12, "spd": 21, "id": 2082}, {"name": "Paladin's Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-22", "fDam": "33-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-55", "atkSpd": "VERY_FAST", "lvl": 69, "strReq": 20, "defReq": 20, "str": 8, "def": 8, "mdRaw": 57, "wDefPct": -12, "id": 2085}, {"name": "Palette", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-90", "fDam": "15-15", "wDam": "15-15", "aDam": "15-15", "tDam": "15-15", "eDam": "15-15", "atkSpd": "NORMAL", "lvl": 59, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "spd": 10, "hprRaw": 50, "sdRaw": 50, "mdRaw": 65, "id": 2095}, {"name": "Pandemic", "tier": "Rare", "type": "leggings", "poison": 575, "category": "armor", "drop": "NORMAL", "hp": 1650, "lvl": 71, "hprPct": -25, "mr": -5, "ls": 135, "ms": 5, "expd": 10, "id": 2087}, {"name": "Pandemonium", "tier": "Legendary", "quest": "???\u058e", "majorIds": ["MADNESS"], "category": "accessory", "drop": "lootchest", "hp": -300, "fDef": -200, "wDef": -200, "aDef": -200, "tDef": -200, "eDef": -200, "lvl": 99, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 16, "mdPct": 16, "ls": -60, "spd": 7, "hpBonus": -1000, "spRegen": -120, "sdRaw": 55, "mdRaw": 35, "type": "bracelet", "id": 2089}, {"name": "Pangea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "80-110", "aDam": "0-0", "tDam": "0-0", "eDam": "80-110", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 18, "intReq": 18, "sdPct": 12, "mdPct": 12, "spd": -10, "wDamPct": 8, "eDamPct": 8, "id": 2090}, {"name": "Panic Attack", "tier": "Fabled", "majorIds": ["FREERUNNER"], "category": "accessory", "drop": "lootchest", "hp": -400, "lvl": 78, "strReq": 25, "dexReq": 30, "ls": 105, "str": 2, "dex": 3, "spd": 12, "spRegen": -12, "type": "bracelet", "id": 3582}, {"name": "Panorama", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 150, "lvl": 30, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 2088}, {"name": "Papyrus", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1000, "fDef": -50, "aDef": 90, "lvl": 77, "mr": 10, "xpb": 30, "sdRaw": 140, "id": 2094}, {"name": "Paradise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "xpb": 5, "lb": 5, "id": 2093}, {"name": "Ozone", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "21-43", "tDam": "0-64", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 51, "dexReq": 20, "agiReq": 20, "def": -10, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fDefPct": -20, "tDefPct": 20, "id": 2081}, {"name": "One For All", "displayName": "Paradox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2200, "fDef": -250, "aDef": 100, "tDef": -250, "eDef": 100, "lvl": 98, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "hprPct": -150, "sdPct": 24, "ls": 235, "ms": 20, "str": 5, "dex": 5, "int": -99, "agi": 5, "def": 5, "mdRaw": 260, "fDefPct": 50, "aDefPct": -50, "tDefPct": 50, "eDefPct": -50, "id": 2061}, {"name": "Paradigm Shift", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-17", "wDam": "11-17", "aDam": "11-17", "tDam": "11-17", "eDam": "11-17", "atkSpd": "FAST", "lvl": 54, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 2096}, {"name": "Parang", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "90-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "strReq": 30, "agiReq": 30, "str": 8, "spd": 9, "sdRaw": -100, "eDamPct": 15, "fDefPct": -20, "id": 2097}, {"name": "Paragon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-74", "fDam": "0-0", "wDam": "23-32", "aDam": "17-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 62, "intReq": 20, "agiReq": 20, "sdPct": 12, "mdPct": -26, "spd": 14, "tDefPct": -15, "id": 2101}, {"name": "Passus Lux", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": 120, "tDef": 120, "eDef": -110, "lvl": 73, "dexReq": 25, "intReq": 25, "mr": 10, "ms": 5, "ref": 20, "spd": -5, "spRegen": 8, "fDamPct": -10, "tDamPct": 15, "wDefPct": 30, "eDefPct": -10, "id": 2098}, {"name": "Particle Plating", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "wDef": 80, "aDef": -40, "tDef": 60, "eDef": -100, "lvl": 73, "dexReq": 40, "intReq": 45, "ms": 5, "dex": 7, "int": 7, "sdRaw": 85, "aDamPct": -12, "eDefPct": -12, "id": 2099}, {"name": "Pebble Mesh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 190, "aDef": -10, "eDef": 15, "lvl": 37, "strReq": 15, "mdPct": 10, "xpb": 11, "str": 5, "mdRaw": 49, "eDamPct": 7, "wDefPct": -5, "id": 2104}, {"name": "Pedometer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 75, "agi": 8, "type": "bracelet", "id": 3593}, {"name": "Pass Band", "tier": "Unique", "poison": 475, "thorns": 10, "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "ref": 10, "type": "bracelet", "id": 2100}, {"name": "Penance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1450, "fDef": 50, "wDef": 50, "lvl": 75, "hprPct": 12, "mr": 5, "sdPct": -15, "mdPct": -15, "xpb": 20, "spRegen": 12, "hprRaw": 50, "id": 2105}, {"name": "Pencuri", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "defReq": 35, "ls": 340, "def": 13, "hpBonus": 1400, "eSteal": 5, "fDamPct": 15, "id": 2103}, {"name": "Pelier", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "aDef": -40, "tDef": 20, "lvl": 42, "ls": 47, "lb": 25, "spRegen": 10, "mdRaw": 80, "eDefPct": 20, "id": 2102}, {"name": "Perfumed Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": -20, "lvl": 32, "intReq": 2, "wDamPct": 15, "id": 2111}, {"name": "Perun's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -75, "aDef": 50, "tDef": 50, "lvl": 59, "dexReq": 40, "agiReq": 50, "mr": -5, "sdPct": 8, "dex": 8, "agi": 8, "spd": 14, "fDamPct": -52, "aDamPct": 14, "tDamPct": 14, "fDefPct": -26, "id": 2106}, {"name": "Petrichor", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 98, "strReq": 30, "agiReq": 30, "sdPct": 12, "ms": 10, "str": 7, "agi": 7, "wDamPct": 10, "aDamPct": 10, "eDamPct": 10, "id": 2110}, {"name": "Petrified Horror", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "265-390", "eDam": "245-325", "atkSpd": "VERY_SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "mr": -20, "sdPct": 58, "mdPct": -480, "ms": 15, "str": 13, "expd": 60, "spd": -38, "mdRaw": 1050, "aDefPct": -35, "id": 2112}, {"name": "Phalanx", "tier": "Rare", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": 75, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 78, "defReq": 55, "agi": -4, "def": 13, "spd": -15, "id": 2115}, {"name": "Petrified Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 68, "defReq": 25, "hprPct": 9, "mdPct": -4, "def": 7, "spd": -5, "hpBonus": 500, "hprRaw": 65, "fDefPct": 25, "eDefPct": 25, "id": 2107}, {"name": "Phantasmagoria", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2100, "fDef": -150, "aDef": 70, "tDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "mr": 5, "sdPct": 31, "ls": -355, "ms": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": -99, "mdRaw": 200, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "fDefPct": -30, "id": 3584}, {"name": "Petrified Stick", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "str": 4, "spd": -5, "id": 2113}, {"name": "Philophilia", "tier": "Rare", "type": "leggings", "thorns": -30, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3400, "lvl": 99, "hprPct": 25, "sdPct": -15, "mdPct": -15, "ls": 245, "ref": -30, "int": -10, "hpBonus": 769, "hprRaw": 165, "id": 2117}, {"name": "Phantom Blade", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-18", "aDam": "13-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "intReq": 10, "agiReq": 10, "mr": 5, "sdPct": 8, "mdPct": -10, "ms": 5, "agi": 7, "def": -5, "sdRaw": 25, "id": 2151}, {"name": "Philosopher", "tier": "Fabled", "type": "leggings", "majorIds": ["PEACEFUL_EFFIGY"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": 15, "lvl": 36, "classReq": "Shaman", "intReq": 20, "hprPct": 15, "sdPct": -8, "mdPct": -12, "ref": 45, "def": 4, "spd": -10, "wDamPct": 15, "id": 3552}, {"name": "Phantom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-55", "tDam": "9-33", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 40, "dexReq": 19, "agiReq": 19, "str": -8, "dex": 8, "agi": 8, "def": -8, "mdRaw": 29, "id": 2114}, {"name": "Philophobia", "tier": "Rare", "type": "boots", "poison": 255, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 840, "lvl": 54, "mdPct": 10, "ref": 10, "spRegen": -3, "id": 2124}, {"name": "Phosphene", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 12, "mdPct": 12, "sdRaw": 30, "mdRaw": 39, "id": 2122}, {"name": "Phoenix", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-18", "fDam": "12-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "defReq": 30, "hprPct": 15, "sdPct": -4, "hpBonus": 100, "hprRaw": 15, "fDamPct": 7, "id": 2116}, {"name": "Phoenix Wing", "tier": "Legendary", "type": "wand", "poison": -2000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-45", "fDam": "20-50", "wDam": "0-0", "aDam": "60-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "agiReq": 40, "defReq": 55, "hprPct": 150, "agi": 15, "hpBonus": 3600, "spRegen": 20, "aDefPct": 30, "eDefPct": -20, "id": 2118}, {"name": "Phrygian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "dex": 4, "agi": 4, "spd": 5, "id": 2119}, {"name": "Photon Projector", "tier": "Unique", "type": "relik", "thorns": 25, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "150-177", "aDam": "150-177", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 25, "spd": 12, "hprRaw": 155, "wDefPct": 40, "aDefPct": 40, "id": 2120}, {"name": "Physalis", "tier": "Legendary", "type": "leggings", "poison": 577, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "aDef": -120, "tDef": 70, "eDef": 70, "lvl": 86, "strReq": 65, "dexReq": 40, "mdPct": -15, "str": 8, "dex": 8, "expd": 31, "atkTier": 1, "tDamPct": 13, "eDamPct": 13, "id": 2121}, {"name": "Pierced Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 260, "aDef": -10, "eDef": 20, "lvl": 37, "sdPct": 5, "mdPct": 5, "ref": -5, "dex": 7, "id": 2123}, {"name": "Pigman's Loincloth", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 16, "strReq": 5, "mdPct": 6, "str": 4, "mdRaw": 16, "id": 2129}, {"name": "Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 15, "dex": 7, "agi": 5, "def": -5, "eSteal": 5, "id": 2126}, {"name": "Pilot Light", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2575, "fDef": 90, "wDef": -40, "aDef": -40, "tDef": 70, "eDef": 70, "lvl": 86, "defReq": 35, "hprPct": 18, "ref": 8, "def": 5, "hpBonus": 425, "spRegen": 15, "hprRaw": 110, "aDamPct": -7, "wDefPct": -7, "id": 2128}, {"name": "Pigman's Ribbing", "tier": "Unique", "type": "chestplate", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 10, "aDef": -20, "eDef": 30, "lvl": 50, "strReq": 20, "sdPct": -15, "mdPct": 10, "eDefPct": 15, "id": 2125}, {"name": "Pin", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "xpb": 7, "dex": 4, "id": 2127}, {"name": "Pisces", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "wDef": 100, "eDef": 100, "lvl": 100, "strReq": 60, "intReq": 60, "mr": 10, "sdPct": 15, "mdPct": 15, "str": 10, "mdRaw": 235, "wDamPct": 12, "eDamPct": 12, "id": 2133}, {"name": "Pizzicato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "51-57", "fDam": "51-57", "wDam": "51-57", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 25, "defReq": 25, "mr": 10, "sdPct": -7, "mdPct": -7, "int": 7, "def": 7, "spd": 10, "hprRaw": 95, "jh": 1, "id": 2130}, {"name": "Planet Healer", "tier": "Legendary", "poison": 865, "category": "accessory", "drop": "lootchest", "lvl": 100, "hprPct": -15, "ms": 5, "hprRaw": -80, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 2134}, {"name": "Placid Step", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 40, "tDef": -30, "lvl": 52, "intReq": 45, "mr": 5, "sdPct": 10, "mdPct": -12, "int": 7, "spRegen": 10, "wDamPct": 10, "id": 2131}, {"name": "Piston String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-55", "fDam": "44-86", "wDam": "44-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "intReq": 20, "defReq": 20, "dex": -12, "hprRaw": 40, "fDamPct": 8, "wDamPct": 8, "id": 2132}, {"name": "Plankton", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 210, "wDef": 20, "tDef": -30, "lvl": 34, "intReq": 25, "sdPct": 10, "xpb": 6, "int": 4, "spd": 5, "wDamPct": 15, "tDefPct": -15, "id": 2135}, {"name": "Plasma Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "25-54", "wDam": "0-0", "aDam": "0-0", "tDam": "7-46", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 20, "defReq": 25, "hprPct": -17, "sdPct": 9, "mdPct": 9, "fDamPct": 9, "wDamPct": -10, "tDamPct": 9, "id": 2137}, {"name": "Planus Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 7, "mdPct": 5, "spd": 4, "id": 2136}, {"name": "Plasma Sabre", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "31-58", "wDam": "0-0", "aDam": "0-0", "tDam": "29-43", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "dexReq": 20, "defReq": 25, "mdPct": 12, "ls": 110, "int": -7, "hprRaw": -43, "fDamPct": 8, "tDamPct": 8, "id": 2138}, {"name": "Plasma Ray", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "99-143", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "dexReq": 25, "defReq": 20, "sdPct": 18, "mdPct": -15, "ms": 5, "dex": 7, "def": 7, "wDefPct": -12, "aDefPct": -12, "eDefPct": -12, "id": 2140}, {"name": "Plasma Shear", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "48-60", "wDam": "0-0", "aDam": "0-0", "tDam": "22-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "dexReq": 20, "defReq": 25, "dex": 9, "sdRaw": 122, "wDamPct": -15, "aDamPct": -15, "fDefPct": 12, "tDefPct": 12, "id": 2139}, {"name": "Photon", "tier": "Unique", "quest": "Realm of Light II - Taproot", "category": "accessory", "drop": "never", "lvl": 61, "mr": 5, "xpb": 8, "ref": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spd": 8, "tDamPct": 3, "type": "ring", "id": 3609}, {"name": "Plated Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "lvl": 8, "str": 4, "id": 2142}, {"name": "Poison Ivy", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 18, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "235-275", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 55, "hprPct": -20, "mdPct": 15, "str": 15, "spd": -15, "id": 2145}, {"name": "Poison Touch", "tier": "Unique", "type": "dagger", "poison": 2000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-630", "atkSpd": "VERY_SLOW", "lvl": 87, "hprRaw": -95, "wDefPct": -30, "id": 2141}, {"name": "Platinum", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 88, "xpb": -3, "lb": 12, "eSteal": 3, "type": "bracelet", "id": 2143}, {"name": "Post-Ultima", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 76, "strReq": 40, "dexReq": 25, "mdPct": 30, "str": 9, "dex": 7, "expd": 20, "mdRaw": 190, "tDamPct": 20, "eDamPct": 20, "id": 2146}, {"name": "Polaris", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "17-17", "wDam": "17-17", "aDam": "17-17", "tDam": "17-17", "eDam": "17-17", "atkSpd": "VERY_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -15, "mdPct": -15, "xpb": 15, "lb": 15, "fDamPct": 30, "wDamPct": 30, "aDamPct": 30, "tDamPct": 30, "eDamPct": 30, "id": 2144}, {"name": "Polyphemus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "wDef": 70, "aDef": -70, "tDef": -70, "eDef": 70, "lvl": 91, "strReq": 40, "intReq": 40, "sdPct": 13, "mdPct": 13, "ms": 10, "dex": 8, "sdRaw": 140, "aDamPct": -36, "aDefPct": -18, "id": 2149}, {"name": "Powder Snow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "wDef": 90, "aDef": 90, "tDef": -145, "lvl": 88, "intReq": 45, "agiReq": 45, "mr": 5, "ref": 23, "int": 8, "agi": 8, "sdRaw": 160, "wDamPct": 13, "aDamPct": 13, "wDefPct": 13, "aDefPct": 13, "id": 2148}, {"name": "Power Creep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 81, "strReq": 60, "sdPct": -12, "mdPct": 5, "eDamPct": 7, "type": "necklace", "id": 2147}, {"name": "Power Cell", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "tDef": -60, "lvl": 86, "dexReq": 65, "dex": 13, "mdRaw": 34, "tDamPct": -7, "type": "necklace", "id": 2150}, {"name": "Power Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 74, "str": 8, "type": "bracelet", "id": 2152}, {"name": "Praesidium", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "320-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 80, "sdPct": -400, "ms": -20, "ref": 50, "def": 50, "hpBonus": 4000, "fDefPct": 77, "wDefPct": 77, "aDefPct": 77, "tDefPct": 77, "eDefPct": 77, "id": 2153}, {"name": "Pragmatism", "tier": "Unique", "type": "leggings", "poison": 154, "thorns": 9, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 425, "lvl": 48, "dexReq": 10, "ms": -5, "expd": 1, "hpBonus": -70, "eSteal": 3, "mdRaw": 59, "tDamPct": 8, "id": 2154}, {"name": "Precedence", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-60", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 20, "defReq": 20, "mr": 5, "hprRaw": 65, "tDamPct": -7, "tDefPct": -7, "id": 2159}, {"name": "Precious", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -80, "lvl": 41, "xpb": 10, "int": 3, "agi": 4, "spd": 7, "spRegen": -12, "hprRaw": 12, "type": "ring", "id": 2157}, {"name": "Precision", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "160-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 32, "mdPct": 8, "expd": 5, "id": 2158}, {"name": "Presto", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "6-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 16, "agiReq": 8, "sdPct": 5, "ref": 8, "spd": 15, "fDamPct": -10, "aDefPct": 7, "id": 2160}, {"name": "Priest's Underwears", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 215, "fDef": -15, "aDef": 10, "tDef": 25, "eDef": -15, "lvl": 34, "ref": 10, "spRegen": 10, "aDamPct": 5, "id": 2163}, {"name": "Predposledni", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-60", "aDam": "40-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 40, "agiReq": 50, "mr": 5, "sdPct": 12, "mdPct": -25, "int": 10, "spd": 12, "wDamPct": 15, "tDefPct": -16, "eDefPct": -10, "id": 2161}, {"name": "Prestidigitation", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 60, "eDef": -70, "lvl": 68, "intReq": 40, "ms": 5, "str": -7, "expd": 15, "sdRaw": 65, "wDamPct": 8, "eDamPct": -17, "id": 2162}, {"name": "Prism", "tier": "Legendary", "quest": "The Realm of Light", "category": "accessory", "drop": "lootchest", "hp": -400, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 100, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "ref": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "ring", "id": 2165}, {"name": "Prismatic Pendulum", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-350", "fDam": "0-0", "wDam": "5-520", "aDam": "0-0", "tDam": "0-0", "eDam": "5-520", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 45, "mr": 5, "hpBonus": 1725, "hprRaw": 170, "aDamPct": -30, "tDamPct": -30, "wDefPct": 20, "eDefPct": 20, "id": 2166}, {"name": "Procrastination", "tier": "Legendary", "type": "relik", "majorIds": ["PEACEFUL_EFFIGY"], "category": "weapon", "drop": "NORMAL", "nDam": "1250-1875", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "sdPct": 20, "mdPct": 20, "xpb": -10, "lb": -10, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "spd": -25, "atkTier": -10, "id": 2164}, {"name": "Preipice", "displayName": "Precipice", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "63-93", "atkSpd": "FAST", "lvl": 69, "strReq": 30, "mdPct": 12, "fDefPct": -18, "wDefPct": -18, "aDefPct": 15, "tDefPct": 15, "eDefPct": 30, "id": 2156}, {"name": "Prosto Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "lvl": 42, "str": 5, "agi": -2, "def": 8, "id": 2167}, {"name": "Prosencephalon", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 80, "aDef": -120, "tDef": 80, "eDef": -120, "lvl": 94, "dexReq": 70, "intReq": 70, "hprPct": -20, "mr": 5, "ms": 5, "sdRaw": 100, "mdRaw": -350, "wDamPct": 31, "tDamPct": 31, "aDefPct": -20, "eDefPct": -20, "id": 3620}, {"name": "Prog", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "7-10", "wDam": "0-0", "aDam": "0-0", "tDam": "8-12", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 10, "defReq": 5, "ms": 10, "spRaw1": 10, "spRaw2": -5, "id": 2168}, {"name": "Proto-Shield", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 74, "defReq": 75, "def": 13, "hpBonus": 423, "fDefPct": 4, "wDefPct": 2, "aDefPct": 2, "tDefPct": 2, "eDefPct": -6, "id": 2171}, {"name": "Protolith", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 900, "eDef": 30, "lvl": 60, "strReq": 45, "mdPct": 15, "str": 4, "wDamPct": -25, "eDamPct": 15, "id": 2169}, {"name": "Prymari", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-90", "fDam": "17-33", "wDam": "17-33", "aDam": "0-0", "tDam": "17-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "dexReq": 25, "intReq": 25, "defReq": 25, "sdPct": 20, "ref": 30, "dex": 9, "int": 9, "def": 9, "hprRaw": 100, "aDamPct": -40, "eDamPct": -40, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "id": 2174}, {"name": "Prowl", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "355-455", "fDam": "0-0", "wDam": "0-0", "aDam": "210-285", "tDam": "0-0", "eDam": "355-455", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 25, "agiReq": 40, "mdPct": 12, "xpb": 10, "str": 16, "hpBonus": -750, "sdRaw": -90, "aDamPct": 15, "id": 2170}, {"name": "Psion Marker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-12", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 28, "dexReq": 20, "mr": -5, "mdPct": 20, "ms": 5, "dex": 5, "expd": 10, "tDamPct": 10, "id": 2176}, {"name": "Proxima", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "210-220", "fDam": "110-200", "wDam": "110-200", "aDam": "110-200", "tDam": "110-200", "eDam": "110-200", "atkSpd": "SUPER_SLOW", "lvl": 85, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 10, "ls": 290, "ms": -5, "xpb": 15, "hprRaw": -90, "id": 2172}, {"name": "Psychoruin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "1-22", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "dexReq": 6, "intReq": 6, "int": 5, "sdRaw": 15, "wDamPct": -3, "tDamPct": 6, "wDefPct": 6, "tDefPct": -9, "id": 2175}, {"name": "Psithurism", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": -80, "aDef": 75, "eDef": 55, "lvl": 65, "strReq": 25, "agiReq": 35, "agi": 8, "spd": 10, "tDamPct": -8, "aDefPct": 12, "eDefPct": 8, "id": 2173}, {"name": "Puff", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 50, "lvl": 79, "spd": 5, "type": "ring", "id": 2179}, {"name": "Pulsar", "tier": "Legendary", "type": "spear", "poison": -365, "thorns": 21, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-12", "fDam": "8-16", "wDam": "6-18", "aDam": "4-20", "tDam": "2-22", "eDam": "10-14", "atkSpd": "FAST", "lvl": 44, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 14, "xpb": 8, "ref": 21, "spd": -15, "mdRaw": 46, "id": 2178}, {"name": "Pulse Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "tDef": 100, "eDef": -110, "lvl": 75, "dexReq": 75, "hprPct": -40, "mdPct": 10, "ms": 15, "str": -10, "sdRaw": 95, "tDamPct": 15, "eDamPct": -77, "eDefPct": -20, "id": 2177}, {"name": "Puppet Master", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "103-137", "fDam": "0-0", "wDam": "46-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 13, "sdPct": 15, "mdPct": -33, "ms": 5, "lb": 10, "str": -5, "spPct1": -25, "id": 2182}, {"name": "Pumpkin Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 20, "id": 2180}, {"name": "Puppeteer", "tier": "Rare", "type": "chestplate", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "lvl": 74, "mdPct": 50, "ls": -130, "str": 7, "dex": -5, "agi": 7, "spd": 21, "atkTier": -1, "id": 2181}, {"name": "Pure Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "180-191", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2184}, {"name": "Pure Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "303-360", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2183}, {"name": "Pure Andesite Stick", "displayName": "Pure Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2188}, {"name": "Pure Andesite Shears", "displayName": "Pure Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "103-118", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "id": 2185}, {"name": "Pure Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "197-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2187}, {"name": "Pure Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-187", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2186}, {"name": "Pure Birch Shears", "displayName": "Pure Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "id": 2189}, {"name": "Pure Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2190}, {"name": "Pure Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-131", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2191}, {"name": "Pure Birch Stick", "displayName": "Pure Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2192}, {"name": "Pure Diorite Shears", "displayName": "Pure Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "id": 2196}, {"name": "Pure Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 700, "lvl": 57, "id": 2193}, {"name": "Pure Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "358-422", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2195}, {"name": "Pure Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "212-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2194}, {"name": "Pure Diorite Stick", "displayName": "Pure Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-119", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2197}, {"name": "Pure Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "243-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2198}, {"name": "Pure Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "225-236", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2199}, {"name": "Pure Granite Shears", "displayName": "Pure Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "id": 2204}, {"name": "Pure Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "388-455", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2201}, {"name": "Pure Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-295", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2200}, {"name": "Pure Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 520, "lvl": 53, "id": 2203}, {"name": "Pure Granite Stick", "displayName": "Pure Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2202}, {"name": "Pure Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 600, "lvl": 55, "id": 2206}, {"name": "Pure Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 440, "lvl": 51, "id": 2205}, {"name": "Pure Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "216-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2208}, {"name": "Pure Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2209}, {"name": "Pure Jungle Shears", "displayName": "Pure Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "id": 2210}, {"name": "Pure Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "133-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2213}, {"name": "Pure Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2214}, {"name": "Pure Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2207}, {"name": "Pure Jungle Stick", "displayName": "Pure Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-94", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2212}, {"name": "Pure Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2211}, {"name": "Pure Light Birch Shears", "displayName": "Pure Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "69-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "id": 2215}, {"name": "Pure Light Birch Stick", "displayName": "Pure Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "51-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2217}, {"name": "Pure Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-144", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2218}, {"name": "Pure Light Jungle Stick", "displayName": "Pure Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "66-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2222}, {"name": "Pure Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "158-188", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2216}, {"name": "Pure Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2223}, {"name": "Pure Light Jungle Shears", "displayName": "Pure Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 76, "id": 2219}, {"name": "Pure Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "98-133", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2221}, {"name": "Pure Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "106-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2220}, {"name": "Pure Light Oak Shears", "displayName": "Pure Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "id": 2226}, {"name": "Pure Light Oak Stick", "displayName": "Pure Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "44-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2227}, {"name": "Pure Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "128-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2228}, {"name": "Pure Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2224}, {"name": "Pure Light Spruce Stick", "displayName": "Pure Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "61-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2230}, {"name": "Pure Light Spruce Shears", "displayName": "Pure Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "79-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "id": 2229}, {"name": "Pure Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-86", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2225}, {"name": "Pure Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2231}, {"name": "Pure Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-108", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2235}, {"name": "Pure Oak Wood Shears", "displayName": "Pure Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "id": 2234}, {"name": "Pure Oak Wood Bow", "displayName": "Pure Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-159", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2233}, {"name": "Pure Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "194-221", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2238}, {"name": "Pure Oak Wood Spear", "displayName": "Pure Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "91-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2232}, {"name": "Pure Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2241}, {"name": "Pure Spruce Shears", "displayName": "Pure Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "88-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "id": 2236}, {"name": "Pure Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "129-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2239}, {"name": "Pure Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "249-296", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2244}, {"name": "Pure Spruce Stick", "displayName": "Pure Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "64-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2243}, {"name": "Pure Stone Shears", "displayName": "Pure Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "84-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "id": 2242}, {"name": "Pure Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "147-158", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2240}, {"name": "Pure Oak Wood Stick", "displayName": "Pure Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2237}, {"name": "Pure Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-201", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2246}, {"name": "Pyroclast", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "250-790", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "350-690", "atkSpd": "SUPER_SLOW", "lvl": 88, "strReq": 40, "defReq": 35, "expd": 15, "spd": -10, "hprRaw": -155, "mdRaw": 620, "fDamPct": 20, "eDamPct": 20, "wDefPct": -50, "aDefPct": -15, "id": 2247}, {"name": "Pure Stone Stick", "displayName": "Pure Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "71-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2248}, {"name": "Quartz Choker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "lvl": 52, "sdPct": 8, "xpb": 4, "type": "necklace", "id": 2309}, {"name": "Purgatory", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-185", "wDam": "0-0", "aDam": "0-0", "tDam": "100-235", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "defReq": 35, "hprPct": -23, "mr": -5, "sdPct": 18, "expd": 23, "fDamPct": 18, "tDamPct": 18, "id": 2245}, {"name": "Pyromaniac", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": -40, "wDef": -40, "lvl": 90, "defReq": 50, "sdPct": 11, "int": -3, "expd": 10, "spd": 7, "hprRaw": -60, "type": "necklace", "id": 2250}, {"name": "Quartz-laced Leggings", "displayName": "Quartz-Laced Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 53, "sdPct": 10, "xpb": 10, "ref": 10, "id": 2251}, {"name": "Qaxezine", "tier": "Unique", "type": "bow", "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-96", "eDam": "62-84", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "dexReq": 25, "lb": 11, "str": 14, "expd": 12, "spd": -21, "id": 2249}, {"name": "Quartzite Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "sdPct": 4, "type": "necklace", "id": 2252}, {"name": "Quartzite Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "lvl": 91, "sdPct": 20, "sdRaw": 135, "id": 2254}, {"name": "Quartzite Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-150", "fDam": "0-0", "wDam": "150-160", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "dexReq": 35, "intReq": 30, "lb": 12, "int": 8, "sdRaw": 90, "aDamPct": -23, "tDamPct": 25, "aDefPct": -16, "id": 2255}, {"name": "Quartzite Wand", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "xpb": 4, "id": 2253}, {"name": "Quasar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-40", "wDam": "0-40", "aDam": "0-40", "tDam": "0-40", "eDam": "0-40", "atkSpd": "SLOW", "lvl": 72, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 13, "wDefPct": 13, "aDefPct": 13, "tDefPct": 13, "eDefPct": 13, "id": 2257}, {"name": "Quickshot", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 20, "xpb": 11, "dex": 8, "id": 2259}, {"name": "Quickstep", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-93", "wDam": "0-0", "aDam": "84-96", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "agiReq": 30, "defReq": 25, "xpb": 7, "agi": 6, "spd": 14, "hpBonus": 600, "fDamPct": 12, "aDefPct": 10, "id": 2258}, {"name": "Quatrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 4, "lvl": 16, "hprPct": 4, "sdPct": 4, "mdPct": 4, "xpb": 4, "type": "ring", "id": 2256}, {"name": "Quill", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-80", "fDam": "0-0", "wDam": "0-0", "aDam": "75-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "agiReq": 20, "mr": 5, "sdPct": 10, "xpb": 15, "wDamPct": 16, "aDefPct": 15, "tDefPct": -20, "id": 2260}, {"name": "Quinque", "tier": "Legendary", "type": "spear", "poison": 2000, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-235", "eDam": "5-7", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "mr": -10, "spd": -20, "atkTier": 1, "sdRaw": 175, "mdRaw": 70, "eDamPct": 50, "id": 2261}, {"name": "Abrasion", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 40, "wDef": 40, "lvl": 100, "mr": 5, "sdPct": 8, "ms": 5, "spd": -37, "fDamPct": 10, "type": "necklace", "id": 3624}, {"name": "Recalcitrance", "tier": "Fabled", "category": "accessory", "drop": "never", "hp": -2600, "aDef": -45, "eDef": 65, "lvl": 100, "strReq": 45, "hprPct": 9, "str": 6, "atkTier": 1, "eDamPct": 11, "type": "necklace", "jh": 1, "id": 3601}, {"name": "Eyes on All", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": -60, "tDef": -60, "lvl": 60, "dexReq": 45, "intReq": 45, "sdPct": -11, "ms": 10, "atkTier": -6, "type": "necklace", "id": 3602}, {"name": "Homeorhesis", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": 35, "eDef": 35, "lvl": 60, "strReq": 40, "sdPct": -45, "mdPct": -45, "ms": 5, "xpb": 10, "sdRaw": 120, "mdRaw": 60, "type": "bracelet", "id": 3576}, {"name": "Cacophony", "tier": "Fabled", "thorns": 6, "category": "accessory", "drop": "never", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 80, "agiReq": 55, "ls": 115, "ref": 6, "spRegen": -8, "hprRaw": 50, "sdRaw": -45, "type": "ring", "id": 3585}, {"name": "Racer's Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 950, "lvl": 60, "agiReq": 40, "mdPct": -5, "agi": 7, "spd": 19, "sdRaw": -25, "id": 2270}, {"name": "Metamorphosis", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 20, "wDef": -100, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 80, "mr": -5, "sdPct": 20, "ms": -5, "type": "necklace", "id": 3575}, {"name": "Ragged", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": -8, "aDef": 10, "lvl": 19, "ls": 7, "def": -2, "spd": 4, "hpBonus": -8, "id": 2271}, {"name": "Raecard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 22, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "lb": 15, "hpBonus": 110, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "id": 2272}, {"name": "Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-49", "fDam": "15-19", "wDam": "12-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 15, "mr": 5, "spRegen": 5, "id": 2269}, {"name": "Ragni's Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": -30, "eDef": 60, "lvl": 50, "strReq": 20, "defReq": 5, "sdPct": -10, "mdPct": 10, "xpb": 10, "def": 7, "fDamPct": 10, "wDamPct": -25, "eDamPct": 10, "id": 2273}, {"name": "Ragni's Old Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "aDef": -10, "eDef": 20, "lvl": 39, "mdPct": 7, "xpb": 6, "id": 2275}, {"name": "Ragni's Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 3, "str": 3, "id": 2276}, {"name": "Ragon's Bracelet", "tier": "Rare", "quest": "Elemental Exercise", "category": "accessory", "drop": "never", "lvl": 10, "hpBonus": 13, "type": "bracelet", "id": 2277}, {"name": "Rainbow", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 80, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -3, "wDamPct": -3, "aDamPct": -3, "tDamPct": -3, "eDamPct": -3, "type": "ring", "id": 2274}, {"name": "Rainstorm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-95", "fDam": "0-0", "wDam": "40-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "dexReq": 35, "intReq": 30, "sdPct": 10, "ms": 5, "xpb": 7, "dex": 8, "int": 5, "tDamPct": 22, "aDefPct": -25, "id": 2280}, {"name": "Raindrop", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "wDef": 20, "lvl": 69, "intReq": 25, "mr": 5, "sdPct": -2, "mdPct": -2, "int": 5, "type": "ring", "id": 2279}, {"name": "Rapier", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "66-76", "fDam": "66-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 290, "ref": 15, "def": 12, "fDefPct": 15, "id": 2282}, {"name": "Raptor", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "44-77", "tDam": "0-0", "eDam": "66-77", "atkSpd": "VERY_FAST", "lvl": 62, "strReq": 30, "agiReq": 30, "mdPct": 12, "agi": 4, "def": -5, "spd": 15, "hpBonus": -200, "mdRaw": 65, "id": 2281}, {"name": "Rapids", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "wDef": 130, "tDef": -130, "lvl": 89, "intReq": 55, "mr": 5, "sdPct": 23, "spd": 9, "fDamPct": -15, "wDamPct": 11, "id": 2278}, {"name": "Ration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": -75, "eDef": -75, "lvl": 99, "intReq": 45, "defReq": 45, "mr": 15, "sdPct": -18, "mdPct": -18, "int": 9, "hprRaw": 150, "id": 2283}, {"name": "Rarity", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 12, "lb": 12, "spRegen": 8, "type": "ring", "id": 2284}, {"name": "Rayshyroth's Knowledge", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 66, "xpb": 12, "spRegen": 3, "type": "bracelet", "id": 2286}, {"name": "Reaction", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "tDef": 45, "eDef": -50, "lvl": 57, "dexReq": 30, "xpb": 6, "expd": 4, "sdRaw": 50, "tDamPct": 9, "wDefPct": -7, "id": 2290}, {"name": "Razor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 49, "sdPct": 5, "mdPct": 5, "str": 7, "dex": -5, "int": 7, "agi": 7, "def": 7, "spd": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": -40, "eDamPct": 20, "id": 2285}, {"name": "Reaper of Soul", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "ls": 100, "ms": 10, "agi": 7, "spRegen": 10, "eSteal": 10, "id": 2287}, {"name": "Rebellion", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "45-60", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "dexReq": 35, "defReq": 35, "sdPct": -6, "ls": 100, "int": -4, "expd": 19, "hpBonus": -230, "fDamPct": 17, "tDamPct": 17, "wDefPct": -12, "id": 2288}, {"name": "Reborn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -125, "lvl": 100, "strReq": 45, "dexReq": 45, "int": -4, "agi": -2, "def": -2, "mdRaw": 50, "tDamPct": 10, "eDamPct": 10, "type": "necklace", "id": 2289}, {"name": "Reason", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "60-85", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "intReq": 30, "defReq": 35, "mr": 5, "dex": -7, "int": 8, "def": 5, "hprRaw": 105, "tDamPct": -30, "fDefPct": 13, "wDefPct": 13, "id": 2291}, {"name": "Recharge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "lvl": 59, "mr": -45, "sdPct": 11, "mdPct": -9, "ms": 40, "sdRaw": 50, "id": 2292}, {"name": "Rectificator", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "hpBonus": 150, "fDamPct": 16, "wDamPct": 16, "aDamPct": 16, "tDamPct": 16, "eDamPct": 16, "id": 2294}, {"name": "Red Candle", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 15, "hprPct": 20, "ls": 31, "def": 7, "hpBonus": 100, "hprRaw": 15, "id": 2296}, {"name": "Red", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 25, "fDef": 4, "lvl": 30, "hpBonus": 5, "type": "ring", "id": 2293}, {"name": "Red Ko Rhu", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "fDef": -60, "aDef": 40, "eDef": 40, "lvl": 43, "str": 8, "expd": 10, "spd": -8, "eDefPct": 10, "id": 2295}, {"name": "Red String", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 12, "lvl": 16, "hprPct": 3, "xpb": 3, "spRegen": 2, "type": "ring", "id": 2297}, {"name": "Redirection", "tier": "Unique", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "tDef": 30, "eDef": -70, "lvl": 65, "dexReq": 25, "ref": 12, "dex": 4, "tDamPct": 12, "tDefPct": 12, "id": 2300}, {"name": "Refined Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "xpb": 4, "id": 2299}, {"name": "Redemption", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1475, "fDef": 50, "aDef": 50, "lvl": 71, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": -5, "ls": 120, "int": -6, "hprRaw": 40, "id": 2298}, {"name": "Refined Chainmail Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 245, "lvl": 41, "id": 2301}, {"name": "Reflection", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -17, "mdPct": -17, "ref": 25, "hprRaw": 65, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2304}, {"name": "Refined Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "lvl": 43, "id": 2302}, {"name": "Refined Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 340, "lvl": 45, "id": 2306}, {"name": "Refined Iron Chainmail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 380, "lvl": 47, "id": 2303}, {"name": "Reflex", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 14, "spd": 5, "type": "ring", "id": 2305}, {"name": "Regal Chaps", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 23, "xpb": 8, "lb": 8, "eSteal": 2, "id": 2308}, {"name": "Regulating Charge", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "57-97", "aDam": "0-0", "tDam": "57-97", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "dexReq": 35, "intReq": 35, "sdPct": 13, "ms": -10, "sdRaw": 75, "wDamPct": 9, "tDamPct": 9, "id": 2313}, {"name": "Regrets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 8, "sdPct": 12, "sdRaw": 21, "id": 2311}, {"name": "Relay", "tier": "Rare", "type": "leggings", "thorns": 8, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "tDef": 15, "eDef": -15, "lvl": 24, "dexReq": 15, "ref": 8, "str": -4, "dex": 5, "id": 2314}, {"name": "Rekkr", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4500, "fDef": 130, "eDef": 100, "lvl": 99, "strReq": 45, "defReq": 60, "mdPct": 40, "str": 13, "def": 13, "spd": -15, "fDefPct": 20, "aDefPct": 20, "eDefPct": 20, "id": 2310}, {"name": "Relend's Refrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 40, "tDef": -50, "eDef": -15, "lvl": 90, "agiReq": 50, "xpb": 7, "spd": 12, "wDamPct": 5, "type": "bracelet", "id": 2312}, {"name": "Relentless", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "58-70", "eDam": "58-70", "atkSpd": "FAST", "lvl": 70, "strReq": 35, "dexReq": 35, "agi": -10, "def": -10, "expd": 25, "atkTier": 1, "hprRaw": -69, "mdRaw": 60, "id": 2316}, {"name": "Relfect", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-100", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 10, "ms": 5, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "expd": 10, "spd": 10, "hpBonus": 1650, "id": 2315}, {"name": "Relic", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "4-10", "wDam": "2-8", "aDam": "6-8", "tDam": "1-12", "eDam": "8-10", "atkSpd": "NORMAL", "lvl": 14, "sdPct": 6, "xpb": 8, "id": 2318}, {"name": "Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "27-41", "fDam": "27-41", "wDam": "27-41", "aDam": "27-41", "tDam": "27-41", "eDam": "27-41", "atkSpd": "SLOW", "lvl": 50, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2317}, {"name": "Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "30-35", "wDam": "30-35", "aDam": "30-35", "tDam": "30-35", "eDam": "30-35", "atkSpd": "SLOW", "lvl": 60, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2319}, {"name": "Refraction", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 74, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "ls": 110, "ms": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "id": 2307}, {"name": "Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "12-17", "fDam": "12-17", "wDam": "12-17", "aDam": "12-17", "tDam": "12-17", "eDam": "12-17", "atkSpd": "NORMAL", "lvl": 55, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2320}, {"name": "Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "24-30", "fDam": "24-30", "wDam": "24-30", "aDam": "24-30", "tDam": "24-30", "eDam": "24-30", "atkSpd": "FAST", "lvl": 65, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2322}, {"name": "Remedy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1050, "fDef": 60, "wDef": 60, "tDef": -60, "eDef": -60, "lvl": 70, "intReq": 35, "defReq": 35, "hprPct": 18, "mr": 5, "sdPct": -11, "mdPct": -11, "spRegen": 18, "hprRaw": 70, "sdRaw": -40, "mdRaw": -39, "id": 2321}, {"name": "Remikas' Sanctuary", "tier": "Rare", "type": "chestplate", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "lvl": 68, "defReq": 50, "ref": 8, "def": 7, "spd": -10, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2323}, {"name": "Remikas' Righteousness", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "mr": 5, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 2325}, {"name": "Reminder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 96, "int": 8, "type": "ring", "id": 2324}, {"name": "Reminiscence", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 20, "wDef": 10, "eDef": -30, "lvl": 41, "intReq": 30, "defReq": 10, "hprPct": 8, "mr": 5, "spRegen": 8, "hprRaw": 10, "type": "bracelet", "id": 2326}, {"name": "Render", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 15, "eDef": -15, "lvl": 60, "defReq": 25, "expd": 12, "fDamPct": 10, "wDamPct": -7, "type": "ring", "id": 2328}, {"name": "Resolve", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3425, "fDef": 100, "aDef": 100, "tDef": -150, "lvl": 98, "agiReq": 40, "defReq": 40, "ms": 5, "int": -20, "agi": 7, "def": 7, "wDamPct": -15, "spPct1": -10, "spPct3": -10, "id": 2327}, {"name": "Resistance", "tier": "Unique", "type": "leggings", "thorns": 13, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "tDef": 100, "eDef": 175, "lvl": 97, "dexReq": 60, "ms": 15, "ref": 9, "tDamPct": -15, "tDefPct": 20, "eDefPct": 20, "id": 2333}, {"name": "Repulsion", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-22", "fDam": "0-0", "wDam": "33-42", "aDam": "0-0", "tDam": "33-42", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "dexReq": 30, "intReq": 30, "mr": 5, "ref": 20, "sdRaw": 55, "wDamPct": 9, "tDamPct": 9, "eDamPct": -18, "eDefPct": -23, "id": 2329}, {"name": "Reticence", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "xpb": 15, "str": 7, "sdRaw": -25, "mdRaw": 16, "id": 2331}, {"name": "Return", "tier": "Unique", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 53, "ref": 9, "type": "ring", "id": 2330}, {"name": "Retina Shooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "VERY_SLOW", "lvl": 22, "strReq": 5, "mdPct": 3, "dex": 7, "id": 2332}, {"name": "Return to Ether", "tier": "Legendary", "type": "bow", "poison": -4143, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-126", "fDam": "0-0", "wDam": "0-0", "aDam": "16-162", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 90, "intReq": 84, "agiReq": 49, "mr": 10, "mdPct": -27, "xpb": 26, "agi": 44, "spd": 22, "wDamPct": 34, "tDamPct": -149, "eDamPct": -13, "fDefPct": 45, "id": 2334}, {"name": "Reverie", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "108-144", "wDam": "108-144", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "intReq": 25, "defReq": 25, "sdPct": 24, "mdPct": -15, "int": 8, "spd": -15, "fDefPct": 24, "wDefPct": 24, "id": 2336}, {"name": "Reverb", "tier": "Unique", "type": "boots", "thorns": 19, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -90, "aDef": 50, "tDef": 50, "lvl": 64, "dexReq": 30, "agiReq": 30, "ref": 19, "mdRaw": 90, "fDefPct": -15, "aDefPct": 11, "tDefPct": 11, "id": 2335}, {"name": "Reversal", "tier": "Unique", "type": "relik", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "23-30", "tDam": "0-0", "eDam": "23-30", "atkSpd": "NORMAL", "lvl": 36, "strReq": 12, "agiReq": 12, "mdPct": 10, "ref": 30, "spd": 10, "mdRaw": 39, "id": 2340}, {"name": "Revolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "60-60", "wDam": "0-0", "aDam": "0-0", "tDam": "60-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 345, "ms": 10, "xpb": 10, "fDamPct": 9, "wDamPct": -25, "aDamPct": -25, "tDamPct": 9, "id": 2338}, {"name": "Revolutionine", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "315-327", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "defReq": 40, "mdPct": 15, "def": 15, "hpBonus": -815, "fDamPct": 20, "wDamPct": -20, "wDefPct": -20, "id": 2339}, {"name": "Rewind", "tier": "Legendary", "type": "dagger", "majorIds": ["SORCERY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-50", "fDam": "0-0", "wDam": "30-50", "aDam": "25-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "intReq": 50, "agiReq": 50, "mr": 10, "ls": 250, "ms": -15, "agi": 10, "spd": 15, "hprRaw": -200, "id": 2337}, {"name": "Rheingold", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "aDef": 70, "tDef": 50, "eDef": -60, "lvl": 66, "dexReq": 20, "agiReq": 25, "sdPct": 7, "mdPct": 12, "lb": 16, "dex": 5, "spd": 11, "fDamPct": -14, "id": 2342}, {"name": "Rhunaex", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-34", "eDam": "0-34", "atkSpd": "FAST", "lvl": 41, "strReq": 25, "dexReq": 25, "ls": 33, "dex": 5, "hprRaw": -15, "sdRaw": 25, "mdRaw": 33, "aDamPct": -19, "id": 2341}, {"name": "Ricin", "tier": "Rare", "type": "dagger", "poison": 1930, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 73, "mdPct": -50, "ms": 5, "sdRaw": 125, "id": 2343}, {"name": "Rime", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -30, "wDef": 10, "aDef": 15, "lvl": 43, "intReq": 15, "agiReq": 30, "sdPct": 7, "ms": 5, "agi": 4, "spd": -9, "aDamPct": 4, "fDefPct": -10, "type": "bracelet", "id": 2347}, {"name": "Ridge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 34, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 2345}, {"name": "Ring of Focus", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 20, "intReq": 5, "sdPct": 5, "xpb": 4, "type": "ring", "id": 2349}, {"name": "Ring of Fire", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -50, "lvl": 84, "expd": 8, "fDamPct": 11, "wDamPct": -7, "eDamPct": 8, "type": "ring", "id": 2346}, {"name": "Ringlets", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1875, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 80, "mr": 10, "xpb": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRaw4": -5, "id": 2348}, {"name": "Ringing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 265, "wDef": 20, "tDef": -20, "lvl": 41, "intReq": 20, "mr": 5, "spRegen": 5, "wDefPct": 10, "aDefPct": 5, "id": 2352}, {"name": "Ring of Strength", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "str": 3, "type": "ring", "id": 2350}, {"name": "Ripper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -6, "lvl": 46, "dexReq": 25, "xpb": 3, "dex": 3, "mdRaw": 17, "type": "ring", "id": 2351}, {"name": "Rinkaku", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": 80, "tDef": 80, "lvl": 79, "dexReq": 40, "defReq": 55, "hprPct": -20, "sdPct": 10, "ls": 110, "def": 8, "hpBonus": -400, "fDamPct": 8, "tDamPct": 8, "id": 2354}, {"name": "Rising Sun", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-150", "fDam": "60-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "defReq": 25, "xpb": 15, "spRegen": 6, "id": 2353}, {"name": "Rite Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-26", "fDam": "9-12", "wDam": "9-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 10, "defReq": 10, "sdPct": 8, "ls": 25, "lb": 8, "hpBonus": -150, "spRegen": -10, "eSteal": 4, "id": 2355}, {"name": "Riverflow", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 200, "tDef": -100, "lvl": 93, "intReq": 95, "mr": 20, "ref": 5, "spd": 7, "tDamPct": -15, "wDefPct": 20, "tDefPct": -15, "id": 2357}, {"name": "Roaming Thief", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "lvl": 28, "ls": 13, "lb": 8, "dex": 3, "eSteal": 4, "id": 2356}, {"name": "Rock Chisel", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "164-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "strReq": 25, "defReq": 35, "sdPct": -9, "lb": 19, "dex": 8, "eSteal": 3, "fDamPct": 24, "eDamPct": 7, "id": 2359}, {"name": "Robin", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-16", "fDam": "5-9", "wDam": "0-0", "aDam": "4-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 20, "sdPct": -12, "mdPct": -12, "spd": 16, "hprRaw": 30, "id": 2358}, {"name": "Rockworm", "tier": "Unique", "poison": 135, "category": "accessory", "drop": "lootchest", "lvl": 57, "mdPct": 3, "str": 4, "eDamPct": 4, "type": "ring", "id": 2361}, {"name": "Rodoroc's Pride", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3700, "fDef": 125, "wDef": -175, "eDef": 125, "lvl": 98, "strReq": 40, "defReq": 40, "mr": 10, "str": 8, "def": 8, "spd": -8, "hpBonus": 700, "fDamPct": 8, "wDamPct": 10, "aDamPct": -20, "tDamPct": -20, "eDamPct": 8, "id": 2360}, {"name": "Rollick", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 100, "tDef": -130, "lvl": 71, "intReq": 100, "sdPct": 15, "int": 7, "sdRaw": 75, "fDamPct": -30, "wDamPct": 20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "wDefPct": 20, "id": 2363}, {"name": "Ronin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "tDef": 175, "eDef": -100, "lvl": 91, "dexReq": 50, "str": -15, "dex": 20, "spd": 5, "mdRaw": 175, "tDamPct": 15, "id": 2364}, {"name": "Ronco", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-48", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 30, "sdPct": 12, "lb": 6, "dex": 5, "spd": 8, "hpBonus": -90, "eDefPct": -15, "id": 2362}, {"name": "Rosario", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-32", "atkSpd": "SLOW", "lvl": 43, "strReq": 20, "defReq": 20, "hprPct": 9, "sdPct": -20, "spd": -12, "hpBonus": 250, "hprRaw": 15, "id": 2365}, {"name": "Rot of Dernel", "tier": "Rare", "type": "wand", "poison": 2645, "thorns": 35, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-12", "eDam": "9-10", "atkSpd": "VERY_SLOW", "lvl": 83, "strReq": 15, "dexReq": 15, "ls": 300, "ms": 15, "int": -30, "hpBonus": -1850, "id": 2367}, {"name": "Rotten Wood", "tier": "Unique", "type": "wand", "poison": 1462, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "id": 2372}, {"name": "Rotary Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-100", "wDam": "50-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "intReq": 30, "defReq": 30, "ls": 225, "expd": 14, "hpBonus": 800, "tDefPct": -20, "eDefPct": -14, "id": 2366}, {"name": "Rotten", "tier": "Rare", "type": "chestplate", "poison": 160, "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 280, "fDef": -15, "eDef": 25, "lvl": 37, "id": 2369}, {"name": "Rikter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "312-670", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "330-570", "atkSpd": "SUPER_SLOW", "lvl": 84, "strReq": 55, "mdPct": 30, "expd": 25, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 2344}, {"name": "Roughcut", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 560, "aDef": -50, "tDef": 20, "eDef": 30, "lvl": 53, "strReq": 15, "mdPct": 10, "dex": 7, "mdRaw": 85, "tDamPct": 10, "eDefPct": 5, "id": 2370}, {"name": "Rounding Test", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 1, "xpb": 11, "atkTier": -1, "id": 2371}, {"name": "Runic Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 375, "lvl": 90, "sdPct": 8, "lb": 5, "type": "necklace", "id": 2375}, {"name": "Rubber", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 77, "mdRaw": 26, "type": "ring", "id": 2373}, {"name": "Rubber Rainboots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 225, "tDef": 10, "lvl": 34, "xpb": 5, "wDefPct": 20, "id": 2374}, {"name": "Rubber Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "ref": 10, "dex": -3, "agi": -3, "id": 2377}, {"name": "Running Water", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "50-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "intReq": 30, "int": 9, "spd": 15, "sprintReg": 10, "id": 2376}, {"name": "Runner's Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 24, "lvl": 9, "agi": 3, "spd": 4, "id": 2378}, {"name": "Rust", "tier": "Rare", "type": "helmet", "poison": 665, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2450, "wDef": -60, "aDef": -60, "lvl": 79, "defReq": 55, "ref": -23, "dex": 9, "tDamPct": 19, "eDamPct": 11, "id": 2399}, {"name": "Rusted Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 7, "xpb": 2, "lb": 3, "type": "bracelet", "id": 2379}, {"name": "Rusted Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 28, "wDef": 6, "tDef": -3, "lvl": 31, "wDefPct": 4, "tDefPct": -3, "type": "ring", "id": 2387}, {"name": "Rusted Root", "tier": "Legendary", "type": "relik", "poison": 900, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "190-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-200", "atkSpd": "SLOW", "lvl": 65, "strReq": 40, "dexReq": 45, "sdRaw": 130, "tDamPct": 35, "wDefPct": -40, "spRaw2": -10, "spPct3": 49, "spPct4": -42, "jh": -1, "id": 2381}, {"name": "Rycar's Bravado", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -35, "aDef": 20, "eDef": 20, "lvl": 58, "strReq": 20, "str": 7, "dex": 3, "int": -10, "agi": 3, "type": "bracelet", "id": 2380}, {"name": "Adventurer's Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 147, "lvl": 27, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2385, "set": "Adventurer's"}, {"name": "Rycar's Swagger", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 62, "strReq": 10, "agiReq": 10, "hprPct": -11, "str": 3, "agi": 5, "spd": -4, "eSteal": 2, "type": "necklace", "id": 2382}, {"name": "Adventurer's Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 135, "lvl": 26, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2383, "set": "Adventurer's"}, {"name": "Adventurer's Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 153, "lvl": 28, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2386, "set": "Adventurer's"}, {"name": "Air Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 145, "aDef": 5, "lvl": 25, "agiReq": 15, "agi": 4, "aDamPct": 7, "aDefPct": 7, "id": 2390, "set": "Air Relic"}, {"name": "Adventurer's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2384, "set": "Adventurer's"}, {"name": "Air Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 205, "aDef": 10, "lvl": 30, "agiReq": 21, "agi": 5, "aDamPct": 9, "aDefPct": 9, "id": 2391, "set": "Air Relic"}, {"name": "Beachside Conch", "tier": "Set", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "intReq": 8, "sdPct": -8, "mdPct": -12, "wDamPct": 12, "wDefPct": 8, "id": 2392, "set": "Beachside"}, {"name": "Beachside Headwrap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 75, "wDef": 6, "lvl": 17, "intReq": 5, "lb": 8, "int": 3, "wDefPct": 8, "id": 2394, "set": "Beachside"}, {"name": "Black Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 13, "ms": 5, "xpb": 5, "dex": 7, "id": 2398, "set": "Black"}, {"name": "Bear Mask", "tier": "Set", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MDkxOTUyODE1ODUsInByb2ZpbGVJZCI6IjVkYTgwMWMxNzkwYzQ3Mzc4YzhiMzk2MjM2ZDlhNzk2IiwicHJvZmlsZU5hbWUiOiJDaHVtYmxlZG9yZSIsImlzUHVibGljIjp0cnVlLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjk1YmJmOWYxNzViMWU3NmE2MWI0Y2QwYmExODNiMThjOTQ2NzAxN2Y0MWVkMTA0NmFiZjY1YTRhNjNjNGEwIn19fQ==", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "fixID": true, "id": 1854, "set": "Bear"}, {"name": "Bear Body", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "hp": 78, "lvl": 16, "mdPct": 6, "fixID": true, "id": 2396, "set": "Bear"}, {"name": "Black Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": 7, "lvl": 33, "dexReq": 10, "dex": 4, "mdRaw": 26, "id": 2395, "set": "Black"}, {"name": "Black Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 245, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 30, "lb": 10, "dex": 7, "sdRaw": 42, "id": 2397, "set": "Black"}, {"name": "Black Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 20, "dex": 5, "spd": 10, "mdRaw": 30, "id": 2400, "set": "Black"}, {"name": "Air Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 275, "aDef": 15, "lvl": 35, "agiReq": 27, "agi": 7, "aDamPct": 11, "aDefPct": 11, "id": 2389, "set": "Air Relic"}, {"name": "Bony Bow", "tier": "Set", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-36", "fDam": "0-0", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "mdPct": 8, "agi": 6, "id": 2401, "set": "Bony"}, {"name": "Champion Boots", "tier": "Set", "type": "boots", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 20, "id": 2403, "set": "Champion"}, {"name": "Bony Circlet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "aDef": 5, "lvl": 21, "agiReq": 6, "mdPct": 8, "mdRaw": 30, "id": 2402, "set": "Bony"}, {"name": "Champion Helmet", "tier": "Set", "type": "helmet", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2407, "set": "Champion"}, {"name": "Champion Chestplate", "tier": "Set", "type": "chestplate", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2405, "set": "Champion"}, {"name": "Champion Leggings", "tier": "Set", "type": "leggings", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "lb": 20, "id": 2404, "set": "Champion"}, {"name": "Clock Amulet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 86, "lb": 6, "fDefPct": 4, "wDefPct": 5, "aDefPct": 3, "tDefPct": 2, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2406, "set": "Clock"}, {"name": "Clock Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "lvl": 73, "mr": -5, "mdPct": 10, "ms": 5, "xpb": 6, "agi": 3, "spd": 6, "fixID": true, "id": 2408, "set": "Clock"}, {"name": "Clock Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 950, "lvl": 74, "sdPct": -40, "mdPct": -35, "xpb": 6, "str": -8, "dex": 3, "spd": 10, "atkTier": 1, "mdRaw": 26, "fixID": true, "id": 2410, "set": "Clock"}, {"name": "Clock Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1500, "lvl": 75, "sdPct": 25, "mdPct": 30, "xpb": 5, "str": 3, "spd": -4, "atkTier": -1, "mdRaw": 13, "fixID": true, "id": 2411, "set": "Clock"}, {"name": "Clock Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 76, "hprPct": 15, "mr": 10, "sdPct": 5, "ms": -5, "def": 3, "spd": -3, "hpBonus": 200, "fixID": true, "id": 2409, "set": "Clock"}, {"name": "Clockwork Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -25, "lvl": 80, "sdPct": 5, "lb": 6, "type": "ring", "fixID": true, "id": 2413, "set": "Clock"}, {"name": "Cosmic Vest", "tier": "Set", "type": "chestplate", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2200, "lvl": 80, "mr": 5, "xpb": 19, "spd": 15, "id": 2478, "set": "Cosmic"}, {"name": "Air Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 355, "aDef": 20, "lvl": 40, "agiReq": 42, "agi": 8, "aDamPct": 13, "aDefPct": 13, "id": 2388, "set": "Air Relic"}, {"name": "Cosmic Visor", "tier": "Set", "type": "helmet", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 80, "mr": 5, "xpb": 19, "spRegen": 19, "id": 2414, "set": "Cosmic"}, {"name": "Cosmic Walkers", "tier": "Set", "type": "boots", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1900, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2412, "set": "Cosmic"}, {"name": "Dodge Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "agiReq": 30, "hprPct": 12, "spd": 12, "type": "ring", "id": 3606, "set": "Synch Core"}, {"name": "Earth Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "eDef": 4, "lvl": 25, "strReq": 15, "str": 4, "eDamPct": 8, "eDefPct": 6, "id": 2428, "set": "Earth Relic"}, {"name": "Cosmic Ward", "tier": "Set", "type": "leggings", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2100, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2416, "set": "Cosmic"}, {"name": "Earth Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 212, "eDef": 8, "lvl": 30, "strReq": 21, "str": 5, "eDamPct": 10, "eDefPct": 8, "id": 2415, "set": "Earth Relic"}, {"name": "Earth Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "eDef": 12, "lvl": 35, "strReq": 27, "str": 7, "eDamPct": 12, "eDefPct": 10, "id": 2418, "set": "Earth Relic"}, {"name": "Earth Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "eDef": 16, "lvl": 40, "strReq": 42, "str": 8, "eDamPct": 14, "eDefPct": 12, "id": 2420, "set": "Earth Relic"}, {"name": "Fire Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "fDef": 10, "lvl": 30, "defReq": 21, "def": 5, "fDamPct": 8, "fDefPct": 10, "id": 2419, "set": "Fire Relic"}, {"name": "Fire Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 330, "fDef": 15, "lvl": 35, "defReq": 27, "def": 7, "fDamPct": 10, "fDefPct": 12, "id": 2421, "set": "Fire Relic"}, {"name": "Fire Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 170, "fDef": 5, "lvl": 25, "defReq": 15, "def": 4, "fDamPct": 6, "fDefPct": 8, "id": 2417, "set": "Fire Relic"}, {"name": "Ghostly Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 20, "eDef": -15, "lvl": 49, "intReq": 35, "mdPct": -18, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2423, "set": "Ghostly"}, {"name": "Fire Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 425, "fDef": 20, "lvl": 40, "defReq": 42, "def": 8, "fDamPct": 12, "fDefPct": 14, "id": 2422, "set": "Fire Relic"}, {"name": "Ghostly Cap", "tier": "Set", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 20, "eDef": -20, "lvl": 48, "mdPct": -6, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2424, "set": "Ghostly"}, {"name": "Ghostly Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 30, "eDef": -30, "lvl": 50, "dexReq": 45, "mdPct": -24, "ms": 5, "spRegen": 5, "tDamPct": 14, "id": 2425, "set": "Ghostly"}, {"name": "Ghostly Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 30, "eDef": -25, "lvl": 51, "intReq": 45, "mdPct": -12, "ms": 5, "spRegen": 5, "wDamPct": 14, "id": 2444, "set": "Ghostly"}, {"name": "Harden Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "hp": 888, "fDef": 20, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 84, "defReq": 30, "xpb": 5, "type": "ring", "id": 3616, "set": "Synch Core"}, {"name": "Hustle Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "strReq": 30, "sdPct": 10, "mdPct": 10, "ls": 70, "type": "ring", "id": 3623, "set": "Synch Core"}, {"name": "Horse Hoof", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 355, "fDef": -20, "aDef": 20, "lvl": 40, "agiReq": 25, "agi": 7, "spd": 10, "aDamPct": 8, "id": 2426, "set": "Horse"}, {"name": "Horse Mask", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "fDef": -20, "eDef": 20, "lvl": 42, "strReq": 25, "mdPct": 7, "str": 7, "eDamPct": 8, "id": 2427, "set": "Horse"}, {"name": "Jester Bracelet", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "lootchest", "lvl": 72, "xpb": -25, "lb": -25, "ref": 8, "type": "bracelet", "id": 2431, "set": "Jester"}, {"name": "Jester Necklace", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 54, "xpb": -25, "lb": -25, "eSteal": 4, "type": "necklace", "id": 2429, "set": "Jester"}, {"name": "Jester Ring", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 69, "ls": 50, "xpb": -25, "lb": -25, "type": "ring", "id": 2430, "set": "Jester"}, {"name": "Kaerynn's Body", "tier": "Set", "type": "chestplate", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "eDef": 120, "lvl": 78, "strReq": 45, "sdPct": 15, "mdPct": 15, "eDamPct": 20, "id": 2432, "set": "Kaerynn's"}, {"name": "Leaf Boots", "tier": "Set", "type": "boots", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 14, "eDef": 2, "lvl": 4, "hprPct": 10, "hprRaw": 1, "id": 2435}, {"name": "Leaf Cap", "tier": "Set", "type": "helmet", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "eDef": 2, "lvl": 2, "hprPct": 6, "hprRaw": 1, "id": 2438}, {"name": "Kaerynn's Mind", "tier": "Set", "type": "helmet", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "wDef": 120, "lvl": 78, "intReq": 45, "hprPct": 25, "mr": 5, "wDamPct": 20, "id": 2433, "set": "Kaerynn's"}, {"name": "Leaf Pants", "tier": "Set", "type": "leggings", "set": "Leaf", "thorns": 7, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 17, "eDef": 3, "lvl": 5, "hprPct": 8, "id": 2434}, {"name": "Mask of the Dark Vexations", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 90, "lvl": 20, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -15, "xpb": 10, "fDamPct": 7, "wDamPct": 7, "tDamPct": 7, "id": 2437, "set": "Vexing"}, {"name": "Leaf Tunic", "tier": "Set", "type": "chestplate", "set": "Leaf", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "str": 3, "hprRaw": 2, "id": 2450}, {"name": "Morph-Emerald", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 50, "lvl": 37, "strReq": 16, "dexReq": 16, "intReq": 16, "agiReq": 16, "defReq": 16, "lb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2439, "set": "Morph"}, {"name": "Morph-Iron", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 50, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 2442, "set": "Morph"}, {"name": "Morph-Gold", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 150, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spd": 10, "id": 2440, "set": "Morph"}, {"name": "Morph-Amethyst", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 87, "strReq": 41, "dexReq": 41, "intReq": 41, "agiReq": 41, "defReq": 41, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spRegen": 10, "type": "bracelet", "id": 2436, "set": "Morph"}, {"name": "Morph-Ruby", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 62, "strReq": 29, "dexReq": 29, "intReq": 29, "agiReq": 29, "defReq": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "eSteal": 5, "type": "necklace", "id": 2441, "set": "Morph"}, {"name": "Nether Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "wDef": -6, "lvl": 28, "defReq": 25, "lb": 6, "expd": 6, "fDamPct": 8, "id": 2449, "set": "Nether"}, {"name": "Morph-Steel", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 75, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2443, "set": "Morph"}, {"name": "Morph-Topaz", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 12, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2447, "set": "Morph"}, {"name": "Nether Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "fDef": 6, "wDef": -6, "lvl": 24, "defReq": 10, "lb": 9, "def": 4, "expd": 8, "id": 2446, "set": "Nether"}, {"name": "Nether Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "wDef": -6, "lvl": 25, "defReq": 15, "def": 5, "fDamPct": 6, "id": 2452, "set": "Nether"}, {"name": "Outlaw Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 370, "fDef": -30, "lvl": 39, "agiReq": 40, "ls": 31, "eSteal": 5, "mdRaw": 39, "id": 2454, "set": "Outlaw"}, {"name": "Nether Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "fDef": 10, "wDef": -6, "lvl": 27, "defReq": 20, "lb": 7, "def": 7, "expd": 6, "id": 2448, "set": "Nether"}, {"name": "Outlaw Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 325, "eDef": -20, "lvl": 36, "agiReq": 30, "ls": 29, "agi": 7, "eSteal": 5, "id": 2453, "set": "Outlaw"}, {"name": "Outlaw Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "tDef": -20, "lvl": 37, "agiReq": 35, "mdPct": 8, "ls": 29, "eSteal": 4, "id": 2451, "set": "Outlaw"}, {"name": "Outlaw Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 380, "wDef": -20, "lvl": 38, "agiReq": 35, "ls": 29, "eSteal": 4, "aDamPct": 8, "id": 2456, "set": "Outlaw"}, {"name": "Overload Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "necklace", "id": 3613, "set": "Synch Core"}, {"name": "Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2459, "set": "Relic"}, {"name": "Pigman Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "aDef": -5, "eDef": 5, "lvl": 15, "strReq": 5, "spd": -4, "eDamPct": 14, "id": 2455, "set": "Pigman"}, {"name": "Pigman Battle Hammer", "tier": "Set", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "28-36", "atkSpd": "VERY_SLOW", "lvl": 16, "strReq": 5, "str": 4, "spd": -6, "id": 2457, "set": "Pigman"}, {"name": "Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 215, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 30, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2461, "set": "Relic"}, {"name": "Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "fDef": 12, "wDef": 12, "aDef": 12, "tDef": 12, "eDef": 12, "lvl": 35, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDefPct": 9, "wDefPct": 9, "aDefPct": 9, "tDefPct": 9, "eDefPct": 9, "id": 2458, "set": "Relic"}, {"name": "Silverfish Boots", "tier": "Set", "type": "boots", "poison": 130, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 10, "aDef": 8, "eDef": 2, "lvl": 32, "agiReq": 30, "agi": 13, "id": 2462, "set": "Silverfish"}, {"name": "Silverfish Helm", "tier": "Set", "type": "helmet", "poison": 145, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 15, "aDef": 12, "eDef": 6, "lvl": 34, "agiReq": 35, "spd": 10, "id": 2463, "set": "Silverfish"}, {"name": "Skien Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 775, "lvl": 53, "sdPct": -12, "mdPct": 10, "str": 5, "spd": 5, "id": 2464, "set": "Skien's"}, {"name": "Skien Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "lvl": 55, "def": 5, "spd": 5, "sdRaw": -115, "mdRaw": 95, "id": 2465, "set": "Skien's"}, {"name": "Slime Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 715, "lvl": 51, "strReq": 15, "defReq": 35, "str": 7, "agi": -4, "def": 5, "spd": -6, "id": 2467, "set": "Slime"}, {"name": "Morph-Stardust", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 100, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 15, "hprRaw": 200, "sdRaw": 140, "mdRaw": 135, "id": 2445, "set": "Morph"}, {"name": "Skien's Fatigues", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "lvl": 57, "strReq": 35, "defReq": 35, "sdPct": -20, "mdPct": 17, "str": 8, "def": 8, "sdRaw": -140, "mdRaw": 115, "id": 2466, "set": "Skien's"}, {"name": "Slime Plate", "tier": "Set", "type": "chestplate", "poison": 290, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "eDef": 30, "lvl": 53, "strReq": 20, "defReq": 35, "spd": -6, "id": 2469, "set": "Slime"}, {"name": "Snail Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 75, "eDef": 55, "lvl": 94, "strReq": 55, "defReq": 70, "hprPct": 20, "def": 9, "spd": -7, "fDefPct": 10, "id": 2471, "set": "Snail"}, {"name": "Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "fDef": 14, "wDef": 14, "aDef": 14, "tDef": 14, "eDef": 14, "lvl": 40, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 2460, "set": "Relic"}, {"name": "Snail Leggings", "tier": "Set", "type": "leggings", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3575, "fDef": 90, "eDef": 65, "lvl": 95, "strReq": 60, "defReq": 80, "hprPct": 20, "def": 9, "spd": -7, "id": 2470, "set": "Snail"}, {"name": "Snail Mail", "tier": "Set", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3950, "fDef": 100, "eDef": 75, "lvl": 97, "strReq": 65, "defReq": 90, "hprPct": 20, "agi": -10, "fDefPct": 9, "eDefPct": 9, "id": 2473, "set": "Snail"}, {"name": "Snail Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": 60, "eDef": 45, "lvl": 93, "strReq": 50, "defReq": 60, "def": 9, "spd": -7, "hprRaw": 170, "eDefPct": 10, "id": 2468, "set": "Snail"}, {"name": "Snow Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "aDef": 15, "lvl": 42, "agiReq": 15, "hprPct": -15, "ref": 10, "aDefPct": 10, "id": 2480, "set": "Snow"}, {"name": "Snow Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 380, "wDef": 15, "lvl": 41, "intReq": 15, "hprPct": -15, "mr": 5, "wDefPct": 10, "id": 2472, "set": "Snow"}, {"name": "Spore Cap", "tier": "Set", "type": "helmet", "poison": 18, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "lvl": 13, "str": 4, "id": 2475, "set": "Spore"}, {"name": "Snow Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "wDef": 20, "aDef": 20, "lvl": 43, "intReq": 20, "agiReq": 20, "hprPct": -15, "ref": 10, "wDamPct": 8, "aDamPct": 8, "id": 2474, "set": "Snow"}, {"name": "Spore Shortsword", "tier": "Set", "type": "dagger", "poison": 36, "category": "weapon", "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 15, "expd": 10, "id": 2477, "set": "Spore"}, {"name": "Snow Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 25, "aDef": 25, "lvl": 44, "intReq": 25, "agiReq": 25, "hprPct": -15, "mr": 5, "wDefPct": 8, "aDefPct": 8, "id": 2476, "set": "Snow"}, {"name": "Synchro Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "bracelet", "id": 3604, "set": "Synch Core"}, {"name": "Thunder Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 135, "tDef": 3, "lvl": 25, "dexReq": 15, "dex": 4, "tDamPct": 10, "tDefPct": 4, "id": 2482, "set": "Thunder Relic"}, {"name": "Staff of the Dark Vexations", "tier": "Set", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "4-9", "wDam": "6-7", "aDam": "0-0", "tDam": "1-13", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -10, "dex": 4, "int": 4, "def": 4, "id": 2479, "set": "Vexing"}, {"name": "Thunder Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 260, "tDef": 9, "lvl": 35, "dexReq": 27, "dex": 7, "tDamPct": 14, "tDefPct": 8, "id": 2481, "set": "Thunder Relic"}, {"name": "Thunder Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 190, "tDef": 6, "lvl": 30, "dexReq": 21, "dex": 5, "tDamPct": 12, "tDefPct": 6, "id": 2483, "set": "Thunder Relic"}, {"name": "Thunder Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 335, "tDef": 12, "lvl": 40, "dexReq": 42, "dex": 8, "tDamPct": 16, "tDefPct": 10, "id": 2485, "set": "Thunder Relic"}, {"name": "Time Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 10, "type": "ring", "fixID": true, "id": 2488, "set": "Clock"}, {"name": "Tribal Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "lvl": 18, "lb": 8, "mdRaw": 20, "fixID": true, "id": 2491, "set": "Tribal"}, {"name": "Tribal Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 5, "agi": 3, "fixID": true, "id": 2484, "set": "Tribal"}, {"name": "Tribal Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 18, "mdPct": 10, "lb": 5, "fixID": true, "id": 2490, "set": "Tribal"}, {"name": "Tribal Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 18, "lb": 7, "agi": 2, "fixID": true, "id": 2487, "set": "Tribal"}, {"name": "Ultramarine Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 950, "wDef": 40, "tDef": -40, "lvl": 63, "intReq": 90, "mr": 5, "lb": 8, "int": 7, "wDefPct": 8, "id": 2486, "set": "Ultramarine"}, {"name": "Ultramarine Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 880, "wDef": 80, "tDef": -20, "lvl": 61, "intReq": 80, "sdPct": 7, "lb": 7, "wDefPct": 8, "id": 2489, "set": "Ultramarine"}, {"name": "Veekhat's Horns", "tier": "Set", "type": "helmet", "quest": "Cowfusion", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "eDef": 150, "lvl": 89, "mdRaw": 180, "eDamPct": 20, "id": 2492, "set": "Veekhat's"}, {"name": "Ultramarine Cape", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "tDef": -70, "lvl": 65, "intReq": 100, "mr": 10, "mdPct": -14, "lb": 9, "wDefPct": 8, "id": 2495, "set": "Ultramarine"}, {"name": "Ultramarine Crown", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 800, "wDef": 140, "lvl": 59, "intReq": 70, "lb": 6, "int": 7, "wDefPct": 8, "id": 2493, "set": "Ultramarine"}, {"name": "Villager Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "lvl": 26, "xpb": 5, "lb": 10, "id": 2498, "set": "Villager"}, {"name": "Veekhat's Udders", "tier": "Set", "type": "chestplate", "quest": "Cowfusion", "sprint": 18, "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "aDef": 150, "lvl": 89, "ms": 5, "aDamPct": 18, "id": 2494, "set": "Veekhat's"}, {"name": "Visceral Chest", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1545, "fDef": -25, "wDef": -25, "aDef": -25, "tDef": -25, "eDef": -25, "lvl": 71, "mdPct": 15, "hprRaw": 50, "mdRaw": 100, "id": 2497, "set": "Visceral"}, {"name": "Visceral Skullcap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "lvl": 68, "mdPct": 13, "ls": 80, "hprRaw": 39, "id": 2496, "set": "Visceral"}, {"name": "Villager Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 24, "xpb": 10, "lb": 5, "id": 2500, "set": "Villager"}, {"name": "Visceral Toe", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1445, "lvl": 69, "mdPct": 10, "ls": 60, "mdRaw": 75, "id": 2503, "set": "Visceral"}, {"name": "Water Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 130, "wDef": 6, "lvl": 25, "intReq": 15, "int": 4, "wDamPct": 4, "wDefPct": 10, "id": 2501, "set": "Water Relic"}, {"name": "Water Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "wDef": 18, "lvl": 35, "intReq": 27, "int": 7, "wDamPct": 8, "wDefPct": 14, "id": 2505, "set": "Water Relic"}, {"name": "Watch Bracelet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 86, "lb": 6, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2502, "set": "Clock"}, {"name": "Water Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 185, "wDef": 12, "lvl": 30, "intReq": 21, "int": 5, "wDamPct": 6, "wDefPct": 12, "id": 2504, "set": "Water Relic"}, {"name": "Water Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 320, "wDef": 24, "lvl": 40, "intReq": 42, "int": 8, "wDamPct": 10, "wDefPct": 16, "id": 2506, "set": "Water Relic"}, {"name": "Reciprocator", "tier": "Rare", "type": "relik", "thorns": 40, "category": "weapon", "slots": 1, "drop": "never", "nDam": "240-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "ref": 40, "agi": 10, "def": -10, "spd": -10, "wDamPct": 15, "fixID": true, "spRaw1": -5, "id": 2509}, {"name": "Ablution", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 12, "mr": 5, "int": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "tDefPct": -10, "fixID": true, "id": 2507}, {"name": "Ciel", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "28-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 50, "ms": 5, "xpb": 10, "dex": 5, "tDamPct": 22, "tDefPct": 8, "fixID": true, "id": 2508}, {"name": "Ahms' Remains", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "hp": 2550, "aDef": -120, "eDef": 90, "lvl": 97, "strReq": 65, "sdPct": 15, "mdPct": 12, "ms": 10, "str": 8, "sdRaw": 205, "eDamPct": 10, "aDefPct": -15, "fixID": true, "id": 2512}, {"name": "Earth Drift", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "70-101", "tDam": "0-0", "eDam": "32-50", "atkSpd": "VERY_FAST", "lvl": 95, "strReq": 50, "agiReq": 30, "mdPct": 12, "str": 4, "agi": 8, "spd": 12, "sdRaw": -45, "mdRaw": 50, "eDamPct": 20, "fixID": true, "id": 2511}, {"name": "Highrise", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "120-142", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "agiReq": 50, "ms": 5, "hpBonus": -1200, "aDamPct": 20, "fDefPct": -20, "fixID": true, "jh": 2, "id": 2513}, {"name": "Fallbreakers", "tier": "Rare", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 3600, "fDef": 120, "wDef": 110, "aDef": 80, "tDef": 100, "eDef": 90, "lvl": 95, "defReq": 40, "ref": 15, "def": 10, "hprRaw": 195, "fDefPct": 10, "wDefPct": 15, "aDefPct": 30, "tDefPct": 20, "eDefPct": 25, "fixID": true, "id": 2519}, {"name": "Island Sniper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "425-845", "fDam": "0-0", "wDam": "0-0", "aDam": "400-425", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 96, "agiReq": 55, "mdPct": 15, "ms": 5, "dex": 7, "hpBonus": -1750, "tDamPct": 10, "fixID": true, "id": 2514}, {"name": "Restorator", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-60", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "defReq": 55, "hprPct": 40, "str": 7, "def": 4, "hpBonus": 2500, "hprRaw": 230, "wDefPct": 20, "eDefPct": 15, "fixID": true, "id": 2515}, {"name": "Shard of Sky", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-160", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "agiReq": 55, "dex": 6, "agi": 10, "spd": 16, "aDamPct": 16, "aDefPct": 8, "fixID": true, "id": 2521}, {"name": "Stormcloud", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-60", "fDam": "0-0", "wDam": "145-170", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 55, "mr": 10, "mdPct": -30, "int": 10, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "fixID": true, "id": 2520}, {"name": "Skyfloat", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "never", "hp": 2750, "fDef": 50, "wDef": -150, "aDef": 150, "eDef": -50, "lvl": 94, "agiReq": 50, "mr": 10, "agi": 8, "def": 12, "spd": 15, "hprRaw": 230, "fixID": true, "jh": 1, "id": 2518}, {"name": "Vagabond's Disgrace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "200-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "300-340", "eDam": "300-340", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 65, "dexReq": 70, "mdPct": 30, "eSteal": 5, "wDamPct": -50, "tDamPct": 20, "eDamPct": 20, "wDefPct": -50, "fixID": true, "spPct4": 35, "id": 2522}, {"name": "Stalactite", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2875, "wDef": -70, "aDef": -100, "tDef": 140, "eDef": 140, "lvl": 96, "strReq": 60, "dexReq": 50, "ls": 285, "lb": 10, "tDamPct": 14, "eDamPct": 14, "aDefPct": -12, "fixID": true, "spPct1": -14, "spPct3": -14, "spPct4": 35, "id": 2516}, {"name": "Visceral Legs", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "lvl": 70, "ls": 110, "hprRaw": 65, "mdRaw": 60, "id": 2499, "set": "Visceral"}, {"name": "Clawctus", "tier": "Unique", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 31, "dex": 3, "mdRaw": 25, "eDamPct": 7, "fixID": true, "id": 2523}, {"name": "Drought Savior", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-24", "fDam": "0-0", "wDam": "14-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "intReq": 15, "hprPct": 5, "mr": 5, "hpBonus": 35, "hprRaw": 12, "fixID": true, "id": 2525}, {"name": "Crocodile", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 220, "wDef": 10, "lvl": 34, "intReq": 5, "int": 2, "spd": -6, "sdRaw": 30, "fixID": true, "id": 2524}, {"name": "Hood of the Resistance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 175, "aDef": -8, "tDef": 5, "eDef": 5, "lvl": 32, "strReq": 15, "lb": 4, "str": 4, "eSteal": 3, "fixID": true, "id": 2526}, {"name": "Drywind", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-14", "fDam": "0-0", "wDam": "0-0", "aDam": "16-26", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 15, "sdPct": 6, "ref": 5, "agi": 2, "spd": 5, "fixID": true, "id": 2530}, {"name": "Venom", "tier": "Unique", "type": "bow", "poison": 160, "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "nDam": "28-40", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "hprPct": -12, "def": 3, "hprRaw": 14, "fixID": true, "id": 2529}, {"name": "Spider Silk Carduroys", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 185, "lvl": 29, "hprPct": 10, "ls": 13, "agi": 3, "fixID": true, "id": 2532}, {"name": "Boundary", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-70", "atkSpd": "SLOW", "lvl": 26, "strReq": 15, "sdPct": -10, "str": 8, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2528}, {"name": "Vagabond", "tier": "Rare", "type": "chestplate", "poison": 90, "category": "armor", "slots": 1, "drop": "never", "hp": 160, "tDef": 10, "eDef": -12, "lvl": 33, "dexReq": 20, "agiReq": 10, "xpb": 7, "dex": 2, "agi": 2, "spd": 6, "fixID": true, "id": 2527}, {"name": "Horseshoe", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 44, "agiReq": 15, "agi": 2, "spd": 9, "mdRaw": 16, "type": "ring", "fixID": true, "id": 2535}, {"name": "Bountiful", "tier": "Unique", "type": "wand", "poison": -20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-8", "atkSpd": "NORMAL", "lvl": 19, "xpb": 10, "lb": 15, "hprRaw": 5, "fixID": true, "id": 2534}, {"name": "Savannah Wind", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "4-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 19, "agiReq": 8, "xpb": 5, "ref": 8, "agi": 4, "spd": 8, "hpBonus": -40, "fixID": true, "id": 2531}, {"name": "Pursuit", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-7", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "agiReq": 5, "ls": 7, "dex": 4, "spd": 12, "aDamPct": 8, "fixID": true, "id": 2536}, {"name": "Acevro", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "105-150", "fDam": "0-0", "wDam": "0-0", "aDam": "85-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "agiReq": 30, "mr": 5, "def": -10, "spd": 15, "wDamPct": 40, "aDamPct": 20, "fixID": true, "id": 2541}, {"name": "Smithy", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": -15, "eDef": 10, "lvl": 47, "fDamPct": 6, "eDamPct": 6, "fDefPct": 7, "eDefPct": 7, "type": "ring", "fixID": true, "id": 2543}, {"name": "Stainless Steel", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 48, "defReq": 30, "ref": 8, "type": "bracelet", "fixID": true, "id": 2538}, {"name": "Ascension", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-30", "fDam": "0-0", "wDam": "0-0", "aDam": "60-60", "tDam": "60-60", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "ms": 5, "str": -4, "dex": 8, "agi": 8, "def": -4, "spd": 12, "wDamPct": -15, "fixID": true, "id": 2540}, {"name": "Calor", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1875, "fDef": 100, "lvl": 74, "defReq": 45, "hprPct": 15, "def": 7, "hprRaw": 70, "fDamPct": 10, "fDefPct": 10, "wDefPct": -20, "fixID": true, "id": 2546}, {"name": "Golem Gauntlet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 45, "defReq": 20, "str": 1, "def": 5, "spd": -6, "type": "bracelet", "fixID": true, "id": 2533}, {"name": "Charger", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "aDef": 35, "tDef": 35, "lvl": 72, "dexReq": 15, "agiReq": 15, "sdPct": 8, "mdPct": 8, "dex": 3, "agi": 3, "spd": 16, "aDamPct": 12, "tDamPct": 12, "fixID": true, "id": 2542}, {"name": "Cinfras Souvenir T-Shirt", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NEVER", "hp": 10, "lvl": 1, "id": 3631}, {"name": "Cold Snap", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1450, "wDef": 50, "aDef": 50, "lvl": 71, "intReq": 10, "agiReq": 15, "ref": 15, "int": 3, "agi": 3, "fDamPct": -15, "wDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2544}, {"name": "Courser", "tier": "Unique", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 15, "dex": 5, "spd": 5, "tDamPct": 25, "fixID": true, "id": 2545}, {"name": "Crying Heart", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "ls": -145, "dex": 10, "tDamPct": 10, "eDamPct": 15, "fixID": true, "id": 2549}, {"name": "Diabloviento", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "90-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "agiReq": 25, "spd": 15, "fDamPct": 25, "aDamPct": 15, "fixID": true, "id": 2547}, {"name": "Blade of Instinct", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "defReq": 10, "ref": 20, "def": 2, "hpBonus": 30, "fixID": true, "id": 2537}, {"name": "Forge's Shock", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "95-105", "wDam": "0-0", "aDam": "0-0", "tDam": "100-125", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 28, "defReq": 28, "xpb": 15, "spd": -15, "mdRaw": 130, "fDamPct": 20, "fDefPct": 20, "fixID": true, "id": 2550}, {"name": "Enerxia", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 20, "mdPct": 10, "ms": 5, "dex": 5, "tDamPct": 20, "eDamPct": -15, "fixID": true, "id": 2548}, {"name": "Howler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1025, "aDef": 60, "lvl": 70, "agiReq": 20, "sdPct": 15, "agi": 5, "mdRaw": 100, "aDamPct": 15, "fixID": true, "id": 2559}, {"name": "Heart Piercer", "tier": "Unique", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "sdRaw": -50, "mdRaw": 85, "fixID": true, "id": 2552}, {"name": "Ivoire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "55-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 15, "int": 5, "hpBonus": 200, "wDamPct": 40, "fixID": true, "id": 2554}, {"name": "Pewter Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 70, "lvl": 46, "defReq": 10, "def": 3, "type": "ring", "fixID": true, "id": 2539}, {"name": "Letum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "tDef": 65, "lvl": 72, "dexReq": 35, "sdPct": 15, "mdPct": 15, "dex": 7, "def": -10, "expd": 10, "tDamPct": 25, "eDefPct": -15, "fixID": true, "id": 2556}, {"name": "Magic Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1350, "wDef": 90, "lvl": 73, "intReq": 35, "sdPct": 12, "mdPct": -15, "int": 5, "sdRaw": 30, "wDamPct": 20, "fixID": true, "id": 2553}, {"name": "Regar", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-125", "fDam": "0-0", "wDam": "25-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 73, "intReq": 25, "sdPct": 15, "sdRaw": 65, "mdRaw": -91, "wDamPct": 30, "fixID": true, "id": 2557}, {"name": "Miotal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "144-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "72-120", "atkSpd": "SLOW", "lvl": 74, "strReq": 25, "def": 5, "hpBonus": 300, "fDamPct": 25, "fDefPct": 10, "eDefPct": 10, "fixID": true, "id": 2555}, {"name": "Rocher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 70, "strReq": 30, "mdPct": 15, "str": 10, "spd": -10, "eDefPct": 15, "fixID": true, "id": 2560}, {"name": "Silencer", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 1700, "fDef": 90, "lvl": 70, "defReq": 20, "def": 5, "hprRaw": 75, "sdRaw": -100, "fDefPct": 15, "fixID": true, "id": 2562}, {"name": "Router", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "fDef": 50, "eDef": 50, "lvl": 72, "strReq": 15, "defReq": 15, "str": 3, "agi": -5, "def": 3, "spd": -12, "fDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2558}, {"name": "Searing Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 1450, "fDef": 65, "lvl": 71, "defReq": 25, "hprPct": 20, "def": 5, "expd": 5, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2563}, {"name": "Stone Crunch", "tier": "Rare", "type": "relik", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-113", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-175", "atkSpd": "NORMAL", "lvl": 74, "strReq": 40, "ms": -5, "mdRaw": 160, "eDamPct": 10, "wDefPct": -20, "fixID": true, "id": 2564}, {"name": "Sleek", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "19-28", "fDam": "0-0", "wDam": "0-0", "aDam": "45-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 25, "lb": 5, "ref": 15, "agi": 10, "spd": 15, "fixID": true, "id": 2561}, {"name": "Solum", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1700, "eDef": 110, "lvl": 73, "strReq": 40, "str": 7, "eDamPct": 15, "fDefPct": 10, "aDefPct": -10, "tDefPct": 10, "eDefPct": 15, "fixID": true, "id": 2566}, {"name": "Vis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "wDef": 75, "lvl": 71, "intReq": 30, "mr": 10, "int": 7, "wDamPct": 10, "tDefPct": -10, "fixID": true, "id": 2569}, {"name": "Torch", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "defReq": 30, "def": 5, "hpBonus": 400, "fDamPct": 70, "wDamPct": -60, "fixID": true, "id": 2565}, {"name": "Tragedy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 25, "mr": -5, "ms": -5, "str": -10, "hpBonus": -100, "wDamPct": 50, "fixID": true, "id": 2567}, {"name": "Composite Shooter", "displayName": "Pressure Blaster", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-140", "fDam": "0-0", "wDam": "100-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 50, "mr": 10, "int": 12, "sdRaw": 150, "fixID": true, "id": 2568}, {"name": "Carbon Weave", "tier": "Unique", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "fDef": 70, "aDef": -120, "eDef": 70, "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 10, "str": 8, "def": 8, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2570}, {"name": "Heavy Aegis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 1500, "eDef": 75, "lvl": 73, "strReq": 35, "sdPct": -12, "mdPct": 15, "str": 5, "eDamPct": 20, "eDefPct": 10, "fixID": true, "id": 2551}, {"name": "Corkian War Pick", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "115-140", "tDam": "115-140", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "dexReq": 35, "agiReq": 35, "mdPct": 10, "str": 8, "spd": 10, "mdRaw": 150, "aDamPct": 10, "tDamPct": 10, "fDefPct": -20, "wDefPct": -20, "fixID": true, "id": 2572}, {"name": "Genetor", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "65-125", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "dexReq": 50, "ms": 5, "ref": 12, "dex": 5, "sdRaw": 145, "tDefPct": 10, "fixID": true, "id": 2575}, {"name": "Gear Grinder", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-150", "fDam": "25-75", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "defReq": 40, "mr": 5, "sdPct": 8, "mdPct": 12, "xpb": 8, "expd": 20, "fixID": true, "id": 2574}, {"name": "Cranial Panel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 2150, "fDef": 60, "wDef": 60, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "intReq": 30, "defReq": 30, "mr": 10, "sdPct": -15, "mdPct": -25, "int": 14, "def": 14, "hprRaw": 100, "fDefPct": 10, "wDefPct": 10, "fixID": true, "id": 2573}, {"name": "Corkian Jet Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 2225, "wDef": 60, "tDef": 60, "lvl": 86, "agi": 5, "spd": 20, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "fixID": true, "jh": 2, "id": 2571}, {"name": "Info Visor", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1600, "wDef": 115, "eDef": -100, "lvl": 85, "dexReq": 30, "intReq": 40, "sdPct": 5, "xpb": 15, "int": 20, "sdRaw": 65, "fixID": true, "id": 2577}, {"name": "Latency", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2250, "aDef": -180, "tDef": 120, "eDef": 30, "lvl": 87, "strReq": 50, "dexReq": 50, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 5, "dex": 5, "spd": -15, "tDamPct": 18, "eDamPct": 18, "fixID": true, "id": 2580}, {"name": "Hydrocharger", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "32-40", "fDam": "0-0", "wDam": "24-48", "aDam": "0-0", "tDam": "24-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 30, "mdPct": -30, "dex": 5, "int": 5, "aDefPct": -40, "fixID": true, "id": 2576}, {"name": "Metal Body Suit", "tier": "Unique", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2575, "fDef": 80, "wDef": -80, "tDef": 80, "eDef": -80, "lvl": 88, "dexReq": 40, "defReq": 40, "ls": 165, "ref": 15, "dex": 4, "int": -21, "agi": 6, "def": 4, "spd": 10, "fixID": true, "spPct1": -17, "id": 2579}, {"name": "Siliquartz Blend", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2300, "lvl": 87, "sdPct": 20, "xpb": 5, "sdRaw": 130, "fixID": true, "id": 2583}, {"name": "Skyline Cries", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "57-63", "fDam": "110-130", "wDam": "110-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "intReq": 40, "defReq": 25, "int": 5, "def": 10, "spd": -10, "hpBonus": 2750, "fixID": true, "spRaw2": 15, "id": 2578}, {"name": "Shortout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-50", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "dexReq": 40, "ls": -145, "ref": 14, "expd": 22, "tDamPct": 26, "wDefPct": -12, "fixID": true, "id": 2581}, {"name": "Solar Sword", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "160-250", "fDam": "80-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "defReq": 50, "hprPct": 20, "ls": 260, "def": 7, "hpBonus": 1600, "fDefPct": 30, "eDefPct": -10, "fixID": true, "id": 2585}, {"name": "The Airway", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "63-69", "fDam": "0-0", "wDam": "0-0", "aDam": "56-66", "tDam": "41-81", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "dexReq": 35, "agiReq": 30, "dex": 8, "spd": 10, "aDamPct": 12, "tDamPct": 12, "eDefPct": -30, "fixID": true, "jh": 1, "id": 2582}, {"name": "Windmill", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "agiReq": 40, "ref": 30, "agi": 5, "spd": 7, "aDamPct": 30, "aDefPct": 20, "fixID": true, "id": 2587}, {"name": "Thermals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-105", "fDam": "98-102", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 45, "spd": 10, "hprRaw": 160, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw2": -10, "id": 2586}, {"name": "Candy Cane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-26", "fDam": "13-20", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 10, "defReq": 15, "hprPct": 25, "mdPct": -5, "ls": 90, "agi": 6, "spd": 12, "hprRaw": 15, "wDefPct": -8, "fixID": true, "id": 2589}, {"name": "Black Ice", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-95", "fDam": "0-0", "wDam": "22-35", "aDam": "0-0", "tDam": "18-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "dexReq": 20, "intReq": 20, "mr": 5, "sdPct": 12, "mdPct": -20, "dex": 5, "int": 5, "sdRaw": 75, "eDamPct": -20, "fixID": true, "id": 2588}, {"name": "The Modulator", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "never", "hp": 2500, "lvl": 88, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "spd": 15, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2584}, {"name": "Cornucopia", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "190-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "hprPct": 30, "mr": 5, "sdPct": -10, "mdPct": -10, "xpb": 10, "lb": 10, "hprRaw": 80, "fixID": true, "id": 2593}, {"name": "Evergreen", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "NORMAL", "lvl": 85, "strReq": 35, "intReq": 45, "sdPct": 14, "mdPct": 10, "str": 5, "int": 5, "fDamPct": -18, "wDamPct": 25, "aDefPct": -30, "fixID": true, "id": 2591}, {"name": "Douglas Fir", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1950, "eDef": 100, "lvl": 75, "strReq": 35, "hprPct": 20, "str": 5, "def": 7, "mdRaw": 205, "aDefPct": -10, "eDefPct": 15, "fixID": true, "id": 2595}, {"name": "Charity", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "hprPct": 12, "lb": 12, "spRegen": 15, "type": "ring", "fixID": true, "id": 2590}, {"name": "Fellowship", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 65, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 10, "type": "bracelet", "fixID": true, "id": 2592}, {"name": "Frankincense", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 200, "lvl": 55, "sdPct": -5, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2597}, {"name": "Firewood", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "95-155", "fDam": "55-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "strReq": 25, "sdPct": -6, "mdPct": 12, "str": 5, "expd": 15, "eDamPct": 15, "wDefPct": -10, "fixID": true, "id": 2594}, {"name": "Gift of the Magi", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "never", "nDam": "130-145", "fDam": "30-35", "wDam": "0-0", "aDam": "30-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 60, "defReq": 60, "mr": 5, "agi": 15, "def": 15, "hpBonus": 2500, "hprRaw": 135, "tDamPct": -50, "eDamPct": -50, "wDefPct": 30, "fixID": true, "id": 2599}, {"name": "Frost", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 20, "lvl": 70, "intReq": 25, "spd": -6, "sdRaw": 30, "wDamPct": 7, "aDamPct": 5, "type": "ring", "fixID": true, "id": 2596}, {"name": "Halation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "90-125", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "dexReq": 45, "sdPct": 10, "xpb": 15, "ref": 33, "dex": 6, "aDamPct": 15, "tDefPct": 10, "fixID": true, "id": 2598}, {"name": "Holly", "tier": "Rare", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-24", "fDam": "0-0", "wDam": "11-18", "aDam": "0-0", "tDam": "0-0", "eDam": "17-28", "atkSpd": "NORMAL", "lvl": 45, "strReq": 10, "intReq": 5, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 5, "wDefPct": 15, "fixID": true, "id": 2602}, {"name": "Icicle", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "77-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "intReq": 40, "ms": 5, "ref": 15, "int": 7, "sdRaw": 100, "wDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2601}, {"name": "Hillich", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "64-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "mr": 5, "xpb": 20, "spRegen": 25, "hprRaw": 30, "fixID": true, "id": 2600}, {"name": "Joyous", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "xpb": 33, "lb": 10, "spRegen": 10, "fixID": true, "id": 2605}, {"name": "Mistletoe", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 120, "wDef": 20, "eDef": 20, "lvl": 50, "strReq": 10, "intReq": 10, "wDamPct": 5, "eDamPct": 5, "wDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2606}, {"name": "Myrrh", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -100, "wDef": 10, "lvl": 65, "intReq": 50, "mr": 5, "sdPct": 4, "type": "ring", "fixID": true, "id": 2604}, {"name": "Nativitate", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "xpb": 10, "lb": 33, "eSteal": 5, "fixID": true, "id": 2603}, {"name": "Polar Star", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "107-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 45, "sdPct": 10, "mdPct": 10, "xpb": 10, "dex": 10, "spd": 10, "sdRaw": 100, "eDamPct": -10, "fixID": true, "id": 2609}, {"name": "Reindeer Paws", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 800, "fDef": -40, "lvl": 60, "strReq": 15, "agiReq": 15, "mdPct": 12, "str": 4, "agi": 4, "spd": 16, "aDamPct": 8, "eDamPct": 8, "fixID": true, "id": 2607}, {"name": "Roasted Chestnut", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "defReq": 25, "hprRaw": 50, "type": "necklace", "fixID": true, "id": 2610}, {"name": "Blue Ornament", "tier": "Set", "category": "accessory", "drop": "never", "wDef": 25, "lvl": 45, "xpb": 6, "wDamPct": 6, "type": "ring", "fixID": true, "id": 2611, "set": "Wynnterfest 2016"}, {"name": "North Pole", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-50", "fDam": "17-25", "wDam": "0-0", "aDam": "17-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "agiReq": 20, "defReq": 20, "lb": 15, "agi": 7, "def": 7, "spd": 10, "fDefPct": 20, "aDefPct": 20, "fixID": true, "id": 2608}, {"name": "Elf Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "fDef": 10, "aDef": 40, "lvl": 50, "agiReq": 35, "lb": 9, "agi": 5, "spd": 8, "fixID": true, "id": 2612, "set": "Elf"}, {"name": "Elf Robe", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 775, "fDef": 40, "aDef": 10, "lvl": 50, "defReq": 35, "lb": 8, "def": 5, "hprRaw": 35, "fixID": true, "id": 2613, "set": "Elf"}, {"name": "Elf Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 730, "fDef": 30, "aDef": 20, "lvl": 50, "agiReq": 10, "defReq": 25, "lb": 9, "spd": 6, "hprRaw": 30, "fixID": true, "id": 2614, "set": "Elf"}, {"name": "Elf Shoes", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 685, "fDef": 20, "aDef": 30, "lvl": 50, "agiReq": 25, "defReq": 10, "hprPct": 15, "lb": 9, "spd": 6, "fixID": true, "id": 2617, "set": "Elf"}, {"name": "Green Ornament", "tier": "Set", "category": "accessory", "drop": "never", "eDef": 25, "lvl": 55, "xpb": 6, "eDamPct": 6, "type": "necklace", "fixID": true, "id": 2615, "set": "Wynnterfest 2016"}, {"name": "Saint's Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 1650, "wDef": 30, "aDef": 40, "lvl": 70, "intReq": 60, "agiReq": 65, "xpb": 15, "int": 5, "spd": 15, "aDamPct": 15, "fixID": true, "id": 2620, "set": "Saint's"}, {"name": "Red Ornament", "tier": "Set", "category": "accessory", "drop": "never", "fDef": 25, "lvl": 50, "xpb": 6, "fDamPct": 6, "type": "bracelet", "fixID": true, "id": 2616, "set": "Wynnterfest 2016"}, {"name": "Saint's Shawl", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "wDef": 60, "lvl": 70, "intReq": 60, "xpb": 10, "ref": 15, "int": 8, "fixID": true, "id": 2619, "set": "Saint's"}, {"name": "Saint's Sandals", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "aDef": 60, "lvl": 70, "agiReq": 60, "xpb": 10, "agi": 8, "spd": 15, "fixID": true, "id": 2618, "set": "Saint's"}, {"name": "Saint's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "wDef": 40, "aDef": 30, "lvl": 70, "intReq": 65, "agiReq": 60, "xpb": 15, "ref": 15, "agi": 5, "wDamPct": 15, "fixID": true, "id": 2622, "set": "Saint's"}, {"name": "Sheet Ice", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-80", "fDam": "0-0", "wDam": "35-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 85, "intReq": 50, "sdPct": 15, "mdPct": -15, "ref": 25, "int": 7, "sdRaw": 100, "fDamPct": -15, "fixID": true, "id": 2623}, {"name": "Yellow Ornament", "tier": "Set", "category": "accessory", "drop": "never", "tDef": 25, "lvl": 50, "xpb": 6, "tDamPct": 6, "type": "ring", "fixID": true, "id": 2621, "set": "Wynnterfest 2016"}, {"name": "Sleigh Bell", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-70", "fDam": "0-0", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 45, "agi": 15, "spd": 15, "aDamPct": 15, "aDefPct": 15, "fixID": true, "id": 2627}, {"name": "Silent Night", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1050-1225", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 65, "ls": 250, "spd": -8, "tDamPct": 15, "tDefPct": 10, "fixID": true, "spRaw3": -15, "id": 2624}, {"name": "Snow Shovel", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "220-300", "aDam": "160-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 75, "intReq": 30, "agiReq": 30, "sdPct": 25, "ms": 5, "int": 10, "spd": -10, "wDamPct": 10, "aDamPct": 15, "fDefPct": -10, "fixID": true, "id": 2626}, {"name": "Sleet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-65", "fDam": "0-0", "wDam": "100-290", "aDam": "0-0", "tDam": "0-390", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 85, "dexReq": 35, "intReq": 35, "sdPct": 25, "ms": 5, "spd": -10, "hprRaw": -150, "sdRaw": 130, "fDamPct": -35, "wDamPct": 15, "aDamPct": -35, "tDamPct": 15, "eDamPct": -35, "fixID": true, "id": 2625}, {"name": "Snowdrift", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-135", "fDam": "0-0", "wDam": "155-195", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "intReq": 30, "mr": 5, "sdPct": 20, "int": 8, "spd": -8, "wDamPct": 10, "wDefPct": 20, "fixID": true, "id": 2630}, {"name": "Snowflake", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 20, "aDef": 20, "lvl": 75, "intReq": 50, "mr": 5, "ms": 5, "hprRaw": -55, "type": "necklace", "fixID": true, "id": 2629}, {"name": "Thaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "45-60", "fDam": "20-30", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "intReq": 25, "defReq": 25, "mr": 5, "sdPct": 12, "ref": 15, "int": 7, "def": 4, "expd": 20, "fDefPct": -12, "fixID": true, "id": 2631}, {"name": "Spearmint", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "60-110", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 35, "sdPct": 8, "mdPct": 8, "agi": 10, "spd": 20, "aDamPct": 10, "aDefPct": 10, "fixID": true, "id": 2628}, {"name": "Splinter", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "FAST", "lvl": 45, "xpb": 15, "expd": 15, "spRegen": 15, "mdRaw": 59, "fixID": true, "id": 2632}, {"name": "The Hearth", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "175-225", "fDam": "125-165", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "defReq": 50, "hprPct": 25, "sdPct": -15, "ls": 580, "def": 5, "spRegen": 10, "hprRaw": 180, "wDamPct": -12, "fixID": true, "id": 2633}, {"name": "Warming Heart", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3000, "fDef": 140, "wDef": -250, "aDef": 110, "lvl": 90, "agiReq": 40, "defReq": 50, "hprPct": 25, "sdPct": 17, "ls": 255, "agi": 5, "def": 5, "fDefPct": 25, "fixID": true, "id": 2635}, {"name": "Wooly Cap", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "never", "hp": 575, "wDef": 40, "aDef": 30, "lvl": 45, "def": 10, "wDefPct": 15, "aDefPct": 20, "fixID": true, "id": 2637}, {"name": "Wishing Star", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "strReq": 50, "dexReq": 35, "ms": 5, "lb": 30, "dex": 5, "int": -7, "mdRaw": 70, "eDamPct": 30, "fixID": true, "id": 2636}, {"name": "White Craftmas", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "44-48", "fDam": "0-0", "wDam": "125-140", "aDam": "0-0", "tDam": "0-0", "eDam": "125-140", "atkSpd": "SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "lb": 15, "spd": -10, "wDamPct": 10, "eDamPct": 10, "wDefPct": 15, "aDefPct": 30, "eDefPct": 15, "fixID": true, "id": 2634}, {"name": "Poinsettia", "tier": "Rare", "type": "relik", "poison": 1000, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "60-75", "atkSpd": "FAST", "lvl": 65, "strReq": 30, "intReq": 30, "ms": -5, "str": 5, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 2640}, {"name": "Yuletide", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-40", "atkSpd": "SLOW", "lvl": 55, "defReq": 20, "mdPct": 15, "str": 6, "hpBonus": 150, "fDamPct": 15, "wDamPct": -5, "wDefPct": -10, "fixID": true, "id": 2639}, {"name": "Fuunyet", "tier": "Rare", "type": "spear", "quest": "Troubled Tribesmen", "poison": 1150, "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-225", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "80-100", "eDam": "80-100", "atkSpd": "VERY_SLOW", "lvl": 75, "strReq": 30, "dexReq": 30, "defReq": 30, "ls": 240, "xpb": 15, "str": 6, "dex": 6, "def": 6, "expd": 20, "fixID": true, "id": 2641}, {"name": "Kal Hei", "tier": "Rare", "type": "wand", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "20-30", "aDam": "20-30", "tDam": "0-0", "eDam": "20-30", "atkSpd": "FAST", "lvl": 75, "strReq": 30, "intReq": 30, "agiReq": 30, "mdPct": 30, "ms": 10, "xpb": 15, "str": 6, "int": 6, "agi": 6, "spd": 15, "fixID": true, "id": 2644}, {"name": "Hembwal", "tier": "Rare", "type": "chestplate", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 150, "wDef": -100, "aDef": -100, "tDef": 150, "eDef": 150, "lvl": 76, "strReq": 50, "dexReq": 50, "defReq": 50, "ms": 15, "int": -20, "agi": -20, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2645}, {"name": "Olit Vaniek", "tier": "Rare", "type": "bow", "quest": "Troubled Tribesmen", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-175", "fDam": "70-85", "wDam": "0-0", "aDam": "70-85", "tDam": "0-0", "eDam": "70-85", "atkSpd": "SLOW", "lvl": 75, "strReq": 30, "agiReq": 30, "defReq": 30, "xpb": 15, "str": 6, "agi": 6, "def": 6, "expd": 30, "hpBonus": 1000, "fixID": true, "id": 2647}, {"name": "Vei Haon", "tier": "Rare", "type": "boots", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2000, "fDef": 175, "wDef": -75, "aDef": 175, "tDef": -75, "eDef": 175, "lvl": 74, "strReq": 50, "agiReq": 50, "defReq": 50, "hprPct": 25, "dex": -20, "int": -20, "fDamPct": 15, "aDamPct": 15, "eDamPct": 15, "fDefPct": 40, "aDefPct": 40, "eDefPct": 40, "fixID": true, "id": 2649}, {"name": "Zawah Jed", "tier": "Rare", "type": "dagger", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "36-50", "fDam": "20-25", "wDam": "20-25", "aDam": "20-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "intReq": 30, "agiReq": 30, "defReq": 30, "mr": 15, "xpb": 15, "ref": 15, "int": 6, "agi": 6, "def": 6, "hprRaw": 115, "fixID": true, "id": 2646}, {"name": "Fruma Imported Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 28, "aDef": 3, "lvl": 9, "hprPct": 6, "spd": 4, "hprRaw": 2, "fixID": true, "id": 2650}, {"name": "Armored Culottes", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "never", "hp": 28, "fDef": 3, "lvl": 8, "def": 4, "spd": -4, "fixID": true, "id": 2652}, {"name": "Black Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-7", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 5, "dex": 3, "fixID": true, "id": 2653}, {"name": "Gavel Imported Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "sdPct": 5, "int": 2, "wDamPct": 3, "fixID": true, "id": 2651}, {"name": "Guard Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hpBonus": 15, "hprRaw": 3, "fixID": true, "id": 2654}, {"name": "Merchant Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 18, "lvl": 7, "lb": 7, "spd": 3, "fixID": true, "id": 2658}, {"name": "Jeweled Vestments", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 18, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 6, "xpb": 3, "lb": 8, "fixID": true, "id": 2655}, {"name": "Mail of the Berserker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 34, "wDef": -3, "lvl": 12, "mdPct": 5, "mdRaw": 13, "fixID": true, "id": 2657}, {"name": "Messenger Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 24, "lvl": 8, "lb": 5, "agi": 3, "spd": 6, "fixID": true, "id": 2656}, {"name": "Almuj Turban", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 60, "tDef": 4, "eDef": -4, "lvl": 14, "lb": 5, "dex": 3, "mdRaw": 10, "tDamPct": 8, "eDefPct": -8, "fixID": true, "id": 2648}, {"name": "Nemract Waders", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "wDef": 6, "tDef": -3, "lvl": 16, "sdPct": 5, "lb": 5, "int": 3, "wDamPct": 6, "tDefPct": -6, "fixID": true, "id": 2659}, {"name": "Slush Rush", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-68", "fDam": "0-0", "wDam": "74-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 75, "intReq": 40, "mr": -5, "agi": 5, "spd": 20, "sdRaw": 95, "wDefPct": 20, "aDefPct": 15, "fixID": true, "id": 2643}, {"name": "Pike of Fury", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 12, "dex": 1, "spd": 6, "mdRaw": 8, "fixID": true, "id": 2661}, {"name": "Nesaak Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 65, "fDef": -4, "aDef": 5, "lvl": 14, "xpb": 5, "agi": 3, "spd": 7, "aDamPct": 7, "fDefPct": -7, "fixID": true, "id": 2660}, {"name": "Puncturing Dirk", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdRaw": 6, "mdRaw": 5, "fixID": true, "id": 2664}, {"name": "Refined Longbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "xpb": 4, "dex": 2, "fixID": true, "id": 2663}, {"name": "Ragni Fatigues", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 76, "aDef": -4, "eDef": 5, "lvl": 15, "mdPct": 6, "xpb": 5, "str": 3, "eDamPct": 8, "aDefPct": -7, "fixID": true, "id": 2662}, {"name": "Reinforced Composite Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "60-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "def": 3, "spd": -4, "hpBonus": 25, "fixID": true, "id": 2665}, {"name": "Scout Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "xpb": 4, "agi": 3, "spd": 6, "fixID": true, "id": 2666}, {"name": "Spiritual Siphoner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-18", "fDam": "0-0", "wDam": "3-6", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "mr": 5, "xpb": 8, "spRegen": 10, "fixID": true, "id": 2670}, {"name": "Staff of Wisdom", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "hprPct": 8, "xpb": 6, "fixID": true, "id": 2667}, {"name": "Tromsian Survival Knife", "tier": "Rare", "type": "dagger", "thorns": 9, "category": "weapon", "slots": 1, "drop": "never", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-6", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 6, "str": 4, "fixID": true, "id": 2672}, {"name": "The Magician", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "2-5", "fDam": "0-0", "wDam": "7-10", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 5, "mdPct": -6, "int": 3, "wDamPct": 6, "fixID": true, "id": 2668}, {"name": "Windcatcher Totem", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-11", "fDam": "0-0", "wDam": "0-0", "aDam": "4-5", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "lb": 6, "spd": 10, "fixID": true, "id": 2674}, {"name": "Ashes", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 800, "wDef": -50, "aDef": -50, "lvl": 94, "defReq": 65, "hpBonus": 200, "wDefPct": -10, "aDefPct": -10, "type": "necklace", "fixID": true, "id": 2673}, {"name": "Cinders", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 675, "fDef": 50, "wDef": -70, "lvl": 93, "defReq": 55, "expd": 5, "fDamPct": 9, "wDefPct": -7, "type": "bracelet", "fixID": true, "id": 2675}, {"name": "War Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "sdPct": 3, "mdPct": 5, "str": 2, "hpBonus": -10, "fixID": true, "id": 2671}, {"name": "Pride", "tier": "Rare", "category": "accessory", "drop": "never", "eDef": 20, "lvl": 93, "strReq": 50, "mdPct": 8, "xpb": 5, "str": 5, "type": "bracelet", "fixID": true, "id": 2679}, {"name": "Evapar", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": -30, "wDef": 20, "aDef": 30, "lvl": 94, "agiReq": 60, "int": 3, "spd": 7, "wDamPct": 8, "aDamPct": 8, "type": "ring", "fixID": true, "id": 2698}, {"name": "Iron Will", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 95, "defReq": 75, "hprPct": 15, "sdPct": -5, "def": 4, "hprRaw": 50, "type": "ring", "fixID": true, "id": 2676}, {"name": "The Naturalist", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "20-24", "aDam": "0-0", "tDam": "0-0", "eDam": "24-28", "atkSpd": "SLOW", "lvl": 12, "sdPct": 7, "mdPct": 7, "int": 4, "hprRaw": 8, "fixID": true, "id": 2669}, {"name": "Tungsten", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 92, "dexReq": 40, "dex": 2, "mdRaw": 16, "tDamPct": 8, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 2677}, {"name": "Sparks", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 500, "fDef": 30, "wDef": -20, "lvl": 92, "defReq": 40, "fDamPct": 7, "wDamPct": -7, "type": "ring", "fixID": true, "id": 2678}, {"name": "Dujgon Warrior Hammer", "tier": "Legendary", "type": "spear", "quest": "Ice Nations", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "46-67", "atkSpd": "VERY_FAST", "lvl": 43, "strReq": 15, "dexReq": 5, "str": 6, "dex": 2, "hpBonus": -130, "eDamPct": 8, "fixID": true, "id": 2681}, {"name": "Greysmith", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "drop": "never", "hp": 400, "fDef": -60, "lvl": 43, "strReq": 10, "str": 3, "dex": 4, "tDamPct": 30, "eDamPct": 10, "fixID": true, "id": 2684}, {"name": "Dujgon Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "aDef": 20, "tDef": 10, "lvl": 41, "hprPct": 10, "mdPct": 10, "agi": 8, "eSteal": 10, "aDamPct": 10, "tDamPct": 10, "aDefPct": 20, "tDefPct": 20, "fixID": true, "id": 2680}, {"name": "Rusher", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "aDef": 10, "tDef": 10, "lvl": 40, "agiReq": 20, "agi": 5, "spd": 20, "aDamPct": 15, "tDamPct": 15, "fixID": true, "id": 2683}, {"name": "Antivenom", "tier": "Unique", "poison": -200, "category": "accessory", "drop": "never", "hp": 150, "lvl": 67, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2685}, {"name": "Viking Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "agiReq": 20, "sdPct": -10, "mdPct": 20, "hpBonus": -255, "aDamPct": 15, "eDamPct": 30, "fixID": true, "id": 2682}, {"name": "Cattail", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 10, "lvl": 70, "strReq": 15, "intReq": 10, "sdPct": 5, "mdPct": 5, "wDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2686}, {"name": "Boomslang", "tier": "Rare", "poison": 300, "category": "accessory", "drop": "never", "lvl": 71, "hprPct": -10, "str": 3, "hprRaw": -30, "type": "necklace", "fixID": true, "id": 2688}, {"name": "Glimmer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 67, "xpb": 8, "lb": 8, "tDamPct": 7, "type": "ring", "fixID": true, "id": 2690}, {"name": "Creepvine", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "never", "fDef": -15, "lvl": 69, "strReq": 25, "str": 3, "spd": -8, "eDamPct": 8, "type": "ring", "fixID": true, "id": 2687}, {"name": "Purity", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 5, "spRegen": 15, "type": "necklace", "fixID": true, "id": 2694}, {"name": "Affluence", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 92, "lb": 12, "eSteal": 8, "type": "necklace", "fixID": true, "id": 2691}, {"name": "Diamond Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 525, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 88, "defReq": 40, "lb": 5, "type": "bracelet", "fixID": true, "id": 2692}, {"name": "Growth", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 68, "strReq": 30, "xpb": 4, "str": 4, "dex": 1, "int": 1, "agi": 1, "def": 1, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2689}, {"name": "Emerald Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 89, "lb": 20, "type": "necklace", "fixID": true, "id": 2695}, {"name": "Jewelled Broach", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 90, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2693}, {"name": "Silversplint", "tier": "Rare", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 89, "agiReq": 35, "lb": 5, "ref": 11, "aDamPct": 8, "aDefPct": 5, "type": "bracelet", "fixID": true, "id": 2696}, {"name": "Foehn Wind", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-68", "fDam": "56-72", "wDam": "0-0", "aDam": "52-76", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 41, "agiReq": 14, "defReq": 14, "xpb": 14, "lb": 14, "spRegen": 14, "fDamPct": 14, "aDamPct": 14, "fDefPct": 14, "wDefPct": -28, "aDefPct": 14, "fixID": true, "id": 2700}, {"name": "Decay Burner", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "114-194", "fDam": "469-686", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 62, "defReq": 25, "sdPct": 10, "ms": 5, "expd": 15, "fDamPct": 10, "wDefPct": -12, "fixID": true, "id": 2702}, {"name": "Value", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 91, "xpb": 10, "lb": 15, "type": "bracelet", "fixID": true, "id": 2699}, {"name": "Barkgraft", "tier": "Unique", "type": "relik", "poison": 400, "thorns": 25, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-85", "fDam": "0-0", "wDam": "0-0", "aDam": "160-180", "tDam": "0-0", "eDam": "160-180", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 25, "agiReq": 25, "str": 5, "agi": 5, "spd": -15, "mdRaw": 145, "fDefPct": -50, "fixID": true, "id": 2697}, {"name": "Grave Digger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-90", "atkSpd": "SLOW", "lvl": 61, "strReq": 25, "ls": 145, "lb": 8, "str": 4, "eSteal": 2, "wDamPct": -7, "eDefPct": 5, "fixID": true, "id": 2705}, {"name": "Stringhollow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "agiReq": 20, "ref": 8, "agi": 4, "spd": 12, "hpBonus": -100, "sdRaw": 60, "aDefPct": 8, "fixID": true, "id": 2708}, {"name": "Kerasot Spreader", "tier": "Unique", "type": "spear", "poison": 1000, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "int": -4, "expd": 6, "spd": 6, "fixID": true, "id": 2704}, {"name": "Lookout", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 790, "aDef": 30, "eDef": 30, "lvl": 59, "agiReq": 25, "mdPct": -5, "xpb": 10, "agi": 6, "spd": 12, "aDamPct": 6, "fixID": true, "id": 2701}, {"name": "Searchlight", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "39-56", "fDam": "21-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "defReq": 20, "sdPct": 10, "ref": 8, "dex": 3, "def": 4, "tDamPct": 12, "fixID": true, "id": 2709}, {"name": "The Silent", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 900, "fDef": 40, "wDef": 40, "tDef": -60, "lvl": 62, "intReq": 25, "mr": 5, "sdPct": 12, "mdPct": -8, "xpb": 12, "spd": -8, "sdRaw": 40, "fixID": true, "id": 2707}, {"name": "Vampire Blocker", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "drop": "never", "hp": 1100, "eDef": -25, "lvl": 64, "defReq": 20, "ls": 105, "ref": 5, "def": 4, "fixID": true, "id": 2706}, {"name": "Lycanthropy", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "44-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 35, "int": -6, "hprRaw": -188, "mdRaw": 65, "tDamPct": 24, "wDefPct": -18, "aDefPct": -18, "fixID": true, "id": 2703}, {"name": "Wolf Tagger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "205-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "dexReq": 10, "sdPct": 6, "mdPct": 8, "xpb": 10, "dex": 4, "fixID": true, "id": 2785}, {"name": "Wildfire", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 65, "wDef": -60, "lvl": 60, "defReq": 35, "sdPct": 8, "mdPct": 12, "expd": 7, "sdRaw": 70, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2710}, {"name": "Crystal-Blend Pendant", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 34, "mr": 5, "sdPct": -5, "sdRaw": -15, "type": "necklace", "fixID": true, "id": 2716}, {"name": "Werepelt", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 975, "fDef": -30, "lvl": 61, "sdPct": -18, "mdPct": 15, "spd": 6, "sdRaw": -80, "mdRaw": 105, "fixID": true, "id": 2711}, {"name": "Blood-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "poison": 60, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "type": "necklace", "fixID": true, "id": 2726}, {"name": "Emerald-Tinted Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 31, "xpb": 4, "lb": 8, "type": "necklace", "fixID": true, "id": 2714}, {"name": "Plain Glass Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "lvl": 31, "xpb": 7, "type": "necklace", "fixID": true, "id": 2713}, {"name": "Marrow-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "ls": 10, "type": "necklace", "fixID": true, "id": 2712}, {"name": "Scarab-Shelled Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2715}, {"name": "Sting-Glass Necklace", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -60, "lvl": 37, "sdPct": 5, "mdPct": 5, "sdRaw": 15, "mdRaw": 16, "type": "necklace", "fixID": true, "id": 2718}, {"name": "Goblin Arm Bracer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 75, "lvl": 43, "mdPct": 4, "lb": 9, "def": 4, "type": "bracelet", "fixID": true, "id": 2719}, {"name": "Webbed Glass Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "spd": 10, "type": "necklace", "fixID": true, "id": 2720}, {"name": "Goblin Cloak", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 470, "aDef": -20, "lvl": 45, "strReq": 30, "dexReq": 30, "ls": 33, "ms": 5, "lb": 15, "fixID": true, "id": 2725, "set": "Goblin"}, {"name": "Goblin Hex Focus", "tier": "Rare", "poison": 65, "category": "accessory", "drop": "never", "hp": -70, "lvl": 42, "sdPct": 6, "fDamPct": 3, "wDamPct": 3, "aDamPct": 3, "tDamPct": 3, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2717}, {"name": "Goblin Hood", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 380, "aDef": -10, "lvl": 41, "strReq": 25, "dexReq": 10, "sdPct": -7, "ls": 27, "lb": 10, "spd": 8, "fixID": true, "id": 2721, "set": "Goblin"}, {"name": "Goblin Luck Charm", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 43, "lb": 12, "spRegen": 7, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2722}, {"name": "Goblin-Silver Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 30, "fDef": 6, "wDef": 6, "aDef": 6, "tDef": 6, "eDef": 6, "lvl": 40, "xpb": 4, "lb": 8, "type": "ring", "fixID": true, "id": 2723}, {"name": "Short Cutter", "tier": "Rare", "type": "dagger", "poison": 215, "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 20, "ls": 46, "xpb": 8, "lb": 15, "dex": 5, "spd": 12, "mdRaw": 33, "fixID": true, "id": 2727}, {"name": "Goblin Runners", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "lvl": 43, "strReq": 10, "dexReq": 25, "mdPct": -7, "ms": 5, "lb": 10, "spd": 12, "fixID": true, "id": 2724, "set": "Goblin"}, {"name": "Silver Short Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "strReq": 20, "mdPct": 8, "xpb": 8, "lb": 15, "str": 4, "eSteal": 3, "fixID": true, "id": 2740}, {"name": "Quartz Driller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-35", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 39, "dexReq": 10, "xpb": 6, "lb": 6, "str": 3, "dex": 3, "mdRaw": 46, "fixID": true, "id": 2728}, {"name": "Hue", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-20", "fDam": "17-20", "wDam": "17-20", "aDam": "17-20", "tDam": "17-20", "eDam": "17-20", "atkSpd": "SLOW", "lvl": 39, "strReq": 9, "dexReq": 9, "intReq": 9, "agiReq": 9, "defReq": 9, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "fixID": true, "id": 2731}, {"name": "Hotline", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "36-42", "fDam": "36-42", "wDam": "0-0", "aDam": "0-0", "tDam": "36-42", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "dexReq": 15, "defReq": 15, "ls": 34, "xpb": 8, "dex": 7, "def": 7, "spd": 8, "hprRaw": -17, "fixID": true, "id": 2729}, {"name": "Orc Slasher", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "11-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "hprPct": 10, "mdPct": 5, "spd": 3, "fixID": true, "id": 2730}, {"name": "Deark", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "wDef": -30, "lvl": 76, "dexReq": 50, "dex": 2, "spRegen": -10, "mdRaw": 43, "tDamPct": 8, "tDefPct": 6, "type": "ring", "fixID": true, "id": 2732}, {"name": "Diminished", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 73, "sdPct": 7, "mdPct": 7, "ms": 5, "xpb": -8, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spd": 8, "hpBonus": 300, "type": "ring", "fixID": true, "id": 2734}, {"name": "Fanatic", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 72, "sdPct": 8, "int": -5, "sdRaw": 40, "type": "bracelet", "fixID": true, "id": 2736}, {"name": "Scum", "tier": "Unique", "quest": "Eye of the Storm", "poison": 250, "category": "accessory", "drop": "never", "wDef": 20, "lvl": 74, "intReq": 30, "wDamPct": 7, "type": "ring", "fixID": true, "id": 2737}, {"name": "Famine", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "eDef": -20, "lvl": 75, "agiReq": 40, "ls": 50, "str": -3, "spd": 12, "hprRaw": -20, "type": "ring", "fixID": true, "id": 2733}, {"name": "Destrortur", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": -480, "fDef": -10, "wDef": -5, "aDef": -10, "eDef": -20, "lvl": 76, "dexReq": 50, "hprPct": -24, "dex": 4, "hprRaw": -48, "sdRaw": 45, "mdRaw": 29, "tDamPct": 16, "type": "bracelet", "fixID": true, "id": 2735}, {"name": "Recovery", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": 140, "lvl": 72, "hprPct": 8, "spd": -5, "hprRaw": 40, "type": "ring", "fixID": true, "id": 2739}, {"name": "Blessing", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "12-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 4, "spd": 6, "fDamPct": -10, "fixID": true, "id": 2738}, {"name": "Sacred", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 305, "wDef": 15, "aDef": 10, "lvl": 40, "intReq": 15, "agiReq": 10, "mr": 5, "xpb": 6, "agi": 3, "wDamPct": 5, "aDamPct": 5, "fixID": true, "id": 2744}, {"name": "Traitor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-55", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "defReq": 10, "hprPct": 10, "agi": 2, "def": 3, "spd": 5, "fDamPct": -10, "aDamPct": 15, "fixID": true, "id": 2741}, {"name": "Black Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "category": "armor", "drop": "never", "hp": 100, "lvl": 18, "ls": 8, "lb": 10, "eSteal": 2, "tDamPct": 10, "fixID": true, "id": 2746}, {"name": "Stonebreaker", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "sdPct": -5, "lb": 5, "str": 1, "wDamPct": -15, "fixID": true, "id": 2743}, {"name": "Bush Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc5NWVkZWViNmI3ZWQ0MWMyNjhjZWZlYWZiZTk2MGI3YzQ5NTUwZGFlYjYzMWI1NjE1NmJmNWZlYjk4NDcifX19", "thorns": 8, "category": "armor", "drop": "never", "hp": 55, "fDef": -10, "eDef": 10, "lvl": 16, "str": 4, "spd": 8, "fixID": true, "id": 2745}, {"name": "Metal Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmJhODQ1OTE0NWQ4M2ZmYzQ0YWQ1OGMzMjYwZTc0Y2E1YTBmNjM0YzdlZWI1OWExYWQzMjM0ODQ5YzkzM2MifX19", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "lvl": 16, "def": 7, "fixID": true, "id": 2747}, {"name": "Ice Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTZhYWI1OGZhMDFmY2U5YWY0NjllZDc0N2FlZDgxMWQ3YmExOGM0NzZmNWE3ZjkwODhlMTI5YzMxYjQ1ZjMifX19", "category": "armor", "drop": "never", "hp": 60, "fDef": -8, "aDef": 12, "lvl": 17, "ms": 5, "ref": 12, "mdRaw": 20, "aDamPct": 10, "fixID": true, "id": 2748}, {"name": "Water Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWM3ZWNiZmQ2ZDMzZTg3M2ExY2Y5YTkyZjU3ZjE0NjE1MmI1MmQ5ZDczMTE2OTQ2MDI2NzExMTFhMzAyZiJ9fX0=", "category": "armor", "drop": "never", "hp": -25, "wDef": 10, "lvl": 17, "mr": 5, "sdPct": 10, "int": 5, "wDamPct": 10, "fixID": true, "id": 2750}, {"name": "Mud Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWVhNmY5MzJiNDVmZGYzYjY5M2Q5ZTQ0YmQwNWJjYTM2NGViNWI5YWZmNDk3MjI2ZmRiNTJhYmIyNDM2NDIyIn19fQ==", "poison": 15, "category": "armor", "drop": "never", "hp": 65, "wDef": 5, "aDef": -10, "eDef": 5, "lvl": 16, "sdPct": 6, "mdPct": 6, "spd": -8, "fixID": true, "id": 2749}, {"name": "Shiny Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjVkN2JlZDhkZjcxNGNlYTA2M2U0NTdiYTVlODc5MzExNDFkZTI5M2RkMWQ5YjkxNDZiMGY1YWIzODM4NjYifX19", "category": "armor", "drop": "never", "hp": 50, "lvl": 15, "xpb": 15, "spRegen": 5, "sdRaw": 10, "fixID": true, "id": 2751}, {"name": "Solid Quartz Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 360, "lvl": 43, "defReq": 20, "hprPct": 10, "def": 5, "hprRaw": 20, "fixID": true, "id": 2742}, {"name": "Rock Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDU0ZDljNDg4YzNmYmRlNTQ1NGUzODYxOWY5Y2M1YjViYThjNmMwMTg2ZjhhYTFkYTYwOTAwZmNiYzNlYTYifX19", "category": "armor", "drop": "never", "hp": 60, "eDef": 5, "lvl": 15, "sdPct": -5, "mdPct": 10, "str": 3, "eDamPct": 5, "fixID": true, "id": 2752}, {"name": "Cracheur", "tier": "Unique", "type": "bow", "thorns": 4, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-14", "fDam": "0-0", "wDam": "12-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "intReq": 14, "sdPct": 6, "int": 2, "aDamPct": 4, "fixID": true, "id": 2753}, {"name": "Arcanic", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 70, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 21, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fixID": true, "id": 2756}, {"name": "Fisher's Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 82, "wDef": 4, "lvl": 22, "hprPct": 8, "xpb": 4, "lb": 8, "dex": 2, "fixID": true, "id": 2755}, {"name": "Foundation", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 90, "eDef": 3, "lvl": 20, "mdPct": 5, "def": 2, "eDamPct": 6, "fixID": true, "id": 2754}, {"name": "Frog", "tier": "Unique", "type": "bow", "poison": 45, "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "4-10", "aDam": "0-0", "tDam": "0-0", "eDam": "6-12", "atkSpd": "NORMAL", "lvl": 19, "strReq": 12, "intReq": 8, "sdPct": -5, "mdPct": -5, "agi": 3, "fixID": true, "id": 2758}, {"name": "Memorial", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 100, "lvl": 19, "intReq": 5, "ms": 5, "spRegen": 10, "fixID": true, "id": 2759}, {"name": "Remembrance", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-23", "fDam": "0-0", "wDam": "0-0", "aDam": "13-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "agiReq": 8, "ref": 8, "spRegen": 10, "aDefPct": 10, "fixID": true, "spPct1": -17, "id": 2763}, {"name": "Shajone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 85, "lvl": 18, "hprRaw": 5, "sdRaw": 5, "mdRaw": 7, "fixID": true, "id": 2757}, {"name": "White Ghost", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-24", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "agiReq": 15, "ms": 5, "agi": 4, "spd": 5, "fixID": true, "id": 2765}, {"name": "Swamp Treads", "tier": "Unique", "type": "boots", "poison": 35, "thorns": 7, "category": "armor", "slots": 1, "drop": "never", "hp": 105, "lvl": 23, "spd": -3, "eSteal": 2, "fixID": true, "id": 2762}, {"name": "The Fallen", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-10", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 23, "xpb": 6, "def": 3, "hpBonus": 50, "fixID": true, "id": 2761}, {"name": "Bob's Sacrifice", "tier": "Unique", "type": "boots", "thorns": 10, "category": "armor", "slots": 1, "drop": "never", "hp": 290, "tDef": -25, "lvl": 45, "strReq": 10, "mdPct": 23, "str": 3, "spd": -6, "mdRaw": -13, "fixID": true, "id": 2764}, {"name": "Celsius", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "11-17", "fDam": "0-0", "wDam": "20-28", "aDam": "18-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "intReq": 20, "agiReq": 15, "ref": 8, "spd": -4, "fDamPct": -20, "wDamPct": 10, "aDamPct": 10, "fixID": true, "id": 2767}, {"name": "Current", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-30", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "xpb": 6, "spd": 5, "sdRaw": 35, "wDamPct": 10, "fixID": true, "id": 2766}, {"name": "Nilrem's Curse", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 310, "wDef": 10, "tDef": 15, "lvl": 40, "dexReq": 15, "xpb": 6, "hprRaw": -15, "sdRaw": 35, "mdRaw": 39, "fixID": true, "id": 2770}, {"name": "Frozen Earth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "34-63", "fDam": "0-0", "wDam": "46-69", "aDam": "0-0", "tDam": "0-0", "eDam": "137-194", "atkSpd": "SUPER_SLOW", "lvl": 40, "strReq": 25, "intReq": 5, "mr": 5, "str": 5, "int": 2, "spd": -7, "aDamPct": 12, "fixID": true, "id": 2769}, {"name": "Homemade Fur Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 375, "fDef": -30, "aDef": 30, "lvl": 44, "agiReq": 15, "hprPct": 15, "agi": 2, "spd": 5, "aDamPct": 7, "aDefPct": 6, "fixID": true, "id": 2768}, {"name": "Summer", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "27-38", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "defReq": 10, "hpBonus": 200, "fDamPct": 8, "eDamPct": 8, "fDefPct": 6, "fixID": true, "id": 2771}, {"name": "Seedling", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "xpb": 4, "str": 2, "type": "necklace", "fixID": true, "id": 2772}, {"name": "Woljawh", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 425, "lvl": 37, "hprPct": 10, "ls": 26, "hprRaw": 20, "fixID": true, "id": 2773}, {"name": "Frankenstein", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-12", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "dexReq": 5, "hprPct": -5, "str": 3, "tDamPct": 7, "eDamPct": 7, "fixID": true, "id": 2760}, {"name": "Flaming War Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-46", "fDam": "50-68", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 5, "def": 5, "hpBonus": 350, "fDamPct": 15, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2776}, {"name": "Tree Bracelet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "hprPct": 6, "type": "bracelet", "fixID": true, "id": 2777}, {"name": "Vine", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 4, "mdPct": 5, "type": "ring", "fixID": true, "id": 2774}, {"name": "Nodguj Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 20, "eDef": 10, "lvl": 41, "hprPct": 25, "mdPct": 5, "def": 8, "eSteal": 10, "fDamPct": 10, "eDamPct": 10, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2775}, {"name": "Shield", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 250, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 40, "defReq": 20, "def": 15, "hprRaw": 20, "fixID": true, "id": 2778}, {"name": "Nodguj Warrior Sword", "tier": "Legendary", "type": "dagger", "quest": "Ice Nations", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "45-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 43, "intReq": 10, "mr": 5, "sdPct": 15, "int": 5, "hpBonus": -200, "wDamPct": 20, "fixID": true, "id": 2779}, {"name": "Strategist", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "lvl": 43, "intReq": 15, "mr": -15, "sdPct": 25, "int": 4, "sdRaw": 40, "wDamPct": 30, "fixID": true, "id": 2781}, {"name": "Chasseur", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 20, "agiReq": 20, "sdPct": -10, "str": 3, "agi": 2, "spd": 6, "aDamPct": 7, "fixID": true, "id": 2780}, {"name": "Longtail Boots", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 600, "lvl": 51, "hprPct": 20, "spd": 14, "fixID": true, "id": 2784}, {"name": "Rotten Swamp", "tier": "Unique", "type": "wand", "poison": 600, "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "SLOW", "lvl": 54, "strReq": 28, "hprPct": -16, "sdPct": 5, "wDamPct": 10, "fixID": true, "id": 2782}, {"name": "Stagnant", "tier": "Rare", "type": "helmet", "poison": 230, "category": "armor", "slots": 2, "drop": "never", "hp": 370, "wDef": 40, "lvl": 49, "intReq": 15, "hprPct": -15, "wDamPct": 10, "eDamPct": 7, "fixID": true, "id": 2786}, {"name": "Waxed Overalls", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 675, "fDef": -45, "wDef": 45, "lvl": 54, "ref": 6, "agi": 4, "spd": 4, "wDefPct": 20, "fixID": true, "id": 2801}, {"name": "Vine Machete", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "40-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "agiReq": 20, "mdPct": 12, "spd": 8, "fDamPct": 12, "eDefPct": 10, "fixID": true, "id": 2783}, {"name": "Captain's Razor", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-50", "fDam": "0-0", "wDam": "6-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 61, "dexReq": 5, "dex": 7, "mdRaw": 47, "wDamPct": 16, "tDamPct": 10, "fixID": true, "id": 2787}, {"name": "Opium", "tier": "Rare", "type": "helmet", "poison": 405, "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "lvl": 63, "xpb": 10, "spd": -10, "fDamPct": 10, "fixID": true, "id": 2788}, {"name": "Pirate Luck", "tier": "Legendary", "type": "boots", "quest": "Beneath The Depths", "category": "armor", "slots": 2, "drop": "never", "hp": 320, "wDef": 60, "lvl": 60, "xpb": 7, "lb": 32, "eSteal": 12, "fixID": true, "id": 2789}, {"name": "Battle Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 20, "lvl": 7, "hprPct": 7, "str": 3, "fixID": true, "id": 2791}, {"name": "Rusty Sword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "60-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 10, "mdPct": 15, "str": 3, "eDamPct": 15, "fixID": true, "id": 2790}, {"name": "Plains Runner", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 8, "lvl": 1, "agi": 2, "fixID": true, "id": 2792}, {"name": "Corkuff", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 87, "intReq": 15, "agiReq": 15, "int": 3, "spd": 6, "wDamPct": 6, "aDamPct": 8, "type": "bracelet", "fixID": true, "id": 2795}, {"name": "Coolant", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 86, "wDamPct": 5, "fDefPct": 8, "wDefPct": 6, "type": "ring", "fixID": true, "id": 2796}, {"name": "Solidified Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 14, "lvl": 4, "xpb": 5, "def": 2, "fixID": true, "id": 2794}, {"name": "Microchip", "tier": "Unique", "category": "accessory", "drop": "never", "tDef": -40, "lvl": 85, "dexReq": 35, "dex": 1, "mdRaw": 17, "tDamPct": 8, "type": "ring", "fixID": true, "id": 2799}, {"name": "Doodad", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "never", "lvl": 87, "xpb": 4, "lb": 4, "ref": 4, "expd": 4, "spd": 4, "spRegen": 4, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2793}, {"name": "Ashen Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "fDef": 70, "aDef": -120, "tDef": 50, "lvl": 92, "dexReq": 40, "defReq": 45, "sdPct": 14, "ms": 10, "ref": -10, "agi": 5, "def": 5, "expd": 12, "fDamPct": 14, "aDamPct": 22, "tDamPct": 14, "fixID": true, "id": 2797}, {"name": "Wristviewer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 86, "sdPct": 4, "xpb": 9, "fDamPct": 4, "wDamPct": 4, "aDamPct": 4, "tDamPct": 4, "eDamPct": 4, "type": "bracelet", "fixID": true, "id": 2800}, {"name": "Quicksilver", "tier": "Rare", "poison": 375, "category": "accessory", "drop": "never", "hp": -600, "aDef": 20, "lvl": 88, "agiReq": 30, "agi": 2, "spd": 10, "type": "necklace", "fixID": true, "id": 2798}, {"name": "Bane of War", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-130", "fDam": "0-0", "wDam": "30-45", "aDam": "20-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 40, "agiReq": 35, "mr": 5, "sdPct": 20, "mdPct": -15, "int": 5, "agi": 5, "spRegen": 10, "mdRaw": -75, "fixID": true, "id": 2802}, {"name": "Comrade", "tier": "Rare", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-215", "fDam": "60-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "defReq": 50, "sdPct": -12, "def": 7, "hpBonus": 2250, "hprRaw": 180, "fDefPct": 20, "eDefPct": -15, "fixID": true, "id": 2807}, {"name": "Diamond Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "56-97", "fDam": "0-0", "wDam": "53-74", "aDam": "53-74", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 35, "agiReq": 35, "hprPct": 20, "mr": 5, "ref": 12, "spd": 12, "fDamPct": -10, "wDefPct": 12, "aDefPct": 12, "fixID": true, "id": 2804}, {"name": "Darkiron Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3275, "fDef": 150, "wDef": -80, "lvl": 90, "defReq": 65, "hprPct": 15, "dex": 10, "def": 5, "spd": -10, "atkTier": -4, "hprRaw": 160, "mdRaw": 850, "fDefPct": 40, "fixID": true, "id": 2803}, {"name": "Eradian Full Helm", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 2500, "fDef": 80, "wDef": 80, "tDef": -60, "eDef": -60, "lvl": 90, "defReq": 50, "hprPct": 15, "sdPct": 20, "mdPct": 20, "ref": 10, "def": 8, "fDamPct": 5, "fixID": true, "id": 2808}, {"name": "Icejewel", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-95", "fDam": "0-0", "wDam": "35-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 55, "ref": 27, "int": 8, "spd": -8, "wDamPct": 20, "wDefPct": 25, "aDefPct": -20, "fixID": true, "id": 2809}, {"name": "Fulminate Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "80-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "defReq": 50, "mdPct": 12, "def": 6, "expd": 25, "hpBonus": 1000, "fDamPct": 15, "eDefPct": -15, "fixID": true, "id": 2805}, {"name": "Low World Greaves", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2350, "wDef": 80, "aDef": -80, "eDef": 120, "lvl": 90, "strReq": 30, "intReq": 30, "sdPct": 18, "mdPct": 18, "eSteal": 6, "wDamPct": 12, "eDamPct": 12, "wDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2806}, {"name": "Magma Flinger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-345", "fDam": "0-445", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "strReq": 40, "defReq": 25, "mdPct": 14, "def": 6, "sdRaw": -95, "mdRaw": 280, "fDamPct": 10, "eDamPct": 30, "wDefPct": -25, "fixID": true, "id": 2812}, {"name": "Mercurial Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2625, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2811}, {"name": "Ramhoof", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "fDef": -90, "lvl": 93, "strReq": 30, "agiReq": 25, "mdPct": 7, "ls": 190, "def": 7, "spd": 15, "mdRaw": 180, "fixID": true, "id": 2816}, {"name": "Mountain's Song", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "510-550", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "510-550", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 40, "defReq": 40, "mdPct": 15, "expd": 25, "hpBonus": 1000, "fixID": true, "spPct1": 35, "spPct4": -21, "id": 2810}, {"name": "Odin", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-51", "fDam": "0-0", "wDam": "0-0", "aDam": "40-88", "tDam": "40-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 35, "agiReq": 35, "sdPct": 8, "mdPct": 10, "dex": 6, "agi": 4, "aDamPct": 12, "tDamPct": 8, "eDamPct": -30, "fixID": true, "id": 2813}, {"name": "Rodoroc's Guard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 3500, "fDef": 100, "aDef": 100, "lvl": 94, "agiReq": 35, "defReq": 35, "sdPct": -10, "mdPct": -8, "str": 10, "agi": 10, "def": 10, "spd": 10, "mdRaw": 195, "fDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2818}, {"name": "Ornamental Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2250, "wDef": 100, "lvl": 91, "intReq": 50, "mr": 10, "sdPct": 12, "xpb": 15, "int": 5, "sdRaw": 190, "fixID": true, "id": 2814}, {"name": "Siege Ram", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-110", "atkSpd": "SLOW", "lvl": 90, "strReq": 40, "sdPct": -15, "mdPct": 20, "lb": 10, "str": 6, "fixID": true, "id": 2815}, {"name": "Stricken Bolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "325-1015", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 35, "ms": 5, "mdRaw": 810, "tDamPct": 25, "wDefPct": -10, "fixID": true, "id": 2822}, {"name": "Vulcamail Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2450, "fDef": 100, "tDef": -100, "eDef": 100, "lvl": 89, "strReq": 40, "defReq": 35, "hprPct": 20, "ls": 220, "ms": 10, "def": 6, "spd": -7, "hpBonus": 600, "wDefPct": 15, "aDefPct": 15, "fixID": true, "id": 2819}, {"name": "Broken Sandust", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 37, "dexReq": 15, "dex": 2, "spd": 1, "tDamPct": 1, "type": "ring", "fixID": true, "id": 2823}, {"name": "Sekaisin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-100", "fDam": "0-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "dexReq": 40, "defReq": 25, "hprPct": -20, "ls": 260, "dex": 10, "hpBonus": -1100, "tDamPct": 60, "fixID": true, "id": 2817}, {"name": "Enhanced Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "fDef": -15, "tDef": -18, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 3, "ref": 2, "fDamPct": 4, "tDamPct": 8, "fixID": true, "id": 2824}, {"name": "Chipped Glitz", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 34, "sdPct": -2, "lb": 4, "type": "ring", "fixID": true, "id": 2820}, {"name": "Enhanced Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "fDef": 15, "wDef": -25, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 1, "def": 1, "expd": 3, "spd": -7, "hpBonus": 20, "fixID": true, "id": 2825}, {"name": "Enhanced DuskShield", "displayName": "Enhanced Duskshield", "tier": "Unique", "type": "leggings", "thorns": 3, "category": "armor", "slots": 2, "drop": "never", "hp": 460, "wDef": 10, "tDef": 10, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -8, "ref": 3, "fDamPct": -12, "eDamPct": -12, "fixID": true, "id": 2826}, {"name": "Cracked Stonehall", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 35, "strReq": 15, "str": 1, "spd": -4, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2830}, {"name": "Enhanced Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 8, "dex": 3, "agi": 2, "def": -7, "eSteal": 5, "fixID": true, "id": 2827}, {"name": "Upgraded Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "13-14", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 2, "int": -1, "agi": 2, "mdRaw": -26, "tDamPct": -14, "tDefPct": 4, "fixID": true, "id": 2828}, {"name": "Upgraded Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "38-56", "fDam": "17-22", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 4, "mr": 5, "spRegen": -5, "fixID": true, "id": 2829}, {"name": "Upgraded Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 4, "eDefPct": -10, "fixID": true, "id": 2831}, {"name": "Upgraded Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "39-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 4, "expd": 3, "spd": -12, "aDamPct": -9, "eDamPct": 5, "fixID": true, "id": 2834}, {"name": "Upgraded Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "24-36", "fDam": "0-0", "wDam": "0-0", "aDam": "13-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 3, "agi": 1, "spd": 3, "aDamPct": 2, "fixID": true, "id": 2837}, {"name": "Backstaff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "14-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-10", "atkSpd": "NORMAL", "lvl": 25, "str": 3, "hpBonus": 60, "mdRaw": 16, "eDefPct": 10, "fixID": true, "id": 2835}, {"name": "Used Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 4, "eDef": 4, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 2, "spd": 3, "aDamPct": 2, "eDamPct": 2, "type": "bracelet", "fixID": true, "id": 2832}, {"name": "Diving Boots II", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 750, "wDef": 65, "tDef": -50, "lvl": 55, "spd": 10, "wDefPct": 15, "id": 2833}, {"name": "Eel Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "9-13", "fDam": "0-0", "wDam": "6-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 10, "xpb": 6, "spd": 5, "sdRaw": 24, "fixID": true, "id": 2841}, {"name": "Diving Boots III", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "hp": 1350, "wDef": 90, "tDef": -75, "lvl": 70, "spd": 15, "wDefPct": 20, "id": 2836}, {"name": "Diving Boots I", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 300, "wDef": 30, "tDef": -30, "lvl": 40, "spd": 5, "wDefPct": 10, "id": 2843}, {"name": "Fishing Hook", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "2-6", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "dexReq": 5, "intReq": 5, "xpb": 5, "spd": 6, "tDamPct": 6, "fixID": true, "id": 2840}, {"name": "Harpoon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "74-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 23, "sdPct": 8, "mdPct": 4, "dex": 3, "spd": -5, "tDefPct": -7, "fixID": true, "id": 2838}, {"name": "Mage-Crafted Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "12-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "intReq": 10, "defReq": 5, "hprPct": 12, "mdPct": -20, "ref": 5, "int": 4, "wDamPct": 15, "fixID": true, "id": 2839}, {"name": "Sea Legs", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "never", "hp": 180, "wDef": 8, "tDef": -6, "lvl": 28, "intReq": 20, "mr": 5, "mdPct": -8, "int": 3, "wDamPct": 8, "fixID": true, "id": 2846}, {"name": "Portable Buoys", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 130, "wDef": 7, "lvl": 25, "ref": 9, "spd": 4, "wDefPct": 12, "fixID": true, "id": 2845}, {"name": "Seafarer's Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "wDef": 7, "aDef": 5, "lvl": 26, "sdPct": 4, "lb": 6, "fixID": true, "id": 2848}, {"name": "Selchar's Famous Breeches", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 125, "lvl": 25, "sdPct": 5, "mdPct": 7, "xpb": 7, "lb": 5, "fixID": true, "id": 2842}, {"name": "The Saltwater Rune", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 8, "intReq": 12, "sdPct": -12, "wDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw3": -10, "id": 2847}, {"name": "The Crow's Nest", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "tDef": 5, "eDef": -3, "lvl": 27, "dexReq": 12, "xpb": 4, "dex": 5, "tDamPct": 7, "fixID": true, "id": 2844}, {"name": "Advancement", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 255, "lvl": 29, "ms": 10, "xpb": 10, "spRegen": 5, "fixID": true, "id": 3564}, {"name": "Tricorne", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 115, "lvl": 24, "lb": 7, "agi": 1, "spd": 7, "hprRaw": 5, "fixID": true, "id": 2850}, {"name": "Tearing Seam", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-26", "fDam": "17-23", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-29", "atkSpd": "FAST", "lvl": 43, "strReq": 16, "defReq": 16, "ls": 33, "xpb": 7, "dex": -7, "int": -7, "agi": -7, "hpBonus": 150, "mdRaw": 43, "fixID": true, "id": 2851}, {"name": "Dilation", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 31, "xpb": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 3633}, {"name": "Diminution", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 320, "lvl": 33, "lb": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 3565}, {"name": "Hourslip", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "aDef": 12, "lvl": 32, "lb": 15, "spd": 30, "fixID": true, "id": 3567}, {"name": "Intuition", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "sdRaw": 12, "type": "bracelet", "fixID": true, "id": 3566}, {"name": "Longevity", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "hprRaw": 15, "type": "necklace", "fixID": true, "id": 3568}, {"name": "Practice", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "mdRaw": 16, "type": "bracelet", "fixID": true, "id": 3570}, {"name": "Reversion", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "lvl": 31, "ls": 32, "lb": 10, "eSteal": 5, "fixID": true, "id": 3572}, {"name": "Secondsaver", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 270, "lvl": 30, "mdPct": -25, "xpb": 15, "atkTier": 1, "fixID": true, "id": 3573}, {"name": "Seal Breaker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 335, "lvl": 34, "sdPct": 25, "xpb": 15, "fixID": true, "id": 3569}, {"name": "Slainte", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 30, "xpb": 5, "lb": 5, "spRegen": 10, "type": "necklace", "fixID": true, "id": 3571}, {"name": "Tempo Totem", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "86-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3632}, {"name": "Tempo Tanto", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "56-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3574}, {"name": "Tempo Ticker", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3634}, {"name": "Tempo Trebuchet", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "115-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3590}, {"name": "Tempo Trident", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3639}, {"name": "Timelocked Breath", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "agi": 3, "aDamPct": 5, "type": "ring", "fixID": true, "id": 3635}, {"name": "Timelocked Coal", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "def": 3, "fDamPct": 5, "type": "ring", "fixID": true, "id": 3636}, {"name": "Timelocked Dew", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "int": 3, "wDamPct": 5, "type": "ring", "fixID": true, "id": 3638}, {"name": "Timelocked Spark", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "dex": 3, "tDamPct": 5, "type": "ring", "fixID": true, "id": 3637}, {"name": "Brass Leg Plates", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": -120, "tDef": 75, "eDef": 75, "lvl": 81, "strReq": 20, "dexReq": 20, "ls": 160, "str": 9, "dex": 9, "tDamPct": 15, "eDamPct": 15, "fixID": true, "id": 2849}, {"name": "Trouble Tamer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "eDef": 12, "lvl": 32, "mdPct": 35, "lb": 15, "fixID": true, "id": 3641}, {"name": "Brass Choker", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": -350, "lvl": 81, "strReq": 10, "dexReq": 40, "mdPct": 4, "str": 1, "dex": 2, "tDamPct": 9, "type": "necklace", "fixID": true, "id": 2852}, {"name": "Crook's March", "tier": "Rare", "type": "relik", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "130-170", "eDam": "140-160", "atkSpd": "SLOW", "lvl": 82, "strReq": 45, "dexReq": 50, "mr": -10, "ls": 250, "ms": 10, "hpBonus": -900, "eSteal": 10, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2858}, {"name": "Double-Edge", "tier": "Rare", "type": "spear", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-130", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 50, "hprPct": -30, "mdPct": 13, "ls": -215, "ms": 5, "dex": 7, "hpBonus": -1000, "sdRaw": 165, "fDamPct": -15, "eDefPct": -10, "fixID": true, "id": 2853}, {"name": "Dragulj Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1875, "lvl": 80, "xpb": 15, "lb": 15, "fDamPct": 18, "wDamPct": 18, "aDamPct": 18, "tDamPct": 18, "eDamPct": 18, "fDefPct": 18, "wDefPct": 18, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "fixID": true, "id": 2854}, {"name": "Dragon Horned Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1850, "fDef": 160, "wDef": -60, "eDef": -60, "lvl": 80, "defReq": 45, "ref": 15, "def": 4, "sdRaw": 160, "mdRaw": 205, "fDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2855}, {"name": "Dragonspit", "tier": "Rare", "type": "bow", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "90-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 335, "def": 4, "expd": 7, "hpBonus": 1200, "fDamPct": 10, "fixID": true, "id": 2879}, {"name": "Earthlink", "tier": "Rare", "type": "boots", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "lvl": 81, "strReq": 55, "xpb": 10, "str": 5, "spd": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": 35, "fixID": true, "id": 2857}, {"name": "Ehoole Drakeskin", "tier": "Rare", "type": "leggings", "quest": "From The Bottom", "category": "armor", "slots": 3, "drop": "never", "hp": 1750, "fDef": -140, "wDef": 90, "aDef": 80, "lvl": 82, "intReq": 30, "agiReq": 45, "mr": 10, "sdPct": 8, "mdPct": -16, "ref": 12, "spd": 16, "sdRaw": 210, "fDamPct": -16, "aDamPct": 12, "fixID": true, "id": 2856}, {"name": "Fire Pearl", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 500, "fDef": 50, "wDef": -40, "lvl": 81, "defReq": 50, "expd": 6, "fDamPct": 6, "wDamPct": -10, "fDefPct": 4, "type": "necklace", "fixID": true, "id": 2860}, {"name": "Flexing Chain", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 25, "lvl": 80, "agiReq": 40, "str": -2, "agi": 3, "spd": 6, "aDamPct": 4, "aDefPct": 6, "type": "bracelet", "fixID": true, "id": 2859}, {"name": "Formation", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 300, "aDef": -25, "eDef": 40, "lvl": 81, "strReq": 45, "defReq": 5, "spd": -4, "eDamPct": 7, "tDefPct": 4, "type": "bracelet", "fixID": true, "id": 2862}, {"name": "Forge Stoker", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-15", "fDam": "35-40", "wDam": "0-0", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 80, "agiReq": 35, "defReq": 25, "ls": 180, "agi": 4, "spd": 8, "hprRaw": -55, "aDamPct": 20, "fDefPct": 16, "wDefPct": -12, "fixID": true, "id": 2861}, {"name": "Ironbody", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "drop": "never", "hp": 2950, "fDef": 110, "wDef": 40, "aDef": 50, "tDef": 60, "eDef": 120, "lvl": 82, "strReq": 35, "defReq": 35, "hprPct": 16, "mdPct": 16, "def": 9, "spd": -10, "aDamPct": -30, "fDefPct": 10, "eDefPct": 12, "fixID": true, "id": 2865}, {"name": "Metal Breaker", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "300-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "270-360", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 40, "mdPct": 10, "str": 6, "def": -4, "expd": 25, "spd": -7, "fixID": true, "id": 2863}, {"name": "Jewel Cutter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-170", "fDam": "0-0", "wDam": "0-0", "aDam": "54-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "agiReq": 40, "lb": 20, "agi": 7, "spd": 10, "eSteal": 4, "mdRaw": 130, "fDefPct": 15, "wDefPct": -12, "aDefPct": 20, "fixID": true, "id": 2864}, {"name": "Mining Fever", "tier": "Rare", "type": "helmet", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "eDef": 60, "lvl": 81, "xpb": 5, "lb": 35, "eSteal": 7, "eDamPct": 15, "fixID": true, "id": 2868}, {"name": "Mithril Mantle", "tier": "Unique", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 81, "ls": 175, "ms": 10, "lb": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fixID": true, "id": 2867}, {"name": "Ring of Power", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "mdPct": 8, "str": 2, "dex": 2, "type": "ring", "fixID": true, "id": 2870}, {"name": "Rask", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 81, "agiReq": 50, "agi": 5, "spd": 12, "fDefPct": -5, "type": "ring", "fixID": true, "id": 2869}, {"name": "Plate Shock", "tier": "Rare", "type": "wand", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "dexReq": 45, "sdPct": 10, "mdPct": 10, "ref": 20, "dex": 4, "hprRaw": -75, "tDamPct": 18, "wDefPct": -10, "fixID": true, "id": 2866}, {"name": "Timelocked Stone", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "str": 3, "eDamPct": 5, "type": "ring", "fixID": true, "id": 3640}, {"name": "Rough Diamond", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "strReq": 20, "intReq": 20, "sdPct": 6, "mdPct": 5, "xpb": 7, "str": 2, "aDamPct": -6, "type": "necklace", "fixID": true, "id": 2871}, {"name": "Thanos Legionnaire Greaves", "tier": "Set", "type": "boots", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 75, "lvl": 82, "defReq": 50, "xpb": 10, "lb": 10, "def": 10, "hprRaw": 150, "fDamPct": 20, "wDamPct": -20, "fDefPct": 20, "wDefPct": -20, "fixID": true, "id": 2905, "set": "Thanos Legionnaire"}, {"name": "Thanos Legionnaire Leggings", "tier": "Set", "type": "leggings", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 1900, "aDef": 75, "lvl": 82, "agiReq": 50, "xpb": 15, "lb": 5, "agi": 10, "spd": 15, "aDamPct": 20, "tDamPct": -20, "aDefPct": 20, "fixID": true, "id": 2875, "set": "Thanos Legionnaire"}, {"name": "Ring of Wisdom", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "sdPct": 7, "xpb": 10, "int": 3, "type": "ring", "fixID": true, "id": 2872}, {"name": "Thanos Legionnaire Plate", "tier": "Set", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 3, "drop": "never", "hp": 2400, "fDef": 125, "wDef": -90, "aDef": 125, "tDef": -90, "eDef": 125, "lvl": 83, "strReq": 40, "agiReq": 40, "defReq": 40, "str": 10, "agi": 10, "def": 10, "mdRaw": 225, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2873, "set": "Thanos Legionnaire"}, {"name": "Steady Grip", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "lvl": 81, "dexReq": 25, "intReq": 25, "mdPct": -10, "dex": 3, "int": 3, "sdRaw": 45, "eDamPct": -8, "type": "bracelet", "fixID": true, "id": 2878}, {"name": "Shale Edge", "tier": "Rare", "type": "dagger", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-75", "fDam": "0-0", "wDam": "40-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 82, "intReq": 25, "sdPct": 8, "ms": 5, "str": 4, "sdRaw": 90, "aDamPct": -16, "eDamPct": 15, "aDefPct": -13, "fixID": true, "id": 2877}, {"name": "Silver Bay", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-160", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "intReq": 40, "mr": 5, "lb": 10, "hpBonus": 1000, "wDamPct": 25, "wDefPct": 20, "fixID": true, "id": 2880}, {"name": "Tankard Basher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-110", "atkSpd": "FAST", "lvl": 81, "strReq": 25, "agiReq": 35, "mdPct": 12, "str": 8, "dex": -8, "agi": 8, "spd": 12, "aDamPct": 20, "fixID": true, "id": 2882}, {"name": "Sterling Silver", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "dexReq": 15, "agiReq": 25, "lb": 7, "spd": 5, "sdRaw": 25, "mdRaw": 18, "eDamPct": -7, "type": "necklace", "fixID": true, "id": 2884}, {"name": "Sterk", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 250, "fDef": 25, "wDef": -10, "eDef": 10, "lvl": 81, "strReq": 10, "defReq": 40, "def": 3, "fDefPct": 7, "aDefPct": 6, "eDefPct": 8, "type": "ring", "fixID": true, "id": 2876}, {"name": "Thanos Legionnaire Helm", "tier": "Set", "type": "helmet", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "eDef": 75, "lvl": 82, "strReq": 50, "mdPct": 10, "xpb": 5, "lb": 15, "str": 10, "eDamPct": 20, "tDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2874, "set": "Thanos Legionnaire"}, {"name": "Thanos Banner", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "eDef": 60, "lvl": 82, "strReq": 50, "lb": 10, "str": 6, "eDamPct": 10, "wDefPct": -10, "eDefPct": 10, "type": "bracelet", "fixID": true, "id": 2883}, {"name": "Thanos Crest", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "aDef": 60, "lvl": 82, "agiReq": 50, "xpb": 10, "agi": 6, "aDamPct": 10, "aDefPct": 10, "tDefPct": -10, "type": "necklace", "fixID": true, "id": 2886}, {"name": "Thanos Ironstaff", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-75", "fDam": "40-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "NORMAL", "lvl": 82, "strReq": 40, "defReq": 40, "hprPct": 20, "mdPct": 20, "dex": -10, "int": -10, "def": 10, "hpBonus": 1075, "fDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2898}, {"name": "Thanos Brand", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "hp": 650, "fDef": 30, "lvl": 82, "defReq": 50, "xpb": 5, "lb": 5, "def": 5, "fDamPct": 5, "fDefPct": 5, "wDefPct": -5, "tDefPct": -5, "type": "ring", "fixID": true, "id": 2881}, {"name": "Thanos Stonesinger", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "120-126", "fDam": "57-66", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-63", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "defReq": 40, "dex": -8, "expd": 20, "mdRaw": 160, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2889}, {"name": "Thanos Warhammer", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "110-200", "fDam": "50-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 20, "spd": -10, "fDamPct": 15, "eDamPct": 15, "eDefPct": 25, "fixID": true, "id": 2887}, {"name": "Thanos Siege Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-280", "fDam": "70-130", "wDam": "0-0", "aDam": "55-145", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "agiReq": 40, "defReq": 40, "mr": -5, "def": 10, "expd": 20, "spd": -15, "hpBonus": 750, "hprRaw": 160, "fDamPct": 15, "aDamPct": 15, "fixID": true, "id": 2885}, {"name": "Thanos Warsword", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "40-80", "tDam": "0-0", "eDam": "50-70", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "agiReq": 40, "mdPct": 20, "str": 8, "int": -8, "agi": 8, "spd": 15, "sdRaw": -90, "mdRaw": 170, "aDamPct": 12, "eDamPct": 12, "fixID": true, "id": 2890}, {"name": "Tight Clamp", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 450, "fDef": 30, "lvl": 80, "defReq": 40, "dex": -2, "def": 3, "type": "bracelet", "fixID": true, "id": 2888}, {"name": "Canyon Strider", "tier": "Unique", "type": "boots", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2200, "fDef": -70, "aDef": 70, "eDef": 70, "lvl": 84, "strReq": 15, "agiReq": 25, "agi": 6, "spd": 15, "aDamPct": 10, "eDamPct": 10, "aDefPct": 12, "eDefPct": 12, "fixID": true, "sprintReg": 15, "id": 2892}, {"name": "Fir Needle", "tier": "Unique", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "SUPER_FAST", "lvl": 83, "strReq": 25, "agiReq": 35, "str": 8, "sdRaw": 134, "aDamPct": 19, "tDefPct": -15, "fixID": true, "id": 2894}, {"name": "Coal Duster", "tier": "Rare", "type": "chestplate", "poison": 3500, "category": "armor", "slots": 3, "drop": "never", "hp": 2575, "fDef": -65, "tDef": 90, "lvl": 83, "dexReq": 40, "defReq": 45, "sdPct": -15, "mdPct": -35, "dex": 7, "def": 8, "expd": 10, "atkTier": -17, "fDamPct": 25, "tDamPct": 20, "fDefPct": -25, "fixID": true, "id": 2893}, {"name": "Filter Mask", "tier": "Rare", "type": "helmet", "poison": -375, "category": "armor", "slots": 3, "drop": "never", "hp": 2750, "aDef": 120, "eDef": 120, "lvl": 85, "spd": 10, "aDamPct": 10, "eDamPct": 10, "aDefPct": 15, "eDefPct": 20, "fixID": true, "sprintReg": 20, "id": 2891}, {"name": "Pine Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "180-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-85", "atkSpd": "NORMAL", "lvl": 85, "strReq": 40, "mdPct": 10, "xpb": 10, "str": 5, "eDefPct": 15, "fixID": true, "id": 2896}, {"name": "Shine Lamp", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "240-250", "wDam": "230-260", "aDam": "225-265", "tDam": "220-270", "eDam": "235-255", "atkSpd": "SUPER_SLOW", "lvl": 83, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "mr": 5, "sdPct": -25, "fixID": true, "spPct1": -17, "spPct2": -17, "spPct3": -17, "spPct4": -17, "id": 2900}, {"name": "Plated Mining Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2500, "lvl": 83, "defReq": 20, "hprPct": 25, "lb": 10, "def": 10, "hprRaw": 60, "fixID": true, "id": 2897}, {"name": "Wood Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-50", "atkSpd": "FAST", "lvl": 84, "strReq": 15, "mdPct": 10, "xpb": 10, "str": 5, "fDefPct": -5, "fixID": true, "id": 2902}, {"name": "Firestarter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 40, "expd": 5, "hprRaw": 70, "fDamPct": 20, "wDamPct": -10, "fixID": true, "id": 2895}, {"name": "Windwhistle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-42", "fDam": "0-0", "wDam": "60-73", "aDam": "51-82", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 35, "agiReq": 35, "mr": 5, "sdPct": 10, "agi": 8, "def": -8, "spd": 20, "wDamPct": 15, "fDefPct": -20, "fixID": true, "id": 2899}, {"name": "Surefooter", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 1900, "aDef": -100, "eDef": 100, "lvl": 86, "strReq": 55, "ms": 10, "str": 8, "spd": -8, "mdRaw": 250, "eDamPct": 15, "fixID": true, "id": 2901}, {"name": "Wooly Long Johns", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2525, "wDef": 190, "aDef": 190, "lvl": 87, "sdPct": -5, "mdPct": -5, "xpb": 14, "hprRaw": 190, "wDefPct": 14, "aDefPct": 14, "fixID": true, "id": 2904}, {"name": "Battalion", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "lvl": 50, "def": 5, "spd": 8, "fDamPct": 5, "wDamPct": -10, "aDamPct": -10, "fixID": true, "id": 2903}, {"name": "Battle Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-30", "fDam": "15-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "sdPct": 4, "mdPct": 6, "expd": 5, "eDamPct": 5, "fixID": true, "id": 2907}, {"name": "Defender", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-110", "fDam": "65-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 50, "defReq": 30, "sdPct": -6, "def": 3, "hpBonus": 400, "fixID": true, "id": 2906}, {"name": "Dual", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-39", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "dexReq": 15, "agi": 5, "spd": 5, "aDamPct": 10, "tDamPct": 5, "fixID": true, "id": 2908}, {"name": "Dinosaur", "tier": "Unique", "type": "leggings", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "hp": 650, "aDef": -50, "eDef": 40, "lvl": 51, "mdPct": 6, "str": 3, "int": -5, "fixID": true, "id": 2909}, {"name": "Hurricane", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -100, "aDef": 100, "eDef": -40, "lvl": 55, "strReq": 10, "agiReq": 25, "str": 2, "agi": 4, "spd": 10, "aDamPct": 10, "eDamPct": 6, "fixID": true, "id": 2913}, {"name": "Medecin", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-52", "fDam": "0-0", "wDam": "34-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "intReq": 25, "mr": 5, "sdPct": 10, "mdPct": -10, "ref": 5, "int": 2, "fixID": true, "id": 2910}, {"name": "Moonlight", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "0-0", "wDam": "25-35", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 16, "agiReq": 16, "mdPct": -15, "hprRaw": 25, "fDefPct": 15, "wDefPct": 25, "aDefPct": 25, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2912}, {"name": "Wardrummer", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "strReq": 16, "defReq": 16, "sdPct": -10, "mdPct": -10, "fDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2914}, {"name": "Strikedown", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "112-120", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "60-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "dexReq": 20, "intReq": 20, "mdPct": 10, "dex": 5, "spd": -10, "hprRaw": -40, "sdRaw": 95, "fixID": true, "spPct3": -10, "id": 2915}, {"name": "The Judge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "lvl": 52, "hprPct": 15, "sdPct": 15, "mdPct": 20, "ls": -80, "ms": -10, "xpb": 15, "lb": 15, "fixID": true, "id": 2911}, {"name": "Warlord", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "never", "nDam": "320-457", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 54, "strReq": 25, "str": 2, "dex": -3, "agi": -3, "def": 2, "spd": -4, "hpBonus": 450, "hprRaw": 40, "fixID": true, "id": 2916}, {"name": "Voidstone Arpes", "tier": "Rare", "type": "spear", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-219", "fDam": "0-0", "wDam": "0-0", "aDam": "219-219", "tDam": "0-0", "eDam": "219-219", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2920}, {"name": "Voidstone Esbald", "tier": "Rare", "type": "dagger", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "137-138", "fDam": "0-0", "wDam": "0-0", "aDam": "115-345", "tDam": "0-0", "eDam": "115-345", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2919}, {"name": "Voidstone Elrik", "tier": "Rare", "type": "relik", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "160-165", "fDam": "0-0", "wDam": "0-0", "aDam": "310-340", "tDam": "0-0", "eDam": "320-330", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2917}, {"name": "Voidstone Lensing", "tier": "Rare", "type": "bow", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "300-360", "tDam": "0-0", "eDam": "300-360", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2918}, {"name": "Voidstone Recteps", "tier": "Rare", "type": "wand", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-85", "fDam": "0-0", "wDam": "0-0", "aDam": "100-225", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2922}, {"name": "Zhight Beaded Broach", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "lvl": 55, "dexReq": 30, "lb": 8, "hprRaw": 10, "sdRaw": 10, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2921}, {"name": "Zhight Coral Band", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 200, "wDef": 35, "lvl": 55, "intReq": 15, "defReq": 30, "sdPct": -6, "hprRaw": 15, "tDamPct": -8, "wDefPct": 10, "type": "bracelet", "fixID": true, "id": 2923}, {"name": "Zhight Powwow Bangle", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 55, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "xpb": 9, "lb": 9, "spRegen": 12, "eSteal": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 2925}, {"name": "Zhight Shiny Ring", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": -65, "lvl": 55, "dexReq": 30, "xpb": 6, "tDamPct": 9, "type": "ring", "fixID": true, "id": 2924}, {"name": "Zhight Souvenir Coin", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 100, "lvl": 55, "xpb": 5, "lb": 10, "eSteal": 1, "type": "ring", "fixID": true, "id": 2926}, {"name": "Saffron Arch", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-52", "fDam": "14-30", "wDam": "0-0", "aDam": "0-0", "tDam": "10-34", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "dexReq": 8, "defReq": 8, "hprPct": 7, "sdPct": 6, "mdPct": -14, "ls": 33, "hpBonus": 160, "wDamPct": -7, "id": 2928}, {"name": "Sagittarius", "tier": "Legendary", "type": "leggings", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": 140, "eDef": -200, "lvl": 94, "agiReq": 80, "hprPct": -25, "ref": 18, "agi": 13, "spd": 18, "sdRaw": 175, "mdRaw": 230, "aDamPct": 25, "id": 2929}, {"name": "Zhight Weird Magic Necklace", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "wDef": 5, "eDef": 5, "lvl": 55, "strReq": 25, "intReq": 20, "sdPct": 7, "str": 2, "spRegen": 7, "wDamPct": 7, "type": "necklace", "fixID": true, "id": 2930}, {"name": "Salamander", "tier": "Unique", "type": "wand", "poison": 130, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-19", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "agiReq": 5, "ls": 20, "spd": 10, "aDamPct": 6, "tDamPct": 6, "eDefPct": -8, "id": 2934}, {"name": "Salience", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "fDef": 20, "wDef": 15, "lvl": 38, "intReq": 10, "defReq": 10, "hprPct": 12, "sdPct": -6, "mdPct": -10, "hprRaw": 10, "fDefPct": 9, "wDefPct": 9, "id": 2931}, {"name": "Sage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "mr": 10, "xpb": 32, "lb": 10, "aDamPct": 15, "id": 2927}, {"name": "Salmon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-0", "wDam": "33-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 5, "mr": 5, "sdPct": 7, "spd": 4, "wDamPct": 4, "aDamPct": 5, "id": 2933}, {"name": "Saint's Scar", "tier": "Unique", "type": "dagger", "poison": 85, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-15", "atkSpd": "NORMAL", "lvl": 24, "strReq": 10, "sdPct": -5, "mdPct": 5, "fDefPct": -10, "id": 2932}, {"name": "Speedyboy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "mdPct": 15, "str": 7, "spd": 200, "eDamPct": 10, "id": 3548}, {"name": "Saltest Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 1, "id": 3549}, {"name": "Salvation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-24", "fDam": "27-27", "wDam": "27-27", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 35, "defReq": 35, "hprPct": 20, "ref": 15, "def": 5, "hpBonus": 1250, "tDamPct": -50, "fDefPct": 12, "wDefPct": 12, "id": 2937}, {"name": "SandStorm Walker", "displayName": "Sandstorm Walker", "tier": "Unique", "type": "boots", "thorns": 3, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 435, "aDef": -30, "tDef": 20, "lvl": 44, "strReq": 5, "xpb": 10, "lb": 10, "str": 4, "dex": 4, "eDamPct": 7, "id": 2938}, {"name": "Sandscar", "tier": "Unique", "type": "spear", "poison": 365, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-42", "fDam": "0-0", "wDam": "0-0", "aDam": "10-18", "tDam": "0-0", "eDam": "16-28", "atkSpd": "NORMAL", "lvl": 51, "str": 5, "agi": 5, "wDamPct": -10, "eDamPct": 7, "wDefPct": -5, "aDefPct": 7, "id": 2943}, {"name": "Sandust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "dexReq": 15, "dex": 4, "spd": 5, "tDamPct": 6, "type": "ring", "id": 2941}, {"name": "Sandstorm", "tier": "Rare", "type": "spear", "poison": 50, "thorns": 7, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-29", "fDam": "0-0", "wDam": "0-0", "aDam": "20-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 34, "agiReq": 20, "agi": 5, "spd": 15, "atkTier": 1, "eDefPct": -35, "id": 2939}, {"name": "Sano's Wisdom", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 35, "aDef": 15, "lvl": 51, "intReq": 15, "agiReq": 10, "mr": 10, "spRegen": 10, "hprRaw": 25, "fDamPct": -15, "tDamPct": -20, "eDamPct": -15, "wDefPct": 25, "aDefPct": 15, "id": 2942}, {"name": "Sandstone Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "wDef": -15, "aDef": 8, "eDef": 8, "lvl": 37, "xpb": 8, "aDamPct": 8, "eDamPct": 8, "id": 2940}, {"name": "Sans", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "hprPct": 20, "sdPct": 20, "mdPct": 20, "id": 2944}, {"name": "Sapling", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "96-170", "aDam": "0-0", "tDam": "0-0", "eDam": "126-140", "atkSpd": "SLOW", "lvl": 75, "strReq": 35, "intReq": 35, "hprPct": 15, "mr": 10, "sdPct": -10, "mdPct": -10, "spd": -20, "hprRaw": 85, "wDefPct": 12, "eDefPct": 12, "id": 2946}, {"name": "Sano's Care", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 200, "wDef": 200, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 90, "intReq": 45, "defReq": 55, "hprPct": 40, "mr": 10, "mdPct": -20, "xpb": 15, "int": 5, "def": 10, "hprRaw": 215, "fDefPct": 15, "wDefPct": 15, "id": 2948}, {"name": "Sapphire", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "wDef": -80, "eDef": -80, "lvl": 97, "strReq": 40, "intReq": 40, "ms": 10, "ref": 18, "str": 5, "int": 5, "eSteal": 10, "sdRaw": 140, "mdRaw": 180, "fDefPct": -35, "id": 2949}, {"name": "Sargasso", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 10, "wDef": 3, "lvl": 2, "sdPct": 6, "xpb": 4, "id": 2947}, {"name": "Saundersi Signet", "tier": "Legendary", "poison": 758, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -30, "lvl": 87, "strReq": 40, "dexReq": 55, "mdPct": -7, "str": 3, "expd": 15, "type": "ring", "id": 2967}, {"name": "Sawdust", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 700, "fDef": -40, "aDef": 45, "eDef": 30, "lvl": 49, "agi": 10, "spd": 9, "mdRaw": 80, "aDamPct": 13, "eDefPct": 18, "id": 2951}, {"name": "Sapphire Shard", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "58-67", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "intReq": 20, "sdPct": 21, "ms": 5, "xpb": 14, "ref": 11, "int": 8, "fDamPct": -15, "tDefPct": -8, "id": 2945}, {"name": "Sarnfic's Lost Treasure", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 63, "intReq": 25, "lb": 9, "eSteal": 3, "wDamPct": 7, "type": "ring", "id": 2954}, {"name": "Scalding Scimitar", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-230", "fDam": "60-200", "wDam": "60-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 72, "intReq": 30, "defReq": 30, "hprPct": -30, "sdPct": 7, "hprRaw": -100, "fDamPct": 25, "wDamPct": 25, "tDefPct": -30, "eDefPct": -30, "id": 2952}, {"name": "Sayleros' Brother's Misfortune", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 22, "str": 4, "dex": -2, "agi": -2, "def": 4, "type": "bracelet", "id": 2953}, {"name": "Scalpel", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "dexReq": 15, "ls": 32, "hprRaw": 16, "id": 2958}, {"name": "Scarab", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 6, "lvl": 2, "def": 4, "id": 2955}, {"name": "Scale of Sieryu", "displayName": "Scale of Seiryu", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1500, "aDef": 50, "lvl": 78, "agiReq": 100, "mr": 20, "sdPct": -150, "mdPct": -50, "spd": 40, "atkTier": 1, "id": 2957}, {"name": "Scorcher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-40", "fDam": "50-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "defReq": 30, "def": 7, "expd": 10, "fDamPct": 10, "fDefPct": 20, "id": 2959}, {"name": "Schist", "tier": "Rare", "poison": 120, "category": "accessory", "drop": "lootchest", "hp": -125, "eDef": -60, "lvl": 84, "strReq": 65, "str": 13, "eDamPct": -7, "type": "necklace", "id": 3583}, {"name": "Scorpio", "tier": "Legendary", "type": "boots", "poison": 1800, "thorns": 24, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": -200, "eDef": 160, "lvl": 90, "strReq": 65, "dexReq": 15, "defReq": 15, "str": 25, "expd": 40, "hprRaw": 125, "eDamPct": -140, "id": 2961}, {"name": "Saltine", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "60-70", "tDam": "40-90", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "dexReq": 40, "agiReq": 40, "dex": 5, "agi": 5, "spd": 8, "hpBonus": -400, "aDamPct": 16, "tDamPct": 16, "eDefPct": -16, "id": 2936}, {"name": "Sanare", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "intReq": 35, "hprPct": 25, "sdPct": 15, "mdPct": -30, "int": 10, "wDamPct": 27, "id": 2935}, {"name": "Screech", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1675, "lvl": 80, "sdPct": 15, "mdPct": 15, "ls": 150, "spRegen": -3, "fDamPct": 11, "aDamPct": 11, "tDamPct": 11, "wDefPct": -12, "eDefPct": -12, "id": 2963}, {"name": "Scorpion", "tier": "Legendary", "type": "dagger", "poison": 450, "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ms": 10, "lb": 15, "fDefPct": -5, "wDefPct": -5, "aDefPct": -10, "tDefPct": -5, "id": 2960}, {"name": "Saving Grace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "70-80", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 20, "defReq": 20, "mr": 5, "sdPct": 10, "mdPct": -25, "wDamPct": 20, "fDefPct": 10, "id": 2950}, {"name": "Scroll of Nythiar", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-22", "wDam": "15-18", "aDam": "9-24", "tDam": "6-27", "eDam": "12-21", "atkSpd": "FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hprPct": 23, "mr": 10, "sdPct": 35, "mdPct": -70, "xpb": 15, "hprRaw": 42, "id": 2965}, {"name": "Scylla Shell", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 15, "aDef": -40, "eDef": 15, "lvl": 45, "strReq": 20, "intReq": 20, "mr": 5, "mdPct": 8, "spd": -12, "wDamPct": 5, "eDamPct": 5, "id": 2962}, {"name": "Sculptor", "tier": "Unique", "type": "spear", "thorns": 10, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "170-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "strReq": 35, "intReq": 35, "mdPct": 20, "ref": 10, "mdRaw": 150, "wDamPct": 15, "eDamPct": 15, "id": 2964}, {"name": "Seagazer", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2175, "wDef": 100, "lvl": 84, "intReq": 60, "mr": 10, "xpb": 15, "int": 8, "fDamPct": 22, "wDamPct": 22, "aDamPct": 22, "tDamPct": 22, "eDamPct": 22, "wDefPct": 10, "id": 2966}, {"name": "Sealing Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 330, "lvl": 76, "lb": 5, "spRegen": 5, "type": "necklace", "id": 2971}, {"name": "Scythe", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-165", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "strReq": 40, "dexReq": 30, "hprPct": -23, "mdPct": 25, "ms": 10, "str": 13, "dex": 9, "int": -10, "spRegen": -15, "tDamPct": 10, "eDamPct": 15, "wDefPct": -25, "id": 2969}, {"name": "Searing Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "45-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "defReq": 30, "hprPct": 18, "sdPct": 9, "expd": 6, "wDamPct": -5, "id": 2968}, {"name": "Seipodon", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 140, "tDef": -90, "lvl": 98, "intReq": 75, "mr": 10, "sdPct": 10, "ref": 15, "int": 14, "fDamPct": -25, "wDamPct": 10, "fDefPct": 10, "wDefPct": 10, "id": 2970}, {"name": "Scarlet Veil", "tier": "Fabled", "type": "helmet", "majorIds": ["EXPLOSIVE_IMPACT"], "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 52, "mdPct": 25, "spd": 8, "atkTier": 1, "mdRaw": 65, "fDefPct": -100, "wDefPct": -100, "aDefPct": -100, "tDefPct": -100, "eDefPct": -100, "id": 3587}, {"name": "Seeker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "ring", "id": 2975}, {"name": "Seismosoul", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 65, "aDef": -130, "eDef": 65, "lvl": 92, "strReq": 45, "intReq": 45, "ms": 5, "xpb": 11, "str": 7, "int": 7, "atkTier": 1, "spRegen": 25, "wDamPct": 19, "eDamPct": 19, "fDefPct": -40, "tDefPct": -40, "id": 2976}, {"name": "Seismic Chaps", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 32, "strReq": 15, "mdPct": 10, "str": 7, "spd": -5, "mdRaw": 59, "aDamPct": -10, "eDamPct": 15, "aDefPct": -15, "id": 2974}, {"name": "Sempiternel", "displayName": "Sempiternal", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "fDef": 170, "aDef": 130, "lvl": 88, "agiReq": 55, "defReq": 55, "hprPct": 25, "mr": 10, "atkTier": -1, "hpBonus": 900, "hprRaw": 185, "wDefPct": 16, "tDefPct": 18, "eDefPct": 24, "id": 2978}, {"name": "Spinal Tap", "displayName": "September", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2350, "fDef": 70, "wDef": -105, "aDef": 70, "tDef": -105, "eDef": 70, "lvl": 88, "agiReq": 35, "defReq": 35, "hprPct": -21, "ls": 215, "str": 10, "spd": 21, "mdRaw": 170, "fDamPct": 21, "aDamPct": 21, "eDamPct": 21, "id": 3106}, {"name": "Semreh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 975, "fDef": -60, "aDef": 70, "lvl": 64, "agiReq": 30, "lb": 10, "ref": 6, "agi": 9, "spd": 11, "aDamPct": 11, "id": 2977}, {"name": "Sequoia", "tier": "Unique", "type": "wand", "poison": 3130, "thorns": 20, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 100, "strReq": 50, "sdPct": -20, "str": 20, "spd": -30, "hpBonus": 1300, "wDamPct": 20, "wDefPct": 15, "eDefPct": 20, "id": 2980}, {"name": "Sequencer", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2345, "lvl": 83, "hprPct": 25, "sdPct": 15, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "hprRaw": 100, "sdRaw": 125, "mdRaw": 165, "id": 2979}, {"name": "Seraph", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-45", "fDam": "0-0", "wDam": "0-0", "aDam": "32-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 52, "intReq": 5, "agiReq": 20, "mr": 5, "mdPct": -10, "spRegen": 4, "wDefPct": 10, "aDefPct": 15, "tDefPct": -12, "id": 2983}, {"name": "Sessanta", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 60, "lvl": 60, "defReq": 10, "hpBonus": 90, "type": "ring", "id": 2984}, {"name": "Shade of Night", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "41-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "agiReq": 50, "sdPct": 15, "mdPct": -15, "spd": 15, "wDamPct": 13, "tDamPct": 13, "fDefPct": -26, "aDefPct": 20, "eDefPct": -26, "id": 2986}, {"name": "Sextant", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -70, "eDef": 60, "lvl": 62, "strReq": 40, "mdPct": 9, "str": 7, "aDamPct": -15, "eDamPct": 9, "eDefPct": 9, "id": 2982}, {"name": "Seven-League Boots", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "drop": "NORMAL", "hp": 450, "aDef": 30, "eDef": -60, "lvl": 44, "agiReq": 50, "xpb": 15, "agi": 18, "spd": 27, "id": 2981}, {"name": "Shadow Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-15", "fDam": "0-0", "wDam": "0-0", "aDam": "1-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "mdPct": -8, "ls": 5, "agi": 5, "sdRaw": 8, "id": 2985}, {"name": "Shadow Flame", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "53-55", "fDam": "50-58", "wDam": "0-0", "aDam": "0-0", "tDam": "47-61", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "dexReq": 30, "defReq": 30, "ms": 5, "agi": -10, "hpBonus": -800, "sdRaw": 125, "fDamPct": 17, "wDamPct": -25, "tDamPct": 17, "eDefPct": -20, "id": 2991}, {"name": "Secret", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 5, "spRegen": 5, "type": "bracelet", "id": 2972}, {"name": "Shaggy Boots", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "tDef": 150, "eDef": -150, "lvl": 97, "dexReq": 60, "ls": 300, "ref": 10, "dex": 10, "atkTier": -10, "hpBonus": -800, "mdRaw": 1300, "tDamPct": 23, "id": 2987}, {"name": "Shajaea", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-115", "fDam": "100-175", "wDam": "100-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "intReq": 45, "defReq": 45, "hprPct": 27, "mr": 10, "sdPct": -16, "mdPct": -16, "int": 5, "def": 5, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "id": 2989}, {"name": "Sharp", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 58, "mdPct": -6, "dex": 4, "mdRaw": 26, "type": "ring", "id": 2993}, {"name": "Shark Tooth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "mdPct": 5, "mdRaw": 1, "type": "necklace", "id": 2988}, {"name": "Sharp Heels", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 130, "eDef": -5, "lvl": 29, "dexReq": 15, "mdPct": 7, "dex": 5, "mdRaw": 29, "id": 2990}, {"name": "Sharp Terror", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-31", "fDam": "0-0", "wDam": "31-39", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "intReq": 20, "sdPct": 10, "ms": 10, "int": 7, "tDamPct": -10, "tDefPct": -10, "id": 2994}, {"name": "Sharpened Harpoon", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "105-205", "fDam": "0-0", "wDam": "150-200", "aDam": "0-0", "tDam": "50-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 35, "intReq": 35, "sdPct": 20, "mdPct": 15, "lb": 11, "dex": 9, "int": 9, "spd": -19, "hpBonus": -1050, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "id": 2992}, {"name": "Sharpened Stylus", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "15-19", "fDam": "0-0", "wDam": "15-19", "aDam": "0-0", "tDam": "15-19", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 17, "intReq": 17, "sdPct": 14, "mdPct": 14, "hpBonus": -170, "wDamPct": 14, "tDamPct": 14, "id": 2998}, {"name": "Sharpshooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "mdPct": 4, "xpb": 4, "dex": 5, "id": 2995}, {"name": "Shawl of Gaea", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3700, "fDef": 125, "aDef": -150, "eDef": 125, "lvl": 95, "strReq": 75, "defReq": 60, "str": 9, "def": 13, "expd": 30, "spd": -10, "mdRaw": 300, "fDamPct": 27, "eDamPct": 20, "wDefPct": -30, "id": 2996}, {"name": "Shatterglass", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 91, "strReq": 50, "mdPct": 11, "str": 7, "def": -5, "expd": 11, "hpBonus": -500, "aDamPct": 5, "eDamPct": 5, "type": "necklace", "id": 2999}, {"name": "Shell of Genbu", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2500, "fDef": 75, "wDef": 75, "tDef": -90, "eDef": -60, "lvl": 82, "intReq": 45, "defReq": 40, "sdPct": 23, "ls": -160, "def": 8, "spd": -10, "fDamPct": 10, "wDamPct": 10, "id": 2997}, {"name": "Shimmersight", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "lvl": 93, "mr": 5, "xpb": -10, "lb": -30, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 12, "aDefPct": 10, "tDefPct": 12, "eDefPct": 10, "id": 3002}, {"name": "Shellcarve", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-48", "fDam": "0-0", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "100-120", "atkSpd": "FAST", "lvl": 93, "strReq": 42, "intReq": 42, "mr": 5, "ms": 5, "dex": -9, "agi": -9, "def": -9, "hprRaw": -280, "wDamPct": 28, "eDamPct": 28, "spRaw1": -5, "spRaw4": -5, "id": 3003}, {"name": "Shin Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "lvl": 3, "spd": 3, "id": 3001}, {"name": "Shield Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-120", "fDam": "0-0", "wDam": "75-125", "aDam": "0-0", "tDam": "0-0", "eDam": "85-115", "atkSpd": "SLOW", "lvl": 95, "strReq": 35, "intReq": 35, "ms": 5, "xpb": 8, "expd": 20, "sdRaw": 110, "mdRaw": 160, "aDamPct": -20, "tDamPct": -20, "id": 3000}, {"name": "Sheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "intReq": 25, "defReq": 25, "sdPct": 10, "mdPct": -30, "int": 4, "def": 4, "fDamPct": 10, "wDamPct": 10, "fDefPct": 15, "wDefPct": 15, "id": 3009}, {"name": "Shine Suffocator", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-42", "fDam": "0-0", "wDam": "26-32", "aDam": "0-0", "tDam": "26-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "dexReq": 25, "intReq": 35, "sdPct": 20, "ms": 15, "dex": 10, "hprRaw": -40, "spPct1": 210, "spPct3": -56, "spRaw4": 10, "id": 3051}, {"name": "Shiny Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 120, "lvl": 56, "xpb": 4, "lb": 8, "type": "necklace", "id": 3011}, {"name": "Shinespark", "tier": "Legendary", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 575, "wDef": -20, "eDef": -30, "lvl": 47, "dexReq": 30, "defReq": 20, "mr": 5, "ref": 10, "expd": 20, "sdRaw": 60, "fDamPct": 16, "tDamPct": 15, "eDamPct": -50, "id": 3004}, {"name": "Shining Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 12, "lvl": 4, "sdPct": 4, "xpb": 4, "id": 3006}, {"name": "Shining Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-54", "fDam": "0-0", "wDam": "0-0", "aDam": "16-48", "tDam": "16-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "mr": 5, "sdPct": 16, "mdPct": -12, "ref": 14, "int": 4, "id": 3005}, {"name": "Shock", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "dex": 3, "type": "ring", "id": 3007}, {"name": "Shockmosis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-108", "fDam": "0-0", "wDam": "40-45", "aDam": "0-0", "tDam": "40-45", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 25, "intReq": 25, "sdPct": 5, "mdPct": 5, "ms": 5, "sdRaw": 90, "mdRaw": 115, "id": 3008}, {"name": "Shockwave", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -130, "aDef": 90, "tDef": 90, "lvl": 84, "dexReq": 50, "agiReq": 50, "hprPct": -12, "sdPct": 13, "ms": 10, "dex": 5, "agi": 5, "aDamPct": 8, "tDamPct": 8, "id": 3015}, {"name": "Shokku", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 40, "xpb": 10, "dex": 7, "spd": 10, "tDefPct": 5, "id": 3013}, {"name": "Short Circuit", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "tDef": -60, "lvl": 71, "dexReq": 50, "intReq": 15, "sdPct": 14, "ls": -120, "ms": 5, "wDamPct": 7, "tDamPct": 17, "wDefPct": -7, "id": 3010}, {"name": "Sightlines", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": -60, "aDef": 50, "lvl": 54, "strReq": 15, "agiReq": 35, "xpb": 7, "str": 7, "agi": 3, "spd": 10, "mdRaw": 85, "eDamPct": 7, "fDefPct": -10, "id": 3018}, {"name": "Sight of the Druid", "tier": "Unique", "type": "bow", "poison": 805, "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-120", "atkSpd": "SLOW", "lvl": 78, "strReq": 35, "intReq": 15, "mr": 5, "tDamPct": -15, "fDefPct": -15, "wDefPct": 10, "eDefPct": 10, "id": 3016}, {"name": "Sigil of Existence", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-42", "fDam": "0-0", "wDam": "40-50", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "intReq": 40, "agiReq": 40, "int": 16, "agi": 10, "hpBonus": 2050, "spRegen": 77, "fDefPct": 12, "wDefPct": 31, "aDefPct": 31, "tDefPct": -15, "eDefPct": 15, "id": 3017}, {"name": "Sigil of Resistance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "83-89", "fDam": "84-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "84-90", "atkSpd": "NORMAL", "lvl": 97, "strReq": 40, "defReq": 40, "hprPct": 95, "str": 8, "def": 12, "hpBonus": 3000, "fDefPct": 31, "wDefPct": -15, "aDefPct": 12, "tDefPct": 15, "eDefPct": 31, "id": 3019}, {"name": "Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "0-0", "aDam": "5-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 7, "spd": 15, "eDefPct": -10, "id": 3014}, {"name": "Shrok", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 385, "tDef": 30, "eDef": -25, "lvl": 46, "dexReq": 20, "mdPct": 4, "dex": 8, "mdRaw": 53, "tDamPct": 15, "tDefPct": 12, "id": 3012}, {"name": "Signal Flare", "tier": "Legendary", "type": "boots", "majorIds": ["TAUNT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3200, "fDef": 100, "wDef": -50, "aDef": 100, "eDef": -100, "lvl": 85, "agiReq": 45, "defReq": 45, "ls": 235, "str": 10, "spd": 15, "mdRaw": 190, "fDamPct": 15, "aDamPct": 15, "wDefPct": -35, "id": 3020}, {"name": "Silhouette", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "ref": 10, "agi": 8, "spRegen": 5, "aDefPct": 12, "id": 3023}, {"name": "Silver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "79-114", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 50, "agiReq": 35, "mr": 5, "sdPct": 10, "int": 9, "spd": 14, "fDamPct": -20, "wDamPct": 20, "aDefPct": 23, "id": 3025}, {"name": "Silkweb Mail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 90, "eDef": 120, "lvl": 95, "strReq": 50, "agiReq": 20, "ls": 240, "ms": 10, "str": 9, "spd": -9, "atkTier": -1, "aDamPct": 30, "eDamPct": 20, "fDefPct": -15, "id": 3022}, {"name": "Silver Bell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "75-100", "aDam": "60-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 25, "agiReq": 25, "mr": 5, "mdPct": -15, "xpb": 15, "agi": 7, "spd": 10, "spRegen": 10, "wDefPct": 20, "aDefPct": 20, "id": 3026}, {"name": "Silver Sound", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "375-380", "wDam": "0-0", "aDam": "375-380", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 99, "agiReq": 40, "defReq": 40, "mr": -5, "int": -20, "agi": 10, "def": 10, "fDamPct": 29, "wDamPct": -42, "aDamPct": 29, "spRaw3": -10, "id": 3028}, {"name": "Silkworm", "tier": "Rare", "type": "boots", "poison": 260, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -50, "aDef": 30, "lvl": 71, "agiReq": 38, "hprPct": 25, "agi": 9, "def": -10, "spd": 10, "aDamPct": 10, "id": 3024}, {"name": "Silicosis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "fDef": -100, "aDef": 45, "eDef": 55, "lvl": 63, "strReq": 40, "agiReq": 30, "str": 7, "agi": 5, "def": -3, "fDamPct": -30, "aDamPct": 13, "eDamPct": 15, "id": 3041}, {"name": "Simple Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 18, "lb": 5, "type": "necklace", "id": 3030}, {"name": "Simplicity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 21, "spRegen": 1, "type": "ring", "id": 3029}, {"name": "Sinkhole", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "550-575", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 30, "ls": 118, "agi": -5, "expd": 25, "hpBonus": -600, "mdRaw": 305, "aDefPct": -10, "id": 3033}, {"name": "Sinister", "tier": "Rare", "poison": 350, "category": "accessory", "drop": "lootchest", "wDef": -55, "tDef": 20, "lvl": 82, "dexReq": 25, "defReq": 15, "ls": 80, "ms": 5, "wDamPct": -8, "aDefPct": -13, "type": "bracelet", "id": 3031}, {"name": "Siwel's Guilt", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 74, "intReq": 40, "hprPct": 6, "xpb": 5, "lb": -5, "hpBonus": 370, "spRegen": -30, "hprRaw": 28, "type": "bracelet", "id": 3034}, {"name": "Sitis", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "75-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 65, "mr": -10, "sdPct": 20, "ls": 300, "ms": 10, "spd": -15, "hprRaw": -185, "wDamPct": 30, "id": 3032}, {"name": "Skaxis", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-100", "atkSpd": "FAST", "lvl": 62, "strReq": 40, "dexReq": 50, "xpb": 10, "dex": 100, "agi": -77, "spd": -12, "hpBonus": -500, "id": 3035}, {"name": "Skeleton Bones", "tier": "Rare", "type": "chestplate", "poison": 82, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 31, "hprPct": -8, "ls": 18, "agi": 5, "id": 3038}, {"name": "Skeleton's Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 14, "hprPct": 8, "int": 4, "hpBonus": 5, "id": 3037}, {"name": "Silver Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "xpb": 7, "lb": 13, "id": 3027}, {"name": "Skeleton Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "fDef": -15, "aDef": 20, "lvl": 36, "agiReq": 10, "agi": 5, "spd": 6, "aDamPct": 7, "fDefPct": -5, "id": 3039}, {"name": "Skien's Madness", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "10-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 56, "dexReq": 30, "mdPct": 13, "str": 7, "dex": 13, "spd": 7, "atkTier": 7, "spRegen": -10, "mdRaw": 105, "spRaw2": 10, "id": 3040}, {"name": "Skien's Paranoia", "tier": "Rare", "type": "dagger", "thorns": 40, "category": "weapon", "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "ls": 140, "ms": -5, "ref": 25, "int": -5, "hpBonus": 475, "hprRaw": 60, "id": 3042}, {"name": "Skin Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 16, "lvl": 7, "xpb": 5, "id": 3043}, {"name": "Skin Piercer", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 5, "mdPct": 7, "dex": 9, "tDamPct": 10, "id": 3044}, {"name": "Sky Chef's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 4, "drop": "never", "hp": 3200, "lvl": 96, "xpb": 15, "lb": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 3046}, {"name": "Sky Reflector", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -60, "wDef": 15, "aDef": 70, "lvl": 65, "xpb": 5, "ref": 10, "wDamPct": 10, "aDefPct": 5, "id": 3048}, {"name": "Skyspiral", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-31", "fDam": "0-0", "wDam": "0-0", "aDam": "57-63", "tDam": "38-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 20, "agiReq": 25, "dex": 5, "def": -5, "spd": 20, "hpBonus": -320, "sdRaw": 60, "mdRaw": 59, "id": 3047}, {"name": "Sky Glaze", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-25", "fDam": "0-0", "wDam": "20-30", "aDam": "15-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "intReq": 10, "agiReq": 10, "sdPct": 12, "lb": 12, "dex": -10, "spd": 5, "tDamPct": -10, "id": 3045}, {"name": "Skyfall", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "agiReq": 38, "xpb": 6, "spd": 18, "fDamPct": -12, "wDamPct": -12, "aDamPct": 24, "tDamPct": -12, "eDamPct": -12, "id": 3049}, {"name": "Slap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "agi": 3, "mdRaw": 5, "type": "bracelet", "id": 3050}, {"name": "Sizzling Shawl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "fDef": 60, "wDef": 80, "tDef": -180, "lvl": 98, "intReq": 45, "defReq": 55, "hprPct": -35, "sdPct": 23, "expd": 25, "hprRaw": -150, "sdRaw": 152, "fDamPct": 20, "wDamPct": 20, "tDefPct": -30, "id": 3036}, {"name": "Slash and Burn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-35", "fDam": "25-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "strReq": 20, "defReq": 20, "xpb": 8, "str": 7, "expd": 12, "eDamPct": 15, "fDefPct": -12, "id": 3055}, {"name": "Slate Bow", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-18", "fDam": "10-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-18", "atkSpd": "NORMAL", "lvl": 19, "strReq": 10, "defReq": 10, "hprPct": 9, "def": 7, "expd": 6, "hpBonus": 30, "eDefPct": -10, "id": 3053}, {"name": "Sleeping Beast", "tier": "Unique", "type": "bow", "poison": 1730, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-200", "eDam": "95-155", "atkSpd": "SLOW", "lvl": 95, "strReq": 40, "dexReq": 40, "sdPct": 12, "mdPct": 12, "ms": 5, "dex": 9, "spd": -15, "fDefPct": -30, "id": 3054}, {"name": "Sledge", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 9, "str": 7, "spd": -10, "mdRaw": 20, "id": 3056}, {"name": "Skywatcher", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1950, "fDef": -100, "wDef": 50, "aDef": 100, "lvl": 84, "intReq": 20, "agiReq": 35, "hprPct": -25, "mr": 5, "xpb": 12, "ref": 12, "int": 5, "agi": 7, "spd": 12, "spRegen": 12, "sdRaw": 150, "id": 3052}, {"name": "Slippery Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": -4, "aDef": 4, "lvl": 11, "dex": -2, "agi": 3, "spd": 5, "id": 3060}, {"name": "Slicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "mdPct": 3, "str": 1, "id": 3058}, {"name": "Slipstream", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1800, "aDef": 50, "lvl": 79, "agiReq": 60, "sdPct": -15, "mdPct": 10, "lb": 20, "agi": 7, "expd": -30, "spd": 15, "aDamPct": 8, "id": 3059}, {"name": "Sloth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-58", "fDam": "17-25", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 19, "hprPct": 12, "def": 5, "spd": -15, "hprRaw": 7, "id": 3062}, {"name": "Slime-blend Leggings", "displayName": "Slime-Blend Leggings", "tier": "Rare", "type": "leggings", "poison": 17, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 7, "tDef": -10, "lvl": 15, "wDamPct": 7, "eDamPct": 7, "id": 3057}, {"name": "Smack Jacket", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -100, "lvl": 89, "strReq": 55, "dexReq": 55, "hprPct": -30, "sdPct": -30, "mdPct": 8, "ls": 170, "str": 10, "dex": 10, "expd": 20, "atkTier": 1, "id": 3061}, {"name": "Sliver", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 87, "dexReq": 25, "dex": 4, "def": -3, "mdRaw": 49, "type": "ring", "id": 3063}, {"name": "Slumber", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-210", "fDam": "0-0", "wDam": "115-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 40, "mr": 10, "sdPct": -15, "mdPct": -15, "spRegen": 3, "hprRaw": 70, "wDefPct": 10, "id": 3064}, {"name": "Smoldering Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 80, "wDef": -180, "lvl": 96, "sdPct": 30, "mdPct": 30, "expd": 25, "spd": 20, "hprRaw": -100, "fDamPct": 6, "wDamPct": -30, "id": 3067}, {"name": "Snakeroot Bow", "tier": "Legendary", "type": "bow", "poison": 435, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "50-85", "wDam": "0-0", "aDam": "0-0", "tDam": "50-85", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 34, "dexReq": 20, "defReq": 20, "sdPct": 10, "dex": 8, "spd": -15, "hpBonus": -200, "fDamPct": 12, "tDamPct": 12, "id": 3065}, {"name": "Snapdragon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-50", "fDam": "35-65", "wDam": "0-0", "aDam": "0-0", "tDam": "35-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 25, "defReq": 35, "ls": 140, "expd": 15, "hprRaw": 60, "eDamPct": -10, "wDefPct": -15, "id": 3066}, {"name": "Sneaky Caster", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-30", "fDam": "0-0", "wDam": "0-0", "aDam": "4-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "mdPct": -12, "lb": 5, "spd": 10, "eSteal": 5, "id": 3068}, {"name": "Snowslicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-32", "fDam": "0-0", "wDam": "18-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "intReq": 15, "mr": 5, "ref": 8, "wDamPct": 8, "fDefPct": -8, "id": 3070}, {"name": "Snow Dust", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": -20, "aDef": 25, "tDef": 25, "eDef": -20, "lvl": 52, "dex": 4, "agi": 4, "spd": 10, "tDamPct": 5, "aDefPct": 5, "id": 3069}, {"name": "Soaked Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "wDef": 4, "tDef": -6, "lvl": 13, "wDamPct": 10, "fDefPct": 7, "id": 3072}, {"name": "Soft Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 10, "aDef": 3, "tDef": -1, "lvl": 4, "agi": 1, "id": 3075}, {"name": "Soarfae", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2650, "fDef": -125, "aDef": 150, "lvl": 97, "agiReq": 65, "ref": 17, "agi": 20, "spd": 30, "atkTier": 1, "aDamPct": 30, "aDefPct": 10, "id": 3071}, {"name": "Sokoto", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 15, "lvl": 4, "agi": 3, "spd": 8, "aDamPct": 4, "id": 3073}, {"name": "Solitude", "tier": "Unique", "type": "bow", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-120", "fDam": "0-0", "wDam": "0-0", "aDam": "75-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "agiReq": 40, "sdPct": 9, "mdPct": -8, "xpb": 8, "spd": 14, "wDamPct": 7, "id": 3077}, {"name": "Solar Pillar", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-46", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 35, "defReq": 35, "sdPct": 10, "xpb": 12, "def": 7, "hpBonus": 600, "wDamPct": 25, "eDamPct": -120, "tDefPct": -25, "id": 3076}, {"name": "Solar Flare", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": -70, "tDef": 70, "lvl": 65, "dexReq": 30, "defReq": 30, "mdPct": 5, "expd": 10, "fDamPct": 8, "tDamPct": 8, "wDefPct": -10, "id": 3074}, {"name": "Solstice", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-65", "fDam": "20-25", "wDam": "25-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 25, "hprPct": 14, "def": 7, "hpBonus": 240, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 3080}, {"name": "Soldier", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 160, "lvl": 78, "str": 4, "def": 4, "type": "ring", "id": 3078}, {"name": "Someone Else's Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "32-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "hprPct": -8, "xpb": 10, "spRegen": -5, "mdRaw": 23, "id": 3079}, {"name": "Soul Wreath", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "wDef": 50, "eDef": 50, "lvl": 64, "strReq": 30, "intReq": 35, "mr": 5, "int": 4, "spd": -10, "spRegen": 10, "hprRaw": 60, "id": 3085}, {"name": "Souffle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "105-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 58, "agiReq": 28, "agi": 9, "spd": 10, "mdRaw": 80, "tDamPct": 15, "id": 3082}, {"name": "Sonicboom", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "417-531", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 36, "agiReq": 25, "sdPct": 30, "ms": 5, "agi": 12, "spd": 25, "aDamPct": 15, "spPct3": 35, "id": 3086}, {"name": "Soul", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "sdPct": 5, "mdPct": 4, "agi": 3, "aDamPct": 6, "fDefPct": -20, "id": 3083}, {"name": "Sorcerer's Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-23", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 46, "dexReq": 20, "intReq": 10, "sdPct": 14, "mdPct": -9, "ref": 6, "sdRaw": 50, "id": 3081}, {"name": "Sound of Silence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "aDef": 10, "lvl": 23, "agiReq": 12, "xpb": 15, "spd": 10, "mdRaw": 20, "aDamPct": 15, "id": 3084}, {"name": "Soul Signal", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 90, "tDef": 125, "eDef": -170, "lvl": 92, "dexReq": 50, "intReq": 50, "mdPct": -15, "ref": 25, "dex": 10, "int": 10, "spRegen": 25, "sdRaw": 222, "eDamPct": -80, "id": 3088}, {"name": "Soundgarden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "82-86", "tDam": "0-0", "eDam": "87-99", "atkSpd": "FAST", "lvl": 72, "strReq": 20, "agiReq": 25, "ls": -140, "ref": 25, "sdRaw": 110, "wDamPct": -25, "aDamPct": 14, "eDamPct": 14, "spRaw1": -5, "id": 3087}, {"name": "Soundwave", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "514-1143", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 59, "dexReq": 70, "sdPct": -40, "mdPct": 18, "dex": 8, "tDamPct": 12, "id": 3091}, {"name": "Sow Thistle", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 450, "aDef": -40, "eDef": 30, "lvl": 44, "strReq": 30, "hprPct": -15, "mdPct": 10, "spd": -12, "mdRaw": 80, "eDamPct": 15, "id": 3092}, {"name": "Spark of Courage", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-20", "fDam": "0-35", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 86, "agiReq": 35, "defReq": 35, "hprPct": 15, "sdPct": -12, "mdPct": -12, "ref": 8, "hpBonus": 900, "hprRaw": 130, "wDamPct": -20, "id": 3089}, {"name": "Sowilo", "tier": "Unique", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": 575, "fDef": 45, "wDef": -55, "tDef": 45, "eDef": -55, "lvl": 87, "dexReq": 20, "defReq": 20, "mdPct": 6, "ref": 5, "expd": 6, "type": "necklace", "id": 3090}, {"name": "Sparkles", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "dexReq": 22, "xpb": 12, "ref": 10, "aDefPct": -10, "tDefPct": 10, "id": 3098}, {"name": "Speaker", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": -100, "aDef": 100, "lvl": 87, "intReq": 40, "mr": 10, "xpb": 25, "ref": 10, "int": 7, "spRegen": 7, "id": 3100}, {"name": "Sparkling Tones", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "75-81", "aDam": "75-81", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "intReq": 44, "agiReq": 44, "mr": 5, "xpb": 15, "dex": -25, "spd": 15, "eSteal": 5, "sdRaw": 143, "wDefPct": 20, "aDefPct": 20, "id": 3093}, {"name": "Sparklock", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "mr": 5, "int": 3, "tDamPct": 5, "id": 3095}, {"name": "Spear of Prosperity", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "xpb": 5, "lb": 15, "eSteal": 5, "id": 3097}, {"name": "Spear of Sin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-125", "fDam": "105-175", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "dexReq": 35, "defReq": 25, "ls": 290, "dex": 5, "def": 16, "spRegen": -13, "fDamPct": 15, "wDamPct": -50, "tDamPct": 15, "id": 3096}, {"name": "Spear of Vix", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "22-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 5, "agiReq": 25, "sdPct": 8, "xpb": 8, "spd": 8, "fDamPct": -8, "aDamPct": 8, "fDefPct": -8, "aDefPct": 8, "id": 3099}, {"name": "Sphyken", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "dexReq": 50, "ms": 10, "int": 7, "hpBonus": -250, "sdRaw": 40, "wDamPct": 15, "aDamPct": -20, "tDefPct": 15, "id": 3101}, {"name": "Spectral Slingshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "25-75", "wDam": "25-75", "aDam": "25-75", "tDam": "25-75", "eDam": "25-75", "atkSpd": "FAST", "lvl": 67, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "xpb": 10, "id": 3102}, {"name": "Sparkling Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3750, "fDef": 50, "wDef": -50, "aDef": 100, "tDef": 100, "eDef": -50, "lvl": 99, "dexReq": 50, "agiReq": 50, "ls": 220, "ref": 17, "int": -30, "def": 8, "hprRaw": 150, "spPct1": -7, "spPct2": -14, "spPct3": -10, "id": 3094}, {"name": "Spectre", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1600, "fDef": -50, "eDef": -50, "lvl": 65, "agiReq": 35, "sdPct": 25, "mdPct": -35, "ms": 10, "agi": 9, "hpBonus": -250, "spRegen": -10, "aDamPct": 19, "tDamPct": 19, "eDamPct": -19, "aDefPct": 10, "id": 3105}, {"name": "Spectrum", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3300, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 97, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 3104}, {"name": "Spicy", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-20", "fDam": "12-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "defReq": 8, "def": 4, "mdRaw": 18, "fDamPct": 9, "id": 3103}, {"name": "Spike", "tier": "Rare", "type": "dagger", "poison": 320, "thorns": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "75-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "24-40", "atkSpd": "NORMAL", "lvl": 50, "strReq": 20, "sdPct": 5, "mdPct": 10, "spd": -5, "aDamPct": -20, "eDamPct": 20, "id": 3107}, {"name": "Spiked Cleats", "tier": "Unique", "type": "boots", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 48, "lvl": 13, "spd": -3, "mdRaw": 12, "id": 3140}, {"name": "Spirit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-54", "fDam": "0-0", "wDam": "0-0", "aDam": "43-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "agiReq": 15, "ms": 5, "agi": 10, "def": -8, "spRegen": 4, "aDamPct": 10, "fDefPct": -10, "id": 3112}, {"name": "Spine", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 30, "mdPct": 5, "expd": 10, "aDefPct": -10, "id": 3111}, {"name": "Spiked Helmet", "tier": "Rare", "type": "helmet", "thorns": 40, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "aDef": -70, "eDef": 95, "lvl": 74, "strReq": 25, "defReq": 35, "mdPct": 18, "def": 7, "spd": -8, "fDefPct": 18, "id": 3108}, {"name": "Spiritdancer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 94, "intReq": 65, "defReq": 65, "mr": 5, "sdPct": 21, "agi": 10, "spd": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 15, "tDamPct": -15, "eDamPct": -15, "id": 3615}, {"name": "Spiritshock", "tier": "Legendary", "type": "bow", "poison": 1200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "270-270", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 55, "ls": 375, "ms": 10, "dex": 13, "spRegen": -50, "sdRaw": 135, "eDefPct": -28, "id": 3110}, {"name": "Spleen Splitter", "tier": "Unique", "type": "relik", "poison": 3600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-5", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "mr": -10, "ls": 280, "ms": 5, "str": 10, "spd": 10, "hprRaw": -210, "id": 3109}, {"name": "Spontaneous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 71, "agiReq": 20, "defReq": 20, "ms": -5, "expd": 12, "spd": 8, "hpBonus": -330, "type": "bracelet", "id": 3113}, {"name": "Sprinter", "tier": "Unique", "type": "leggings", "sprint": 7, "category": "armor", "drop": "NORMAL", "hp": 30, "aDef": 3, "lvl": 12, "spd": 11, "id": 3115}, {"name": "Sprint Belt", "tier": "Rare", "type": "leggings", "sprint": 18, "category": "armor", "drop": "NORMAL", "lvl": 33, "agiReq": 33, "agi": 8, "spd": 18, "aDamPct": 18, "sprintReg": 18, "id": 3114}, {"name": "Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3119}, {"name": "Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3117}, {"name": "Sprintguard", "tier": "Rare", "type": "leggings", "sprint": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2950, "fDef": 60, "aDef": 60, "tDef": -150, "lvl": 82, "agiReq": 45, "defReq": 45, "sdPct": 10, "mdPct": -10, "int": -20, "agi": 7, "def": 7, "spd": 23, "wDamPct": -10, "spPct1": -14, "spPct2": -7, "sprintReg": 11, "id": 3116}, {"name": "Spruce Wood Shears", "displayName": "Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "id": 3118}, {"name": "Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3120}, {"name": "Spruce Wood Stick", "displayName": "Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3121}, {"name": "Spyrr", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "str": 3, "dex": 3, "id": 3122}, {"name": "Squall's Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "dexReq": 50, "agiReq": 40, "sdPct": 10, "agi": 9, "spd": 25, "hpBonus": -1000, "tDamPct": 20, "eDefPct": -11, "id": 3123}, {"name": "Squid Anklet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 40, "tDef": -60, "lvl": 83, "intReq": 45, "mr": 5, "fDamPct": -6, "wDamPct": 6, "type": "bracelet", "id": 3124}, {"name": "Squid Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "intReq": 25, "mr": 5, "ms": 5, "xpb": 10, "int": 7, "eSteal": 1, "fDamPct": -10, "fDefPct": 10, "wDefPct": 10, "tDefPct": -30, "id": 3125}, {"name": "Sreggad", "tier": "Rare", "type": "dagger", "thorns": 333, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "ls": 354, "ref": 333, "agi": 20, "def": 20, "hpBonus": 2500, "hprRaw": 173, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "id": 3129}, {"name": "Squidword's Clarinet", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "3-6", "aDam": "2-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "int": 4, "agi": 4, "spd": 5, "fDamPct": -10, "wDamPct": 8, "wDefPct": 7, "id": 3126}, {"name": "Staff of Regrowth", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 71, "strReq": 20, "intReq": 20, "mr": 10, "mdPct": -25, "wDefPct": 10, "eDefPct": 10, "id": 3131}, {"name": "Staccato", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -60, "tDef": 40, "eDef": 20, "lvl": 96, "strReq": 45, "dexReq": 45, "mr": -5, "ms": 10, "dex": 5, "mdRaw": 29, "type": "necklace", "id": 3128}, {"name": "StabSand", "displayName": "Stabsand", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-190", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 32, "ls": 38, "dex": 8, "expd": 30, "aDamPct": 12, "id": 3127}, {"name": "Stad Aer", "tier": "Unique", "type": "helmet", "thorns": 11, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1925, "fDef": -100, "eDef": 100, "lvl": 85, "strReq": 40, "agiReq": 40, "mdPct": 7, "ms": 10, "ref": 11, "str": 8, "mdRaw": 185, "aDamPct": 11, "aDefPct": 11, "id": 3130}, {"name": "Starburst", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "35-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "agiReq": 55, "ms": 10, "hprRaw": -150, "sdRaw": 160, "fDamPct": 10, "aDamPct": 20, "tDamPct": 10, "id": 3132}, {"name": "Stalagmites", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": -130, "aDef": -130, "tDef": 100, "eDef": 100, "lvl": 67, "strReq": 20, "dexReq": 20, "ms": 5, "xpb": 10, "str": 7, "dex": 7, "tDamPct": 25, "eDamPct": 25, "tDefPct": 20, "eDefPct": 20, "id": 3135}, {"name": "Stamina", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "aDef": 5, "lvl": 24, "def": 4, "spd": 6, "hprRaw": 5, "id": 3136}, {"name": "Standoff", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "lvl": 33, "defReq": 25, "def": 5, "spd": -28, "hpBonus": 200, "id": 3134}, {"name": "Starched Pants", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 16, "lvl": 5, "def": 4, "id": 3133}, {"name": "Starglass", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -100, "wDef": 60, "aDef": 140, "tDef": -40, "lvl": 95, "intReq": 40, "agiReq": 40, "sdPct": 30, "mdPct": -15, "ref": 20, "int": 7, "def": 7, "spRegen": 15, "fDamPct": 15, "wDamPct": 5, "aDefPct": 5, "id": 2517}, {"name": "Stasis", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-150", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 30, "mdPct": 10, "str": 7, "spd": -10, "eDamPct": 10, "aDefPct": -10, "eDefPct": 10, "id": 3137}, {"name": "Static Flood", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "42-51", "aDam": "0-0", "tDam": "7-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "dexReq": 35, "intReq": 30, "hprPct": -15, "sdPct": 5, "mdPct": -16, "ms": 10, "wDamPct": 10, "tDamPct": 13, "id": 3138}, {"name": "Static Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-66", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "dexReq": 30, "sdPct": 8, "mdPct": 5, "spd": 8, "tDamPct": 8, "tDefPct": 10, "id": 3139}, {"name": "Steam Vent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-128", "fDam": "48-85", "wDam": "0-0", "aDam": "37-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "agiReq": 20, "defReq": 20, "ls": 225, "agi": 7, "def": 7, "spd": 9, "wDefPct": -12, "eDefPct": -12, "id": 3143}, {"name": "Stave of Tribute", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "xpb": 7, "lb": 15, "id": 3141}, {"name": "Statue", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 7500, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 88, "spd": -200, "hpBonus": 3850, "id": 3142}, {"name": "Steamjet Walkers", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "tDef": -80, "lvl": 86, "dexReq": 30, "intReq": 30, "agiReq": 40, "sdPct": 24, "agi": 15, "spd": 21, "wDamPct": 21, "aDamPct": 24, "tDamPct": 21, "id": 3147}, {"name": "StealSkull", "displayName": "Stealskull", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 960, "lvl": 68, "ls": 110, "ms": 5, "eSteal": 5, "id": 3144}, {"name": "Steel Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "fDef": 12, "wDef": -10, "lvl": 45, "defReq": 15, "ref": 7, "def": 5, "spd": -3, "type": "bracelet", "id": 3148}, {"name": "Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-19", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 9, "expd": 5, "spd": -10, "aDamPct": -7, "eDamPct": 6, "id": 3145}, {"name": "Steel Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 415, "lvl": 46, "hprPct": 15, "mdPct": 6, "xpb": 10, "spd": -5, "id": 3150}, {"name": "Steel Wool", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "fDef": 80, "wDef": -120, "aDef": 80, "tDef": 80, "eDef": -120, "lvl": 90, "dexReq": 35, "defReq": 35, "sdPct": 15, "ls": 200, "dex": 8, "int": -22, "wDefPct": -15, "eDefPct": -15, "spPct1": -7, "spPct2": -7, "spPct3": -7, "spPct4": -7, "id": 3151}, {"name": "Steel Toed Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "fDef": 2, "eDef": 2, "lvl": 19, "def": 4, "hpBonus": 10, "id": 3152}, {"name": "Steel Sabre", "tier": "Unique", "type": "dagger", "poison": 150, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 35, "sdPct": 7, "mdPct": 4, "str": 5, "fDamPct": -15, "fDefPct": -15, "id": 3146}, {"name": "Stick of Brilliance", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "ms": 5, "xpb": 7, "int": 4, "id": 3154}, {"name": "Stingray", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-80", "aDam": "0-0", "tDam": "20-110", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "dexReq": 27, "intReq": 27, "sdPct": 10, "ms": 5, "dex": 5, "int": 8, "tDamPct": 10, "eDamPct": -14, "eDefPct": -14, "id": 3156}, {"name": "Stone Cutter", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "eSteal": 2, "eDamPct": 6, "id": 3153}, {"name": "Stellar", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 95, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 13, "mdPct": 13, "ms": 5, "spd": 10, "hpBonus": 577, "type": "necklace", "id": 3149}, {"name": "Stonehall", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 35, "strReq": 15, "str": 5, "spd": -3, "eDamPct": 8, "type": "ring", "id": 3159}, {"name": "StoneWall", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "fDef": -10, "wDef": -10, "aDef": -50, "tDef": -10, "eDef": 150, "lvl": 60, "strReq": 30, "mdPct": 5, "xpb": 10, "str": 8, "def": 5, "aDamPct": -40, "id": 3155}, {"name": "Storm Brewer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2550, "wDef": -150, "tDef": 50, "lvl": 86, "dexReq": 65, "mr": -15, "mdPct": 15, "ms": 15, "dex": 12, "sdRaw": 160, "mdRaw": 190, "wDamPct": -20, "tDamPct": 15, "id": 3160}, {"name": "Storm Surge", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-330", "aDam": "0-0", "tDam": "1-420", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "intReq": 35, "hprPct": -20, "ms": 10, "atkTier": -1, "hpBonus": -900, "sdRaw": 146, "wDamPct": 18, "tDamPct": 18, "aDefPct": -30, "eDefPct": -71, "id": 3157}, {"name": "Storm Caller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-115", "fDam": "0-0", "wDam": "0-0", "aDam": "55-70", "tDam": "50-85", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 30, "agiReq": 30, "sdPct": 12, "def": -8, "spd": 8, "aDamPct": 12, "tDamPct": 12, "wDefPct": -24, "eDefPct": -24, "id": 3158}, {"name": "Stormdrain", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "220-225", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 55, "mr": 20, "sdPct": -15, "mdPct": -30, "int": 15, "wDamPct": 55, "wDefPct": -20, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3161}, {"name": "Stranglevine", "tier": "Unique", "type": "bow", "poison": 810, "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-120", "atkSpd": "SLOW", "lvl": 63, "hprPct": -20, "ls": 175, "fDefPct": -10, "id": 3163}, {"name": "Stratosphere", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": -60, "wDef": 120, "aDef": -60, "tDef": 120, "eDef": -120, "lvl": 98, "dexReq": 65, "intReq": 65, "mr": 10, "sdPct": 25, "wDamPct": 10, "tDamPct": 10, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "jh": 3, "id": 3591}, {"name": "Stormflash", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "1-23", "aDam": "0-0", "tDam": "1-23", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "intReq": 15, "hprPct": -9, "sdPct": 8, "xpb": 8, "dex": 5, "int": 5, "eDefPct": -10, "id": 3165}, {"name": "Straw Helmet", "tier": "Unique", "type": "helmet", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "fDef": -5, "wDef": -5, "lvl": 20, "xpb": 5, "spd": 6, "id": 3167}, {"name": "Stormstrike", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "agi": 4, "id": 3162}, {"name": "Streak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 175, "tDef": 10, "eDef": -10, "lvl": 30, "dexReq": 10, "ref": 3, "dex": 5, "spd": 10, "hpBonus": -30, "tDamPct": 10, "eDefPct": -15, "id": 3166}, {"name": "Stress", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 30, "lb": 10, "spd": 5, "hpBonus": -18, "spRegen": -10, "hprRaw": -7, "id": 3169}, {"name": "Striker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-10", "fDam": "0-0", "wDam": "0-0", "aDam": "4-7", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdPct": 5, "agi": 3, "def": -2, "hpBonus": -9, "mdRaw": 8, "id": 3168}, {"name": "Stringendo", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "agi": 4, "spd": 12, "id": 3175}, {"name": "Struggle", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "tDef": 180, "eDef": -150, "lvl": 90, "dexReq": 50, "mdPct": 20, "ms": 10, "dex": 10, "expd": 30, "atkTier": -6, "mdRaw": 775, "wDamPct": -23, "tDamPct": 31, "id": 3170}, {"name": "Sturdy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1800, "fDef": 40, "eDef": 40, "lvl": 79, "strReq": 40, "defReq": 40, "sdPct": -8, "xpb": 9, "def": 7, "hpBonus": 600, "eDefPct": 13, "id": 3171}, {"name": "Strobelight", "tier": "Fabled", "majorIds": ["TAUNT"], "category": "accessory", "drop": "lootchest", "hp": 350, "lvl": 54, "classReq": "Warrior", "defReq": 30, "ref": 15, "def": 7, "spd": -7, "type": "necklace", "id": 3172}, {"name": "Sublime", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1350, "fDef": 60, "aDef": 60, "lvl": 64, "agiReq": 50, "defReq": 50, "sdPct": -15, "mdPct": -15, "agi": 7, "def": 7, "spd": 8, "hpBonus": 200, "fDefPct": 10, "aDefPct": 10, "id": 3178}, {"name": "Stylist's Scissors", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-54", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "dexReq": 15, "xpb": 12, "lb": 10, "atkTier": 1, "eSteal": 5, "eDamPct": -5, "id": 3173}, {"name": "Sublimator", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": 70, "wDef": -90, "eDef": 70, "lvl": 66, "strReq": 30, "defReq": 30, "mdPct": 14, "def": 5, "spd": -8, "fDamPct": 16, "eDamPct": 16, "wDefPct": -18, "id": 3174}, {"name": "Subsumere", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "30-50", "aDam": "0-0", "tDam": "20-55", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 15, "intReq": 20, "sdPct": -10, "ls": 160, "ms": 10, "id": 3177}, {"name": "Stratus", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 93, "intReq": 60, "agiReq": 30, "ms": 5, "agi": 8, "spd": 11, "type": "ring", "id": 3164}, {"name": "Succulent Sneakers", "tier": "Unique", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 835, "wDef": 30, "eDef": 40, "lvl": 60, "strReq": 30, "intReq": 20, "hprPct": 20, "sdPct": -8, "wDefPct": 9, "aDefPct": -11, "eDefPct": 9, "id": 3176}, {"name": "Jewelled Sinew", "displayName": "Subtle Calamity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-135", "tDam": "0-0", "eDam": "80-135", "atkSpd": "VERY_FAST", "lvl": 90, "strReq": 35, "agiReq": 30, "mr": -5, "sdPct": 15, "ms": 5, "int": 10, "agi": 10, "fDefPct": -12, "tDefPct": -12, "id": 3179}, {"name": "Suchimu", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": 40, "wDef": 40, "lvl": 53, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "sdPct": -8, "mdPct": -8, "int": 4, "def": 4, "hprRaw": 35, "tDamPct": -30, "id": 3180}, {"name": "Sulphurous Sling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "6-15", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 45, "dexReq": 25, "defReq": 10, "sdPct": 14, "mdPct": -20, "expd": 12, "tDamPct": 14, "wDefPct": -12, "id": 3181}, {"name": "Sunray", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "fDef": 90, "tDef": 90, "lvl": 96, "dexReq": 20, "defReq": 20, "hprPct": 18, "ms": 5, "ref": 15, "dex": 5, "def": 5, "sdRaw": 160, "wDefPct": -10, "aDefPct": -10, "id": 3183}, {"name": "Sunbreeze", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "8-12", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 15, "agi": 5, "def": 5, "spd": 5, "hpBonus": 270, "wDefPct": -6, "id": 3184}, {"name": "Sunblock", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 124, "fDef": 10, "wDef": -7, "lvl": 24, "defReq": 5, "hprPct": 14, "ref": 6, "fDefPct": 5, "id": 3182}, {"name": "Sunsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "24-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 15, "agiReq": 5, "mr": 5, "xpb": 8, "ref": 5, "def": -3, "fDamPct": -15, "aDamPct": 10, "fDefPct": 5, "tDefPct": -5, "id": 3185}, {"name": "Sunrise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-35", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": 5, "xpb": 10, "lb": 10, "ref": 20, "id": 3186}, {"name": "Sunshade", "tier": "Rare", "type": "helmet", "thorns": -10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "fDef": 15, "wDef": -15, "lvl": 37, "ref": 15, "fDamPct": -5, "fDefPct": 8, "tDefPct": 8, "id": 3187}, {"name": "Sunshower", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "fDef": 60, "wDef": 60, "aDef": 90, "eDef": -125, "lvl": 83, "intReq": 40, "defReq": 40, "mr": 5, "xpb": 13, "agi": 8, "hprRaw": 100, "fDamPct": 13, "wDamPct": 13, "fDefPct": 13, "wDefPct": 13, "eDefPct": -20, "id": 3189}, {"name": "Sunshine Shortsword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "13-21", "wDam": "0-0", "aDam": "0-0", "tDam": "13-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 46, "dexReq": 20, "defReq": 20, "dex": 5, "def": 5, "hpBonus": 125, "id": 3188}, {"name": "Sunstruck", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "defReq": 30, "spRegen": 20, "hprRaw": 80, "sdRaw": -63, "mdRaw": -109, "fDamPct": 15, "id": 3191}, {"name": "Supernova", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-30", "wDam": "11-30", "aDam": "11-30", "tDam": "11-30", "eDam": "11-30", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "expd": 19, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 3190}, {"name": "Suppression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 76, "hprPct": 4, "mr": 10, "ls": -145, "ms": -20, "type": "ring", "id": 3192}, {"name": "Svalinn", "tier": "Rare", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1450, "fDef": 150, "wDef": 50, "lvl": 66, "intReq": 15, "defReq": 30, "hprPct": 30, "mr": 5, "ref": 15, "agi": -5, "def": 12, "spd": -28, "eDefPct": -25, "id": 3193}, {"name": "Swift", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 3, "spd": 5, "mdRaw": 1, "type": "necklace", "id": 3194}, {"name": "Swamp Clay", "tier": "Unique", "type": "helmet", "poison": 350, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "wDef": 65, "aDef": -70, "tDef": -70, "eDef": 65, "lvl": 78, "strReq": 35, "intReq": 30, "mr": 5, "sdPct": 6, "mdPct": 6, "spd": -7, "tDamPct": -12, "id": 3210}, {"name": "Switch Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "sdPct": 5, "dex": 3, "id": 3197}, {"name": "Sweden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-28", "fDam": "0-0", "wDam": "0-0", "aDam": "21-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "agiReq": 14, "ref": 14, "agi": 7, "spd": 14, "jh": 1, "id": 3195}, {"name": "Sylar", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-63", "fDam": "0-0", "wDam": "0-0", "aDam": "9-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "agiReq": 15, "agi": 5, "spd": 11, "sdRaw": 25, "aDefPct": 10, "id": 3199}, {"name": "Synthesizer", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "99-241", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "99-202", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 30, "intReq": 35, "xpb": 12, "dex": 8, "sdRaw": 100, "wDamPct": 25, "eDamPct": -23, "eDefPct": -16, "id": 3202}, {"name": "Synergy", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1000, "lvl": 59, "xpb": 6, "lb": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 3201}, {"name": "Syringe", "tier": "Unique", "type": "spear", "poison": -245, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "20-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 15, "ls": 41, "hpBonus": 190, "hprRaw": 19, "fDamPct": 13, "id": 3200}, {"name": "Agile Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 15, "lvl": 62, "agi": 3, "spd": 9, "aDamPct": 6, "type": "ring", "fixID": true, "id": 3203}, {"name": "Dark Band", "tier": "Rare", "quest": "Lost in the Jungle", "thorns": 8, "category": "accessory", "drop": "never", "tDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "dexReq": 10, "tDamPct": 6, "eDamPct": 6, "aDefPct": -8, "type": "bracelet", "fixID": true, "id": 3205}, {"name": "Barbaric Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "agiReq": 10, "mdPct": 8, "aDamPct": 6, "eDamPct": 6, "fDefPct": -8, "type": "necklace", "fixID": true, "id": 3204}, {"name": "Chaotic Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 25, "tDef": 25, "lvl": 63, "dexReq": 10, "intReq": 10, "sdRaw": 30, "wDamPct": 6, "tDamPct": 6, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 3206}, {"name": "Droughted Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "aDef": 25, "lvl": 63, "agiReq": 10, "defReq": 10, "expd": 8, "fDamPct": 6, "aDamPct": 6, "wDefPct": -8, "type": "necklace", "fixID": true, "id": 3209}, {"name": "Energy Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "tDef": 15, "lvl": 62, "dex": 3, "mdRaw": 29, "tDamPct": 6, "type": "ring", "fixID": true, "id": 3208}, {"name": "Force Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "eDef": 15, "lvl": 62, "mdPct": 6, "str": 3, "eDamPct": 6, "type": "ring", "fixID": true, "id": 3212}, {"name": "Mask of Courage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3NzYyMzIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzNhYTdlYzgyNGQ4NWViOWZjNzhlZmM5NjY4OWI4YTlmZTgyODgzOGJiMTZmZWU1MmZmOWNhYWFlODNjYzNhIn19fQ==", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "fDef": 100, "lvl": 57, "defReq": 30, "hprPct": 20, "lb": 10, "def": 5, "hpBonus": 500, "fDamPct": 20, "fixID": true, "id": 3214}, {"name": "Magical Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 15, "lvl": 62, "sdPct": 6, "int": 3, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3211}, {"name": "Mask of Fear", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3MTAxODQsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmFiZWVhYjUxYzM2NDc1ZDA2ZjY4M2M5MWVhOGIzZTM4MmE5ZTcxZTg0NzEyOWNlY2RlODcxMWQ5N2JkYTYifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": 80, "lvl": 57, "agiReq": 30, "lb": 10, "agi": 5, "spd": 15, "aDamPct": 20, "fixID": true, "id": 3215}, {"name": "Mask of Enlightement", "displayName": "Mask of Enlightenment", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU1NjgzMzAsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGI3NDgyNTdlZWU3NjhiNmQwM2I0ZWRhNTNjZmI1MmM1YWZmYmYxNmI3ZDhkOTNkNGQ2MWNlYjRjNmUyMTE0In19fQ==", "tier": "Legendary", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 750, "wDef": 60, "lvl": 57, "intReq": 30, "mr": 10, "sdPct": 10, "lb": 10, "int": 5, "wDamPct": 20, "fixID": true, "id": 3216}, {"name": "Guardian Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 15, "lvl": 62, "def": 3, "hpBonus": 230, "fDamPct": 6, "type": "ring", "fixID": true, "id": 3207}, {"name": "Synapse", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": -60, "eDef": -60, "lvl": 93, "strReq": 35, "agiReq": 35, "hprPct": -15, "ms": 5, "sdRaw": 120, "mdRaw": -120, "type": "bracelet", "id": 3198}, {"name": "Mask of Rage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2MTgwMzUsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmFjYzg3MmEwZGQ3MjI3NDg5ZmRlZGJlYmMyZWE2MjE1OGVlZjdlNWRkOTZjYzg3Njk5OTc3YWI5MjBmYSJ9fX0=", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1050, "eDef": 40, "lvl": 57, "strReq": 30, "mdPct": 25, "lb": 10, "str": 5, "eDamPct": 20, "fixID": true, "id": 3219}, {"name": "Scalding Band", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 63, "intReq": 10, "defReq": 10, "sdPct": 8, "fDamPct": 6, "wDamPct": 6, "tDefPct": -8, "type": "bracelet", "fixID": true, "id": 3217}, {"name": "Tachypsychia", "tier": "Fabled", "type": "relik", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "85-125", "eDam": "85-125", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 50, "dexReq": 50, "sdPct": 40, "spd": 20, "hprRaw": -245, "spRaw1": 5, "spRaw4": 5, "id": 3550}, {"name": "Tainted Step", "tier": "Unique", "type": "boots", "poison": 140, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": -25, "wDef": -25, "aDef": -25, "lvl": 51, "strReq": 30, "mdPct": 12, "ls": 42, "spRegen": -5, "hprRaw": -15, "id": 3220}, {"name": "Tactical Kukri", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-72", "fDam": "34-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "defReq": 35, "lb": 10, "hpBonus": 680, "eSteal": 5, "id": 3218}, {"name": "Mask of Hate", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2NzA3NjIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWMzMmRlZDVkNzY1N2RmMzExMTRkZmRkMzE5MjE5MzM3ZTU3NjQ2NWI3Nzk3ZGMwNmI1NjMyY2ViZDRjMzcifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "tDef": 20, "lvl": 57, "dexReq": 30, "lb": 10, "dex": 5, "mdRaw": 110, "tDamPct": 20, "fixID": true, "id": 3213}, {"name": "Tailwind", "tier": "Unique", "type": "leggings", "sprint": 16, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -150, "aDef": 150, "lvl": 91, "agiReq": 45, "sdPct": 19, "mdPct": 12, "ms": 10, "agi": 8, "spd": 18, "aDamPct": 20, "eDamPct": -15, "aDefPct": 8, "eDefPct": -25, "id": 3221}, {"name": "Takeover", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 50, "wDef": -50, "tDef": 100, "eDef": -100, "lvl": 77, "dexReq": 45, "ls": 115, "dex": 5, "int": -4, "def": 4, "sdRaw": 75, "fDamPct": 9, "wDamPct": -12, "tDamPct": 6, "id": 3222}, {"name": "Talisman Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 70, "sdPct": 5, "xpb": 5, "hpBonus": 340, "type": "necklace", "id": 3224}, {"name": "Takan's Treachery", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -45, "lvl": 30, "ls": 8, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 3223}, {"name": "Talcum", "tier": "Unique", "type": "helmet", "poison": 280, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1325, "aDef": -80, "eDef": 40, "lvl": 72, "strReq": 40, "mdPct": 8, "lb": 11, "str": 8, "eDamPct": 14, "wDefPct": -13, "aDefPct": -10, "id": 3227}, {"name": "Talaria", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 770, "fDef": -40, "lvl": 59, "agiReq": 70, "mdPct": -20, "lb": 20, "agi": 9, "spd": 23, "id": 3225}, {"name": "Tarnhelm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 240, "wDef": -20, "eDef": 20, "lvl": 33, "mdPct": 10, "str": 9, "id": 3230}, {"name": "Tarnish", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "wDef": 5, "aDef": -6, "lvl": 21, "intReq": 5, "ms": 5, "xpb": 8, "ref": -4, "wDamPct": 9, "aDefPct": -7, "id": 3226}, {"name": "Tarnkappe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "lvl": 59, "dexReq": 20, "agiReq": 40, "dex": 8, "agi": 10, "def": -15, "spd": 12, "mdRaw": 100, "aDamPct": 15, "tDamPct": 15, "id": 3229}, {"name": "Tarod's Search", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 10, "lvl": 47, "intReq": 5, "agiReq": 5, "ref": 7, "spd": 7, "hpBonus": -40, "wDefPct": 6, "type": "bracelet", "id": 3228}, {"name": "Tashkil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "80-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "defReq": 50, "hprPct": 15, "sdPct": -7, "mdPct": 20, "ms": -5, "def": 8, "spd": -6, "hprRaw": 150, "fDefPct": 20, "id": 3232}, {"name": "Taurus", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 4000, "fDef": -80, "eDef": 200, "lvl": 96, "strReq": 90, "mdPct": 50, "str": 15, "expd": 30, "atkTier": -20, "mdRaw": 1500, "id": 3234}, {"name": "Tarok's Parka", "displayName": "Tarod's Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "fDef": -2, "wDef": 6, "lvl": 10, "mr": 5, "int": 4, "sdRaw": 5, "id": 3233}, {"name": "Tear of Pirate Cove", "tier": "Rare", "quest": "Redbeard^s Booty", "category": "accessory", "drop": "never", "wDef": 20, "lvl": 61, "intReq": 40, "mr": 5, "sdPct": 4, "ms": -10, "sdRaw": 20, "type": "bracelet", "id": 3237}, {"name": "Teal Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 50, "eDef": 30, "lvl": 71, "intReq": 25, "mr": 5, "xpb": 6, "str": 5, "eDamPct": 12, "wDefPct": 7, "id": 3231}, {"name": "Technicolor Phase", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "7-9", "wDam": "7-9", "aDam": "7-9", "tDam": "7-9", "eDam": "7-9", "atkSpd": "NORMAL", "lvl": 21, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spRegen": 10, "id": 3239}, {"name": "Tears", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 51, "intReq": 40, "sdPct": 3, "ls": -21, "ms": 5, "int": 3, "type": "ring", "id": 3236}, {"name": "Tectonics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "eDef": 40, "lvl": 65, "strReq": 50, "mdPct": 8, "str": 5, "spd": -12, "eDamPct": 10, "eDefPct": 12, "id": 3235}, {"name": "Tempest", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "5-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 20, "agiReq": 20, "dex": 7, "agi": 7, "spd": 10, "mdRaw": 33, "fDamPct": -15, "fDefPct": -15, "id": 3238}, {"name": "Templar", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 50, "agiReq": 25, "defReq": 35, "sdPct": -15, "xpb": 4, "lb": 6, "spd": -15, "spRegen": 5, "eSteal": -5, "wDamPct": -10, "id": 3244}, {"name": "Tempered Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1300, "lvl": 65, "defReq": 30, "def": 8, "fDamPct": 6, "fDefPct": 4, "wDefPct": 4, "aDefPct": 4, "tDefPct": 4, "eDefPct": 4, "id": 3240}, {"name": "Tenuto", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 30, "wDef": -50, "tDef": 30, "lvl": 79, "dexReq": 40, "defReq": 40, "sdPct": 12, "dex": 4, "def": 4, "spd": -8, "atkTier": -6, "type": "necklace", "id": 3242}, {"name": "Tephra", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1875, "fDef": 90, "wDef": -100, "eDef": 90, "lvl": 80, "strReq": 40, "defReq": 35, "hprPct": 18, "mdPct": 10, "str": 7, "def": 7, "expd": 15, "fDamPct": 18, "eDamPct": 18, "id": 3243}, {"name": "Tepid Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "fDef": 6, "wDef": -3, "lvl": 20, "defReq": 5, "def": 3, "hpBonus": 15, "fDamPct": 4, "wDamPct": -6, "id": 3246}, {"name": "Terraflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": -80, "eDef": 80, "lvl": 78, "strReq": 50, "mr": -5, "sdPct": -10, "mdPct": 13, "ls": 75, "str": 7, "int": -5, "wDamPct": -10, "eDamPct": 10, "id": 3248}, {"name": "Tesla", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1100, "wDef": 180, "tDef": 120, "lvl": 97, "dexReq": 80, "ls": 280, "ms": 15, "dex": 13, "sdRaw": 185, "tDamPct": 40, "eDamPct": -30, "aDefPct": -20, "id": 3247}, {"name": "Terra's Mold", "tier": "Legendary", "type": "chestplate", "poison": 1500, "thorns": 15, "sprint": -25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "wDef": 50, "aDef": -125, "eDef": 175, "lvl": 90, "strReq": 60, "hprPct": -20, "mdPct": 23, "ms": 5, "str": 10, "eDamPct": 31, "id": 3245}, {"name": "The Chapel", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 32, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "hprPct": 10, "xpb": 10, "spRegen": 15, "id": 3252}, {"name": "The Abacus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-45", "fDam": "0-0", "wDam": "0-0", "aDam": "41-44", "tDam": "0-0", "eDam": "42-43", "atkSpd": "SLOW", "lvl": 45, "strReq": 35, "agiReq": 25, "mdPct": 7, "str": 7, "agi": 8, "aDamPct": 8, "eDamPct": 9, "fDefPct": -11, "wDefPct": -10, "id": 3250}, {"name": "Temporal Lantern", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "101-101", "wDam": "0-0", "aDam": "95-107", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "agiReq": 22, "defReq": 22, "str": -3, "dex": -3, "int": -3, "agi": 8, "def": 8, "spd": -15, "hpBonus": 285, "hprRaw": 35, "wDamPct": 20, "id": 3241}, {"name": "The Dreamer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-90", "fDam": "0-0", "wDam": "0-0", "aDam": "10-80", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 30, "agiReq": 30, "sdPct": 13, "dex": 14, "agi": 14, "spRegen": 15, "eDamPct": -30, "fDefPct": -30, "id": 3255}, {"name": "The Archaeologist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "aDef": -15, "eDef": 25, "lvl": 24, "strReq": 10, "xpb": 6, "lb": 6, "str": 4, "eDamPct": 7, "aDefPct": -8, "eDefPct": 10, "id": 3251}, {"name": "The Creationist", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "17-22", "aDam": "17-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "intReq": 35, "agiReq": 35, "sdPct": 19, "mdPct": -14, "str": -4, "dex": -4, "int": 8, "agi": 8, "def": -4, "id": 3249}, {"name": "The Sinner", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1150, "fDef": 80, "wDef": -80, "aDef": -80, "tDef": 80, "lvl": 67, "dexReq": 25, "defReq": 25, "mdPct": 12, "dex": 5, "def": 5, "spRegen": -15, "hprRaw": -45, "fDamPct": 12, "tDamPct": 12, "id": 3256}, {"name": "The Medic", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "45-55", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "intReq": 35, "defReq": 35, "hprPct": 20, "mr": 10, "sdPct": -15, "mdPct": -15, "hprRaw": 50, "wDamPct": 10, "id": 3253}, {"name": "The Banhammer", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "14-20", "atkSpd": "SLOW", "lvl": 28, "sdPct": -10, "mdPct": 10, "expd": 10, "id": 3254}, {"name": "The Berserk", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-22", "atkSpd": "SLOW", "lvl": 19, "strReq": 10, "sdPct": -10, "mdPct": 10, "str": 7, "dex": -5, "expd": 5, "aDamPct": -10, "eDamPct": 10, "aDefPct": -10, "id": 3258}, {"name": "The Berserker's Helm", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 310, "lvl": 34, "strReq": 25, "mdPct": 21, "ls": 26, "str": 9, "int": -3, "eSteal": 3, "hprRaw": -13, "id": 3257}, {"name": "The Brain Smasher", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "7-17", "atkSpd": "VERY_SLOW", "lvl": 20, "strReq": 5, "sdPct": -6, "mdPct": 4, "str": 4, "expd": 3, "aDefPct": -5, "id": 3260}, {"name": "The Brigand's Brogues", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 145, "lvl": 25, "dexReq": 10, "agiReq": 5, "dex": 4, "spd": 14, "eSteal": 4, "tDamPct": 10, "id": 3259}, {"name": "The Elder Wand", "tier": "Unique", "type": "wand", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "24-46", "aDam": "0-0", "tDam": "0-0", "eDam": "40-48", "atkSpd": "SLOW", "lvl": 62, "strReq": 10, "intReq": 10, "def": -10, "mdRaw": 70, "fDamPct": -10, "eDamPct": 12, "fDefPct": -10, "id": 3263}, {"name": "The End", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "235-260", "tDam": "0-0", "eDam": "260-290", "atkSpd": "SLOW", "lvl": 100, "strReq": 55, "agiReq": 55, "mdPct": 35, "ls": 450, "agi": 10, "spd": 25, "sdRaw": -210, "mdRaw": 365, "wDefPct": -45, "id": 3265}, {"name": "The Eviscerator", "tier": "Rare", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "strReq": 20, "dexReq": 20, "ls": 150, "str": 13, "dex": 7, "spd": 10, "id": 3267}, {"name": "The Divide", "tier": "Legendary", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-24", "wDam": "1-24", "aDam": "1-24", "tDam": "1-24", "eDam": "1-24", "atkSpd": "NORMAL", "lvl": 26, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 10, "ms": 5, "expd": 7, "spd": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 3262}, {"name": "The Ephemeral", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2125, "wDef": 100, "aDef": 100, "tDef": -130, "lvl": 87, "intReq": 45, "agiReq": 45, "mr": 10, "sdPct": 14, "mdPct": -15, "int": 7, "agi": 7, "aDamPct": 12, "tDefPct": -10, "id": 3264}, {"name": "The Euphoric Fedora", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 69, "lvl": 14, "ls": 5, "dex": 3, "spd": -4, "eSteal": 2, "id": 3266}, {"name": "The Exile", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "defReq": 50, "hprPct": 30, "mdPct": -5, "ls": 190, "str": -5, "def": 13, "spd": -5, "hpBonus": 1000, "fDefPct": 45, "id": 3269}, {"name": "The Forgery", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 100, "aDef": 30, "tDef": 30, "lvl": 74, "defReq": 30, "hprPct": 36, "lb": 19, "def": 9, "spd": -8, "eSteal": 5, "fDamPct": 11, "fDefPct": 35, "wDefPct": -20, "aDefPct": -5, "tDefPct": -5, "eDefPct": -20, "id": 3268}, {"name": "The Gambler", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -325, "lvl": 81, "ls": 80, "ms": 5, "lb": 7, "hpBonus": 325, "eSteal": 4, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "type": "ring", "id": 3270}, {"name": "The Golem", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4300, "fDef": 200, "wDef": -150, "aDef": 150, "tDef": 100, "eDef": 100, "lvl": 97, "defReq": 100, "ls": 300, "ref": 30, "agi": 10, "def": 15, "spd": -25, "hprRaw": 200, "wDamPct": -20, "fDefPct": 30, "id": 3275}, {"name": "The King's Robe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 11, "lvl": 3, "xpb": 8, "lb": 4, "id": 3274}, {"name": "The Jingling Jester", "tier": "Fabled", "type": "chestplate", "majorIds": ["GREED"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2325, "fDef": 1, "wDef": 1, "aDef": 1, "tDef": 1, "eDef": 1, "lvl": 69, "ls": 150, "xpb": 25, "lb": 25, "hprRaw": -101, "spPct2": -31, "spPct4": -10, "jh": 2, "id": 3621}, {"name": "The Head Ripper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "10-15", "atkSpd": "SLOW", "lvl": 30, "strReq": 5, "agiReq": 5, "sdPct": 5, "mdPct": 5, "agi": 7, "spd": 5, "id": 3271}, {"name": "The Knight's Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 440, "tDef": 15, "eDef": -20, "lvl": 43, "sdPct": 5, "xpb": 8, "str": 7, "dex": 7, "tDamPct": 15, "eDamPct": -30, "tDefPct": 10, "eDefPct": -10, "id": 3272}, {"name": "The Leech Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 4, "ls": 2, "id": 3278}, {"name": "The Levee", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 40, "wDef": 40, "lvl": 46, "intReq": 15, "defReq": 30, "sdPct": -10, "mdPct": -15, "def": 9, "spd": -15, "fDamPct": 15, "wDamPct": 15, "fDefPct": 20, "wDefPct": 20, "id": 3276}, {"name": "The Master's Gi", "tier": "Rare", "type": "chestplate", "quest": "Enter the Dojo", "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "lvl": 89, "hprPct": 20, "mr": 5, "xpb": 15, "spd": 12, "fDamPct": 26, "eDamPct": 26, "id": 3277}, {"name": "The Mark", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 800, "wDef": -30, "lvl": 56, "dexReq": 35, "defReq": 35, "sdPct": 20, "lb": 10, "int": -5, "spRegen": -10, "wDamPct": -10, "fDefPct": 15, "tDefPct": 15, "id": 3273}, {"name": "The Meddler", "tier": "Rare", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 19, "intReq": 8, "ls": 4, "ref": 6, "hprRaw": -2, "sdRaw": 4, "mdRaw": -4, "type": "bracelet", "id": 3280}, {"name": "The Nautilus", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-70", "fDam": "0-0", "wDam": "28-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 48, "intReq": 25, "mr": 5, "lb": 10, "ref": 5, "spd": 5, "fDefPct": 10, "wDefPct": 5, "tDefPct": -10, "id": 3281}, {"name": "The Mind", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-24", "fDam": "0-0", "wDam": "16-26", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "intReq": 20, "sdPct": 16, "mdPct": -10, "xpb": 6, "int": 7, "id": 3279}, {"name": "The Old King's Crown", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": 5, "wDef": -2, "lvl": 14, "def": 4, "fDefPct": 5, "id": 3284}, {"name": "The Out", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "xpb": 6, "spd": 5, "hpBonus": 6, "id": 3285}, {"name": "The Oblivious", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 1450, "lvl": 62, "sdPct": 7, "mdPct": 11, "xpb": 25, "hpBonus": 550, "hprRaw": 35, "fDamPct": -40, "wDamPct": -40, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 3282}, {"name": "The Oppressors", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2000, "lvl": 75, "defReq": 75, "dex": -3, "int": -3, "agi": -3, "def": 17, "spd": -15, "atkTier": -1, "hpBonus": 900, "id": 3283}, {"name": "The Parasite", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-175", "eDam": "70-125", "atkSpd": "SLOW", "lvl": 98, "strReq": 45, "dexReq": 45, "mr": -15, "ls": 430, "ms": 10, "expd": 25, "hpBonus": -1350, "hprRaw": -200, "tDamPct": 17, "eDamPct": 17, "fDefPct": -28, "id": 3287}, {"name": "The Rainmaker", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-152", "aDam": "0-0", "tDam": "0-152", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 40, "intReq": 40, "ls": -365, "ms": -10, "atkTier": 1, "sdRaw": 155, "mdRaw": 95, "tDamPct": 20, "eDamPct": 20, "id": 3290}, {"name": "The Queen's Tiara", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 19, "lvl": 5, "xpb": 4, "lb": 8, "id": 3286}, {"name": "The Prisoner", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "lvl": 79, "strReq": 55, "agi": -10, "def": 17, "spd": -40, "hpBonus": 1615, "id": 3288}, {"name": "The Rupturer", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -100, "eDef": 80, "lvl": 81, "strReq": 60, "mdPct": 10, "str": 15, "expd": 25, "eDamPct": 25, "aDefPct": -10, "id": 3315}, {"name": "The Smoking Barrel", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-400", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 20, "str": 5, "dex": 5, "expd": 15, "spd": -10, "eDamPct": 10, "id": 3292}, {"name": "The Scarecrow's Arm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 3, "mdPct": 3, "id": 3289}, {"name": "The Skin Tearer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 3, "str": 4, "dex": 4, "id": 3291}, {"name": "The Stokers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3100, "lvl": 95, "defReq": 75, "mr": 5, "mdPct": -25, "def": 15, "hprRaw": 135, "mdRaw": 285, "fDamPct": 10, "fDefPct": 15, "id": 3296}, {"name": "The Specialist", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "xpb": 20, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "fDamPct": 1176, "wDamPct": 1334, "aDamPct": 1176, "tDamPct": 889, "eDamPct": 1000, "id": 3293}, {"name": "The Thief", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 34, "mdPct": -4, "ls": 20, "ms": 5, "dex": 1, "spd": 4, "eSteal": 5, "id": 3295}, {"name": "The Vampire Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-40", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ls": 47, "spRegen": 5, "id": 3298}, {"name": "The Traveler", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-87", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 49, "mdPct": 10, "agi": 8, "spd": 23, "eSteal": 2, "aDamPct": 10, "id": 3294}, {"name": "The Wildwing", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-23", "fDam": "0-0", "wDam": "0-0", "aDam": "15-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "agiReq": 5, "agi": 4, "spd": 5, "aDamPct": 5, "fDefPct": -10, "id": 3301}, {"name": "Thermosphere", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 70, "aDef": 70, "tDef": 100, "eDef": -110, "lvl": 81, "dexReq": 45, "ref": 19, "dex": 7, "agi": 5, "def": 5, "fDamPct": 9, "aDamPct": 9, "tDamPct": 15, "fDefPct": 15, "aDefPct": 15, "tDefPct": 9, "id": 3303}, {"name": "The Visionary's Vice", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "83-137", "aDam": "0-0", "tDam": "37-203", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 40, "intReq": 40, "ms": 10, "str": -15, "def": -15, "sdRaw": 175, "wDamPct": 12, "tDamPct": 12, "fDefPct": -35, "eDefPct": -35, "id": 3300}, {"name": "Thief's Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 8, "eSteal": 5, "id": 3307}, {"name": "Therck's Irritation", "tier": "Rare", "thorns": 3, "category": "accessory", "drop": "lootchest", "hp": -5, "lvl": 9, "mdRaw": 7, "fDamPct": 5, "type": "bracelet", "id": 3299}, {"name": "The Wool Trimmer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-15", "fDam": "0-0", "wDam": "6-11", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "xpb": 4, "lb": 8, "id": 3297}, {"name": "Thinking Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 4, "mr": 5, "id": 3304}, {"name": "Thrice", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-113", "fDam": "0-0", "wDam": "33-113", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 55, "mr": 5, "sdPct": 10, "int": 12, "sdRaw": 87, "fDamPct": -17, "wDamPct": 17, "wDefPct": 17, "id": 3308}, {"name": "Threshold", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "58-74", "aDam": "0-0", "tDam": "55-77", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "dexReq": 20, "intReq": 20, "mdPct": -55, "ms": 5, "hpBonus": -120, "sdRaw": 60, "mdRaw": 105, "id": 3306}, {"name": "Thousand Waves", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "966-1143", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "intReq": 45, "hprPct": -45, "int": 15, "def": -8, "fDamPct": -30, "wDamPct": 20, "tDefPct": -25, "spPct3": -24, "id": 3309}, {"name": "Third Eye", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2600, "lvl": 88, "intReq": 80, "mr": 15, "int": 15, "spRegen": 15, "fDefPct": 15, "wDefPct": 20, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3302}, {"name": "Throatcut", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-299", "fDam": "77-299", "wDam": "0-0", "aDam": "77-163", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "agiReq": 40, "defReq": 40, "mdPct": 27, "ls": 145, "xpb": 10, "lb": 10, "dex": -10, "int": -10, "agi": 13, "def": 13, "expd": 10, "spd": -10, "id": 3305}, {"name": "Thrunda Ripsaw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-385", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 80, "hprPct": -33, "mdPct": 25, "ls": 335, "sdRaw": 155, "tDamPct": 15, "wDefPct": -20, "eDefPct": -30, "id": 3312}, {"name": "Thunder Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-100", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 85, "tDamPct": 20, "tDefPct": 10, "id": 3310}, {"name": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-90", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 3311}, {"name": "Thunder Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-55", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 39, "tDamPct": 20, "tDefPct": 10, "id": 3316}, {"name": "Thundering Wind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-85", "fDam": "0-0", "wDam": "0-0", "aDam": "30-160", "tDam": "30-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "agiReq": 40, "sdPct": 15, "mdPct": 15, "dex": 7, "agi": 7, "spd": 14, "tDamPct": 15, "eDamPct": -30, "fDefPct": -30, "id": 3321}, {"name": "Thunderbolt", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-101", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 42, "dexReq": 20, "sdPct": 12, "mdPct": 12, "xpb": 12, "agi": 8, "spd": 12, "tDamPct": 12, "eDamPct": -144, "eDefPct": -36, "id": 3314}, {"name": "Thunderbird", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-125", "tDam": "90-170", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "dexReq": 40, "agiReq": 30, "sdPct": 14, "ms": 5, "dex": 9, "agi": 7, "spd": 15, "atkTier": 1, "fDefPct": -20, "id": 3318}, {"name": "Tidebinder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "235-315", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 65, "mr": 15, "mdPct": -25, "ref": 30, "int": 13, "fDefPct": 50, "wDefPct": 75, "tDefPct": -25, "id": 3325}, {"name": "Thunderlock", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "40-85", "tDam": "20-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "dexReq": 40, "agiReq": 35, "sdPct": 9, "ref": 10, "dex": 4, "mdRaw": 110, "aDefPct": 10, "id": 3317}, {"name": "Thunderstruck", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-27", "fDam": "0-0", "wDam": "0-0", "aDam": "15-27", "tDam": "15-27", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 15, "agiReq": 15, "dex": 5, "agi": 5, "spd": 5, "fDamPct": -20, "aDamPct": 10, "tDamPct": 10, "eDamPct": -20, "id": 3322}, {"name": "Timbre", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "7-7", "wDam": "7-7", "aDam": "7-7", "tDam": "7-7", "eDam": "7-7", "atkSpd": "SLOW", "lvl": 27, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 7, "lb": 7, "id": 3326}, {"name": "Time Rift", "tier": "Fabled", "type": "chestplate", "majorIds": ["SORCERY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "wDef": -250, "lvl": 95, "intReq": 120, "mr": -15, "sdPct": 46, "ms": -20, "ref": 30, "atkTier": -1, "id": 3323}, {"name": "Timthriall", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "152-153", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "152-153", "atkSpd": "NORMAL", "lvl": 98, "strReq": 50, "mr": 10, "sdPct": 20, "mdPct": 20, "str": 15, "eDamPct": 10, "id": 3328}, {"name": "Tidebreaker", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-115", "atkSpd": "SLOW", "lvl": 55, "intReq": 30, "sdPct": 16, "mdPct": 8, "expd": 10, "wDamPct": 14, "tDefPct": -50, "id": 3324}, {"name": "Tiny", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 7, "sdPct": 2, "agi": 1, "spd": 2, "type": "necklace", "id": 3330}, {"name": "Tinderbox", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": 110, "wDef": -110, "lvl": 93, "agiReq": 40, "defReq": 40, "ms": 5, "int": -30, "agi": 8, "expd": 25, "spd": 10, "fDamPct": 10, "wDamPct": -15, "spPct1": -10, "spPct3": -7, "spPct4": -10, "id": 3327}, {"name": "Tisaun's Honour", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": 20, "eDef": 15, "lvl": 88, "strReq": 35, "defReq": 35, "mdPct": 6, "ref": 8, "def": 7, "type": "ring", "id": 3329}, {"name": "Thundersnow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "wDef": 50, "tDef": 50, "eDef": -100, "lvl": 63, "dexReq": 25, "intReq": 40, "mr": 5, "sdPct": 14, "ls": -75, "dex": 4, "int": 3, "mdRaw": -91, "wDamPct": 5, "tDamPct": 11, "id": 3320}, {"name": "Tizatuko", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 125, "aDef": 7, "eDef": -4, "lvl": 21, "lb": 13, "agi": 5, "aDamPct": 8, "eDefPct": -6, "id": 3331}, {"name": "Tidal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 50, "tDef": -30, "eDef": -30, "lvl": 92, "intReq": 40, "ms": 5, "int": 4, "wDamPct": 7, "eDamPct": -5, "type": "bracelet", "id": 3319}, {"name": "Tisaun's Proof", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-50", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-70", "atkSpd": "FAST", "lvl": 88, "strReq": 55, "defReq": 55, "sdPct": 15, "mdPct": 10, "str": 20, "dex": 20, "def": 20, "atkTier": 1, "id": 3335}, {"name": "Toes Tickler", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 20, "lvl": 8, "spd": 7, "id": 3332}, {"name": "Toaster", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-96", "fDam": "66-72", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "defReq": 38, "sdPct": 11, "mdPct": 11, "fDefPct": 20, "id": 3333}, {"name": "Thunder Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-95", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 80, "tDamPct": 20, "tDefPct": 10, "id": 3313}, {"name": "Togak's Vision", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -50, "aDef": 25, "eDef": 25, "lvl": 77, "strReq": 15, "agiReq": 15, "ref": 6, "str": 4, "spRegen": 4, "fDamPct": -10, "fDefPct": -10, "aDefPct": 5, "eDefPct": 5, "type": "bracelet", "id": 3337}, {"name": "Tormenter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 6, "xpb": 5, "lb": 5, "id": 3336}, {"name": "Tonbo", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-90", "tDam": "0-0", "eDam": "35-90", "atkSpd": "NORMAL", "lvl": 58, "strReq": 15, "agiReq": 15, "sdPct": -19, "mdPct": 11, "str": 7, "agi": 7, "spd": 10, "aDamPct": 10, "aDefPct": -10, "id": 3334}, {"name": "Torrential Tide", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-85", "fDam": "0-0", "wDam": "1-255", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "intReq": 55, "mdPct": -40, "int": 25, "expd": -40, "sdRaw": 300, "fDamPct": -150, "wDamPct": 25, "tDefPct": -30, "id": 3339}, {"name": "Touroto Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": 65, "wDef": 65, "aDef": 65, "tDef": 65, "eDef": 65, "lvl": 85, "mdPct": 60, "str": 7, "def": 7, "atkTier": -1, "hpBonus": 350, "id": 3341}, {"name": "Tosach", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "NORMAL", "hp": 2, "lvl": 1, "xpb": 2, "id": 3340}, {"name": "Toxin", "tier": "Rare", "type": "helmet", "poison": 500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -80, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 40, "dexReq": 40, "hprPct": -10, "mdPct": 9, "hprRaw": -60, "tDamPct": 9, "eDamPct": 9, "aDefPct": -13, "id": 3367}, {"name": "Tower", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "defReq": 45, "hprPct": 20, "def": 13, "spd": -15, "hpBonus": 1715, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3342}, {"name": "Tourmaline Lyre", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-36", "fDam": "10-17", "wDam": "0-0", "aDam": "8-19", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 20, "hprPct": 20, "xpb": 15, "lb": 10, "agi": 5, "def": 5, "spd": 10, "hprRaw": 20, "id": 3338}, {"name": "Toxotes", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "175-235", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 73, "strReq": 20, "intReq": 40, "mdPct": 10, "int": 7, "hpBonus": -600, "wDamPct": 10, "tDefPct": -15, "id": 3344}, {"name": "Trace", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 11, "xpb": 2, "lb": 2, "spRegen": 2, "hprRaw": 2, "sdRaw": 2, "mdRaw": 2, "type": "necklace", "id": 3343}, {"name": "Trauma", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "aDef": 30, "tDef": 30, "lvl": 73, "dexReq": 45, "agiReq": 45, "dex": 5, "int": -10, "agi": 5, "mdRaw": 145, "aDamPct": 11, "tDamPct": 11, "id": 3348}, {"name": "Tracer", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "198-205", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 88, "agiReq": 55, "sdPct": -150, "mdPct": 15, "agi": 13, "spd": 15, "atkTier": 1, "hpBonus": -1500, "mdRaw": 160, "aDefPct": 10, "id": 3345}, {"name": "Travel Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "xpb": 5, "hpBonus": 20, "type": "necklace", "id": 3346}, {"name": "Tremorstep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 875, "aDef": -65, "eDef": 50, "lvl": 63, "strReq": 40, "mdPct": 12, "ls": -60, "str": 4, "agi": -3, "expd": 7, "spd": -12, "fDamPct": 5, "eDamPct": 15, "eDefPct": 11, "id": 3353}, {"name": "Tribulation", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-100", "wDam": "0-0", "aDam": "0-0", "tDam": "30-135", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "dexReq": 30, "defReq": 30, "ls": 115, "expd": 15, "spd": -14, "spRegen": -15, "fDamPct": 12, "tDamPct": 12, "wDefPct": -20, "id": 3349}, {"name": "Tribal Flute", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-22", "fDam": "0-0", "wDam": "0-0", "aDam": "11-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "agiReq": 15, "sdPct": -15, "mdPct": 8, "str": 4, "agi": 4, "spd": 5, "eDamPct": 5, "fDefPct": -10, "id": 3347}, {"name": "Tribal Headdress", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "lvl": 35, "agiReq": 5, "sdPct": -5, "str": 5, "agi": 3, "spd": 5, "mdRaw": 46, "aDefPct": 5, "eDefPct": 5, "id": 3351}, {"name": "Trinket", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "xpb": 6, "lb": 6, "eSteal": 2, "type": "bracelet", "id": 3352}, {"name": "Troms' Climbing Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": -30, "aDef": 30, "lvl": 53, "agiReq": 30, "xpb": 7, "agi": 7, "def": -5, "spd": 10, "fDamPct": -10, "aDamPct": 5, "id": 3357}, {"name": "Troms' Pride", "tier": "Unique", "type": "spear", "thorns": 9, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 70, "ref": 9, "sdRaw": 70, "mdRaw": 90, "fDamPct": -7, "aDamPct": -7, "id": 3356}, {"name": "Triumph", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1900, "lvl": 75, "xpb": 10, "lb": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 2, "id": 3350}, {"name": "Tropics", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "323-395", "aDam": "0-0", "tDam": "0-0", "eDam": "323-395", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "ms": 5, "str": 7, "int": 7, "hpBonus": -1500, "fDefPct": -30, "id": 3355}, {"name": "Tsunami", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 100, "wDef": 15, "tDef": -15, "lvl": 24, "intReq": 30, "mr": 10, "wDamPct": 5, "tDamPct": -8, "tDefPct": -15, "id": 3354}, {"name": "Turbulence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -40, "aDef": 40, "tDef": -50, "lvl": 53, "agiReq": 30, "mdPct": 13, "dex": -4, "mdRaw": 65, "aDamPct": 8, "id": 3359}, {"name": "Turnpike", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "13-15", "atkSpd": "VERY_SLOW", "lvl": 8, "lb": 8, "def": 4, "spd": -5, "mdRaw": 20, "id": 3361}, {"name": "Tundra Strike", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-140", "fDam": "0-0", "wDam": "325-625", "aDam": "0-0", "tDam": "0-0", "eDam": "325-625", "atkSpd": "SUPER_SLOW", "lvl": 87, "strReq": 40, "intReq": 40, "sdPct": 12, "ms": 10, "ref": 45, "str": 8, "spd": -11, "fDamPct": -20, "fDefPct": -30, "id": 3360}, {"name": "Tsunasweep", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-80", "fDam": "0-0", "wDam": "50-90", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 40, "intReq": 40, "sdPct": 20, "mdPct": -16, "ms": 5, "dex": 8, "fDamPct": -20, "wDamPct": 18, "tDamPct": 18, "eDamPct": -14, "eDefPct": -20, "id": 3358}, {"name": "Turmoil", "tier": "Rare", "type": "spear", "poison": 610, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-75", "eDam": "25-75", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 30, "dexReq": 30, "sdPct": -8, "mdPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3362}, {"name": "Twilight", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": 50, "tDef": 50, "lvl": 66, "dexReq": 50, "agiReq": 50, "dex": 5, "agi": 5, "sdRaw": 30, "mdRaw": 39, "aDamPct": 10, "tDamPct": 10, "aDefPct": 10, "tDefPct": 10, "id": 3370}, {"name": "Turquoise", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3175, "wDef": 90, "eDef": 90, "lvl": 95, "strReq": 30, "intReq": 30, "sdPct": 10, "xpb": 10, "str": 5, "int": 5, "eSteal": 8, "mdRaw": 175, "aDamPct": -15, "id": 3365}, {"name": "Ultraviolet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "6-14", "wDam": "4-16", "aDam": "2-18", "tDam": "0-20", "eDam": "8-12", "atkSpd": "FAST", "lvl": 27, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "hprPct": -12, "spd": 7, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 3368}, {"name": "Twin Daggers", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "16-27", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 49, "dexReq": 20, "agiReq": 20, "dex": 10, "spd": 12, "id": 3363}, {"name": "Twist Band", "tier": "Unique", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 49, "intReq": 10, "agiReq": 10, "ref": 6, "agi": 4, "sdRaw": 12, "type": "bracelet", "id": 3364}, {"name": "Undefined", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "lvl": 94, "hprRaw": 135, "sdRaw": 135, "mdRaw": 175, "id": 3371}, {"name": "Umbral Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "fDef": -120, "wDef": 80, "tDef": 80, "lvl": 87, "dexReq": 40, "intReq": 40, "sdPct": 16, "ms": 10, "str": 7, "dex": 5, "int": 5, "fDamPct": -8, "wDamPct": 12, "tDamPct": 12, "fDefPct": -8, "wDefPct": 10, "tDefPct": 10, "id": 3366}, {"name": "Undertow", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "wDef": 10, "tDef": -20, "lvl": 22, "intReq": 10, "mr": 5, "sdPct": 12, "mdPct": -10, "int": 5, "spd": -8, "wDefPct": 8, "id": 3372}, {"name": "Unhalting Eagle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-39", "fDam": "0-0", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "strReq": 5, "agiReq": 10, "mdPct": 8, "str": 5, "spd": 15, "fDefPct": -15, "id": 3373}, {"name": "Undying", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "300-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "300-400", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 35, "defReq": 55, "hprPct": 25, "sdPct": -7, "mdPct": -7, "ls": 400, "def": 20, "spd": -15, "hpBonus": 2500, "hprRaw": 196, "wDefPct": 25, "id": 3381}, {"name": "Union", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 39, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "bracelet", "id": 3376}, {"name": "Unravel", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 70, "lvl": 92, "agiReq": 80, "mdPct": -50, "ms": 10, "ref": 18, "agi": 9, "sdRaw": 222, "aDamPct": 27, "id": 3377}, {"name": "Unholy Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "dexReq": 20, "xpb": 5, "dex": 4, "agi": -3, "expd": 5, "spRegen": -10, "tDamPct": 10, "aDefPct": -25, "id": 3374}, {"name": "Unsheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-90", "wDam": "75-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "intReq": 30, "defReq": 30, "sdPct": -30, "mdPct": 10, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "fDefPct": 10, "wDefPct": 10, "id": 3382}, {"name": "Updraft", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2825, "fDef": -70, "aDef": 80, "tDef": 120, "eDef": -110, "lvl": 96, "dexReq": 45, "ms": 5, "dex": 6, "agi": 6, "spd": 16, "aDamPct": 20, "tDamPct": 24, "fDefPct": -10, "jh": 1, "id": 3379}, {"name": "Unspeakable", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -239, "lvl": 65, "strReq": 36, "dexReq": 47, "mr": -5, "ms": 10, "str": 4, "dex": 5, "sdRaw": -43, "mdRaw": -44, "type": "ring", "id": 3378}, {"name": "Umbrella Hat", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "tDef": -20, "lvl": 34, "intReq": 25, "mr": 10, "sdPct": 5, "dex": -4, "wDefPct": 8, "tDefPct": -12, "id": 3369}, {"name": "Unrefined Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "eDef": 30, "lvl": 50, "strReq": 25, "sdPct": -12, "mdPct": 5, "lb": 13, "spd": -12, "eDamPct": 20, "eDefPct": 20, "id": 3375}, {"name": "Upside Down Bowl", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "aDef": -5, "eDef": 5, "lvl": 12, "lb": 5, "str": 3, "id": 3380}, {"name": "Urheus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 8, "wDef": -12, "eDef": 10, "lvl": 32, "strReq": 10, "defReq": 5, "hprPct": 15, "str": 5, "def": 3, "mdRaw": 48, "aDamPct": -8, "id": 3383}, {"name": "Uranium Aegis", "tier": "Fabled", "type": "chestplate", "majorIds": ["PLAGUE"], "poison": 900, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "wDef": -60, "tDef": 75, "lvl": 77, "strReq": 35, "dexReq": 45, "hprPct": -100, "expd": 50, "hpBonus": 1200, "spRaw3": 5, "id": 3386}, {"name": "Upside Down Bucket", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "wDef": 25, "tDef": -15, "lvl": 42, "mdPct": -3, "ref": 8, "wDamPct": 16, "wDefPct": 9, "id": 3384}, {"name": "Vacancy", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "lvl": 89, "agiReq": 50, "int": -24, "agi": 12, "spd": 15, "spPct1": -10, "spPct3": -7, "spPct4": -17, "id": 3385}, {"name": "Uriel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 27, "agiReq": 5, "spd": 12, "type": "ring", "id": 3387}, {"name": "Vacarme", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "tDef": 100, "eDef": -100, "lvl": 91, "dexReq": 70, "ms": 10, "dex": 7, "expd": 20, "hprRaw": -135, "sdRaw": 165, "tDamPct": 23, "tDefPct": -32, "id": 3586}, {"name": "Valix", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "xpb": 8, "spd": 8, "id": 3388}, {"name": "Valkyrie", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-95", "tDam": "0-125", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 35, "agiReq": 30, "hprPct": -8, "spd": 15, "sdRaw": -55, "mdRaw": 70, "id": 3392}, {"name": "Vacuum", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2475, "wDef": 60, "aDef": -130, "eDef": 70, "lvl": 93, "strReq": 45, "intReq": 55, "mr": 10, "spd": -12, "sdRaw": 155, "wDamPct": 15, "eDamPct": 15, "aDefPct": -30, "id": 3389}, {"name": "Valiant", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-13", "fDam": "0-0", "wDam": "0-0", "aDam": "12-16", "tDam": "0-0", "eDam": "18-21", "atkSpd": "SLOW", "lvl": 34, "strReq": 20, "agiReq": 10, "mdPct": 9, "xpb": 8, "str": 8, "spRegen": 6, "id": 3399}, {"name": "Valorheart", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "40-50", "wDam": "40-50", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 41, "intReq": 20, "defReq": 20, "def": 5, "spd": -10, "hpBonus": 250, "spRegen": 10, "fDefPct": 15, "wDefPct": 15, "id": 3390}, {"name": "Vandal's Touch", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-112", "fDam": "0-0", "wDam": "0-0", "aDam": "50-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "strReq": 20, "agiReq": 40, "mdPct": 12, "lb": 15, "str": 8, "eSteal": 5, "sdRaw": -60, "eDamPct": 16, "id": 3394}, {"name": "Vampire Touch", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 12, "hprPct": 10, "mr": 5, "ls": 55, "id": 3395}, {"name": "Vanilla Spade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "agiReq": 20, "mr": 5, "int": 10, "agi": 10, "spd": 10, "tDamPct": -5, "eDamPct": -5, "id": 3398}, {"name": "Vartija", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "9-13", "fDam": "2-6", "wDam": "0-0", "aDam": "2-6", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "agiReq": 10, "defReq": 10, "sdPct": -7, "def": 9, "spd": 15, "hpBonus": 160, "id": 3396}, {"name": "Vampire Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "hprPct": -10, "ls": 32, "spRegen": 5, "id": 3393}, {"name": "Vaward", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3900, "lvl": 99, "hprPct": 15, "sdPct": 15, "mdPct": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spRegen": 15, "id": 3397}, {"name": "Veantur", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-110", "fDam": "0-0", "wDam": "50-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "intReq": 50, "sdPct": 12, "mdPct": 10, "ref": 7, "int": 7, "hpBonus": -1000, "fDamPct": -25, "wDamPct": 15, "id": 3400}, {"name": "Valhalla", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3525, "fDef": 80, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 40, "agiReq": 40, "defReq": 40, "ls": 215, "str": 9, "agi": 9, "def": 9, "spd": 12, "spRegen": 12, "wDefPct": -25, "tDefPct": -25, "id": 3391}, {"name": "Vellalar", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "ms": 5, "str": 5, "fDamPct": -5, "id": 3401}, {"name": "Venison", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 735, "fDef": -75, "wDef": 45, "eDef": 60, "lvl": 54, "strReq": 20, "intReq": 15, "mr": 10, "mdPct": 19, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": -15, "tDefPct": -10, "id": 3406}, {"name": "Venomsoul", "tier": "Unique", "type": "chestplate", "poison": 525, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "aDef": -90, "lvl": 75, "strReq": 30, "intReq": 20, "ms": 5, "spRegen": -10, "id": 3404}, {"name": "Veins", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "72-78", "wDam": "69-81", "aDam": "66-84", "tDam": "63-87", "eDam": "75-75", "atkSpd": "SLOW", "lvl": 89, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hpBonus": 965, "hprRaw": 115, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 3402}, {"name": "Ventus Tail", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2150, "aDef": 120, "tDef": 120, "eDef": -250, "lvl": 80, "dexReq": 35, "agiReq": 35, "sdPct": 10, "ms": 10, "dex": 8, "agi": 8, "spd": 7, "eSteal": 7, "aDamPct": 27, "tDamPct": 27, "eDamPct": -45, "id": 3403}, {"name": "Verglas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 82, "intReq": 35, "agiReq": 35, "sdPct": 6, "int": 5, "spd": -10, "hprRaw": -55, "aDamPct": 5, "type": "necklace", "id": 3408}, {"name": "Ventilator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "aDef": 6, "lvl": 25, "agiReq": 15, "spd": 12, "fDamPct": -8, "aDamPct": 6, "id": 3405}, {"name": "Verdigris Sabatons", "tier": "Unique", "type": "boots", "poison": 550, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1900, "fDef": 70, "wDef": -60, "tDef": 40, "lvl": 76, "dexReq": 20, "defReq": 35, "mr": -5, "def": 5, "spd": -7, "sdRaw": 100, "wDamPct": -14, "aDamPct": -12, "tDefPct": 10, "id": 3407}, {"name": "Vesuvius", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "100-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "VERY_SLOW", "lvl": 86, "strReq": 30, "defReq": 30, "mdPct": 12, "str": 8, "expd": 33, "fDamPct": 15, "wDamPct": -10, "eDamPct": 15, "wDefPct": -20, "id": 3409}, {"name": "Verstand", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "wDef": 10, "tDef": -8, "lvl": 28, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -6, "str": -3, "int": 4, "id": 3410}, {"name": "Vile", "tier": "Rare", "type": "bow", "poison": 1100, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-115", "atkSpd": "FAST", "lvl": 62, "ls": 120, "hpBonus": -250, "mdRaw": 130, "eDamPct": 15, "wDefPct": -20, "id": 3414}, {"name": "Vigor", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-90", "fDam": "170-200", "wDam": "170-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "intReq": 25, "defReq": 25, "hprPct": 40, "sdPct": -7, "mdPct": -16, "def": 5, "hpBonus": 500, "hprRaw": 25, "wDefPct": 7, "id": 3412}, {"name": "Vibrato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-22", "fDam": "0-0", "wDam": "0-0", "aDam": "55-56", "tDam": "55-56", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "dexReq": 16, "agiReq": 16, "ms": 5, "def": -12, "spd": 12, "spPct1": -23, "id": 3413}, {"name": "Vinecrawlers", "tier": "Rare", "type": "boots", "poison": 425, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "aDef": -70, "eDef": 90, "lvl": 72, "strReq": 45, "str": 7, "def": 7, "spd": -8, "hprRaw": 60, "fDefPct": -25, "wDefPct": 15, "id": 3411}, {"name": "Viper", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-22", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 38, "dexReq": 22, "mdPct": 6, "ls": 26, "dex": 4, "spd": 4, "mdRaw": 13, "id": 3416}, {"name": "Virgo", "tier": "Legendary", "type": "boots", "thorns": 1, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 5, "lvl": 97, "strReq": 70, "dexReq": 70, "mdPct": -45, "ref": 1, "agi": -20, "def": -20, "expd": 65, "atkTier": 2, "tDamPct": 16, "eDamPct": 16, "id": 3417}, {"name": "Virtuoso", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "wDef": 70, "aDef": 70, "lvl": 94, "intReq": 50, "agiReq": 50, "mr": 5, "sdPct": 20, "ms": -40, "spd": 20, "sdRaw": 196, "id": 3415}, {"name": "Vital", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -220, "lvl": 67, "hprPct": 10, "hprRaw": 40, "type": "ring", "id": 3421}, {"name": "Virtue", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-350", "fDam": "0-0", "wDam": "210-250", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "intReq": 45, "sdPct": 9, "ms": 15, "ref": 9, "agi": -6, "spd": -12, "atkTier": -1, "id": 3419}, {"name": "Vitium", "tier": "Rare", "poison": 50, "category": "accessory", "drop": "lootchest", "hp": -20, "aDef": -5, "lvl": 32, "ls": 10, "expd": 6, "type": "necklace", "id": 3418}, {"name": "Vitriol", "tier": "Unique", "poison": 83, "category": "accessory", "drop": "lootchest", "hp": -60, "wDef": -5, "eDef": 10, "lvl": 39, "strReq": 15, "hprPct": -10, "ls": 12, "type": "bracelet", "id": 3420}, {"name": "Vivace", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "9-13", "tDam": "9-13", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "dexReq": 10, "agiReq": 10, "sdPct": 11, "dex": 5, "agi": 5, "spd": 11, "eDefPct": 18, "id": 3422}, {"name": "Voidlight", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-90", "tDam": "0-180", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "dexReq": 35, "agiReq": 35, "sdPct": 10, "mdPct": -40, "ms": 10, "ref": 15, "str": -10, "agi": 13, "sdRaw": 205, "eDefPct": -25, "id": 3423}, {"name": "Void Catalyst", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-515", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "dexReq": 43, "dex": 25, "tDamPct": 45, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3425}, {"name": "Volcano", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "135-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "155-200", "atkSpd": "SLOW", "lvl": 98, "strReq": 40, "defReq": 40, "str": 13, "def": 13, "expd": 20, "spd": -25, "fDamPct": 12, "eDamPct": 12, "fDefPct": 18, "eDefPct": 18, "id": 3424}, {"name": "Voidshard", "tier": "Rare", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": -120, "lvl": 70, "strReq": 25, "agiReq": 25, "sdPct": 7, "ls": 44, "spd": 7, "type": "ring", "id": 3427}, {"name": "Voodoo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "sdPct": 6, "id": 3430}, {"name": "Voleur", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 36, "dexReq": 10, "agiReq": 5, "mdPct": -7, "lb": 12, "dex": 3, "agi": 3, "spd": 4, "eSteal": 6, "id": 3428}, {"name": "Volmor's Flair", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 5, "lb": 13, "hpBonus": -750, "type": "bracelet", "id": 3426}, {"name": "Vorpal", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "61-72", "aDam": "0-0", "tDam": "0-132", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 25, "intReq": 25, "hprPct": -25, "mr": -5, "dex": 17, "hpBonus": -500, "sdRaw": 120, "wDamPct": 15, "tDamPct": 15, "id": 3436}, {"name": "Blue Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3435, "set": "Blue Team"}, {"name": "Blue Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3431, "set": "Blue Team"}, {"name": "Red Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3434, "set": "Red Team"}, {"name": "Red Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3437, "set": "Red Team"}, {"name": "Red Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3443, "set": "Red Team"}, {"name": "Blitzen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -140, "wDef": 10, "lvl": 75, "dexReq": 40, "ms": 5, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3438}, {"name": "Comet", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 12, "aDef": 12, "eDef": 12, "lvl": 70, "strReq": 20, "agiReq": 10, "defReq": 10, "mr": -5, "sdPct": -6, "mdPct": 8, "expd": 12, "mdRaw": 26, "type": "bracelet", "fixID": true, "id": 3441}, {"name": "Charcoal", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 3425, "fDef": 120, "aDef": 120, "lvl": 95, "strReq": 20, "defReq": 60, "ls": 285, "ref": 20, "str": 6, "def": 6, "hprRaw": 195, "fDamPct": 10, "aDefPct": 15, "eDefPct": 25, "fixID": true, "id": 3439}, {"name": "Conifer", "tier": "Rare", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "42-58", "wDam": "0-0", "aDam": "44-56", "tDam": "0-0", "eDam": "36-64", "atkSpd": "SLOW", "lvl": 50, "strReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "spd": -10, "hpBonus": 250, "hprRaw": 30, "fixID": true, "id": 3442}, {"name": "Vortex", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 71, "dexReq": 35, "agiReq": 55, "ms": 10, "dex": 5, "agi": 8, "spd": 16, "sdRaw": 100, "mdRaw": 80, "id": 3432}, {"name": "Cupid", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 5, "lvl": 50, "strReq": 20, "intReq": 45, "hprPct": 10, "mr": 5, "sdPct": -10, "hprRaw": 12, "mdRaw": -19, "type": "bracelet", "fixID": true, "id": 3440}, {"name": "Dancer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": -180, "lvl": 80, "agiReq": 50, "spd": 9, "hprRaw": -35, "aDamPct": 12, "type": "necklace", "fixID": true, "id": 3444}, {"name": "Dasher", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 320, "fDef": -25, "lvl": 85, "strReq": 30, "agiReq": 40, "mdPct": 9, "str": 4, "spd": 9, "type": "ring", "fixID": true, "id": 3445}, {"name": "Donner", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 15, "wDef": -25, "tDef": 15, "lvl": 65, "dexReq": 30, "dex": 5, "fDamPct": 9, "type": "ring", "fixID": true, "id": 3447}, {"name": "Dragster", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -50, "aDef": 40, "lvl": 60, "agiReq": 45, "agi": 3, "def": -6, "spd": 20, "mdRaw": 100, "aDamPct": 5, "fDefPct": -10, "aDefPct": 5, "fixID": true, "id": 3446}, {"name": "Frostburn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-40", "fDam": "30-90", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "defReq": 35, "mr": -5, "sdPct": 12, "hprRaw": -85, "fDamPct": 24, "wDamPct": 18, "fixID": true, "id": 3450}, {"name": "Ice Skates", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1200, "fDef": -160, "wDef": 80, "aDef": 55, "lvl": 75, "agiReq": 55, "mr": 5, "int": 4, "spd": 18, "fDamPct": -26, "wDamPct": 14, "aDamPct": 8, "fixID": true, "id": 3454}, {"name": "Garland", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2275, "tDef": -160, "eDef": 90, "lvl": 90, "strReq": 45, "intReq": 40, "sdPct": 22, "sdRaw": 225, "aDefPct": -14, "tDefPct": -14, "fixID": true, "id": 3448}, {"name": "Prancer", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 130, "fDef": 10, "tDef": 5, "eDef": 15, "lvl": 55, "strReq": 30, "str": 2, "def": 2, "eDamPct": 7, "type": "ring", "fixID": true, "id": 3449}, {"name": "Krampus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "70-110", "wDam": "0-0", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "dexReq": 30, "defReq": 30, "mr": -5, "mdPct": 25, "ls": 180, "def": 8, "eSteal": 3, "hprRaw": -90, "tDamPct": 20, "wDefPct": -22, "fixID": true, "id": 3453}, {"name": "Scrooge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "225-365", "eDam": "225-365", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 35, "dexReq": 35, "ls": 325, "ms": 10, "lb": 33, "spd": -20, "spRegen": -25, "eSteal": 10, "hprRaw": -150, "fixID": true, "id": 3451}, {"name": "Ski Mask", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2300, "wDef": 60, "aDef": 60, "tDef": -120, "lvl": 90, "intReq": 60, "agiReq": 45, "mr": 15, "mdPct": -12, "wDamPct": 25, "aDamPct": 25, "fixID": true, "id": 3456}, {"name": "Sealskin Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 90, "aDef": 90, "tDef": -70, "lvl": 65, "intReq": 20, "agiReq": 20, "mr": 5, "xpb": 8, "ref": 12, "int": 6, "agi": 3, "spd": 12, "tDamPct": -40, "wDefPct": 16, "aDefPct": 16, "fixID": true, "id": 3452}, {"name": "Sleigher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-35", "fDam": "0-0", "wDam": "0-0", "aDam": "30-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "strReq": 10, "agiReq": 20, "sdPct": -15, "mdPct": 12, "str": 8, "agi": 2, "spd": 12, "mdRaw": 46, "eDamPct": 20, "fDefPct": -20, "fixID": true, "id": 3457}, {"name": "Snowstorm", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-37", "aDam": "0-37", "tDam": "0-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 50, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 8, "ms": 10, "xpb": 12, "str": -5, "spd": 12, "sdRaw": 50, "fDefPct": -36, "fixID": true, "id": 3455}, {"name": "Toy Maker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1775, "aDef": 90, "tDef": 90, "eDef": -160, "lvl": 85, "dexReq": 35, "agiReq": 35, "mdPct": -25, "dex": 7, "agi": 7, "atkTier": 1, "mdRaw": 230, "aDamPct": 5, "tDamPct": 5, "fixID": true, "id": 3458}, {"name": "Wynnter Scarf", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 425, "fDef": 40, "wDef": -70, "aDef": 40, "lvl": 40, "agiReq": 20, "defReq": 20, "hprPct": 20, "agi": 3, "def": 3, "hprRaw": 20, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 3463}, {"name": "Zenith", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "20-30", "tDam": "20-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "dexReq": 35, "agiReq": 25, "mdPct": 15, "ls": -190, "ms": 5, "agi": 7, "expd": 60, "atkTier": 2, "tDamPct": 10, "aDefPct": 12, "eDefPct": -15, "fixID": true, "id": 3459}, {"name": "Wipe", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "26-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "agiReq": 50, "mdPct": 15, "ms": 10, "agi": 15, "spd": 28, "hprRaw": -250, "aDamPct": 22, "fixID": true, "id": 3461}, {"name": "Vixen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 300, "fDef": 20, "lvl": 60, "defReq": 70, "hprRaw": 25, "aDefPct": 7, "tDefPct": 4, "eDefPct": 5, "type": "necklace", "fixID": true, "id": 3460}, {"name": "Red Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3466, "set": "Red Team"}, {"name": "Waking Nightmare", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "140-180", "tDam": "0-0", "eDam": "140-180", "atkSpd": "SLOW", "lvl": 79, "strReq": 27, "agiReq": 27, "mdPct": 12, "str": 8, "hpBonus": -1085, "wDamPct": -40, "aDamPct": 18, "eDamPct": 18, "fDefPct": -25, "spRaw1": -5, "id": 3462}, {"name": "The Lethe", "displayName": "Waking Vigil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "30-65", "tDam": "0-0", "eDam": "30-65", "atkSpd": "FAST", "lvl": 98, "strReq": 40, "agiReq": 40, "sdPct": -50, "mdPct": 31, "xpb": -25, "spd": 12, "spRegen": -15, "mdRaw": 100, "fDamPct": 31, "id": 3464}, {"name": "War Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "sdPct": -10, "mdPct": 10, "str": 7, "def": 7, "spd": -10, "hpBonus": 775, "id": 3469}, {"name": "Walking Stick", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 20, "agiReq": 5, "xpb": 4, "agi": 4, "spd": 10, "id": 3465}, {"name": "Wastelands", "tier": "Unique", "poison": 90, "category": "accessory", "drop": "lootchest", "lvl": 44, "strReq": 20, "mdPct": 5, "str": 3, "spd": -3, "type": "ring", "id": 3467}, {"name": "Wasp", "tier": "Rare", "poison": 155, "category": "accessory", "drop": "lootchest", "lvl": 50, "dexReq": 20, "hprRaw": -12, "tDamPct": 6, "type": "ring", "id": 3470}, {"name": "Water Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-80", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3471}, {"name": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3474}, {"name": "Water Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-75", "fDam": "0-0", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3475}, {"name": "Water Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "0-0", "wDam": "30-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3472}, {"name": "Waterspout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-95", "fDam": "0-0", "wDam": "105-125", "aDam": "0-0", "tDam": "45-185", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 35, "intReq": 35, "sdPct": 6, "mdPct": -9, "ms": 5, "wDefPct": 22, "tDefPct": 22, "id": 3473}, {"name": "Warmth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "def": 3, "type": "ring", "id": 3468}, {"name": "Wavedash", "tier": "Unique", "type": "boots", "sprint": -10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2250, "wDef": 90, "aDef": 90, "lvl": 89, "intReq": 25, "agiReq": 20, "mr": 10, "sdPct": 12, "agi": 8, "spd": 18, "wDamPct": 12, "aDamPct": 8, "sprintReg": 18, "id": 3476}, {"name": "Wavelength", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "sdPct": 13, "mdPct": 13, "ms": -5, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3477}, {"name": "Waves Raiser", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "intReq": 35, "sdPct": 12, "mdPct": 12, "wDamPct": 12, "wDefPct": 12, "id": 3478}, {"name": "Way Back Home", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1600, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 75, "strReq": 20, "agiReq": 20, "agi": 7, "spd": 12, "spRegen": 7, "id": 3479}, {"name": "Weather Warning", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-25", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "dexReq": 15, "intReq": 15, "sdPct": 10, "wDamPct": 10, "tDamPct": 10, "fDefPct": -13, "aDefPct": -13, "eDefPct": -13, "id": 3480}, {"name": "Wayfinder", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "35-50", "aDam": "32-40", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 15, "agiReq": 20, "ms": 5, "lb": 10, "int": 4, "agi": 4, "spd": 8, "id": 3482}, {"name": "Wedding Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 5, "hpBonus": 6, "type": "ring", "id": 3481}, {"name": "All for One", "displayName": "Weatherwalkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "fDef": -90, "wDef": -90, "aDef": -90, "tDef": -100, "eDef": -90, "lvl": 92, "dexReq": 70, "mr": -5, "sdPct": 31, "dex": 8, "spd": 15, "tDamPct": 10, "wDefPct": -20, "tDefPct": -15, "id": 3625}, {"name": "Whimsy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-35", "fDam": "0-0", "wDam": "0-0", "aDam": "45-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 40, "agiReq": 30, "sdPct": -3, "mdPct": -5, "xpb": 25, "int": 13, "spd": 20, "eSteal": 2, "wDamPct": 22, "id": 3484}, {"name": "Whirlpool", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "10-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 30, "sdRaw": 60, "wDamPct": 9, "tDefPct": -19, "id": 3483}, {"name": "Whistling Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "fDef": -30, "aDef": 20, "lvl": 47, "agiReq": 30, "mdPct": 8, "agi": 4, "spd": 7, "aDamPct": 7, "eDefPct": -10, "id": 3488}, {"name": "Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "12-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 10, "agi": 4, "spd": 6, "aDamPct": 6, "id": 3485}, {"name": "White-hot Leggings", "displayName": "White-Hot Leggings", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "fDef": 170, "wDef": -100, "tDef": 100, "eDef": 30, "lvl": 88, "defReq": 55, "sdPct": 8, "spd": 8, "hpBonus": -220, "sdRaw": 140, "mdRaw": 180, "fDamPct": 12, "id": 3487}, {"name": "White", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 5, "lvl": 30, "aDamPct": 7, "aDefPct": 7, "type": "ring", "id": 3486}, {"name": "Whitecap", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-112", "fDam": "0-0", "wDam": "51-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "intReq": 30, "sdPct": 16, "fDamPct": -15, "tDefPct": -15, "id": 3489}, {"name": "White Noise", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "74-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 25, "mdPct": -15, "xpb": 15, "sdRaw": 66, "aDamPct": 14, "eDamPct": -30, "eDefPct": -18, "id": 3490}, {"name": "White Storm", "tier": "Unique", "type": "helmet", "poison": 130, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 510, "fDef": -20, "aDef": 25, "lvl": 48, "agi": 7, "spd": 10, "eDamPct": 5, "id": 3493}, {"name": "Whitewater", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "wDef": 70, "tDef": -80, "lvl": 64, "intReq": 35, "mr": 5, "sdPct": 11, "mdPct": 8, "fDamPct": -20, "wDamPct": 13, "id": 3494}, {"name": "Blue Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3433, "set": "Blue Team"}, {"name": "Blue Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3429, "set": "Blue Team"}, {"name": "Wicked", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": -60, "lvl": 50, "dexReq": 20, "defReq": 20, "mr": -5, "sdPct": 15, "mdPct": 10, "expd": 8, "fDamPct": 10, "tDamPct": 10, "id": 3491}, {"name": "Whitestone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 73, "intReq": 25, "agiReq": 15, "hprPct": 20, "sdPct": 7, "mdPct": -15, "xpb": 10, "ref": 8, "spd": 6, "wDefPct": 7, "aDefPct": 6, "id": 3492}, {"name": "Wild Gauntlet", "tier": "Unique", "type": "dagger", "thorns": 13, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "59-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "48-63", "atkSpd": "NORMAL", "lvl": 60, "strReq": 25, "sdPct": -7, "mdPct": 10, "spd": -5, "id": 3495}, {"name": "Willpower", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 42, "intReq": 15, "hprPct": 8, "mr": 5, "type": "necklace", "id": 3496}, {"name": "Windchime", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "agiReq": 35, "ms": 10, "xpb": 12, "aDamPct": 10, "id": 3497}, {"name": "Wind Mimic", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -120, "aDef": 200, "lvl": 94, "agiReq": 60, "ms": 10, "agi": 7, "spd": 20, "fDamPct": 20, "aDamPct": 20, "fDefPct": -20, "aDefPct": 10, "id": 3499}, {"name": "Wiggling Villager", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "xpb": 11, "lb": 19, "id": 3500}, {"name": "Window Pane", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "27-33", "aDam": "0-0", "tDam": "27-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "dexReq": 13, "intReq": 13, "sdPct": 14, "mdPct": -14, "str": -6, "dex": 4, "int": 4, "wDamPct": 9, "tDamPct": 9, "eDamPct": -10, "eDefPct": -10, "id": 3503}, {"name": "Windforce", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-51", "fDam": "0-0", "wDam": "0-0", "aDam": "31-57", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "str": 7, "spd": 14, "eDamPct": 15, "aDefPct": 10, "eDefPct": -10, "id": 3501}, {"name": "Wind Murmurs", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-86", "fDam": "0-0", "wDam": "0-0", "aDam": "76-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 35, "sdPct": -9, "mdPct": -18, "xpb": 15, "ref": 20, "agi": 12, "spd": 20, "id": 3498}, {"name": "Windowframe", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "27-33", "eDam": "27-33", "atkSpd": "NORMAL", "lvl": 34, "strReq": 12, "dexReq": 12, "sdPct": -14, "mdPct": 14, "str": 4, "dex": 4, "int": -6, "wDamPct": -10, "tDamPct": 9, "eDamPct": 9, "wDefPct": -10, "id": 3504}, {"name": "Gravesbane", "displayName": "Windshear", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "fDef": -120, "aDef": 90, "tDef": 90, "eDef": -30, "lvl": 94, "dexReq": 40, "agiReq": 40, "mr": 5, "ms": 5, "spd": 16, "eSteal": 6, "sdRaw": 170, "mdRaw": 195, "fDefPct": -20, "sprintReg": 12, "id": 1229}, {"name": "Windy Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 350, "aDef": 50, "eDef": -50, "lvl": 83, "agiReq": 30, "agi": 4, "spd": 7, "aDamPct": 7, "type": "necklace", "id": 3506}, {"name": "Wing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": 50, "tDef": -70, "lvl": 61, "agiReq": 15, "lb": 4, "agi": 5, "spd": 20, "aDamPct": 5, "aDefPct": 8, "tDefPct": -7, "id": 3502}, {"name": "Winter's Essence", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 44, "intReq": 20, "agiReq": 20, "mr": 10, "sdPct": 20, "ls": 41, "int": 8, "agi": 8, "hprRaw": -50, "id": 3508}, {"name": "Winterspell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-200", "fDam": "0-0", "wDam": "0-0", "aDam": "110-165", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "sdPct": 4, "str": -3, "spd": 5, "wDamPct": 10, "fDefPct": -5, "id": 3507}, {"name": "Wintergreen", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-100", "fDam": "0-0", "wDam": "0-0", "aDam": "45-50", "tDam": "0-0", "eDam": "45-50", "atkSpd": "NORMAL", "lvl": 54, "strReq": 20, "agiReq": 25, "sdPct": 15, "spd": 20, "atkTier": 1, "hpBonus": -1000, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3505}, {"name": "Wirt's Leg", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "lb": 23, "eSteal": 5, "id": 3509}, {"name": "WitherString", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-45", "fDam": "0-0", "wDam": "2-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "mr": 5, "ms": 5, "id": 3511}, {"name": "Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 5, "eDef": 5, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 4, "spd": 4, "aDamPct": 4, "eDamPct": 4, "type": "bracelet", "id": 3513}, {"name": "Wolf Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "hprPct": 30, "mr": 5, "id": 3510}, {"name": "Wolf Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 90, "lvl": 46, "agiReq": 15, "str": 4, "agi": 4, "spd": 6, "type": "necklace", "id": 3512}, {"name": "Wormwood", "tier": "Unique", "type": "boots", "poison": 23, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 6, "aDef": -6, "tDef": -6, "eDef": 6, "lvl": 17, "strReq": 5, "intReq": 5, "ls": 6, "hpBonus": -14, "id": 3514}, {"name": "Worry", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 11, "ref": 5, "int": 3, "spRegen": 3, "type": "bracelet", "id": 3516}, {"name": "Worship", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 84, "xpb": 7, "lb": 7, "hpBonus": 300, "spRegen": 7, "type": "ring", "id": 3518}, {"name": "Wybel Carved Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "220-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3519}, {"name": "Wrath", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-90", "atkSpd": "SLOW", "lvl": 78, "strReq": 39, "defReq": 39, "mdPct": 13, "ls": 280, "lb": 13, "spRegen": -39, "mdRaw": 150, "wDamPct": -26, "aDamPct": -26, "tDamPct": -26, "id": 3515}, {"name": "Wybel Fluff Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "300-355", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3521}, {"name": "Wybel Horn Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3520}, {"name": "Wybel Ivory Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3522}, {"name": "Wybel Tooth Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3523}, {"name": "Xyloid", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1850, "wDef": 65, "tDef": -100, "eDef": 60, "lvl": 80, "strReq": 35, "intReq": 25, "mr": 5, "mdPct": 10, "spd": -10, "hprRaw": 90, "fDamPct": -15, "wDamPct": 8, "eDamPct": 12, "tDefPct": -20, "id": 3525}, {"name": "Xystus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 30, "agi": 8, "spd": 8, "aDamPct": 10, "aDefPct": 12, "id": 3524}, {"name": "Yamato Spear", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "sdPct": 15, "mdPct": 15, "ms": 5, "xpb": 16, "dex": 13, "id": 3527}, {"name": "Yggdrasil", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "76-90", "atkSpd": "NORMAL", "lvl": 98, "strReq": 35, "intReq": 40, "mr": 5, "str": 9, "int": 5, "wDamPct": 20, "eDamPct": 8, "fDefPct": -15, "wDefPct": 10, "tDefPct": -10, "id": 3526}, {"name": "Yin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 30, "lvl": 92, "dexReq": 55, "sdPct": -8, "mdPct": 9, "dex": 4, "spRegen": -5, "sdRaw": -30, "mdRaw": 41, "type": "ring", "id": 3531}, {"name": "World Splitter", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-80", "fDam": "160-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "dexReq": 40, "defReq": 25, "mdPct": 10, "ls": 150, "spRegen": -33, "fDamPct": 12, "wDamPct": -143, "tDamPct": 12, "wDefPct": -20, "id": 3517}, {"name": "Yang", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "tDef": -30, "lvl": 92, "intReq": 55, "sdPct": 9, "mdPct": -8, "int": 4, "spRegen": 5, "sdRaw": 30, "mdRaw": -41, "type": "ring", "id": 3528}, {"name": "Yol", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-116", "fDam": "240-260", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "defReq": 55, "hprPct": 30, "def": 15, "hpBonus": 2650, "hprRaw": 165, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 3532}, {"name": "Yahya's Nail Clipper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-8", "atkSpd": "NORMAL", "lvl": 17, "hprPct": 6, "mr": 5, "mdPct": 7, "aDefPct": 5, "eDefPct": 5, "id": 3529}, {"name": "Yume", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 385, "fDef": -40, "aDef": 15, "lvl": 37, "agiReq": 25, "xpb": 12, "agi": 5, "spd": 12, "sdRaw": 50, "aDamPct": 12, "id": 3530}, {"name": "Yverlian Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-54", "wDam": "29-48", "aDam": "18-59", "tDam": "10-67", "eDam": "36-41", "atkSpd": "FAST", "lvl": 97, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 25, "spRegen": 5, "hprRaw": 150, "fDefPct": 16, "wDefPct": 16, "aDefPct": 16, "tDefPct": 16, "eDefPct": 16, "id": 3536}, {"name": "Ylem", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-127", "wDam": "0-0", "aDam": "0-0", "tDam": "0-127", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 30, "defReq": 35, "ls": 180, "hprRaw": -80, "sdRaw": 120, "fDamPct": 15, "tDamPct": 15, "wDefPct": -25, "eDefPct": -25, "id": 3533}, {"name": "Zephra Shredder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-260", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "agiReq": 80, "mr": -5, "sdPct": 15, "ls": -175, "spd": 30, "mdRaw": 180, "aDamPct": 25, "fDefPct": -30, "id": 3534}, {"name": "Zeal", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "lvl": 38, "defReq": 15, "hprPct": 8, "sdPct": -8, "mdPct": 5, "spd": 4, "hpBonus": 50, "fDamPct": 4, "id": 3537}, {"name": "Zephyr", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-204", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 90, "sdPct": 11, "mdPct": 11, "agi": 10, "spd": 18, "atkTier": 1, "id": 3535}, {"name": "Zero", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-133", "wDam": "0-133", "aDam": "0-133", "tDam": "0-133", "eDam": "0-133", "atkSpd": "FAST", "lvl": 87, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 18, "expd": 333, "hpBonus": -1250, "hprRaw": -125, "sdRaw": 210, "id": 3539}, {"name": "Zipper", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "5-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "dexReq": 20, "xpb": 11, "lb": 11, "spd": 8, "tDamPct": 11, "tDefPct": 11, "eDefPct": -21, "id": 3544}, {"name": "Zombie Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "aDef": -4, "eDef": 4, "lvl": 18, "hprPct": 10, "xpb": 5, "str": 3, "hpBonus": 15, "id": 3538}, {"name": "Zjarr", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 25, "defReq": 10, "sdPct": -3, "def": 3, "hprRaw": 4, "type": "ring", "id": 3541}, {"name": "Zombified Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 182, "fDef": -3, "aDef": -3, "tDef": -3, "lvl": 30, "hprPct": 14, "xpb": 5, "lb": 5, "hpBonus": 50, "id": 3540}, {"name": "default", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "int": 12, "id": 3543}, {"name": "Zombified Branch", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "126-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 51, "ls": 55, "ms": 5, "spd": -12, "id": 3542}], "sets": {"Ornate Shadow": {"items": ["Ornate Shadow Cowl", "Ornate Shadow Garb", "Ornate Shadow Cover", "Ornate Shadow Cloud"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Grookwarts": {"items": ["Dragon's Eye Bracelet", "Draoi Fair", "Renda Langit"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Master Hive": {"items": ["Abyss-Imbued Leggings", "Boreal-Patterned Crown", "Anima-Infused Cuirass", "Chaos-Woven Greaves", "Elysium-Engraved Aegis", "Eden-Blessed Guards", "Gaea-Hewn Boots", "Hephaestus-Forged Sabatons", "Obsidian-Framed Helmet", "Twilight-Gilded Cloak", "Infused Hive Relik", "Infused Hive Wand", "Infused Hive Spear", "Infused Hive Dagger", "Infused Hive Bow", "Contrast", "Prowess", "Intensity"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Thunder Hive": {"items": ["Sparkling Visor", "Insulated Plate Mail", "Static-Charged Leggings", "Thunderous Step", "Bottled Thunderstorm", "Lightning Flash"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Air Hive": {"items": ["Pride of the Aerie", "Gale's Freedom", "Turbine Greaves", "Flashstep", "Breezehands", "Vortex Bracer"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Earth Hive": {"items": ["Ambertoise Shell", "Beetle Aegis", "Elder Oak Roots", "Humbark Moccasins", "Subur Clip", "Golemlus Core"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Water Hive": {"items": ["Whitecap Crown", "Stillwater Blue", "Trench Scourer", "Silt of the Seafloor", "Coral Ring", "Moon Pool Circlet"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Fire Hive": {"items": ["Sparkweaver", "Soulflare", "Cinderchain", "Mantlewalkers", "Clockwork", "Dupliblaze"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Synch Core": {"items": ["Overload Core", "Synchro Core", "Dodge Core", "Harden Core", "Hustle Core"], "bonuses": [{}, {"hprRaw": -20, "fDefPct": -8, "wDefPct": -8, "aDefPct": -8, "tDefPct": -8, "eDefPct": -8, "sprint": -8}, {"hprRaw": 150, "fDefPct": -40, "wDefPct": -40, "aDefPct": -40, "tDefPct": -40, "eDefPct": -40, "sprint": -35, "ws": 16, "hpBonus": 1150, "sdPct": 14, "mdPct": 14, "jh": 1, "mr": -5, "ms": -5}, {"hprRaw": 50, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "sprint": 8, "ws": 8, "hpBonus": 666, "sdPct": 7, "mdPct": 7, "jh": 1}]}, "Black": {"items": ["Black Cap", "Black Boots", "Black Pants", "Black Tunic"], "bonuses": [{}, {"ms": 5, "dex": 2, "sdRaw": 15, "mdRaw": 5}, {"ms": 5, "dex": 6, "sdRaw": 35, "mdRaw": 10}, {"ms": 15, "dex": 20, "sdRaw": 65, "mdRaw": 70}]}, "Red Team": {"items": ["Red Team Boots", "Red Team Leggings", "Red Team Chestplate", "Red Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Tribal": {"items": ["Tribal Cap", "Tribal Boots", "Tribal Pants", "Tribal Tunic"], "bonuses": [{}, {"str": 2, "spd": 5}, {"str": 5, "agi": 2, "spd": 10}, {"sdPct": -15, "str": 10, "agi": 5, "spd": 15, "atkTier": 1}]}, "Champion": {"items": ["Champion Helmet", "Champion Boots", "Champion Leggings", "Champion Chestplate"], "bonuses": [{}, {}, {}, {"mr": 25, "sdPct": 75, "mdPct": 75, "ms": 25, "ls": 400, "hprRaw": 600}]}, "Outlaw": {"items": ["Outlaw Cap", "Outlaw Boots", "Outlaw Pants", "Outlaw Tunic"], "bonuses": [{}, {"ls": 11, "xpb": 5, "agi": 4, "eSteal": 2}, {"ls": 22, "xpb": 10, "agi": 8, "eSteal": 4}, {"ls": 45, "xpb": 25, "agi": 28, "eSteal": 8}]}, "Snail": {"items": ["Snail Helm", "Snail Boots", "Snail Leggings", "Snail Mail"], "bonuses": [{}, {"str": 7, "agi": -5, "thorns": 10, "spd": -5, "poison": 880, "hpBonus": 1100, "hprRaw": 125}, {"str": 14, "agi": -10, "thorns": 20, "spd": -10, "poison": 2650, "hpBonus": 2675, "hprRaw": 275}, {"str": 21, "agi": -15, "thorns": 40, "spd": -15, "poison": 5500, "hpBonus": 5500, "hprRaw": 575}]}, "Thanos Legionnaire": {"items": ["Thanos Legionnaire Helm", "Thanos Legionnaire Greaves", "Thanos Legionnaire Leggings", "Thanos Legionnaire Plate"], "bonuses": [{}, {"str": 2, "dex": -2, "int": -2, "agi": 2, "def": 2, "spd": 5, "hprRaw": 55, "mdRaw": 135}, {"str": 5, "dex": -5, "int": -5, "agi": 5, "def": 5, "spd": 10, "hprRaw": 210, "mdRaw": 270}, {"str": 15, "dex": -15, "int": -15, "agi": 15, "def": 15, "spd": 25, "atkTier": 1, "hprRaw": 525, "mdRaw": 540}]}, "Ghostly": {"items": ["Ghostly Cap", "Ghostly Boots", "Ghostly Pants", "Ghostly Tunic"], "bonuses": [{}, {"mr": -5, "ms": 10, "sdRaw": 40, "wDamPct": 5, "tDamPct": 5, "eDamPct": -34}, {"mr": -10, "ms": 20, "sdRaw": 115, "wDamPct": 10, "tDamPct": 10, "eDamPct": -67}, {"mr": -15, "ms": 30, "sdRaw": 230, "wDamPct": 32, "tDamPct": 32, "eDamPct": -100, "atkTier": -2}]}, "Adventurer's": {"items": ["Adventurer's Cap", "Adventurer's Boots", "Adventurer's Pants", "Adventurer's Tunic"], "bonuses": [{}, {"sdPct": 4, "mdPct": 4, "xpb": 10, "lb": 5, "spd": 2, "hpBonus": 15, "spRegen": 5}, {"sdPct": 12, "mdPct": 12, "xpb": 20, "lb": 10, "spd": 5, "hpBonus": 40, "spRegen": 15}, {"mr": 10, "sdPct": 25, "mdPct": 25, "xpb": 50, "lb": 30, "spd": 15, "hpBonus": 175, "spRegen": 50}]}, "Air Relic": {"items": ["Air Relic Helmet", "Air Relic Boots", "Air Relic Leggings", "Air Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "spd": 10, "hpBonus": 60}, {"xpb": 10, "lb": 25, "spd": 20, "hpBonus": 190}, {"xpb": 25, "lb": 50, "agi": 20, "spd": 60, "hpBonus": 400}]}, "Spider": {"items": ["Spinneret", "Abdomen", "Cephalothorax"], "bonuses": [{}, {"xpb": 10, "dex": 2, "agi": 2, "spd": 7, "poison": 35}, {"xpb": 25, "dex": 6, "agi": 6, "spd": 19, "poison": 130}]}, "Pigman": {"items": ["Pigman Helmet", "Pigman Battle Hammer"], "bonuses": [{}, {"str": 20, "eDamPct": 40}]}, "Kaerynn's": {"items": ["Kaerynn's Mind", "Kaerynn's Body"], "bonuses": [{}, {"mr": 10, "xpb": 40, "def": 25, "fDamPct": 20, "hprRaw": 180}]}, "Bandit's": {"items": ["Bandit's Locket", "Bandit's Bangle", "Bandit's Knuckle", "Bandit's Ring"], "bonuses": [{}, {"xpb": 3, "lb": 4, "eSteal": 1}, {"xpb": 7, "lb": 9, "eSteal": 3}, {"xpb": 12, "lb": 15, "eSteal": 6}]}, "Jester": {"items": ["Jester Necklace", "Jester Bracelet", "Jester Ring"], "bonuses": [{"xpb": 20, "lb": 20}, {"xpb": 45, "lb": 45, "spd": 5, "hpBonus": 240, "eSteal": 5}, {"xpb": 75, "lb": 75, "spd": 10, "hpBonus": 480, "eSteal": 15, "thorns": 12, "ref": 12}, {"xpb": 120, "lb": 120, "spd": 25, "hpBonus": 720, "eSteal": 20, "thorns": 30, "ref": 30}]}, "Builder's": {"items": ["Builder's Helmet", "Builder's Boots", "Builder's Trousers", "Builder's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Silverfish": {"items": ["Silverfish Helm", "Silverfish Boots"], "bonuses": [{"spd": 5}, {"agi": 10, "thorns": 20, "spd": 20, "poison": 290}]}, "Skien's": {"items": ["Skien Boots", "Skien Leggings", "Skien's Fatigues"], "bonuses": [{}, {"sdPct": -12, "mdPct": 12, "sdRaw": -50, "mdRaw": 60}, {"sdPct": -35, "mdPct": 35, "dex": 30, "spd": 11, "sdRaw": -150, "mdRaw": 180}]}, "Snow": {"items": ["Snow Helmet", "Snow Boots", "Snow Pants", "Snow Tunic"], "bonuses": [{}, {"hprPct": -10, "mr": 5, "sdPct": 6, "ref": 10, "thorns": 8}, {"hprPct": -20, "mr": 10, "sdPct": 14, "ref": 35, "thorns": 24}, {"hprPct": -30, "mr": 20, "sdPct": 30, "ref": 75, "thorns": 70}]}, "Veekhat's": {"items": ["Veekhat's Horns", "Veekhat's Udders"], "bonuses": [{}, {"mdPct": 30, "ms": 10, "spd": 25, "spPct2": -28}]}, "Morph": {"items": ["Morph-Stardust", "Morph-Ruby", "Morph-Amethyst", "Morph-Emerald", "Morph-Topaz", "Morph-Gold", "Morph-Iron", "Morph-Steel"], "bonuses": [{}, {"xpb": 5, "lb": 5}, {"mr": 5, "xpb": 10, "lb": 10, "spRaw2": -5, "hpBonus": 125}, {"mr": 5, "xpb": 15, "lb": 15, "spRaw2": -5, "hpBonus": 425}, {"mr": 10, "xpb": 35, "lb": 35, "hpBonus": 1325, "spRaw2": -5, "spRaw4": -5}, {"mr": 10, "xpb": 55, "lb": 55, "hpBonus": 2575, "spRaw2": -5, "spRaw4": -5}, {"mr": 15, "xpb": 80, "lb": 80, "hpBonus": 4450, "spRaw1": -5, "spRaw2": -5, "spRaw4": -5}, {"mr": 20, "xpb": 100, "lb": 100, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "hpBonus": 8270, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5}]}, "Black Catalyst": {"items": ["Black Catalyst"], "bonuses": [{"xpb": -5}, {"hpBonus": 325, "str": 0, "dex": 0, "int": 0, "def": 0, "agi": 0, "xpb": 25, "spRegen": 10, "sdPct": 8, "spPct1": -8, "spPct3": -8}]}, "Leaf": {"items": ["Leaf Cap", "Leaf Boots", "Leaf Pants", "Leaf Tunic"], "bonuses": [{}, {"hprPct": 5, "thorns": 7, "hpBonus": 10, "hprRaw": 1}, {"hprPct": 12, "thorns": 18, "hpBonus": 20, "hprRaw": 3}, {"hprPct": 25, "thorns": 35, "hpBonus": 60, "hprRaw": 7}]}, "Vexing": {"items": ["Mask of the Dark Vexations", "Staff of the Dark Vexations"], "bonuses": [{}, {"mr": 10, "sdPct": 15, "mdPct": -15, "sdRaw": 30, "spPct2": -35}]}, "Hallowynn 2016": {"items": ["Treat", "Trick"], "bonuses": [{}, {"xpb": 15, "spRegen": 10, "eSteal": 5}]}, "Spore": {"items": ["Spore Cap", "Spore Shortsword"], "bonuses": [{}, {"ls": 20, "expd": 20, "poison": 70}]}, "Horse": {"items": ["Horse Mask", "Horse Hoof"], "bonuses": [{}, {"mdPct": 11, "xpb": 25, "spd": 17, "aDamPct": 15, "eDamPct": 15, "sprint": 25, "sprintReg": 50}]}, "GM's": {"items": ["GM's Helmet", "GM's Boots", "GM's Trousers", "GM's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Nether": {"items": ["Nether Cap", "Nether Boots", "Nether Pants", "Nether Tunic"], "bonuses": [{}, {"ls": 5, "expd": 2, "hprRaw": -1, "fDamPct": 2, "wDamPct": -10}, {"ls": 15, "expd": 10, "hprRaw": -2, "fDamPct": 8, "wDamPct": -25}, {"ls": 50, "def": 15, "expd": 60, "hprRaw": -20, "fDamPct": 42, "wDamPct": -45}]}, "Thunder Relic": {"items": ["Thunder Relic Helmet", "Thunder Relic Boots", "Thunder Relic Leggings", "Thunder Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 55, "mdRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 180, "mdRaw": 32}, {"xpb": 25, "lb": 50, "dex": 20, "hpBonus": 380, "mdRaw": 105}]}, "Visceral": {"items": ["Visceral Skullcap", "Visceral Toe", "Visceral Legs", "Visceral Chest"], "bonuses": [{}, {"hprPct": 30, "mdPct": 10, "ls": 45, "hpBonus": -1000, "hprRaw": 35, "mdRaw": 40}, {"hprPct": 100, "mdPct": 25, "ls": 90, "hpBonus": -2500, "hprRaw": 75, "mdRaw": 80}, {"hprPct": 350, "mdPct": 50, "ls": 180, "hpBonus": -4000, "hprRaw": 145, "mdRaw": 165}]}, "Bony": {"items": ["Bony Circlet", "Bony Bow"], "bonuses": [{}, {"agi": 8, "mdRaw": 45, "aDamPct": 15}]}, "Blue Team": {"items": ["Blue Team Boots", "Blue Team Leggings", "Blue Team Chestplate", "Blue Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Clock": {"items": ["Clock Helm", "Clock Amulet", "Watch Bracelet", "Clockwork Ring", "Time Ring", "Clock Boots", "Clock Leggings", "Clock Mail"], "bonuses": [{}, {"fDamPct": 15, "wDamPct": 6, "aDamPct": 5, "tDamPct": 18, "eDamPct": 8}, {"fDamPct": 14, "wDamPct": 12, "aDamPct": 13}, {"fDamPct": 13, "wDamPct": 18, "aDamPct": 20, "tDamPct": 18, "eDamPct": 14}, {"fDamPct": 12, "wDamPct": 24, "aDamPct": 28}, {"fDamPct": 11, "wDamPct": 24, "aDamPct": 24, "tDamPct": 18, "eDamPct": 22}, {"fDamPct": 10, "wDamPct": 24, "aDamPct": 19}, {"fDamPct": 9, "wDamPct": 24, "aDamPct": 14, "tDamPct": 18, "eDamPct": 34}]}, "Ultramarine": {"items": ["Ultramarine Crown", "Ultramarine Boots", "Ultramarine Belt", "Ultramarine Cape"], "bonuses": [{}, {"mr": 10, "mdPct": -24, "int": 5, "wDamPct": 10, "tDamPct": -8, "wDefPct": 16}, {"mr": 25, "mdPct": -54, "int": 15, "wDamPct": 20, "tDamPct": -18, "wDefPct": 36}, {"mr": 40, "mdPct": -90, "int": 25, "wDamPct": 40, "tDamPct": -30, "wDefPct": 56}]}, "Cosmic": {"items": ["Cosmic Visor", "Cosmic Walkers", "Cosmic Ward", "Cosmic Vest"], "bonuses": [{}, {"xpb": 25, "lb": 25, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "ms": 5}, {"xpb": 50, "lb": 50, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "ms": 10}, {"xpb": 75, "lb": 75, "fDefPct": 100, "wDefPct": 100, "aDefPct": 100, "tDefPct": 100, "eDefPct": 100, "sdPct": 40, "ms": 30}]}, "Saint's": {"items": ["Saint's Shawl", "Saint's Sandals", "Saint's Leggings", "Saint's Tunic"], "bonuses": [{}, {"mr": 5, "sdPct": -10, "mdPct": -15, "def": 7, "spRegen": 10, "wDamPct": 15, "aDamPct": 15}, {"mr": 15, "sdPct": -20, "mdPct": -40, "def": 15, "spRegen": 25, "wDamPct": 40, "aDamPct": 40}, {"mr": 30, "sdPct": -40, "mdPct": -85, "def": 40, "spRegen": 100, "wDamPct": 85, "aDamPct": 85}]}, "Beachside": {"items": ["Beachside Headwrap", "Beachside Conch"], "bonuses": [{}, {"lb": 20, "wDamPct": 35, "wDefPct": 25}]}, "Villager": {"items": ["Villager Pants", "Villager Mail"], "bonuses": [{}, {"xpb": 20, "lb": 60, "eSteal": 8}]}, "Goblin": {"items": ["Goblin Hood", "Goblin Runners", "Goblin Cloak"], "bonuses": [{"sdPct": -5, "mdPct": -5, "sdRaw": 27, "mdRaw": 25}, {"sdPct": -13, "mdPct": -13, "ls": 30, "sdRaw": 55, "mdRaw": 70}, {"sdPct": -33, "mdPct": -33, "ls": 90, "ms": 10, "sdRaw": 160, "mdRaw": 105, "atkTier": 1}]}, "Corrupted Nii": {"items": ["Corrupted Nii Mukluk", "Corrupted Nii Plate", "Corrupted Nii Shako"], "bonuses": [{}, {"int": 3, "def": 3, "hprRaw": 90}, {"mr": 25, "int": 20, "def": 20, "hpBonus": 1500, "hprRaw": 330, "fDefPct": 75, "wDefPct": 75}]}, "Water Relic": {"items": ["Water Relic Helmet", "Water Relic Boots", "Water Relic Leggings", "Water Relic Chestplate"], "bonuses": [{}, {"mr": 5, "xpb": 5, "lb": 10, "hpBonus": 55}, {"mr": 10, "xpb": 10, "lb": 25, "hpBonus": 170}, {"mr": 20, "xpb": 25, "lb": 50, "int": 20, "hpBonus": 360}]}, "Elf": {"items": ["Elf Cap", "Elf Shoes", "Elf Pants", "Elf Robe"], "bonuses": [{}, {"hprPct": 10, "lb": 8, "agi": 3, "def": 3, "spd": 8}, {"hprPct": 20, "lb": 20, "agi": 7, "def": 7, "spd": 16}, {"hprPct": 45, "lb": 35, "agi": 15, "def": 15, "spd": 25, "hprRaw": 50}]}, "Relic": {"items": ["Relic Helmet", "Relic Boots", "Relic Leggings", "Relic Chestplate"], "bonuses": [{}, {"xpb": 10, "lb": 10, "hpBonus": 65, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5}, {"xpb": 25, "lb": 25, "hpBonus": 200, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12}, {"xpb": 50, "lb": 50, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "hpBonus": 425, "fDamPct": 25, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25}]}, "Corrupted Uth": {"items": ["Corrupted Uth Sandals", "Corrupted Uth Belt", "Corrupted Uth Plume"], "bonuses": [{}, {"ls": 180, "agi": 3, "def": 3}, {"ls": 700, "ref": 80, "agi": 25, "def": 25, "thorns": 80, "fDefPct": 125, "aDefPct": 125}]}, "Fire Relic": {"items": ["Fire Relic Helmet", "Fire Relic Boots", "Fire Relic Leggings", "Fire Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 90, "hprRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 270, "hprRaw": 40}, {"xpb": 25, "lb": 50, "def": 20, "hpBonus": 570, "hprRaw": 100}]}, "Flashfire": {"items": ["Flashfire Gauntlet", "Flashfire Knuckle"], "bonuses": [{}, {"spd": 8, "atkTier": 1, "wDamPct": -15, "wDefPct": -15}, {"spd": 16, "atkTier": 1, "fDamPct": 12, "wDamPct": -15, "wDefPct": -15}]}, "Earth Relic": {"items": ["Earth Relic Helmet", "Earth Relic Boots", "Earth Relic Leggings", "Earth Relic Chestplate"], "bonuses": [{}, {"mdPct": 10, "xpb": 5, "lb": 10, "hpBonus": 65}, {"mdPct": 20, "xpb": 10, "lb": 25, "hpBonus": 200}, {"mdPct": 45, "xpb": 25, "lb": 50, "str": 20, "hpBonus": 425}]}, "Bear": {"items": ["Bear Mask", "Bear Head", "Bear Body"], "bonuses": [{}, {"mdPct": 14, "hpBonus": 75, "mdRaw": 25}]}, "Slime": {"items": ["Slime Boots", "Slime Plate"], "bonuses": [{}, {"hprPct": 35, "thorns": 15, "spd": -6, "poison": 300, "hpBonus": 600, "jh": 1}]}, "Wynnterfest 2016": {"items": ["Green Ornament", "Red Ornament", "Blue Ornament", "Yellow Ornament"], "bonuses": [{"sdPct": 3}, {"sdPct": 3, "mdPct": 3, "xpb": 6}, {"sdPct": 3, "mdPct": 3, "xpb": 12, "hpBonus": 120}, {"sdPct": 14, "mdPct": 14, "xpb": 24, "hpBonus": 480}]}}} \ No newline at end of file +{"items": [{"name": "Keratoconus", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Keratoconus", "slots": 3, "hp": 3900, "fDef": -150, "aDef": 250, "tDef": -150, "lvl": 101, "intReq": 65, "agiReq": 65, "hprPct": -50, "mr": 8, "int": 15, "def": -10, "wDamPct": 30, "aDamPct": 35, "tDamPct": -40, "spRaw4": -4, "id": 3579}, {"name": "Wanderlust", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Wanderlust", "slots": 2, "hp": 3500, "fDef": -75, "wDef": 100, "aDef": 100, "tDef": 75, "lvl": 103, "dexReq": 45, "agiReq": 55, "hprPct": -15, "ls": 230, "ms": -12, "spd": 25, "sdRaw": 208, "wDamPct": 20, "aDamPct": 30, "id": 3592}, {"name": "Anaerobic", "type": "leggings", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Anaerobic", "slots": 4, "hp": 3850, "wDef": -150, "aDef": 100, "eDef": 100, "lvl": 104, "strReq": 60, "agiReq": 60, "mr": 8, "ref": 48, "str": 12, "atkTier": -1, "aDamPct": 32, "eDamPct": 24, "spRaw1": -8, "id": 3611}, {"name": "Danse Macabre", "type": "relik", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Danse Macabre", "basedps": 238, "slots": 1, "nDam": "0-0", "fDam": "97-141", "wDam": "0-0", "aDam": "0-0", "tDam": "24-214", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 102, "classReq": "Shaman", "dexReq": 55, "defReq": 50, "ms": 13, "atkTier": 1, "hpBonus": -1150, "hprRaw": -204, "sdRaw": 184, "spRaw1": -7, "id": 3614}, {"name": "Darkness's Dogma", "type": "bow", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Darkness's Dogma", "basedps": 1250, "slots": 3, "nDam": "0-0", "fDam": "550-700", "wDam": "600-650", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 103, "classReq": "Archer", "intReq": 60, "defReq": 50, "ls": -700, "ms": 13, "ref": 25, "hpBonus": 1500, "fDefPct": -50, "wDefPct": -50, "id": 3654}, {"name": "Frameshift", "type": "wand", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Frameshift", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "160-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-210", "atkSpd": "VERY_SLOW", "lvl": 104, "classReq": "Mage", "strReq": 40, "defReq": 60, "mr": 7, "mdPct": 25, "ls": 380, "def": 20, "wDamPct": -30, "spRaw1": -4, "id": 3655}, {"name": "Helminth", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Helminth", "basedps": 100, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-199", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 102, "classReq": "Warrior", "dexReq": 65, "ls": 500, "atkTier": 1, "hpBonus": -1250, "tDamPct": 20, "wDefPct": -35, "aDefPct": -35, "id": 3656}, {"name": "Lanternfly Leg", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Lanternfly Leg", "basedps": 180, "slots": 3, "nDam": "150-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 101, "classReq": "Assassin", "agiReq": 50, "defReq": 50, "spd": 30, "hpBonus": 1000, "fDamPct": 23, "aDamPct": 23, "spRaw2": -4, "jh": 1, "id": 3657}, {"name": "Dissonance", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Dissonance", "sprint": 20, "slots": 2, "hp": 3050, "wDef": 100, "aDef": -175, "tDef": 100, "lvl": 103, "dexReq": 50, "intReq": 50, "sdPct": 20, "ls": -275, "lb": 20, "spd": -20, "wDamPct": 20, "tDamPct": 12, "id": 3658}, {"name": "Atomizer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Atomizer", "poison": 600, "thorns": 25, "slots": 3, "hp": 4350, "fDef": 120, "wDef": 120, "aDef": 200, "lvl": 102, "agiReq": 75, "hprPct": 37, "agi": 8, "fDefPct": 31, "wDefPct": 31, "jh": 1, "id": 3660}, {"name": "Wasteland Azalea", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Wasteland Azalea", "poison": 500, "sprint": -15, "slots": 3, "hp": 2750, "fDef": -75, "eDef": 75, "lvl": 101, "strReq": 45, "agiReq": 50, "atkTier": -1, "sdRaw": 140, "aDamPct": 25, "eDamPct": 25, "spRaw3": -6, "id": 3661}, {"name": "Tranquility", "type": "ring", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Tranquility", "hp": 550, "fDef": 50, "wDef": 50, "lvl": 101, "intReq": 45, "defReq": 45, "hprPct": 17, "sdPct": 5, "str": -3, "dex": -3, "spd": -7, "id": 3662}, {"name": "Misalignment", "type": "bracelet", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Misalignment", "lvl": 101, "strReq": 35, "dexReq": 45, "mr": 3, "dex": 3, "int": 3, "wDamPct": 10, "tDamPct": 6, "eDamPct": 6, "id": 3663}, {"name": "Grafted Eyestalk", "type": "necklace", "tier": "Unique", "majorIds": [], "category": "accessory", "displayName": "Grafted Eyestalk", "hp": -600, "tDef": -40, "eDef": -40, "lvl": 101, "agiReq": 40, "defReq": 40, "hprPct": -12, "sdPct": 8, "agi": 5, "def": 5, "spRaw1": -1, "id": 3664}, {"name": "Forbearance", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Forbearance", "lvl": 105, "dexReq": 60, "intReq": 60, "mr": 4, "ls": 120, "dex": 6, "int": 6, "wDamPct": -15, "tDamPct": -15, "id": 3665}, {"name": "Ingress", "type": "ring", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Ingress", "aDef": 55, "eDef": 55, "lvl": 105, "strReq": 55, "agiReq": 55, "dex": 4, "int": 2, "def": 4, "sdRaw": 55, "aDamPct": 8, "eDamPct": 8, "id": 3666}, {"name": "Breakthrough", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Breakthrough", "fDef": -30, "tDef": -45, "eDef": -45, "lvl": 105, "intReq": 45, "agiReq": 45, "sdPct": 13, "ms": 6, "str": -4, "dex": -4, "def": -6, "sdRaw": 75, "spRaw2": -4, "id": 3667}, {"name": "Simulacrum", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Simulacrum", "hp": -800, "fDef": -90, "eDef": -70, "lvl": 105, "strReq": 55, "defReq": 45, "mr": 5, "spd": 8, "hprRaw": -150, "sdRaw": 150, "id": 3670}, {"name": "Medeis", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Medeis", "slots": 3, "hp": 2950, "fDef": 75, "wDef": 75, "aDef": -100, "tDef": 75, "eDef": -100, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "sdPct": 8, "dex": 10, "int": 10, "def": 10, "fDamPct": 8, "wDamPct": 8, "aDamPct": -75, "tDamPct": 8, "eDamPct": -75, "id": 1763}, {"name": "Roulette", "type": "dagger", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Roulette", "basedps": 29, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-58", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "dexReq": 40, "xpb": 8, "lb": 8, "dex": 8, "tDamPct": 888, "id": 2368}, {"name": "Prowess", "type": "bracelet", "tier": "Legendary", "majorIds": [], "quest": "The Qira Hive", "category": "accessory", "displayName": "Prowess", "set": "Master Hive", "hp": 425, "lvl": 100, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 1284}, {"name": "Caesura", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Caesura", "slots": 2, "hp": 2450, "wDef": -250, "tDef": 100, "eDef": 100, "lvl": 93, "strReq": 45, "dexReq": 60, "intReq": 30, "mr": -15, "sdPct": 10, "ms": -15, "str": 10, "int": 15, "sdRaw": 231, "tDamPct": 25, "eDamPct": 25, "id": 463}, {"name": "Gigabyte", "type": "necklace", "tier": "Legendary", "category": "accessory", "displayName": "Gigabyte", "thorns": 8, "hp": -512, "lvl": 93, "mr": -4, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "spd": 8, "hprRaw": 48, "fixID": true, "id": 731}, {"name": "Pro Tempore", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Pro Tempore", "slots": 4, "hp": 2350, "wDef": -50, "tDef": -50, "lvl": 88, "dexReq": 40, "intReq": 50, "mr": 10, "sdPct": 20, "ls": 165, "ms": -15, "int": 10, "sdRaw": 104, "id": 3577}, {"name": "Orange Lily", "type": "bow", "tier": "Legendary", "category": "weapon", "displayName": "Orange Lily", "basedps": 507.5, "slots": 3, "nDam": "75-140", "fDam": "0-0", "wDam": "165-235", "aDam": "0-0", "tDam": "0-0", "eDam": "165-235", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "intReq": 60, "mr": 10, "wDamPct": 20, "aDamPct": -150, "eDamPct": 20, "aDefPct": -100, "fixID": true, "spRaw3": -5, "spRaw4": 50, "id": 717}, {"name": "Brainwash", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Brainwash", "hp": 2800, "wDef": -220, "tDef": 100, "eDef": 70, "lvl": 96, "strReq": 40, "dexReq": 70, "hprPct": -40, "mr": 10, "sdPct": 10, "ms": 15, "str": 13, "int": -50, "sdRaw": 190, "wDamPct": -30, "tDamPct": 15, "id": 416}, {"name": "Second Wind", "type": "leggings", "tier": "Fabled", "majorIds": [], "category": "armor", "displayName": "Second Wind", "slots": 3, "hp": 6325, "fDef": 120, "aDef": 120, "tDef": -350, "eDef": -350, "lvl": 83, "agiReq": 40, "defReq": 65, "hprPct": -30, "ls": -475, "agi": 20, "spd": 20, "atkTier": 1, "id": 2973}, {"name": "Cumulonimbus", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Cumulonimbus", "slots": 3, "hp": 1800, "wDef": 70, "aDef": 70, "tDef": 70, "lvl": 94, "dexReq": 30, "intReq": 30, "agiReq": 30, "sdPct": 15, "dex": 10, "int": 10, "agi": 10, "spd": 25, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "id": 696}, {"name": "Morrowind", "type": "wand", "tier": "Legendary", "majorIds": [], "category": "weapon", "displayName": "Morrowind", "basedps": 135, "slots": 3, "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "agiReq": 45, "ref": 46, "agi": 14, "spd": 23, "sdRaw": 145, "aDamPct": 23, "eDamPct": -15, "aDefPct": 23, "id": 1818}, {"name": "Anima-Infused Helmet", "displayName": "Boreal-Patterned Crown", "type": "helmet", "tier": "Legendary", "quest": "The Qira Hive", "category": "armor", "set": "Master Hive", "slots": 2, "hp": 3000, "wDef": 150, "aDef": 150, "tDef": 150, "lvl": 100, "dexReq": 40, "intReq": 40, "agiReq": 40, "mr": 8, "sdPct": 20, "mdPct": -40, "str": -30, "def": -30, "sdRaw": 300, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "fixID": true, "id": 1267}, {"name": "Corsair", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Corsair", "slots": 2, "hp": 2900, "aDef": 110, "tDef": 80, "eDef": -140, "lvl": 99, "dexReq": 55, "agiReq": 35, "ms": 5, "dex": 8, "spd": 11, "eSteal": 4, "aDamPct": 12, "tDamPct": 10, "spPct1": -10, "spPct4": -14, "id": 658}, {"name": "Charging Flame", "type": "spear", "tier": "Rare", "majorIds": [], "category": "weapon", "displayName": "Charging Flame", "basedps": 190, "slots": 2, "nDam": "20-40", "fDam": "20-140", "wDam": "40-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 12, "mdPct": 12, "expd": 24, "hpBonus": -1200, "fDamPct": 12, "wDamPct": 12, "tDefPct": -25, "spRaw2": -12, "id": 519}, {"name": "Aphotic", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aphotic", "slots": 2, "hp": 3200, "wDef": 150, "tDef": -150, "lvl": 98, "intReq": 100, "sdPct": 50, "dex": -80, "int": 5, "atkTier": -6, "spRaw3": -7, "id": 133}, {"name": "Silent Ballet", "type": "relik", "tier": "Unique", "majorIds": [], "category": "weapon", "displayName": "Silent Ballet", "basedps": 231, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "110-121", "tDam": "0-0", "eDam": "110-121", "atkSpd": "FAST", "lvl": 83, "strReq": 40, "agiReq": 40, "sdPct": -40000, "mdPct": 40, "sdRaw": -40000, "spPct1": -40, "spRaw1": -400, "spPct2": -40, "spRaw2": -400, "spPct3": -40, "spRaw3": -400, "spPct4": -40, "spRaw4": -400, "id": 3021}, {"name": "Rhythm of the Seasons", "type": "spear", "tier": "Fabled", "majorIds": ["RALLY"], "category": "weapon", "displayName": "Rhythm of the Seasons", "basedps": 165, "slots": 2, "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-140", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 80, "defReq": 60, "mr": 15, "def": 12, "hpBonus": 1800, "hprRaw": -660, "wDamPct": 25, "id": 3598}, {"name": "Sorrow", "type": "chestplate", "tier": "Rare", "category": "armor", "displayName": "Sorrow", "slots": 1, "hp": 1400, "wDef": 150, "tDef": -150, "lvl": 72, "intReq": 95, "mr": 5, "sdPct": 8, "ms": -20, "spRegen": 20, "wDamPct": 42, "fixID": true, "spRaw1": -8, "id": 666}, {"name": "Condensation", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Condensation", "hp": 2000, "wDef": 100, "tDef": -120, "lvl": 87, "intReq": 75, "sdPct": 30, "mdPct": -30, "int": 10, "tDefPct": -20, "spRaw3": -6, "id": 586}, {"name": "Augoeides", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Augoeides", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 63, "intReq": 65, "mr": 5, "xpb": 5, "lb": 8, "ref": 30, "spRegen": 10, "mdRaw": -52, "spRaw3": -5, "id": 169}, {"name": "Matryoshka Shell", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Matryoshka Shell", "slots": 18, "hp": 550, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 20, "lb": 20, "spd": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "spRaw1": -5, "id": 1764}, {"name": "Pure", "type": "wand", "tier": "Mythic", "majorIds": ["ENTROPY"], "category": "weapon", "displayName": "Pure", "basedps": 70, "nDam": "0-5", "fDam": "0-0", "wDam": "20-45", "aDam": "15-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 50, "agiReq": 30, "sdPct": 400, "mdPct": -100, "ms": 30, "xpb": 30, "ref": 20, "spRaw3": 6, "id": 1711}, {"name": "Resurgence", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Resurgence", "slots": 4, "hp": 4550, "fDef": 125, "wDef": 175, "lvl": 91, "intReq": 65, "defReq": 90, "mr": 30, "sdPct": -35, "mdPct": -45, "int": 25, "spd": -14, "spRegen": 20, "hprRaw": 390, "id": 1717}, {"name": "Galleon", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Galleon", "poison": 4231, "slots": 3, "hp": 4500, "wDef": 250, "aDef": -175, "eDef": 200, "lvl": 92, "strReq": 65, "intReq": 60, "mdPct": 45, "ms": 20, "lb": 20, "atkTier": -1, "eSteal": 15, "wDamPct": 36, "eDamPct": 36, "id": 1702}, {"name": "Boreal", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Boreal", "slots": 3, "hp": 5000, "fDef": 250, "aDef": 375, "lvl": 93, "agiReq": 65, "defReq": 75, "hprPct": 100, "mr": 10, "ref": 25, "spd": 25, "hprRaw": 269, "tDamPct": -75, "eDamPct": -75, "fDefPct": 50, "aDefPct": 50, "id": 1687}, {"name": "Freedom", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Freedom", "basedps": 485, "slots": 4, "nDam": "0-0", "fDam": "75-119", "wDam": "65-129", "aDam": "55-139", "tDam": "45-149", "eDam": "85-109", "atkSpd": "NORMAL", "lvl": 93, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "agi": 30, "spd": 15, "hpBonus": 1000, "sdRaw": 111, "mdRaw": 111, "id": 1695}, {"name": "Olympic", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Olympic", "basedps": 360, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "345-375", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "agiReq": 105, "agi": 25, "spd": 35, "aDamPct": 20, "aDefPct": 30, "spRaw1": -10, "spRaw2": -10, "jh": 6, "id": 1718}, {"name": "Guardian", "type": "spear", "tier": "Mythic", "majorIds": ["GUARDIAN"], "category": "weapon", "displayName": "Guardian", "basedps": 255, "thorns": 25, "slots": 3, "nDam": "50-90", "fDam": "165-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 110, "mr": 1, "def": 20, "hpBonus": 6000, "hprRaw": 585, "fDefPct": 20, "wDefPct": 20, "eDefPct": 20, "id": 1701}, {"name": "Hadal", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Hadal", "basedps": 1950, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "1750-2150", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 94, "intReq": 130, "mr": 30, "sdPct": 75, "spPct3": 112, "spPct4": 112, "id": 1703}, {"name": "Nullification", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Nullification", "basedps": 315, "poison": -7000, "slots": 3, "nDam": "0-0", "fDam": "36-90", "wDam": "46-80", "aDam": "28-98", "tDam": "22-104", "eDam": "60-66", "atkSpd": "FAST", "lvl": 95, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "ls": 495, "ms": 16, "ref": 80, "def": 40, "fDefPct": 143, "wDefPct": 143, "aDefPct": 143, "tDefPct": 143, "eDefPct": 143, "id": 1714}, {"name": "Idol", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Idol", "basedps": 280, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "230-330", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "intReq": 120, "mr": 10, "ref": 30, "int": 26, "spRegen": 25, "sdRaw": 264, "wDefPct": 15, "spRaw2": -50, "id": 1705}, {"name": "Dawnbreak", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Dawnbreak", "slots": 2, "hp": 4225, "fDef": 200, "wDef": -125, "aDef": -125, "tDef": 200, "lvl": 96, "dexReq": 65, "defReq": 65, "ls": 350, "ms": 12, "expd": 23, "atkTier": -20, "mdRaw": 2700, "fDamPct": 27, "tDamPct": 27, "id": 1691}, {"name": "Cataclysm", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Cataclysm", "basedps": 265, "thorns": 21, "slots": 3, "nDam": "40-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-305", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 96, "dexReq": 120, "dex": 20, "hpBonus": -6000, "eSteal": 5, "tDamPct": 17, "spRaw1": -1, "id": 1690}, {"name": "Grimtrap", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Grimtrap", "basedps": 570, "poison": 2000, "thorns": 70, "slots": 3, "nDam": "175-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "305-425", "atkSpd": "SLOW", "lvl": 96, "strReq": 100, "ls": 650, "ms": -10, "str": 15, "spRaw2": 1, "spRaw4": -10, "id": 1699}, {"name": "Weathered", "type": "dagger", "tier": "Mythic", "majorIds": ["ROVINGASSASSIN"], "category": "weapon", "displayName": "Weathered", "basedps": 245, "slots": 3, "nDam": "40-80", "fDam": "0-0", "wDam": "0-0", "aDam": "140-230", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 110, "ms": 16, "ref": 25, "agi": 15, "expd": -50, "spd": 25, "atkTier": 1, "aDamPct": 20, "id": 1726}, {"name": "Thrundacrack", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Thrundacrack", "basedps": 205, "slots": 4, "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-220", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "dexReq": 105, "hprPct": -60, "dex": 35, "spd": 9, "wDamPct": 60, "tDamPct": 25, "spRaw3": -6, "id": 1722}, {"name": "Lament", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Lament", "basedps": 265, "slots": 3, "nDam": "70-90", "fDam": "0-0", "wDam": "180-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "intReq": 110, "ls": -500, "ms": 40, "int": 20, "wDamPct": 80, "spPct1": -35, "id": 1710}, {"name": "Toxoplasmosis", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Toxoplasmosis", "basedps": 3, "poison": 10000, "slots": 2, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-3", "atkSpd": "VERY_FAST", "lvl": 96, "strReq": 110, "ls": 500, "ms": 18, "lb": 20, "str": 40, "spd": 20, "id": 1724}, {"name": "Stardew", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Stardew", "slots": 2, "hp": 4075, "fDef": -100, "wDef": 150, "aDef": -100, "tDef": 150, "eDef": -100, "lvl": 97, "dexReq": 65, "intReq": 75, "mr": -9, "ms": 15, "ref": 25, "sdRaw": 313, "wDamPct": 35, "tDamPct": 35, "id": 1723}, {"name": "Divzer", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Divzer", "basedps": 299, "slots": 3, "nDam": "48-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "250-250", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 115, "ls": 973, "ms": 30, "dex": 37, "agi": -550, "def": -39, "atkTier": 1, "sdRaw": 253, "mdRaw": 536, "fDamPct": -550, "wDamPct": -550, "id": 1692}, {"name": "Inferno", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Inferno", "basedps": 950, "slots": 3, "nDam": "0-0", "fDam": "855-1045", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 105, "hprPct": -45, "mr": -1, "mdPct": 25, "def": 15, "spd": 25, "hpBonus": 1500, "mdRaw": 560, "fDamPct": 35, "wDefPct": -40, "spRaw1": -1, "id": 1707}, {"name": "Nirvana", "type": "dagger", "tier": "Mythic", "majorIds": ["ARCANES"], "category": "weapon", "displayName": "Nirvana", "basedps": 352.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "320-385", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 110, "mr": 10, "sdPct": 25, "mdPct": -80, "ms": -20, "ref": 15, "int": 40, "hpBonus": -2000, "id": 1712}, {"name": "Collapse", "type": "spear", "tier": "Mythic", "majorIds": ["FISSION"], "category": "weapon", "displayName": "Collapse", "basedps": 827.5, "slots": 3, "nDam": "40-65", "fDam": "0-310", "wDam": "0-310", "aDam": "0-310", "tDam": "0-310", "eDam": "0-310", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "mdPct": 50, "ms": 18, "str": 45, "expd": 250, "fDefPct": -65, "wDefPct": -65, "aDefPct": -65, "tDefPct": -65, "eDefPct": -65, "id": 1693}, {"name": "Gaia", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Gaia", "basedps": 620, "poison": 2500, "thorns": 15, "slots": 3, "nDam": "150-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "380-490", "atkSpd": "VERY_SLOW", "lvl": 97, "strReq": 105, "mdPct": 15, "str": 25, "sdRaw": -275, "mdRaw": 575, "spRaw4": -9, "id": 1700}, {"name": "Absolution", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Absolution", "basedps": 200, "nDam": "0-0", "fDam": "195-205", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "defReq": 115, "mr": 16, "hpBonus": 3000, "spRegen": 23, "fDamPct": 20, "wDamPct": 200, "tDefPct": 45, "eDefPct": 45, "spRaw1": -20, "id": 1682}, {"name": "Spring", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Spring", "basedps": 422.5, "slots": 3, "nDam": "150-185", "fDam": "0-0", "wDam": "200-310", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "intReq": 120, "mr": 30, "str": 15, "dex": -40, "int": 15, "wDamPct": 20, "tDamPct": -50, "id": 1721}, {"name": "Monster", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Monster", "basedps": 315, "slots": 3, "nDam": "110-140", "fDam": "160-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "defReq": 110, "mdPct": 40, "ls": 500, "ms": 10, "def": 40, "hpBonus": 3000, "fDamPct": 25, "spRaw1": 4, "id": 1713}, {"name": "Revenant", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Revenant", "slots": 3, "hp": 7000, "aDef": 70, "eDef": 70, "lvl": 99, "strReq": 70, "agiReq": 70, "mdPct": -70, "ms": 10, "ref": 120, "spd": 40, "hpBonus": -2500, "mdRaw": 520, "aDamPct": 40, "eDamPct": 40, "spPct4": -28, "id": 1719}, {"name": "Fatal", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fatal", "basedps": 180.5, "slots": 3, "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-360", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "dexReq": 110, "sdPct": 25, "ms": 1, "dex": 25, "spd": 15, "spPct1": 28, "spPct2": -49, "id": 1698}, {"name": "Warp", "type": "wand", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Warp", "basedps": 260, "slots": 3, "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "190-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "agiReq": 130, "hprPct": -200, "mr": -45, "ref": 90, "agi": 20, "expd": 50, "spd": 180, "hprRaw": -600, "aDamPct": 15, "spRaw1": 4, "spRaw2": -299, "id": 1729}, {"name": "Oblivion", "type": "dagger", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Oblivion", "basedps": 1699.5, "slots": 4, "nDam": "1-200", "fDam": "0-0", "wDam": "600-999", "aDam": "0-0", "tDam": "600-999", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 101, "dexReq": 75, "intReq": 65, "mr": -30, "ms": 15, "dex": 15, "expd": 40, "spRegen": 40, "sdRaw": 265, "spRaw2": -20, "id": 3647}, {"name": "Epoch", "type": "bow", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Epoch", "basedps": 1680, "sprint": 70, "slots": 3, "nDam": "500-620", "fDam": "0-0", "wDam": "0-0", "aDam": "520-600", "tDam": "480-640", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 102, "dexReq": 70, "agiReq": 70, "sdPct": 40, "ls": 825, "ms": -1, "spd": -20, "mdRaw": 769, "spRaw1": -1, "spRaw4": -1, "id": 3645}, {"name": "Fantasia", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Fantasia", "basedps": 1350, "slots": 3, "nDam": "0-0", "fDam": "185-295", "wDam": "200-280", "aDam": "215-265", "tDam": "230-250", "eDam": "170-310", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": -20, "sdPct": 30, "ms": -20, "int": 50, "spPct1": -27, "spPct2": -27, "spPct3": -27, "spPct4": -27, "id": 1697}, {"name": "Slayer", "type": "boots", "tier": "Mythic", "majorIds": [], "category": "armor", "displayName": "Slayer", "slots": 2, "hp": 3775, "wDef": -100, "lvl": 94, "dexReq": 75, "agiReq": 60, "dex": 20, "spd": 27, "atkTier": 1, "eSteal": 10, "hprRaw": -270, "mdRaw": 285, "spPct3": -30, "id": 1716}, {"name": "Immolation", "type": "relik", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Immolation", "basedps": 640, "slots": 3, "nDam": "0-0", "fDam": "200-440", "wDam": "0-0", "aDam": "310-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 101, "agiReq": 80, "defReq": 80, "hprPct": -180, "agi": 50, "def": 50, "hpBonus": -2750, "fDamPct": 45, "wDamPct": -1000, "aDamPct": 45, "spPct3": -14, "id": 3646}, {"name": "Convergence", "type": "spear", "tier": "Mythic", "majorIds": [], "category": "weapon", "displayName": "Convergence", "basedps": 300, "slots": 3, "nDam": "70-90", "fDam": "105-115", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 104, "intReq": 65, "defReq": 75, "hprPct": 43, "tDamPct": 55, "eDamPct": 55, "aDefPct": 35, "spPct3": -45, "sprintReg": 43, "id": 3643}, {"name": "Guillotine", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Guillotine", "slots": 4, "hp": 1000, "fDef": 70, "wDef": 70, "aDef": -220, "tDef": 70, "eDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "defReq": 45, "mr": 10, "sdPct": 10, "mdPct": 23, "ls": 215, "ms": 10, "str": 5, "dex": 5, "int": 5, "agi": -99, "def": 5, "hpBonus": -1337, "sdRaw": 150, "aDamPct": -50, "aDefPct": -15, "id": 3588}, {"name": "Prayer", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Prayer", "slots": 2, "hp": 1280, "wDef": 100, "tDef": -100, "lvl": 68, "intReq": 45, "sdPct": 12, "xpb": 8, "int": 5, "spRegen": 8, "fDamPct": -16, "wDefPct": 12, "spRaw3": -5, "id": 2155}, {"name": "Symphony", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Symphony", "slots": 2, "hp": 1350, "fDef": 80, "wDef": 80, "tDef": -90, "eDef": -90, "lvl": 72, "intReq": 50, "defReq": 50, "hprPct": 20, "sdPct": 10, "mdPct": -10, "xpb": 12, "ref": 17, "hprRaw": 70, "spRaw4": -6, "id": 3196}, {"name": "Entamyx", "type": "leggings", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Entamyx", "slots": 3, "hp": 2150, "fDef": -100, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": 150, "lvl": 76, "strReq": 50, "intReq": 50, "agiReq": 50, "dex": -20, "def": -20, "wDamPct": 15, "aDamPct": 15, "eDamPct": 15, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw1": -4, "spRaw3": -4, "id": 2638}, {"name": "Gysdep", "type": "helmet", "tier": "Rare", "majorIds": [], "quest": "Troubled Tribesmen", "category": "armor", "displayName": "Gysdep", "slots": 3, "hp": 2000, "fDef": 150, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": -100, "lvl": 74, "intReq": 50, "agiReq": 50, "defReq": 50, "str": -20, "dex": -20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -3, "id": 2642}, {"name": "Aquarius", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Aquarius", "slots": 3, "hp": 2550, "fDef": -100, "lvl": 95, "intReq": 110, "mr": 25, "mdPct": -20, "spRaw1": -7, "id": 126}, {"name": "Scaldsteppers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Scaldsteppers", "slots": 2, "hp": 2325, "fDef": 80, "wDef": 110, "aDef": -90, "tDef": -100, "lvl": 90, "intReq": 40, "defReq": 30, "sdPct": 20, "int": 7, "expd": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": -12, "spRaw1": -6, "id": 2956}, {"name": "Steamstone", "type": "leggings", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Steamstone", "slots": 2, "hp": 2900, "fDef": 75, "wDef": 75, "tDef": -130, "eDef": 50, "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 25, "ms": 5, "int": 7, "def": 8, "aDamPct": -10, "tDamPct": -10, "eDamPct": 16, "fDefPct": 8, "wDefPct": 8, "fixID": true, "spRaw3": -6, "spRaw4": -3, "id": 2821}, {"name": "Leviathan", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Leviathan", "slots": 2, "hp": 2850, "wDef": 90, "aDef": -90, "tDef": -100, "eDef": 100, "lvl": 97, "strReq": 45, "intReq": 45, "str": 12, "atkTier": 1, "eSteal": 7, "wDamPct": 19, "eDamPct": 19, "tDefPct": -10, "spRaw3": -6, "id": 1634}, {"name": "The Courier's Cape", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "The Courier's Cape", "slots": 3, "hp": 1900, "aDef": 50, "lvl": 86, "agiReq": 70, "mr": 10, "xpb": 15, "lb": 10, "agi": 10, "spd": 20, "aDamPct": 23, "aDefPct": 15, "eDefPct": 10, "id": 3261}, {"name": "Exhibition", "type": "necklace", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Exhibition", "fDef": -30, "wDef": 60, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 105, "intReq": 80, "mr": -10, "spRaw1": -2, "spRaw2": -2, "spRaw3": -2, "spRaw4": -2, "id": 3669}, {"name": "Ambivalence", "type": "necklace", "tier": "Legendary", "majorIds": [], "category": "accessory", "displayName": "Ambivalence", "fDef": 70, "aDef": 70, "tDef": 70, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "sdPct": 50, "int": -100, "wDamPct": 25, "fixID": true, "spPct1": 100, "spPct2": 100, "spPct3": 100, "spPct4": 100, "id": 3618}, {"name": "Conduit of Spirit", "type": "chestplate", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Conduit of Spirit", "hp": 2800, "aDef": 150, "lvl": 93, "agiReq": 105, "mr": 5, "sdPct": 25, "ms": 15, "ref": 25, "spRegen": 50, "aDamPct": 25, "fixID": true, "spRaw3": -5, "spRaw4": -5, "id": 639}, {"name": "Ossuary", "type": "helmet", "tier": "Legendary", "majorIds": [], "category": "armor", "displayName": "Ossuary", "thorns": 30, "slots": 2, "hp": 2550, "aDef": 90, "tDef": 90, "lvl": 84, "ls": 245, "spd": 15, "sdRaw": 170, "aDamPct": 12, "tDamPct": 15, "fixID": true, "spRaw3": -4, "id": 629}, {"name": "Far Cosmos", "type": "chestplate", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Far Cosmos", "slots": 5, "hp": 3500, "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "str": 9, "dex": 9, "int": 9, "agi": 9, "def": 9, "spPct2": -6, "id": 1022}, {"name": "Ophiolite", "type": "helmet", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Ophiolite", "slots": 4, "hp": 2400, "fDef": 80, "wDef": -60, "aDef": 80, "tDef": -120, "eDef": -60, "lvl": 98, "strReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 20, "sdPct": 14, "mdPct": 40, "ls": -235, "str": 5, "dex": -99, "int": 5, "agi": 5, "def": 5, "spd": -20, "hprRaw": 170, "tDefPct": -20, "spRaw1": -6, "id": 3596}, {"name": "Ionosphere", "type": "helmet", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Ionosphere", "slots": 3, "hp": 2850, "fDef": 70, "aDef": -110, "tDef": 90, "lvl": 97, "dexReq": 55, "hprPct": -15, "ls": 190, "ms": 5, "dex": 7, "spd": 11, "tDamPct": 21, "eDefPct": -15, "spRaw1": -5, "id": 1466}, {"name": "Dragon's Eye Bracelet", "type": "bracelet", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Dragon's Eye Bracelet", "set": "Grookwarts", "fDef": 25, "lvl": 60, "defReq": 40, "xpb": 10, "expd": 5, "fDamPct": 11, "wDefPct": -8, "spRaw3": -3, "id": 1879}, {"name": "Draoi Fair", "type": "ring", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Draoi Fair", "set": "Grookwarts", "wDef": 20, "eDef": 20, "lvl": 60, "strReq": 25, "intReq": 25, "xpb": 10, "hprRaw": 30, "spRaw1": -3, "id": 1882}, {"name": "Renda Langit", "type": "necklace", "tier": "Fabled", "majorIds": [], "quest": "The Order of the Grook", "category": "accessory", "displayName": "Renda Langit", "set": "Grookwarts", "hp": 230, "aDef": 30, "lvl": 60, "agiReq": 40, "xpb": 10, "spd": 12, "eDefPct": -8, "spRaw2": -3, "spRaw4": -3, "id": 1931}, {"name": "Cloudwalkers", "type": "boots", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Cloudwalkers", "sprint": 15, "slots": 3, "aDef": 100, "lvl": 94, "agiReq": 50, "sdPct": 40, "xpb": 10, "spd": 30, "aDamPct": 30, "aDefPct": 20, "fixID": true, "spRaw1": -5, "id": 2510}, {"name": "Harmony", "type": "leggings", "tier": "Rare", "majorIds": [], "category": "armor", "displayName": "Harmony", "slots": 2, "hp": 2650, "fDef": 180, "wDef": 180, "tDef": 180, "eDef": 180, "lvl": 84, "agiReq": 65, "sdPct": 9, "mdPct": -18, "spd": 18, "spRegen": 18, "aDefPct": 45, "spRaw3": -5, "id": 1314}, {"name": "Detachment", "type": "bracelet", "tier": "Fabled", "majorIds": [], "category": "accessory", "displayName": "Detachment", "aDef": 60, "tDef": 60, "lvl": 105, "dexReq": 55, "agiReq": 60, "spd": 13, "sdRaw": -65, "mdRaw": -85, "spPct4": -19, "id": 3668}, {"name": "Roridula", "type": "chestplate", "tier": "Unique", "majorIds": [], "category": "armor", "displayName": "Roridula", "slots": 2, "hp": 3675, "fDef": -150, "eDef": 150, "lvl": 104, "strReq": 55, "intReq": 55, "ms": 8, "xpb": 25, "str": 10, "spd": 15, "wDamPct": 25, "tDamPct": -30, "spPct4": 14, "id": 3659}, {"name": "Panic Zealot", "tier": "Fabled", "type": "relik", "material": "273:7", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 3, "lore": "They must know what you went through. They must suffer the same as you did.", "drop": "never", "restrict": "Untradable", "nDam": "46-60", "fDam": "0-0", "wDam": "0-0", "aDam": "43-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 101, "agiReq": 85, "spd": 30, "atkTier": 3, "hpBonus": -5000, "tDamPct": -30, "spPct1": -100, "spPct2": -100, "spPct3": -100, "id": 3600}, {"name": "The Nothing", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-1", "wDam": "0-0", "aDam": "0-1", "tDam": "0-1", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "dexReq": 55, "defReq": 55, "ls": 700, "ms": 15, "int": -25, "spd": 10, "tSdRaw": 500, "fSdRaw": 500, "aSdRaw": 500, "fixID": true, "spRaw3": -10, "id": 781}, {"name": "Dondasch", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3375, "aDef": 150, "eDef": 150, "lvl": 100, "strReq": 50, "agiReq": 50, "str": 20, "spd": 27, "spRegen": 15, "mdRaw": 280, "fDamPct": -100, "aDamPct": 25, "eDamPct": 25, "id": 0}, {"name": "Eidolon", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "520-570", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "agiReq": 45, "ms": 5, "xpb": 10, "agi": 15, "spd": 30, "spRegen": 15, "fDamPct": -20, "aDefPct": 30, "tDefPct": 25, "id": 1}, {"name": "Nona", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-85", "tDam": "0-0", "eDam": "62-85", "atkSpd": "SUPER_FAST", "lvl": 95, "strReq": 50, "agiReq": 40, "xpb": 10, "agi": 13, "spd": 25, "atkTier": 1, "spRegen": 15, "hprRaw": -180, "sdRaw": 90, "mdRaw": 100, "fDefPct": -100, "id": 2}, {"name": "Breakbore", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-130", "eDam": "60-130", "atkSpd": "SLOW", "lvl": 90, "strReq": 35, "dexReq": 35, "mdPct": 30, "xpb": 10, "lb": 10, "str": 13, "expd": 57, "tDamPct": 20, "wDefPct": -20, "aDefPct": -20, "id": 4}, {"name": "Tera", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3225, "aDef": -200, "tDef": 100, "eDef": 100, "lvl": 90, "strReq": 50, "dexReq": 50, "xpb": 10, "lb": 20, "str": 10, "dex": 10, "tDamPct": 36, "eDamPct": 36, "id": 3}, {"name": "Summa", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": -25, "tDef": -25, "lvl": 95, "mr": 5, "xpb": 10, "str": 1, "dex": 4, "agi": 1, "def": 4, "hprRaw": -35, "type": "ring", "id": 5}, {"name": "Helm Splitter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "714-1114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 60, "mdPct": 150, "xpb": 10, "lb": 10, "str": 20, "atkTier": -1, "sdRaw": -2000, "id": 8}, {"name": "Back-up Plan", "displayName": "Back-Up Plan", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 625, "lvl": 70, "defReq": 50, "xpb": 10, "agi": 7, "def": 7, "type": "bracelet", "id": 7}, {"name": "Quick-Strike Leggings", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1525, "lvl": 70, "classReq": "Assassin", "dexReq": 60, "dex": 20, "spd": 14, "atkTier": 1, "eDefPct": -14, "id": 6}, {"name": "Greenhoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "strReq": 10, "agiReq": 5, "mdPct": 15, "str": 7, "spd": 12, "eDamPct": 10, "id": 11}, {"name": "Durum's Serenity", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "wDef": 7, "eDef": 7, "lvl": 25, "strReq": 5, "intReq": 10, "xpb": 10, "str": 5, "int": 7, "spRegen": 12, "type": "necklace", "id": 10}, {"name": "The Scarecrow's Vest", "tier": "Legendary", "type": "chestplate", "thorns": 60, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": -5, "lvl": 20, "ref": 40, "def": 7, "spd": -7, "hpBonus": 58, "id": 13}, {"name": "Kahontsi Ohstyen", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 60, "strReq": 80, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "sdPct": 20, "xpb": 10, "lb": 10, "dex": -15, "expd": 35, "spd": 20, "tDamPct": -100, "id": 9}, {"name": "Onenya Hronkas", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1750, "fDef": 100, "wDef": -60, "aDef": -60, "eDef": 100, "lvl": 60, "strReq": 30, "defReq": 85, "hprPct": 20, "mdPct": 40, "str": 7, "def": 7, "spd": -12, "atkTier": -1, "hprRaw": 70, "id": 15}, {"name": "Ohonte Kerhite", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "intReq": 100, "defReq": 15, "hprPct": 25, "mr": 15, "sdPct": 25, "mdPct": -75, "xpb": 10, "int": 13, "hpBonus": 770, "spRegen": 25, "wDamPct": 45, "id": 12}, {"name": "Blade of Shade", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-55", "fDam": "65-80", "wDam": "0-0", "aDam": "55-90", "tDam": "40-105", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "dexReq": 20, "agiReq": 20, "defReq": 20, "ls": 225, "ms": 10, "xpb": 10, "spd": 20, "hpBonus": -250, "hprRaw": -70, "fDamPct": 20, "aDamPct": 20, "id": 17}, {"name": "Shackle of Shade", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 50, "tDef": 50, "lvl": 70, "dexReq": 10, "defReq": 10, "xpb": 10, "wDefPct": -3, "aDefPct": 9, "eDefPct": -3, "type": "bracelet", "id": 16}, {"name": "Plague Mask", "tier": "Legendary", "type": "helmet", "poison": 400, "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 925, "fDef": 10, "wDef": 10, "aDef": 70, "tDef": 10, "eDef": 70, "lvl": 55, "hprPct": 20, "sdPct": -10, "mdPct": -15, "ls": 95, "xpb": 10, "def": 7, "spd": -15, "id": 20}, {"name": "Plague Staff", "tier": "Fabled", "type": "wand", "majorIds": ["PLAGUE"], "poison": 1800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "intReq": 50, "int": 20, "hprRaw": 100, "id": 21}, {"name": "Shadestep", "tier": "Legendary", "type": "boots", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": -275, "aDef": 100, "tDef": 120, "lvl": 70, "classReq": "Archer", "dexReq": 30, "agiReq": 60, "ls": 175, "ref": 50, "agi": 13, "spd": 30, "hprRaw": -45, "mdRaw": 195, "id": 14}, {"name": "Purification Bead", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 55, "defReq": 20, "hprPct": 10, "def": 5, "spRegen": 5, "hprRaw": 30, "type": "necklace", "id": 18}, {"name": "Anxiolytic", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3880, "fDef": -125, "wDef": 150, "aDef": 150, "tDef": 125, "eDef": -175, "lvl": 101, "strReq": 35, "dexReq": 40, "intReq": 50, "agiReq": 50, "defReq": 35, "mr": 20, "dex": 15, "int": 10, "agi": 12, "spRaw1": 5, "spRaw3": 5, "spRaw4": 5, "sprintReg": 13, "id": 3629}, {"name": "Deadeye", "tier": "Fabled", "type": "bow", "majorIds": ["HAWKEYE"], "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "577-578", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 45, "xpb": 10, "dex": 30, "id": 19}, {"name": "Redrock Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 425, "fDef": 25, "lvl": 40, "defReq": 30, "xpb": 11, "str": 9, "fDamPct": 19, "fDefPct": 19, "id": 23}, {"name": "Sundown Poncho", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 25, "tDef": 30, "lvl": 40, "dexReq": 15, "defReq": 15, "mdPct": 34, "xpb": 11, "dex": 9, "def": 9, "atkTier": -1, "fDamPct": 30, "tDamPct": 30, "wDefPct": -25, "id": 24}, {"name": "Crossbolt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "mdPct": 50, "spd": -5, "sdRaw": -25, "id": 22}, {"name": "Dissociation", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 101, "mr": 10, "mdPct": 60, "str": -35, "int": -20, "def": -35, "hpBonus": 3550, "sdRaw": 231, "aDefPct": 75, "tDefPct": 75, "spRaw3": -5, "id": 3628}, {"name": "Obolus", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 25, "ls": 38, "xpb": 10, "lb": 30, "def": 9, "spRegen": 20, "hprRaw": 42, "id": 25}, {"name": "Haros' Oar", "tier": "Legendary", "type": "wand", "poison": 75, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-18", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 15, "sdPct": 15, "ms": 10, "xpb": 10, "dex": 7, "wDamPct": 11, "id": 28}, {"name": "Stave of the Legends", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-70", "fDam": "10-40", "wDam": "20-30", "aDam": "0-0", "tDam": "5-45", "eDam": "15-35", "atkSpd": "NORMAL", "lvl": 70, "mr": 10, "sdPct": 20, "str": 10, "dex": 10, "int": 10, "def": 10, "fDefPct": 25, "wDefPct": 25, "tDefPct": 25, "eDefPct": 25, "id": 26}, {"name": "Legend Guard's Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 70, "classReq": "Warrior", "strReq": 30, "defReq": 50, "sdPct": -10, "mdPct": 20, "xpb": 15, "str": 7, "def": 10, "spd": -10, "hpBonus": 339, "id": 27}, {"name": "Trainer's Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 70, "hprPct": 20, "sdPct": -7, "mdPct": -7, "xpb": 12, "hprRaw": 20, "type": "necklace", "id": 33}, {"name": "Binding Brace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 25, "lvl": 50, "dexReq": 25, "sdPct": -4, "ms": -5, "xpb": 10, "dex": 7, "spd": 12, "tDamPct": 15, "type": "bracelet", "id": 32}, {"name": "Constrict Collar", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 45, "xpb": 15, "def": 7, "hpBonus": 96, "hprRaw": -10, "type": "necklace", "id": 29}, {"name": "Marius' Prison", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "lvl": 50, "intReq": 45, "ls": 58, "ms": 20, "xpb": 10, "spd": -20, "atkTier": -1, "sdRaw": 80, "mdRaw": 105, "id": 31}, {"name": "Capsid Frame", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 165, "fDef": 60, "lvl": 60, "intReq": 50, "defReq": 40, "hprPct": 30, "mr": 15, "int": 10, "expd": 25, "fDamPct": 30, "wDamPct": 35, "aDefPct": -90, "id": 3553}, {"name": "Shackles of the Beast", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 525, "wDef": -60, "aDef": 50, "tDef": 50, "lvl": 45, "strReq": 10, "defReq": 20, "mr": -5, "sdPct": -10, "mdPct": 25, "str": 7, "def": 7, "expd": 20, "hpBonus": 525, "id": 30}, {"name": "Phage Pins", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -260, "fDef": 75, "eDef": 75, "lvl": 65, "defReq": 60, "mr": 20, "str": 15, "spd": 15, "hprRaw": 108, "fDamPct": 15, "eDamPct": 15, "spPct2": -47, "id": 3555}, {"name": "Bonder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "210-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "hprPct": 30, "mr": 20, "sdPct": -20, "mdPct": -20, "expd": -500, "spRegen": 20, "hprRaw": 200, "id": 37}, {"name": "Crystal Coil", "tier": "Legendary", "type": "chestplate", "poison": 600, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 190, "eDef": 70, "lvl": 60, "strReq": 50, "ms": 10, "def": 15, "spd": -10, "atkTier": -13, "mdRaw": 1100, "eDamPct": 20, "id": 3554}, {"name": "Braker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "405-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "sdPct": -100, "str": 13, "expd": 77, "spd": -20, "hpBonus": -2050, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 34}, {"name": "About-Face", "tier": "Unique", "type": "chestplate", "thorns": 333, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "fDef": 60, "eDef": 60, "lvl": 86, "strReq": 40, "defReq": 40, "sdPct": -55, "mdPct": -55, "ls": 195, "ms": 10, "ref": 333, "str": 10, "def": 10, "hprRaw": 160, "id": 40}, {"name": "Lower", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "350-430", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "str": 10, "spRaw1": 55, "spRaw2": -15, "spRaw3": -15, "spRaw4": -15, "id": 35}, {"name": "Abyssal Walkers", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": 80, "wDef": -100, "aDef": -80, "tDef": 80, "lvl": 71, "dexReq": 25, "defReq": 25, "ls": 100, "dex": 7, "expd": 5, "spRegen": -15, "eDamPct": -8, "id": 46}, {"name": "Slider", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 99, "ms": 15, "dex": -30, "agi": 15, "spd": 40, "eSteal": 5, "sdRaw": 160, "mdRaw": -50, "id": 36}, {"name": "Accelerator", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 3500, "aDef": -150, "tDef": -150, "lvl": 92, "sdPct": -15, "mdPct": -20, "dex": 10, "agi": 10, "spd": 15, "atkTier": 1, "aDamPct": 11, "tDamPct": 11, "id": 74}, {"name": "Absorption", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "40-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "dexReq": 25, "intReq": 15, "mr": 5, "ms": 5, "xpb": 15, "id": 41}, {"name": "Ace of Spades", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-75", "wDam": "0-0", "aDam": "0-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "agiReq": 50, "defReq": 45, "mr": -15, "agi": 13, "def": 10, "spd": 15, "hpBonus": 2700, "fDamPct": 15, "aDamPct": 25, "id": 44}, {"name": "Acid", "tier": "Unique", "poison": 550, "category": "accessory", "drop": "lootchest", "hp": -250, "wDef": -30, "lvl": 99, "def": -2, "type": "ring", "id": 43}, {"name": "Achromatic Gloom", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 98, "sdPct": 14, "mdPct": 14, "str": -4, "dex": -4, "int": -4, "agi": -4, "def": -4, "sdRaw": 85, "mdRaw": 65, "type": "necklace", "id": 42}, {"name": "Acidstream", "tier": "Rare", "type": "bow", "poison": 311, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "31-37", "aDam": "0-0", "tDam": "0-0", "eDam": "12-14", "atkSpd": "SLOW", "lvl": 31, "ms": 5, "wDefPct": -35, "eDefPct": 15, "id": 45}, {"name": "Acrobat", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "80-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 10, "agiReq": 40, "mdPct": 5, "agi": 7, "spd": 10, "aDamPct": 4, "tDamPct": 6, "fDefPct": -12, "id": 48}, {"name": "Adamantite", "tier": "Legendary", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -20, "lvl": 70, "hprPct": 25, "str": 7, "def": 13, "hpBonus": 1350, "fDamPct": -3, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -3, "id": 47}, {"name": "Adanac", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "wDef": 50, "aDef": 50, "tDef": -50, "lvl": 63, "intReq": 30, "agiReq": 30, "mr": 5, "spd": -15, "hprRaw": 48, "wDefPct": 6, "aDefPct": 6, "id": 49}, {"name": "Adder Stone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 375, "wDef": 25, "eDef": 25, "lvl": 80, "strReq": 30, "intReq": 40, "mr": 5, "xpb": 10, "spd": -5, "hprRaw": 80, "tDamPct": -6, "type": "necklace", "id": 50}, {"name": "Adigard's Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -5, "wDef": 15, "lvl": 30, "mr": 5, "xpb": 12, "agi": 5, "spd": 4, "tDefPct": -4, "id": 51}, {"name": "Admiral's Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 170, "wDef": -10, "tDef": -10, "lvl": 21, "defReq": 15, "xpb": 7, "def": 8, "spd": -6, "hprRaw": 7, "id": 52}, {"name": "Ado Saki", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 105, "wDef": 10, "tDef": -8, "lvl": 20, "intReq": 5, "ls": -6, "ms": 5, "xpb": 12, "ref": 3, "id": 72}, {"name": "Abandoned Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "sdPct": 6, "lb": 5, "id": 39}, {"name": "Stinger", "tier": "Legendary", "type": "bow", "poison": 2000, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "1200-1555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "ls": 735, "ms": -5, "expd": 30, "atkTier": -99, "hprRaw": -240, "id": 38}, {"name": "Adrift", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-33", "fDam": "0-0", "wDam": "70-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 63, "intReq": 25, "mdPct": -15, "ref": 30, "spRegen": 30, "wDefPct": 40, "aDefPct": 15, "tDefPct": 15, "id": 53}, {"name": "Adrenaline", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2200, "fDef": -30, "wDef": -30, "aDef": -65, "tDef": -100, "eDef": -65, "lvl": 88, "intReq": 60, "defReq": 60, "sdPct": 17, "mdPct": -25, "ls": -450, "ms": 15, "int": 6, "def": 6, "spd": 13, "sdRaw": 170, "mdRaw": -170, "id": 3589}, {"name": "Aeolipile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-121", "wDam": "110-162", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "intReq": 35, "defReq": 35, "mr": 5, "sdPct": 10, "mdPct": -10, "int": 9, "fDefPct": 20, "wDefPct": 10, "eDefPct": -15, "id": 54}, {"name": "Adventurous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 60, "agiReq": 30, "xpb": 5, "ref": 5, "spd": 8, "type": "bracelet", "id": 56}, {"name": "Aeolian", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-50", "fDam": "0-0", "wDam": "0-0", "aDam": "14-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "agiReq": 10, "str": -3, "agi": 5, "spd": 5, "aDamPct": 4, "id": 57}, {"name": "Aeolus", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": -30, "lvl": 41, "agiReq": 25, "xpb": 15, "def": -7, "spd": 17, "aDamPct": 6, "fDefPct": -15, "id": 55}, {"name": "Aerodynamics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1400, "fDef": -70, "aDef": 70, "tDef": 60, "eDef": -80, "lvl": 73, "dexReq": 35, "agiReq": 50, "mdPct": -10, "agi": 8, "spd": 16, "aDefPct": 12, "tDefPct": 10, "id": 60}, {"name": "Aerokinesis", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-190", "fDam": "0-0", "wDam": "0-0", "aDam": "100-190", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "agiReq": 75, "agi": 5, "sdRaw": 120, "fDamPct": -29, "wDamPct": -29, "aDamPct": 20, "tDamPct": -29, "eDamPct": -29, "id": 59}, {"name": "Aeronaut", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": -10, "aDef": 10, "lvl": 29, "agiReq": 15, "ref": 7, "agi": 5, "spd": 9, "aDamPct": 7, "fDefPct": -12, "id": 62}, {"name": "Aersectra", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "96-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "41-240", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "agiReq": 40, "sdPct": 21, "def": -10, "expd": 20, "hpBonus": -1000, "mdRaw": 115, "fDamPct": -30, "aDamPct": 24, "aDefPct": 20, "id": 64}, {"name": "Aether", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-70", "tDam": "0-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "spd": 15, "aDamPct": 15, "tDamPct": 15, "fDefPct": -15, "eDefPct": -15, "id": 61}, {"name": "Aerosol", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-92", "fDam": "0-0", "wDam": "0-0", "aDam": "50-125", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "agiReq": 40, "agi": 8, "def": -6, "mdRaw": 75, "fDamPct": -60, "aDamPct": 12, "fDefPct": -60, "id": 58}, {"name": "Affrettando", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-15", "fDam": "0-0", "wDam": "0-0", "aDam": "14-31", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 30, "agiReq": 20, "str": -5, "spd": 21, "mdRaw": 20, "aDamPct": 5, "tDamPct": 15, "eDefPct": -30, "id": 63}, {"name": "Agave", "tier": "Rare", "thorns": 10, "category": "accessory", "drop": "lootchest", "hp": -275, "tDef": 30, "eDef": 30, "lvl": 97, "strReq": 35, "dexReq": 35, "atkTier": -3, "sdRaw": 59, "mdRaw": 85, "type": "ring", "id": 3594}, {"name": "Aggression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": 10, "lvl": 44, "strReq": 15, "mdPct": 7, "str": 4, "expd": 5, "type": "bracelet", "id": 67}, {"name": "Afterimage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "40-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 90, "sdPct": 14, "agi": 9, "spd": 22, "atkTier": 1, "aDamPct": 14, "fDefPct": -12, "wDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 65}, {"name": "Agitation", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "24-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "dexReq": 50, "sdPct": 15, "mdPct": 23, "expd": 19, "hprRaw": -60, "tDamPct": 20, "tDefPct": -70, "id": 66}, {"name": "Air Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "45-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 50, "aDamPct": 15, "aDefPct": 15, "id": 69}, {"name": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 68}, {"name": "Air Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "40-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "agiReq": 25, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 70, "aDamPct": 15, "aDefPct": 15, "id": 71}, {"name": "Alarm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "7-10", "tDam": "4-13", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 41, "dexReq": 15, "agiReq": 15, "str": -5, "dex": 5, "agi": 5, "mdRaw": 13, "eDamPct": -14, "id": 79}, {"name": "Air Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "20-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 20, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 70}, {"name": "Ajax", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 525, "aDef": -30, "eDef": 30, "lvl": 45, "strReq": 25, "mdPct": 15, "str": 13, "agi": -10, "spd": -10, "sdRaw": -40, "mdRaw": 85, "id": 73}, {"name": "Alaxica", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "27-56", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 40, "sdPct": 15, "xpb": 15, "ref": 10, "agi": 8, "spd": 10, "spRegen": 5, "fDamPct": -20, "wDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 76}, {"name": "Albacore", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": 80, "lvl": 97, "intReq": 45, "defReq": 35, "mr": 5, "ref": 8, "int": 5, "def": 5, "sdRaw": 154, "fDamPct": 13, "wDamPct": 13, "eDefPct": -18, "id": 75}, {"name": "Albedo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2800, "fDef": 100, "wDef": 125, "aDef": 150, "tDef": 125, "eDef": 100, "lvl": 85, "agiReq": 60, "ref": 65, "agi": 10, "fDefPct": 21, "wDefPct": 18, "aDefPct": 15, "tDefPct": 18, "eDefPct": 21, "id": 77}, {"name": "Aldo", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-104", "fDam": "0-0", "wDam": "31-45", "aDam": "71-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "xpb": 19, "lb": 19, "int": 5, "agi": 4, "hpBonus": -190, "wDamPct": 10, "id": 78}, {"name": "Albakaya", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "8-12", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "hprPct": 10, "mr": 5, "hpBonus": 40, "fDefPct": 10, "wDefPct": -10, "id": 125}, {"name": "Alice's Sleeve", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 14, "hprPct": 6, "mdPct": -6, "def": 4, "type": "bracelet", "id": 80}, {"name": "Aldorei's Tear", "tier": "Unique", "type": "boots", "poison": 480, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 50, "aDef": -10, "tDef": -50, "eDef": 50, "lvl": 77, "strReq": 10, "intReq": 10, "ms": 5, "str": 8, "spd": -5, "id": 83}, {"name": "Aldorei's Vision", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "0-0", "wDam": "45-60", "aDam": "0-0", "tDam": "0-0", "eDam": "45-60", "atkSpd": "SLOW", "lvl": 82, "strReq": 25, "intReq": 25, "mr": 5, "str": 7, "int": 7, "spRegen": 5, "mdRaw": 100, "fDamPct": -10, "aDamPct": -10, "tDamPct": -10, "id": 81}, {"name": "Aldorei's Training Bow", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "7-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "hprPct": 7, "mr": 5, "dex": 1, "id": 84}, {"name": "Aliez", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -225, "aDef": 25, "tDef": 25, "lvl": 75, "dexReq": 35, "agiReq": 40, "mdPct": -10, "ms": 5, "mdRaw": 50, "aDamPct": 11, "tDamPct": 9, "type": "ring", "id": 82}, {"name": "Alazarin", "displayName": "Alizarin", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "15-28", "fDam": "17-60", "wDam": "17-60", "aDam": "17-60", "tDam": "17-60", "eDam": "17-60", "atkSpd": "FAST", "lvl": 89, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "xpb": 23, "hpBonus": 1250, "spRegen": 10, "hprRaw": 150, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 87}, {"name": "Alka Cometflinger", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "425-605", "atkSpd": "SLOW", "lvl": 93, "strReq": 80, "mdPct": 31, "str": 13, "expd": 31, "sdRaw": -175, "eDamPct": 31, "wDefPct": -30, "aDefPct": -30, "id": 85}, {"name": "Alkahest", "tier": "Rare", "type": "helmet", "poison": 3500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "lvl": 95, "strReq": 70, "defReq": 30, "hprPct": -20, "mr": -5, "ls": 145, "ms": 5, "atkTier": -18, "eDamPct": 10, "id": 86}, {"name": "Allegro", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": -50, "lvl": 71, "agiReq": 40, "sdPct": -10, "mdPct": 10, "agi": 5, "spd": 18, "fDamPct": -30, "id": 89}, {"name": "Almuj's Daggers", "tier": "Legendary", "type": "dagger", "poison": 45, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-16", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 20, "dexReq": 15, "agiReq": 8, "xpb": 5, "agi": 8, "spd": 20, "eSteal": 5, "id": 102}, {"name": "Alligator", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "wDef": 7, "tDef": -5, "lvl": 16, "strReq": 5, "intReq": 5, "sdPct": 7, "mdPct": 7, "wDamPct": 4, "tDefPct": -6, "id": 91}, {"name": "Almuj's Walker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 200, "lvl": 25, "lb": 15, "dex": 7, "agi": 7, "spd": 25, "eSteal": 8, "id": 90}, {"name": "Alternator", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 250, "wDef": -10, "tDef": 5, "eDef": -5, "lvl": 32, "dexReq": 20, "mr": -15, "sdPct": 19, "ms": 10, "lb": 7, "mdRaw": 52, "wDamPct": -15, "tDamPct": 11, "id": 94}, {"name": "Aloof", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "spd": -3, "hpBonus": 6, "id": 95}, {"name": "Amadeus", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "160-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 50, "defReq": 30, "mr": 15, "sdPct": 15, "ls": -220, "def": 15, "spd": -15, "fDamPct": 20, "wDefPct": 15, "id": 97}, {"name": "Alumia", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "tDef": 10, "eDef": -5, "lvl": 24, "dexReq": 8, "sdPct": 8, "ref": 6, "spRegen": 4, "tDamPct": 10, "eDamPct": -10, "id": 93}, {"name": "Altimeter", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "28-32", "tDam": "0-0", "eDam": "25-30", "atkSpd": "VERY_FAST", "lvl": 59, "strReq": 25, "agiReq": 27, "sdPct": -8, "mdPct": 12, "spd": 15, "mdRaw": 34, "tDefPct": -10, "id": 92}, {"name": "Amethyst Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "lvl": 36, "intReq": 5, "defReq": 10, "int": 3, "hprRaw": 10, "type": "ring", "id": 98}, {"name": "Amiscia", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 155, "tDef": 10, "eDef": -10, "lvl": 29, "dexReq": 15, "sdPct": 6, "ls": 13, "dex": 5, "tDamPct": 6, "id": 115}, {"name": "Amulet of the Necromancer", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -5, "lvl": 18, "hprPct": -7, "mr": -5, "ls": 3, "ms": 5, "type": "necklace", "id": 101}, {"name": "Amplitude", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "tDef": 75, "eDef": -75, "lvl": 61, "dexReq": 50, "mdPct": 10, "str": -5, "dex": 7, "tDamPct": 10, "eDamPct": -10, "tDefPct": 10, "eDefPct": -10, "id": 100}, {"name": "Anarchy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "sdRaw": 30, "mdRaw": 26, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 108}, {"name": "Anamnesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": -1600, "wDef": 200, "lvl": 82, "intReq": 100, "mr": 20, "mdPct": -55, "ref": 20, "int": 29, "spRegen": 20, "wDamPct": 55, "id": 103}, {"name": "Anchor Chain", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-80", "aDam": "0-0", "tDam": "0-0", "eDam": "20-100", "atkSpd": "VERY_SLOW", "lvl": 35, "strReq": 15, "intReq": 15, "mdPct": 11, "str": 10, "spd": -15, "wDamPct": 12, "eDamPct": 12, "aDefPct": -19, "id": 104}, {"name": "Anchoryl", "tier": "Legendary", "type": "boots", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 50, "lvl": 52, "defReq": 25, "hprPct": 23, "ref": 11, "spd": -15, "hpBonus": 250, "hprRaw": 50, "id": 106}, {"name": "Ancient Battle Crossbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "VERY_SLOW", "lvl": 23, "strReq": 45, "mdPct": 23, "xpb": 10, "lb": 12, "str": 15, "dex": 8, "spd": -10, "id": 107}, {"name": "Ancient Scout Shoes", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 10, "lb": 5, "agi": 4, "spd": 7, "id": 105}, {"name": "Ancient Wand", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 109}, {"name": "Aneroid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "aDef": -5, "eDef": 10, "lvl": 23, "strReq": 7, "sdPct": -6, "mdPct": 10, "str": 5, "int": -2, "id": 111}, {"name": "Aneurysm", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": -30, "lvl": 64, "strReq": 20, "dexReq": 45, "hprPct": -15, "mdPct": 10, "ls": -150, "sdRaw": 40, "mdRaw": 100, "wDamPct": -15, "eDamPct": 10, "id": 112}, {"name": "Andante", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "201-201", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 25, "mdPct": 15, "str": 4, "spd": -15, "eDamPct": 10, "eDefPct": 8, "id": 110}, {"name": "Andesite Aegis", "tier": "Legendary", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 110, "wDef": -50, "aDef": -50, "tDef": 100, "eDef": 110, "lvl": 77, "strReq": 30, "defReq": 30, "str": 8, "def": 8, "spd": -10, "hprRaw": 80, "fDefPct": 15, "tDefPct": 10, "eDefPct": 15, "id": 119}, {"name": "Ambiguity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -180, "fDef": 40, "wDef": -50, "aDef": 40, "lvl": 92, "agiReq": 45, "defReq": 45, "hprPct": 10, "agi": 5, "spd": 5, "hpBonus": 600, "hprRaw": 70, "type": "necklace", "id": 96}, {"name": "Animosity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "60-80", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "dexReq": 40, "agiReq": 40, "sdPct": 16, "dex": 8, "agi": 8, "def": -8, "spd": 10, "fDefPct": -26, "wDefPct": -14, "eDefPct": -14, "id": 118}, {"name": "Anger Point", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -80, "wDef": -80, "aDef": -80, "tDef": -80, "lvl": 68, "strReq": 40, "sdPct": 5, "mdPct": 15, "str": 7, "def": -7, "sdRaw": 30, "mdRaw": 145, "eDamPct": 15, "eDefPct": -15, "id": 113}, {"name": "Angel Robe", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1450, "fDef": -60, "aDef": 80, "tDef": 20, "eDef": -20, "lvl": 78, "agiReq": 40, "xpb": 5, "ref": 5, "agi": 7, "spd": 15, "aDefPct": 10, "id": 114}, {"name": "Anno", "tier": "Rare", "poison": 110, "category": "accessory", "drop": "lootchest", "hp": 40, "lvl": 39, "dexReq": 10, "defReq": 10, "hprRaw": 8, "type": "ring", "id": 116}, {"name": "Anokumeme", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-62", "aDam": "32-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "intReq": 40, "agiReq": 25, "mdPct": -12, "spRegen": 10, "wDamPct": 8, "aDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 117}, {"name": "Anthracite Ballista", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "545-675", "wDam": "0-0", "aDam": "545-675", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 98, "agiReq": 40, "defReq": 40, "sdPct": -20, "mdPct": 15, "ls": 500, "expd": 30, "hpBonus": 2000, "mdRaw": 560, "fDefPct": 20, "aDefPct": 20, "id": 122}, {"name": "Amanuensis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "wDef": -60, "lvl": 87, "intReq": 65, "sdPct": 4, "int": 13, "wDamPct": -7, "type": "necklace", "id": 3580}, {"name": "Antimony", "tier": "Rare", "type": "leggings", "poison": 465, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 975, "fDef": 75, "wDef": -80, "lvl": 59, "strReq": 25, "defReq": 10, "mr": -5, "str": 5, "def": 4, "expd": 10, "spd": -5, "fDefPct": 10, "wDefPct": -12, "id": 120}, {"name": "Aluminium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "hprPct": 5, "type": "ring", "id": 99}, {"name": "Antithesis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 60, "wDef": 40, "tDef": -120, "lvl": 78, "intReq": 30, "defReq": 35, "hprPct": -27, "sdPct": 16, "hprRaw": -95, "fDamPct": 19, "wDamPct": 13, "tDamPct": -28, "id": 124}, {"name": "Apology", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "266-270", "fDam": "0-0", "wDam": "266-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "intReq": 42, "mr": 10, "mdPct": -10, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 123}, {"name": "Antim", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 99, "hprRaw": 45, "sdRaw": 21, "mdRaw": 23, "type": "necklace", "id": 121}, {"name": "Backburner", "displayName": "Anvil Crawler", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1700", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 99, "dexReq": 50, "sdPct": -20, "dex": 15, "expd": 30, "spd": -20, "atkTier": -10, "mdRaw": 575, "tDamPct": 15, "aDefPct": -30, "id": 129}, {"name": "Antipode", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-35", "fDam": "30-45", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 40, "defReq": 40, "mr": 5, "sdPct": 10, "int": 9, "def": 9, "expd": 10, "fDamPct": 10, "wDamPct": -10, "fDefPct": -10, "wDefPct": 10, "id": 128}, {"name": "Aquamarine", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 60, "eDef": 60, "lvl": 100, "strReq": 40, "intReq": 40, "mr": 10, "ref": 18, "str": 7, "int": 7, "eSteal": 6, "hprRaw": 150, "sdRaw": 105, "mdRaw": 105, "fDamPct": -25, "id": 135}, {"name": "Arakadicus' Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-130", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 66, "strReq": 20, "dexReq": 20, "sdPct": -10, "mdPct": 20, "str": 12, "dex": 12, "aDamPct": -30, "wDefPct": -10, "aDefPct": -30, "id": 130}, {"name": "Arakadicus' Leg", "tier": "Unique", "type": "wand", "poison": 465, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "30-45", "atkSpd": "SLOW", "lvl": 67, "strReq": 15, "dexReq": 15, "sdPct": -10, "mdPct": 10, "xpb": 10, "aDamPct": -50, "tDamPct": 15, "aDefPct": -50, "id": 134}, {"name": "Arakadicus' Maw", "tier": "Rare", "type": "dagger", "poison": 1350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-260", "atkSpd": "SLOW", "lvl": 98, "strReq": 55, "ms": 10, "str": 12, "mdRaw": 220, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "id": 127}, {"name": "Arbalest", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "210-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "230-250", "atkSpd": "SLOW", "lvl": 87, "strReq": 55, "mdPct": -30, "dex": -12, "expd": 40, "sdRaw": 200, "wDamPct": -20, "eDamPct": 25, "spPct4": -45, "id": 131}, {"name": "Aratera", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 80, "wDef": -40, "aDef": -80, "eDef": 40, "lvl": 70, "strReq": 30, "defReq": 40, "str": 12, "expd": 11, "sdRaw": -125, "fDamPct": 20, "eDamPct": 20, "wDefPct": -20, "id": 132}, {"name": "Arc Bracer", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "wDef": -20, "tDef": 50, "eDef": -40, "lvl": 95, "dexReq": 40, "dex": 5, "tDamPct": 7, "type": "bracelet", "id": 136}, {"name": "Arc Rifle", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-240", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 55, "sdPct": 12, "mdPct": 12, "xpb": 8, "dex": 10, "hpBonus": -1550, "tDamPct": 20, "eDefPct": -30, "id": 137}, {"name": "Arcane Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 40, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 15, "mr": 5, "sdPct": 4, "mdPct": -7, "id": 139}, {"name": "Arcane Grieves", "displayName": "Arcane Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "wDef": 3, "lvl": 10, "mr": 5, "int": 3, "id": 138}, {"name": "Archaic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 40, "wDef": -30, "aDef": 20, "lvl": 83, "agiReq": 20, "defReq": 30, "sdPct": -8, "mdPct": -6, "agi": 4, "def": 5, "hprRaw": 50, "type": "ring", "id": 140}, {"name": "Aries", "tier": "Legendary", "type": "helmet", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "lvl": 92, "strReq": 55, "agiReq": 55, "mdPct": 25, "ls": 240, "ms": 5, "agi": 10, "spd": 25, "sdRaw": 175, "wDamPct": -20, "id": 143}, {"name": "Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "11-13", "aDam": "11-13", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 11, "int": 5, "agi": 5, "spRegen": 4, "mdRaw": -21, "tDamPct": -10, "tDefPct": 7, "id": 154}, {"name": "Arcus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 40, "tDef": 40, "eDef": -90, "lvl": 63, "dexReq": 35, "intReq": 35, "ms": 10, "sdRaw": 100, "eDamPct": -12, "eDefPct": -12, "id": 141}, {"name": "Ardiente", "tier": "Unique", "type": "leggings", "poison": 500, "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": -80, "wDef": -120, "lvl": 93, "defReq": 60, "hprPct": -20, "sdPct": 10, "def": 7, "spd": 9, "fDamPct": 27, "wDamPct": -40, "wDefPct": -40, "id": 142}, {"name": "Arkhalis", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "122-182", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 60, "ms": 5, "str": -15, "dex": 15, "spd": 15, "atkTier": -1, "hpBonus": -1350, "mdRaw": 310, "tDamPct": 15, "eDefPct": -30, "id": 145}, {"name": "Ariodo's Dial", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -40, "lvl": 63, "dexReq": 10, "intReq": 5, "sdPct": 5, "int": 3, "tDamPct": 7, "type": "bracelet", "id": 144}, {"name": "Arma Gauntlet", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "106-150", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 75, "strReq": 25, "defReq": 25, "sdPct": -20, "mdPct": 25, "str": 8, "def": 10, "expd": 10, "spd": -12, "hpBonus": 1600, "hprRaw": 80, "sdRaw": -75, "id": 146}, {"name": "Armageddon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 10, "dexReq": 20, "sdPct": 6, "str": 9, "dex": 9, "eDamPct": 15, "id": 147}, {"name": "Artifice", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "mdPct": 6, "ms": 5, "spd": 5, "tDamPct": 8, "eDefPct": -9, "id": 149}, {"name": "Ashes Anew", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "90-110", "wDam": "0-0", "aDam": "90-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "agiReq": 25, "defReq": 30, "mr": 5, "sdPct": -10, "mdPct": -15, "hprRaw": 80, "wDamPct": 50, "id": 150}, {"name": "Asbestos", "tier": "Unique", "poison": 385, "category": "accessory", "drop": "lootchest", "hp": -375, "lvl": 80, "hprPct": -14, "ls": 65, "type": "necklace", "id": 148}, {"name": "Asher's Relic", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 17, "mr": 5, "ls": -10, "ms": -10, "spd": 6, "spRegen": -6, "hprRaw": 4, "type": "bracelet", "id": 151}, {"name": "Asphalt", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "87-88", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 32, "defReq": 32, "ls": 200, "int": -5, "agi": -5, "spd": 15, "mdRaw": 115, "wDefPct": -20, "aDefPct": -20, "id": 152}, {"name": "Asphyxia", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -200, "tDef": 150, "lvl": 90, "dexReq": 75, "dex": 15, "agi": -13, "spd": -15, "sdRaw": 200, "mdRaw": 155, "aDamPct": -50, "tDamPct": 30, "id": 155}, {"name": "Assassin's Hood", "tier": "Unique", "type": "helmet", "poison": 110, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 315, "eDef": -10, "lvl": 41, "dex": 4, "eSteal": 5, "tDamPct": 5, "id": 153}, {"name": "Astigmatism", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 48, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "hprPct": -15, "mr": -5, "sdPct": 18, "mdPct": 18, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "id": 156}, {"name": "Assurance", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-52", "fDam": "30-38", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-38", "atkSpd": "SLOW", "lvl": 53, "strReq": 15, "defReq": 15, "mdPct": 10, "spd": -10, "hpBonus": 200, "fDamPct": 10, "wDamPct": -15, "eDamPct": 10, "id": 158}, {"name": "Asterisk", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "11-15", "tDam": "11-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "dexReq": 20, "agiReq": 20, "sdPct": 13, "str": -4, "def": -4, "spd": 8, "id": 157}, {"name": "Asymptote", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": -100, "tDef": 60, "eDef": 60, "lvl": 66, "strReq": 25, "dexReq": 25, "hprPct": -10, "mdPct": 10, "ls": 115, "ms": 5, "xpb": -10, "lb": 10, "hprRaw": -55, "id": 161}, {"name": "Astral Walkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 70, "wDef": -65, "tDef": 70, "eDef": -75, "lvl": 66, "dexReq": 25, "defReq": 45, "ref": 14, "dex": 5, "hprRaw": 60, "eDamPct": -15, "fDefPct": 12, "id": 159}, {"name": "Atheist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 110, "eDef": 15, "lvl": 19, "strReq": 15, "str": 7, "fDamPct": -5, "tDamPct": -5, "eDamPct": 8, "wDefPct": -5, "aDefPct": -5, "eDefPct": 8, "id": 162}, {"name": "Ataraxy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 25, "eDef": 25, "lvl": 93, "strReq": 30, "intReq": 30, "sdPct": 6, "ms": 5, "atkTier": -2, "type": "ring", "spPct3": 7, "id": 3607}, {"name": "Atlas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 94, "ls": 140, "ms": 5, "atkTier": -8, "type": "bracelet", "id": 167}, {"name": "Atoll", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 80, "wDef": 80, "tDef": -70, "eDef": -70, "lvl": 66, "intReq": 30, "defReq": 30, "sdPct": 6, "def": 4, "hprRaw": 60, "eDamPct": -18, "fDefPct": 13, "wDefPct": 14, "id": 160}, {"name": "Atroce", "tier": "Unique", "type": "chestplate", "poison": 240, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "aDef": -60, "tDef": 60, "eDef": 60, "lvl": 63, "strReq": 45, "dexReq": 45, "ref": 15, "str": 10, "dex": 10, "expd": 20, "id": 166}, {"name": "Audacity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "lvl": 9, "xpb": 10, "sdRaw": 15, "mdRaw": 13, "id": 165}, {"name": "Aura of Element", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "xpb": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 168}, {"name": "Auric", "tier": "Rare", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 80, "ls": 70, "ref": 9, "hprRaw": 60, "sdRaw": -55, "mdRaw": -60, "type": "bracelet", "id": 163}, {"name": "Australis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "34-40", "wDam": "34-40", "aDam": "34-40", "tDam": "34-40", "eDam": "34-40", "atkSpd": "FAST", "lvl": 72, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": -12, "mdPct": -12, "xpb": 12, "ref": 24, "hpBonus": 600, "spRegen": 24, "id": 171}, {"name": "Autumn Tree", "tier": "Unique", "type": "wand", "poison": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-7", "atkSpd": "SLOW", "lvl": 14, "str": 7, "id": 170}, {"name": "Aurora", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 94, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "ring", "id": 164}, {"name": "Autotomized", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 73, "agiReq": 35, "xpb": -3, "str": -3, "agi": 7, "def": -3, "spd": 12, "type": "necklace", "id": 173}, {"name": "Average Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 73, "lvl": 23, "id": 172}, {"name": "Average Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 71, "lvl": 21, "id": 177}, {"name": "Average Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 112, "lvl": 27, "id": 174}, {"name": "Awakening", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "45-72", "wDam": "45-72", "aDam": "45-72", "tDam": "45-72", "eDam": "45-72", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "id": 175}, {"name": "Average Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 86, "lvl": 25, "id": 176}, {"name": "Avocado", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-29", "aDam": "0-0", "tDam": "0-0", "eDam": "25-29", "atkSpd": "NORMAL", "lvl": 29, "strReq": 10, "intReq": 10, "str": 7, "int": 7, "hpBonus": 65, "hprRaw": 20, "id": 269}, {"name": "Azar", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "lb": 4, "type": "bracelet", "id": 180}, {"name": "Azimuth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-80", "tDam": "0-0", "eDam": "20-60", "atkSpd": "FAST", "lvl": 66, "strReq": 40, "agiReq": 45, "sdPct": -9, "mdPct": 9, "str": 7, "agi": 8, "spd": 17, "wDamPct": -20, "aDamPct": 15, "eDamPct": 12, "wDefPct": -15, "id": 178}, {"name": "Azotar", "tier": "Rare", "type": "relik", "poison": 250, "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "65-75", "fDam": "50-60", "wDam": "50-60", "aDam": "50-60", "tDam": "50-60", "eDam": "50-60", "atkSpd": "SLOW", "lvl": 64, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "ls": 140, "ms": 10, "hprRaw": -200, "fixID": true, "spRaw4": -5, "id": 181}, {"name": "Awesome Bandanna", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 1, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 179}, {"name": "Azure Halo", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "wDef": 150, "aDef": 150, "lvl": 91, "intReq": 60, "agiReq": 30, "hprPct": 10, "mr": 10, "xpb": 10, "ref": 23, "def": 8, "spRegen": 30, "hprRaw": 170, "tDamPct": -10, "eDamPct": -10, "fDefPct": 20, "sprintReg": 10, "id": 182}, {"name": "Ba'al's Betrayal", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -45, "lvl": 30, "ls": 23, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 185}, {"name": "Azurite", "tier": "Unique", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2675, "wDef": 90, "eDef": 80, "lvl": 92, "strReq": 35, "intReq": 35, "sdPct": 27, "mdPct": 20, "str": 7, "int": 9, "eSteal": 6, "mdRaw": 175, "tDamPct": -25, "id": 184}, {"name": "Babbling Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-22", "fDam": "0-0", "wDam": "36-53", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -12, "ref": 13, "int": 7, "spd": 5, "sdRaw": 30, "fDamPct": -30, "id": 183}, {"name": "Back Protector", "tier": "Unique", "type": "leggings", "thorns": 2, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 130, "wDef": -6, "lvl": 24, "strReq": 5, "def": 5, "id": 186}, {"name": "Babylon's Scale", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "10-400", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "agiReq": 65, "agi": 13, "def": -10, "expd": -13, "spd": 13, "fDamPct": -19, "aDamPct": 19, "fDefPct": -16, "aDefPct": 16, "id": 187}, {"name": "Bakteri", "tier": "Rare", "type": "boots", "poison": 680, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": -50, "wDef": -70, "aDef": -50, "tDef": 65, "eDef": 90, "lvl": 77, "strReq": 50, "dexReq": 50, "ls": 140, "atkTier": -1, "hprRaw": -120, "wDamPct": -30, "tDamPct": 45, "eDamPct": 30, "id": 191}, {"name": "Backfire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "126-149", "fDam": "149-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "137-171", "atkSpd": "SUPER_SLOW", "lvl": 69, "strReq": 30, "defReq": 30, "mdPct": 8, "ls": -105, "ms": -5, "str": 5, "expd": 14, "id": 189}, {"name": "Backlash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-185", "eDam": "85-85", "atkSpd": "SLOW", "lvl": 77, "strReq": 20, "dexReq": 35, "mdPct": 12, "ls": 180, "str": 5, "dex": 5, "hpBonus": -500, "hprRaw": -90, "id": 207}, {"name": "Bad Wolf", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1350, "aDef": -100, "tDef": 70, "lvl": 60, "dexReq": 35, "mdPct": 15, "xpb": 32, "dex": 8, "spd": 7, "mdRaw": 65, "tDamPct": 15, "id": 188}, {"name": "Ballad", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 20, "wDef": 20, "lvl": 50, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "mdPct": -10, "spRegen": 15, "id": 192}, {"name": "Balankia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 380, "lvl": 39, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 193}, {"name": "Ballista", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "125-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-150", "atkSpd": "VERY_SLOW", "lvl": 55, "strReq": 30, "mdPct": 10, "dex": -2, "def": 5, "expd": 10, "spd": -10, "id": 190}, {"name": "Balloon's Bane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "200-320", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 55, "sdPct": -15, "ls": 115, "def": 5, "expd": 15, "fDamPct": 9, "fDefPct": 15, "aDefPct": 9, "id": 194}, {"name": "Bantisu's Approach", "tier": "Unique", "type": "leggings", "sprint": 10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2500, "fDef": 10, "wDef": 10, "aDef": 80, "tDef": 10, "eDef": 10, "lvl": 86, "mr": 5, "ms": 5, "xpb": 25, "lb": 15, "str": 1, "dex": 1, "int": 1, "agi": 8, "def": 1, "spd": 10, "aDefPct": 20, "sprintReg": 10, "id": 197}, {"name": "Balm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 630, "aDef": 30, "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 10, "xpb": 6, "str": -4, "agi": 4, "spd": 6, "hprRaw": 20, "id": 195}, {"name": "Barbarian", "tier": "Unique", "type": "leggings", "sprint": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": 80, "eDef": 70, "lvl": 92, "strReq": 40, "agiReq": 30, "sdPct": -15, "mdPct": 12, "def": 9, "spd": 9, "mdRaw": 300, "tDamPct": -10, "id": 198}, {"name": "Bamboo Cuff", "tier": "Unique", "poison": 125, "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 15, "dexReq": 15, "mdRaw": 26, "tDamPct": 4, "eDamPct": 4, "fDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 196}, {"name": "Bard's Song", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "23-69", "aDam": "23-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "intReq": 45, "agiReq": 35, "sdPct": -7, "mdPct": -11, "xpb": 12, "ref": 12, "spRegen": 12, "wDamPct": 19, "aDamPct": 19, "id": 203}, {"name": "Barbed Spear", "tier": "Unique", "type": "spear", "poison": 120, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "65-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "strReq": 10, "hprPct": -10, "sdPct": -7, "id": 199}, {"name": "Barrage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 28, "dexReq": 10, "dex": 4, "tDamPct": 5, "type": "ring", "id": 201}, {"name": "Bardiche", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-170", "fDam": "0-0", "wDam": "70-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 35, "agiReq": 40, "hprPct": 25, "ref": 15, "agi": 12, "spd": 14, "spRegen": 10, "aDamPct": 18, "eDamPct": -20, "wDefPct": 23, "id": 200}, {"name": "Basaltic Schynbalds", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "wDef": 40, "eDef": 40, "lvl": 50, "strReq": 20, "intReq": 20, "hprPct": 12, "spd": -8, "wDefPct": 10, "eDefPct": 10, "id": 208}, {"name": "Andesite-hewn Bow", "displayName": "Andesite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 202}, {"name": "Andesite-hewn Relik", "displayName": "Andesite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 204}, {"name": "Andesite-hewn Shears", "displayName": "Andesite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "id": 205}, {"name": "Standard Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 445, "lvl": 50, "id": 211}, {"name": "Andesite-hewn Stick", "displayName": "Andesite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "id": 206}, {"name": "Andesite-hewn Spear", "displayName": "Andesite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "id": 209}, {"name": "Unfinished Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 265, "lvl": 41, "id": 210}, {"name": "Standard Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "lvl": 51, "id": 212}, {"name": "Standard Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "lvl": 52, "id": 213}, {"name": "Refined Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 560, "lvl": 54, "id": 214}, {"name": "Refined Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 590, "lvl": 55, "id": 218}, {"name": "Refined Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 530, "lvl": 53, "id": 215}, {"name": "Refined Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 56, "id": 216}, {"name": "High-Quality Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 58, "id": 220}, {"name": "High-Quality Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 735, "lvl": 59, "id": 222}, {"name": "Unfinished Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 43, "id": 223}, {"name": "Unfinished Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 285, "lvl": 42, "id": 219}, {"name": "Unfinished Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 320, "lvl": 44, "id": 225}, {"name": "Flawed Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 355, "lvl": 46, "id": 224}, {"name": "Flawed Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "lvl": 47, "id": 227}, {"name": "Flawed Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "lvl": 45, "id": 226}, {"name": "Standard Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 420, "lvl": 49, "id": 229}, {"name": "Flawed Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 400, "lvl": 48, "id": 228}, {"name": "Dim Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1540, "lvl": 81, "id": 230}, {"name": "Cloudy Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1985, "lvl": 90, "id": 233}, {"name": "Cloudy Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2040, "lvl": 91, "id": 240}, {"name": "Cloudy Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "lvl": 92, "id": 232}, {"name": "Clear Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2215, "lvl": 94, "id": 231}, {"name": "High-Quality Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 57, "id": 217}, {"name": "Clear Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2155, "lvl": 93, "id": 234}, {"name": "Clear Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2335, "lvl": 96, "id": 235}, {"name": "Clear Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2270, "lvl": 95, "id": 236}, {"name": "Brilliant Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2400, "lvl": 97, "id": 237}, {"name": "High-Quality Chain Mail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "lvl": 60, "id": 221}, {"name": "Brilliant Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2460, "lvl": 98, "id": 238}, {"name": "Brilliant Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2530, "lvl": 99, "id": 242}, {"name": "Brilliant Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2600, "lvl": 100, "id": 244}, {"name": "Dim Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1630, "lvl": 83, "id": 243}, {"name": "Dim Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1680, "lvl": 84, "id": 248}, {"name": "Smoky Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1725, "lvl": 85, "id": 241}, {"name": "Dim Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1585, "lvl": 82, "id": 239}, {"name": "Smoky Diamond Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "lvl": 86, "id": 246}, {"name": "Smoky Diamond Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1830, "lvl": 87, "id": 253}, {"name": "Smoky Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1880, "lvl": 88, "id": 251}, {"name": "Diorite-hewn Bow", "displayName": "Diorite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 249}, {"name": "Diorite-hewn Shears", "displayName": "Diorite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "id": 252}, {"name": "Diorite-hewn Relik", "displayName": "Diorite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 247}, {"name": "Cloudy Diamond Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1935, "lvl": 89, "id": 245}, {"name": "Aged Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 71, "lvl": 21, "id": 256}, {"name": "Diorite-hewn Stick", "displayName": "Diorite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "id": 255}, {"name": "Used Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 127, "lvl": 30, "id": 254}, {"name": "Used Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 148, "lvl": 32, "id": 266}, {"name": "Used Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 137, "lvl": 31, "id": 261}, {"name": "New Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 158, "lvl": 33, "id": 257}, {"name": "Diorite-hewn Spear", "displayName": "Diorite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 15, "id": 250}, {"name": "New Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 168, "lvl": 34, "id": 258}, {"name": "New Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 178, "lvl": 35, "id": 259}, {"name": "Shining Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 206, "lvl": 37, "id": 262}, {"name": "New Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 192, "lvl": 36, "id": 260}, {"name": "Aged Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 78, "lvl": 22, "id": 264}, {"name": "Shining Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 233, "lvl": 39, "id": 263}, {"name": "Aged Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 86, "lvl": 24, "id": 267}, {"name": "Shining Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "lvl": 38, "id": 265}, {"name": "Aged Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "lvl": 23, "id": 268}, {"name": "Shining Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 247, "lvl": 40, "id": 270}, {"name": "Worn Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 92, "lvl": 25, "id": 271}, {"name": "Worn Golden Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 26, "id": 272}, {"name": "Worn Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 109, "lvl": 27, "id": 274}, {"name": "Worn Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 111, "lvl": 28, "id": 273}, {"name": "Granite-hewn Bow", "displayName": "Granite-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "68-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 276}, {"name": "Granite-hewn Shears", "displayName": "Granite-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 22, "id": 279}, {"name": "Granite-hewn Relik", "displayName": "Granite-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 277}, {"name": "Granite-hewn Spear", "displayName": "Granite-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 22, "id": 278}, {"name": "Granite-hewn Stick", "displayName": "Granite-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "id": 281}, {"name": "Cracked Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "lvl": 61, "id": 282}, {"name": "Used Golden Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 119, "lvl": 29, "id": 275}, {"name": "Plated Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1090, "lvl": 70, "id": 280}, {"name": "Plated Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "lvl": 71, "id": 283}, {"name": "Plated Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1165, "lvl": 72, "id": 285}, {"name": "Solid Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1205, "lvl": 73, "id": 284}, {"name": "Solid Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1280, "lvl": 75, "id": 286}, {"name": "Solid Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1320, "lvl": 76, "id": 288}, {"name": "Solid Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1240, "lvl": 74, "id": 287}, {"name": "Reinforced Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1405, "lvl": 78, "id": 289}, {"name": "Reinforced Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "lvl": 79, "id": 290}, {"name": "Reinforced Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1365, "lvl": 77, "id": 291}, {"name": "Reinforced Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1490, "lvl": 80, "id": 296}, {"name": "Cracked Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 860, "lvl": 63, "id": 293}, {"name": "Cracked Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "lvl": 62, "id": 292}, {"name": "Cracked Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 890, "lvl": 64, "id": 294}, {"name": "Thin Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 955, "lvl": 66, "id": 295}, {"name": "Thin Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "lvl": 65, "id": 299}, {"name": "Plated Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1055, "lvl": 69, "id": 297}, {"name": "Thin Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 990, "lvl": 67, "id": 300}, {"name": "Thin Iron Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "lvl": 68, "id": 298}, {"name": "Padded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 26, "lvl": 10, "id": 305}, {"name": "Padded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 30, "lvl": 11, "id": 301}, {"name": "Plain Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3, "lvl": 1, "id": 302}, {"name": "Hard Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 36, "lvl": 13, "id": 304}, {"name": "Padded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 12, "id": 303}, {"name": "Hard Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 40, "lvl": 14, "id": 308}, {"name": "Hard Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 49, "lvl": 16, "id": 309}, {"name": "Studded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 54, "lvl": 17, "id": 306}, {"name": "Hard Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 44, "lvl": 15, "id": 307}, {"name": "Studded Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 55, "lvl": 18, "id": 317}, {"name": "Plain Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 5, "lvl": 2, "id": 311}, {"name": "Studded Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 19, "id": 310}, {"name": "Studded Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 65, "lvl": 20, "id": 314}, {"name": "Plain Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 7, "lvl": 3, "id": 312}, {"name": "Tanned Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 14, "lvl": 6, "id": 316}, {"name": "Plain Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 9, "lvl": 4, "id": 313}, {"name": "Tanned Leather Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 17, "lvl": 7, "id": 319}, {"name": "Tanned Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 8, "id": 318}, {"name": "Tanned Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 11, "lvl": 5, "id": 315}, {"name": "Padded Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 23, "lvl": 9, "id": 321}, {"name": "Light Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 320}, {"name": "Light Birch Wood Shears", "displayName": "Light Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "id": 324}, {"name": "Light Birch Wood Stick", "displayName": "Light Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 329}, {"name": "Light Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 326}, {"name": "Light Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "id": 322}, {"name": "Light Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "id": 323}, {"name": "Light Jungle Wood Stick", "displayName": "Light Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 325}, {"name": "Light Jungle Wood Shears", "displayName": "Light Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 25, "id": 327}, {"name": "Light Oak Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 332}, {"name": "Light Oak Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "id": 328}, {"name": "Light Oak Wood Shears", "displayName": "Light Oak Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "id": 331}, {"name": "Light Oak Wood Stick", "displayName": "Light Oak Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 330}, {"name": "Light Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 336}, {"name": "Light Spruce Wood Shears", "displayName": "Light Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "id": 333}, {"name": "Stone-hewn Bow", "displayName": "Stone-Hewn Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "17-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 337}, {"name": "Light Spruce Wood Stick", "displayName": "Light Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 335}, {"name": "Stone-hewn Relik", "displayName": "Stone-Hewn Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 339}, {"name": "Stone-hewn Shears", "displayName": "Stone-Hewn Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "id": 365}, {"name": "Light Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "id": 334}, {"name": "Stone-hewn Spear", "displayName": "Stone-Hewn Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 2, "id": 343}, {"name": "Stone-hewn Stick", "displayName": "Stone-Hewn Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "id": 340}, {"name": "Battle Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "wDef": 60, "tDef": -30, "lvl": 50, "intReq": 35, "sdPct": 10, "mdPct": 5, "str": 4, "int": 4, "sdRaw": 45, "wDamPct": 15, "id": 344}, {"name": "Battleground Dancer", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 50, "agiReq": 60, "sdPct": -25, "mdPct": -8, "str": 6, "agi": 6, "spd": 16, "atkTier": 1, "mdRaw": 135, "id": 342}, {"name": "Bear Opener", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 47, "strReq": 35, "hprPct": -15, "sdPct": -12, "ls": 55, "xpb": 12, "str": 5, "expd": 8, "id": 346}, {"name": "Bastille", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 98, "defReq": 50, "sdPct": -5, "mdPct": -5, "ms": 10, "dex": 13, "spd": -10, "fDamPct": 17, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 338}, {"name": "Bedrock Eater", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 12, "ls": 3, "ms": 5, "id": 348}, {"name": "Bear Pelt", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 57, "lvl": 13, "sdPct": -6, "str": 4, "spd": -3, "hpBonus": 10, "mdRaw": 17, "id": 345}, {"name": "Bedruthan", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-170", "atkSpd": "NORMAL", "lvl": 92, "strReq": 45, "intReq": 55, "mr": 5, "sdPct": 12, "mdPct": 12, "ms": 5, "str": 9, "int": 9, "wDamPct": 30, "tDefPct": -25, "id": 349}, {"name": "Beauty", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "xpb": 4, "type": "necklace", "id": 347}, {"name": "Behemoth", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "110-610", "eDam": "375-535", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 40, "dexReq": 35, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 25, "spd": -20, "tDamPct": 15, "eDamPct": 15, "id": 350}, {"name": "Bejeweled Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 17, "lb": 5, "type": "bracelet", "id": 353}, {"name": "Belcon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-105", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "NORMAL", "lvl": 92, "strReq": 30, "intReq": 40, "sdPct": 8, "mdPct": 8, "str": 8, "spRegen": 30, "eDamPct": 20, "aDefPct": -30, "tDefPct": -30, "id": 354}, {"name": "Bete Noire", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2150, "tDef": 100, "eDef": 100, "lvl": 80, "strReq": 80, "dexReq": 80, "sdPct": 30, "ms": 10, "str": 20, "dex": 20, "atkTier": -7, "spRegen": -150, "hprRaw": -155, "mdRaw": 1100, "id": 352}, {"name": "Battery", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-75", "fDam": "0-0", "wDam": "50-150", "aDam": "0-0", "tDam": "0-200", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "dexReq": 60, "intReq": 60, "mr": 5, "sdPct": 15, "ms": 5, "wDamPct": 15, "tDamPct": 15, "eDamPct": -20, "eDefPct": -30, "id": 341}, {"name": "Belligerence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "lvl": 91, "sdPct": -15, "mdPct": 25, "ls": -145, "str": 8, "dex": 8, "hprRaw": 125, "id": 351}, {"name": "Bianco", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "42-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-38", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "xpb": 9, "ref": 12, "agi": 5, "spRegen": 10, "id": 355}, {"name": "Bibliotek", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "207-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 49, "xpb": 15, "lb": 15, "str": 11, "dex": 11, "int": 11, "agi": 11, "def": 11, "hpBonus": -300, "spPct2": 25, "spPct4": -24, "id": 359}, {"name": "Birch Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 361}, {"name": "Big Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "430-900", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 90, "strReq": 55, "mdPct": 30, "str": 15, "expd": 15, "spd": -15, "eDamPct": 231, "aDefPct": -25, "id": 357}, {"name": "Birch Wood Shears", "displayName": "Birch Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 6, "id": 360}, {"name": "Big Ol' Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-25", "atkSpd": "SLOW", "lvl": 23, "strReq": 20, "mdPct": 6, "str": 5, "agi": -4, "spd": -4, "fDamPct": 7, "eDamPct": 7, "id": 356}, {"name": "Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 358}, {"name": "Birch Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "id": 367}, {"name": "Bismuthinite", "tier": "Legendary", "type": "wand", "poison": 1825, "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-195", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 35, "dexReq": 55, "str": 12, "spd": 15, "tDamPct": 40, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "id": 368}, {"name": "Birch Wood Stick", "displayName": "Birch Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 6, "id": 364}, {"name": "Bishop", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "lvl": 20, "classReq": "Mage", "intReq": 30, "sdPct": -25, "mdPct": -25, "int": 5, "wDamPct": 35, "id": 362}, {"name": "Black Abyss", "tier": "Unique", "type": "relik", "poison": 1414, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "690-715", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 94, "dexReq": 55, "mdPct": 15, "str": 75, "dex": -100, "spd": -12, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": 22, "eDamPct": -50, "id": 366}, {"name": "Bizzles", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-125", "fDam": "0-0", "wDam": "125-185", "aDam": "0-0", "tDam": "25-255", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 15, "ms": 5, "int": 7, "hpBonus": -850, "wDamPct": 8, "aDamPct": -25, "tDamPct": 13, "id": 363}, {"name": "Black Arrow", "tier": "Unique", "type": "bow", "poison": 2000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "283-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 40, "ls": 215, "ms": -15, "id": 370}, {"name": "Black", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "65-115", "wDam": "0-0", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "dexReq": 55, "defReq": 55, "mr": -10, "sdPct": 19, "ms": 15, "spRegen": -25, "fDamPct": 19, "wDamPct": -30, "tDamPct": 19, "aDefPct": -40, "eDefPct": -40, "id": 369}, {"name": "Black Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 72, "dexReq": 15, "mdPct": 6, "tDamPct": 6, "type": "ring", "id": 379}, {"name": "Black Sheep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "lvl": 79, "strReq": 50, "spd": 20, "eDamPct": 8, "id": 373}, {"name": "Black Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-130", "fDam": "0-0", "wDam": "0-0", "aDam": "50-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "agiReq": 10, "mdPct": 10, "ls": 135, "dex": -5, "agi": 9, "spd": 5, "aDamPct": 9, "id": 374}, {"name": "Blackened Boots", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "tDef": 20, "eDef": -15, "lvl": 41, "dexReq": 15, "sdPct": 6, "ms": 5, "dex": 4, "spRegen": -15, "wDamPct": -10, "tDamPct": 12, "id": 371}, {"name": "Blade of Purity", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "175-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "mr": 10, "sdPct": 15, "mdPct": 15, "xpb": 20, "spRegen": 20, "sdRaw": 160, "mdRaw": 165, "fDamPct": -150, "wDamPct": -150, "aDamPct": -150, "tDamPct": -150, "eDamPct": -150, "id": 377}, {"name": "Blackout", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "fDef": 6, "tDef": -6, "lvl": 22, "defReq": 5, "dex": -2, "def": 3, "fDamPct": 5, "tDamPct": -5, "type": "bracelet", "id": 372}, {"name": "Blade of Snow", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-28", "fDam": "0-0", "wDam": "12-19", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "intReq": 10, "mr": 5, "sdPct": 6, "ref": 8, "spd": -9, "aDamPct": 5, "fDefPct": -7, "aDefPct": 10, "id": 376}, {"name": "Bladeguard", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "70-100", "fDam": "35-70", "wDam": "0-0", "aDam": "35-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "agiReq": 35, "defReq": 25, "sdPct": -10, "ref": 15, "agi": 15, "def": 15, "fDefPct": 15, "aDefPct": 15, "id": 375}, {"name": "Blade of Wisdom", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 24, "intReq": 8, "mr": 5, "xpb": 8, "lb": 8, "int": 4, "wDamPct": 5, "tDamPct": -5, "id": 378}, {"name": "Bladerunners", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 40, "aDef": -20, "tDef": 20, "eDef": -40, "lvl": 53, "dexReq": 20, "intReq": 20, "hprPct": -16, "dex": 5, "int": 4, "spd": 7, "sdRaw": 35, "id": 382}, {"name": "Bleeding Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-41", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": -13, "ls": 33, "hpBonus": 50, "id": 381}, {"name": "Blank", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 2, "hprPct": 5, "type": "necklace", "id": 383}, {"name": "Blessed Wrappings", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 5, "hprPct": 12, "xpb": 10, "def": 3, "hpBonus": 15, "id": 385}, {"name": "Blight", "tier": "Rare", "type": "wand", "poison": 1000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-20", "atkSpd": "SLOW", "lvl": 55, "eDefPct": 33, "id": 395}, {"name": "Bladestorm", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "37-50", "tDam": "22-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dex": 12, "spd": 15, "aDefPct": -7, "id": 380}, {"name": "Blightsaber", "tier": "Unique", "type": "relik", "poison": 800, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "70-76", "eDam": "70-76", "atkSpd": "FAST", "lvl": 91, "strReq": 33, "dexReq": 33, "sdPct": 19, "mdPct": 19, "ms": 5, "str": 8, "dex": 8, "hprRaw": -150, "spRaw1": -15, "spRaw2": 15, "id": 384}, {"name": "Blindblight", "tier": "Rare", "type": "helmet", "poison": 95, "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": -3, "wDef": -3, "aDef": -3, "tDef": -3, "eDef": -3, "lvl": 29, "ls": 15, "str": 8, "dex": -4, "hprRaw": -10, "mdRaw": 36, "id": 386}, {"name": "Blind Thrust", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3725, "tDef": -300, "lvl": 90, "strReq": 95, "ms": 10, "str": 10, "atkTier": -14, "mdRaw": 1600, "eDamPct": 31, "id": 388}, {"name": "Blizzard", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "29-37", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 53, "intReq": 35, "agiReq": 35, "sdPct": 11, "mdPct": -13, "int": 5, "spd": 10, "fDamPct": -12, "fDefPct": -17, "id": 387}, {"name": "Blood-Soaked Claws", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "mdPct": 8, "ls": 12, "hprRaw": -6, "id": 390}, {"name": "Bloodless", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 250, "lvl": 44, "hprPct": -30, "ls": 41, "hpBonus": 300, "hprRaw": -20, "id": 397}, {"name": "Block Buster", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-100", "atkSpd": "SLOW", "lvl": 76, "strReq": 35, "expd": 48, "eDefPct": -6, "id": 389}, {"name": "Bloodlust", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": -100, "aDef": -100, "tDef": 100, "eDef": 100, "lvl": 87, "strReq": 45, "dexReq": 45, "hprPct": -25, "sdPct": -7, "mdPct": 20, "ls": 240, "str": 7, "dex": 7, "int": -8, "spd": 25, "mdRaw": 190, "id": 391}, {"name": "Blossom", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-65", "atkSpd": "NORMAL", "lvl": 33, "strReq": 30, "intReq": 10, "sdPct": 10, "int": 7, "spd": -10, "eDamPct": 8, "fDefPct": -20, "id": 392}, {"name": "Bloudil", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1380, "lvl": 65, "xpb": 14, "ref": 6, "agi": 5, "spd": 14, "id": 394}, {"name": "Blue Mask", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1, "lvl": 68, "str": 12, "dex": 12, "int": 12, "agi": 12, "def": 12, "id": 393}, {"name": "Blossom Haze", "tier": "Fabled", "type": "dagger", "majorIds": ["CHERRY_BOMBS"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-185", "atkSpd": "FAST", "lvl": 87, "strReq": 65, "ms": 5, "expd": 22, "spd": -20, "atkTier": -1, "aDamPct": 25, "eDamPct": 25, "wDefPct": 26, "spRaw4": -5, "id": 3610}, {"name": "Blueberry", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 870, "wDef": 40, "tDef": -30, "lvl": 58, "ms": 5, "xpb": 16, "ref": 6, "wDamPct": 5, "id": 396}, {"name": "Blur", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "55-73", "tDam": "40-90", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "dexReq": 40, "agiReq": 40, "ms": 10, "dex": 9, "agi": 9, "spd": 14, "fDamPct": -21, "aDamPct": 14, "tDamPct": 14, "eDefPct": -18, "id": 398}, {"name": "Blues Whistle", "tier": "Unique", "type": "bow", "poison": 1500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "FAST", "lvl": 99, "strReq": 50, "ls": -295, "ms": 10, "agi": 9, "def": 9, "eDamPct": 20, "fDefPct": -30, "id": 400}, {"name": "Bob's Lost Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 880, "fDef": 30, "lvl": 58, "sdPct": 5, "mdPct": 5, "xpb": 8, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 402}, {"name": "Blushwind", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 110, "wDef": -75, "aDef": 110, "lvl": 88, "agiReq": 60, "defReq": 30, "ms": 5, "int": -25, "agi": 7, "spd": 14, "hpBonus": 3000, "fDefPct": 12, "aDefPct": 12, "spPct2": -14, "spPct3": -7, "id": 399}, {"name": "Boiler", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "30-48", "wDam": "30-48", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "hprPct": 16, "mr": 10, "int": 4, "def": 4, "fDefPct": 13, "wDefPct": 13, "id": 403}, {"name": "Bombardier", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "25-45", "fDam": "15-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "defReq": 10, "expd": 20, "spd": -10, "hpBonus": -50, "id": 405}, {"name": "Bolt", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-9", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "xpb": 5, "lb": 5, "tDamPct": 5, "id": 401}, {"name": "Bonethrasher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "56-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 83, "agiReq": 40, "sdPct": -20, "dex": 13, "int": -7, "agi": 13, "mdRaw": 75, "id": 406}, {"name": "Bolter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-110", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "dexReq": 40, "sdPct": -15, "ref": 16, "dex": 8, "mdRaw": 75, "tDamPct": 8, "aDefPct": -8, "tDefPct": 12, "id": 404}, {"name": "Booster Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2800, "wDef": 130, "aDef": 100, "lvl": 84, "intReq": 25, "agiReq": 50, "xpb": 12, "agi": 10, "spd": 35, "wDamPct": 15, "aDamPct": 15, "tDefPct": -18, "jh": 3, "id": 408}, {"name": "Boots of Blue Stone", "tier": "Unique", "type": "boots", "sprint": 13, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 82, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "sdRaw": 120, "mdRaw": 160, "fDamPct": 13, "wDamPct": 13, "aDamPct": 13, "tDamPct": 13, "eDamPct": 13, "sprintReg": 13, "id": 407}, {"name": "Boots of the Sorcerer", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 96, "wDef": 5, "tDef": 10, "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "mdPct": -7, "int": 3, "wDamPct": 10, "tDamPct": 10, "id": 410}, {"name": "Boulder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": 6, "lvl": 24, "strReq": 10, "sdRaw": -2, "mdRaw": 8, "eDefPct": 5, "type": "ring", "id": 409}, {"name": "Bottled Sky", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "aDef": 150, "eDef": -100, "lvl": 95, "agiReq": 60, "ref": 10, "dex": 6, "int": -24, "agi": 6, "def": 6, "spd": 18, "wDamPct": -25, "spPct1": -7, "spPct3": -7, "spPct4": -14, "id": 446}, {"name": "Bourreau", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "ls": -2, "sdRaw": 4, "mdRaw": 4, "type": "bracelet", "id": 415}, {"name": "Bough of Fir", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 53, "strReq": 20, "intReq": 10, "mr": 5, "sdPct": 16, "lb": 16, "int": 9, "spRegen": 19, "fDamPct": -20, "wDamPct": 20, "fDefPct": -15, "eDefPct": 30, "id": 411}, {"name": "Bovine Killer", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 65, "aDef": -5, "eDef": 5, "lvl": 12, "mdPct": 15, "str": 10, "agi": -4, "id": 413}, {"name": "Bovemist Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 5, "tDef": 5, "lvl": 18, "intReq": 8, "hprPct": 8, "int": 3, "spRegen": 3, "type": "necklace", "id": 412}, {"name": "Bow of Retribution", "tier": "Unique", "type": "bow", "thorns": 18, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-20", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "ls": 39, "ms": 5, "ref": 18, "id": 414}, {"name": "Bow Of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 417}, {"name": "Bow of Wisdom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-66", "fDam": "0-0", "wDam": "6-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 29, "intReq": 5, "mr": 10, "sdPct": 4, "id": 420}, {"name": "Brackenwall", "tier": "Unique", "type": "chestplate", "poison": 360, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -40, "eDef": 110, "lvl": 83, "strReq": 40, "mdPct": 13, "str": 7, "spd": -8, "mdRaw": 145, "eDamPct": 13, "fDefPct": -10, "id": 418}, {"name": "Brass Knuckle", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 53, "strReq": 20, "mdPct": 8, "str": 4, "eSteal": 3, "aDamPct": -6, "type": "ring", "id": 422}, {"name": "Brass Brand", "tier": "Legendary", "type": "dagger", "thorns": 60, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-160", "atkSpd": "FAST", "lvl": 86, "strReq": 40, "dexReq": 55, "ls": -290, "ref": 20, "dex": 25, "sdRaw": 169, "tDamPct": 40, "fDefPct": -20, "tDefPct": -20, "id": 426}, {"name": "Bravery", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 46, "strReq": 15, "agiReq": 20, "mdPct": 8, "str": 5, "spd": 6, "hpBonus": 150, "eDamPct": 8, "fDefPct": 10, "id": 419}, {"name": "Breakbeat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1800, "fDef": -40, "wDef": -20, "tDef": -20, "eDef": -20, "lvl": 79, "agiReq": 55, "sdPct": 5, "spd": 10, "mdRaw": 120, "fDamPct": 7, "wDamPct": 7, "aDamPct": 10, "tDamPct": 7, "eDamPct": 4, "id": 423}, {"name": "Breaker Bar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "280-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 25, "agiReq": 25, "str": 8, "agi": 8, "spd": 15, "fDamPct": -40, "wDamPct": -40, "aDamPct": 40, "tDamPct": -40, "eDamPct": 40, "id": 424}, {"name": "Breath of the Dragon", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "13-17", "wDam": "0-0", "aDam": "23-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 11, "defReq": 11, "agi": 6, "def": 6, "hprRaw": 9, "fDamPct": 15, "aDefPct": 15, "spRaw1": 5, "id": 428}, {"name": "Breath of the Vampire", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "35-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 35, "agiReq": 25, "ls": 190, "agi": 7, "spd": 10, "aDamPct": 5, "tDamPct": 20, "id": 427}, {"name": "Bridge of the Divide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 650, "wDef": 50, "tDef": 50, "lvl": 51, "dexReq": 20, "intReq": 20, "mr": 5, "ms": 5, "xpb": 20, "ref": 10, "wDamPct": -10, "tDamPct": 20, "wDefPct": 20, "tDefPct": -10, "id": 430}, {"name": "Brocach", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "aDef": -150, "eDef": 175, "lvl": 94, "strReq": 65, "mdPct": 10, "spd": -9, "eDamPct": 19, "aDefPct": -15, "eDefPct": 23, "id": 432}, {"name": "Breeze", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "8-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "dex": 3, "agi": 3, "spd": 5, "id": 425}, {"name": "Bright Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 15, "tDef": 3, "eDef": -3, "lvl": 5, "xpb": 6, "id": 431}, {"name": "Broken Balance", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": -500, "lvl": 50, "sdPct": 75, "mdPct": 75, "str": -7, "dex": -7, "int": -7, "agi": -7, "def": -7, "id": 433}, {"name": "Broken Gauntlet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 410, "wDef": -25, "aDef": -25, "lvl": 79, "strReq": 15, "defReq": 15, "sdPct": -5, "mdPct": 6, "type": "bracelet", "id": 434}, {"name": "Brimstone", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "110-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "defReq": 45, "hprPct": 20, "mr": -5, "mdPct": 8, "str": 10, "expd": 12, "hpBonus": 1500, "fDamPct": 8, "eDamPct": 27, "id": 429}, {"name": "Broken Cross", "tier": "Unique", "type": "spear", "thorns": 45, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-257", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "86-143", "eDam": "86-143", "atkSpd": "SUPER_SLOW", "lvl": 62, "strReq": 25, "dexReq": 15, "mdPct": 13, "xpb": 20, "lb": 10, "ref": 45, "def": -40, "hpBonus": 831, "spRegen": -13, "fDefPct": -30, "wDefPct": -30, "aDefPct": -30, "id": 435}, {"name": "Broken Harp", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 10, "sdPct": 10, "int": 4, "tDamPct": -5, "wDefPct": 10, "id": 436}, {"name": "Broken Trident", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "intReq": 10, "sdPct": 8, "mdPct": -8, "wDamPct": 5, "wDefPct": 3, "id": 438}, {"name": "Bronze-Plated Greaves", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "aDef": -5, "lvl": 26, "strReq": 10, "defReq": 10, "ref": 10, "str": 4, "def": 4, "id": 437}, {"name": "Bubble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 50, "lvl": 72, "sdPct": 4, "type": "ring", "id": 443}, {"name": "Brook", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 130, "tDef": -150, "lvl": 73, "intReq": 45, "mr": 5, "ref": 10, "fDamPct": -7, "wDamPct": 10, "wDefPct": 10, "tDefPct": -15, "id": 439}, {"name": "Brook Keeper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 460, "wDef": 30, "tDef": -20, "lvl": 49, "intReq": 15, "mr": 5, "sdPct": 10, "spd": 3, "fDamPct": -10, "wDamPct": 5, "id": 440}, {"name": "Bull", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "20-35", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "FAST", "lvl": 63, "mdPct": 8, "str": 5, "agi": -7, "def": 5, "hpBonus": 450, "aDamPct": -25, "fDefPct": 15, "eDefPct": 25, "id": 441}, {"name": "Bulldozer", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 20, "mdPct": 10, "expd": 20, "spd": -20, "hpBonus": -100, "mdRaw": 105, "eDamPct": 8, "id": 444}, {"name": "Bullseye", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 1, "dex": 4, "id": 449}, {"name": "Bubbline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1875, "wDef": 140, "tDef": -90, "lvl": 81, "intReq": 40, "mr": 10, "mdPct": -15, "ref": 30, "int": 8, "fDefPct": 7, "wDefPct": 15, "id": 442}, {"name": "Bumblebee", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 2, "mdPct": 5, "xpb": 6, "id": 447}, {"name": "Burning Pants", "tier": "Rare", "type": "leggings", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": -5, "wDef": -5, "lvl": 18, "defReq": 10, "expd": 5, "spd": 8, "hpBonus": -20, "fDamPct": 7, "id": 448}, {"name": "Burn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 73, "expd": 6, "fDamPct": 8, "type": "ring", "id": 445}, {"name": "Buster Bracer", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 20, "strReq": 20, "sdPct": 10, "str": 5, "expd": 10, "hpBonus": -45, "mdRaw": 20, "type": "bracelet", "id": 451}, {"name": "Burning Torch", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "10-30", "fDam": "110-180", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 25, "sdPct": -12, "mdPct": 5, "expd": 5, "hpBonus": -90, "fDamPct": 7, "wDamPct": -30, "wDefPct": -20, "aDefPct": -5, "id": 452}, {"name": "Butcher's Clever", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-55", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "intReq": 15, "mr": 5, "int": 8, "wDamPct": 5, "tDamPct": -10, "tDefPct": -10, "id": 453}, {"name": "Burnout", "tier": "Rare", "type": "boots", "sprint": 16, "category": "armor", "drop": "NORMAL", "hp": 3200, "fDef": -80, "aDef": -80, "lvl": 96, "agiReq": 40, "defReq": 60, "mr": -5, "sdPct": -14, "def": 10, "spd": 12, "atkTier": 1, "hprRaw": 175, "fDamPct": 10, "aDamPct": 10, "sprintReg": -8, "id": 450}, {"name": "Butter Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 5, "lb": 20, "id": 457}, {"name": "Butterfly Wings", "tier": "Unique", "type": "relik", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "ref": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 454}, {"name": "Butter Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "lvl": 15, "agi": 4, "id": 455}, {"name": "Bygones", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "120-960", "wDam": "0-0", "aDam": "0-0", "tDam": "390-690", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 35, "defReq": 35, "hprPct": -30, "mdPct": 25, "ls": -290, "ms": 15, "expd": 20, "mdRaw": 610, "wDefPct": -35, "id": 456}, {"name": "Bylvis' Pitchfork", "tier": "Unique", "type": "spear", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-0", "wDam": "70-90", "aDam": "70-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 15, "wDamPct": 17, "aDamPct": 17, "tDamPct": -20, "fDefPct": -30, "tDefPct": -10, "id": 458}, {"name": "Wybel Paw", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 32, "hprPct": -100, "sdPct": -100, "mdPct": -100, "agi": 5, "spd": 35, "fixID": true, "id": 459}, {"name": "Cadence", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 94, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "xpb": 12, "lb": 12, "fDamPct": 17, "wDamPct": 17, "aDamPct": 17, "tDamPct": 17, "eDamPct": 17, "id": 461}, {"name": "Foreword", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "90-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "agiReq": 20, "xpb": 20, "lb": 20, "spd": 20, "aDamPct": 20, "aDefPct": 20, "fixID": true, "id": 460}, {"name": "Cactus", "tier": "Unique", "thorns": 12, "category": "accessory", "drop": "lootchest", "lvl": 36, "ls": -11, "type": "ring", "id": 464}, {"name": "Permafrosted Saxifrage", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "50-73", "tDam": "0-0", "eDam": "60-63", "atkSpd": "NORMAL", "lvl": 45, "strReq": 18, "agiReq": 18, "mdPct": 10, "str": 5, "agi": 5, "aDamPct": 10, "eDamPct": 10, "fDefPct": -20, "wDefPct": 20, "fixID": true, "id": 462}, {"name": "Calcined Estoc", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-99", "aDam": "0-0", "tDam": "0-0", "eDam": "90-99", "atkSpd": "NORMAL", "lvl": 68, "strReq": 40, "intReq": 40, "mr": 5, "mdPct": 15, "str": 8, "dex": -15, "spd": -15, "wDefPct": 10, "eDefPct": 10, "id": 465}, {"name": "Caffeine", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -160, "lvl": 74, "agiReq": 40, "agi": 3, "spd": 12, "hprRaw": -15, "aDamPct": 5, "type": "ring", "id": 469}, {"name": "Cage of Bones", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 80, "wDef": -100, "tDef": 60, "lvl": 57, "dexReq": 35, "defReq": 25, "hprPct": -20, "mdPct": 20, "def": 7, "spd": -10, "mdRaw": 130, "fDamPct": 15, "tDamPct": 20, "wDefPct": -20, "id": 466}, {"name": "Calcite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "fDef": 50, "lvl": 67, "defReq": 20, "mdPct": -3, "def": 13, "spd": -5, "fDamPct": 5, "fDefPct": 7, "id": 467}, {"name": "Caldera", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "36-60", "fDam": "40-85", "wDam": "55-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 35, "defReq": 35, "sdPct": 10, "int": 5, "def": 7, "hpBonus": -1200, "fDamPct": 15, "wDamPct": 18, "tDefPct": -25, "eDefPct": -15, "id": 468}, {"name": "Calidade Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "fDef": -80, "aDef": -80, "tDef": -80, "lvl": 97, "dexReq": 55, "defReq": 50, "sdPct": -15, "mdPct": 30, "ms": 5, "dex": 5, "agi": 6, "def": 4, "atkTier": 1, "hprRaw": -145, "mdRaw": -113, "fDamPct": 10, "tDamPct": 10, "id": 471}, {"name": "Caledonia", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-455", "fDam": "180-225", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "defReq": 90, "sdPct": -11, "mdPct": -11, "xpb": 15, "def": 9, "hpBonus": 825, "hprRaw": 125, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 472}, {"name": "Call to Concord", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 25, "aDef": 25, "eDef": 10, "lvl": 64, "defReq": 40, "hprPct": 15, "ref": 10, "def": 5, "spRegen": 5, "tDamPct": -8, "type": "bracelet", "id": 476}, {"name": "Calidum Aurea", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1650, "fDef": 100, "wDef": -95, "lvl": 74, "defReq": 25, "sdPct": -10, "xpb": 5, "lb": 19, "def": 5, "fDamPct": 12, "id": 470}, {"name": "Cancer\u058e", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5200, "fDef": 180, "lvl": 98, "defReq": 80, "int": 10, "def": 15, "hprRaw": 300, "wDefPct": 50, "id": 475}, {"name": "Calming Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 260, "wDef": 60, "tDef": -60, "lvl": 93, "intReq": 35, "int": 5, "wDamPct": 7, "wDefPct": 7, "type": "necklace", "id": 474}, {"name": "Canopy", "tier": "Unique", "type": "leggings", "thorns": 14, "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1300, "fDef": -100, "wDef": 80, "eDef": 60, "lvl": 69, "strReq": 30, "intReq": 30, "sdPct": 4, "ref": 8, "eDamPct": 8, "wDefPct": 10, "id": 485}, {"name": "Canyon Spirit", "tier": "Unique", "type": "wand", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 85, "strReq": 25, "agiReq": 35, "mdPct": 12, "xpb": 10, "lb": 10, "agi": 13, "aDamPct": 19, "id": 477}, {"name": "Capricorn", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 99, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 15, "ms": 5, "int": 12, "agi": 12, "spd": 18, "id": 480}, {"name": "Capsaicin", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 700, "fDef": -40, "lvl": 52, "defReq": 20, "hprPct": -15, "sdPct": 20, "mdPct": 20, "spd": 15, "hprRaw": -40, "sdRaw": 50, "fDamPct": 20, "fDefPct": -20, "id": 483}, {"name": "Carapace", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 70, "strReq": 20, "sdPct": -10, "mdPct": 10, "str": 13, "agi": -5, "spd": -10, "hpBonus": 700, "eDamPct": 10, "aDefPct": -20, "id": 479}, {"name": "Capstone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 880, "fDef": 35, "wDef": -30, "aDef": -30, "eDef": 35, "lvl": 55, "strReq": 10, "defReq": 30, "lb": 14, "str": 4, "def": 7, "spd": -6, "fDefPct": 14, "eDefPct": 14, "id": 481}, {"name": "Cardiac Arrest", "tier": "Legendary", "type": "chestplate", "poison": 1000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "tDef": 90, "eDef": 130, "lvl": 91, "strReq": 70, "dexReq": 50, "hprPct": -40, "sdPct": 30, "agi": -20, "def": -20, "atkTier": -1, "hprRaw": -200, "spPct2": -32, "spPct3": -21, "spPct4": -24, "id": 482}, {"name": "Cardinal Ruler", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "300-370", "fDam": "65-75", "wDam": "0-0", "aDam": "0-0", "tDam": "5-135", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 88, "dexReq": 35, "defReq": 35, "hprPct": -30, "sdPct": 15, "ls": 260, "ms": 10, "dex": 16, "spd": -20, "fDamPct": 15, "tDamPct": 15, "id": 488}, {"name": "Call of the Void", "tier": "Legendary", "type": "helmet", "thorns": 65, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "lvl": 56, "hprPct": 10, "ls": -75, "ref": 65, "agi": -8, "hprRaw": 50, "id": 473}, {"name": "Careless Whisper", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "165-188", "wDam": "0-0", "aDam": "165-188", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "agiReq": 40, "defReq": 40, "mr": 5, "agi": 11, "def": 11, "spd": -8, "hpBonus": 1750, "hprRaw": 125, "spPct1": -48, "id": 490}, {"name": "Carnivorous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -8, "lvl": 33, "mdPct": 6, "ls": 10, "hprRaw": 4, "mdRaw": 9, "type": "ring", "id": 484}, {"name": "Carvel's Creation", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 51, "wDef": 7, "aDef": 7, "lvl": 14, "mr": 5, "xpb": 6, "lb": 6, "spd": 9, "id": 487}, {"name": "Carrot", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1-190", "atkSpd": "VERY_SLOW", "lvl": 58, "strReq": 15, "mdPct": 25, "ls": -90, "ms": -5, "str": 13, "int": -20, "agi": -5, "eDamPct": 40, "id": 486}, {"name": "Cascade", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "18-30", "fDam": "15-30", "wDam": "15-30", "aDam": "15-30", "tDam": "15-30", "eDam": "15-30", "atkSpd": "VERY_FAST", "lvl": 98, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "mr": 10, "sdPct": 30, "str": -6, "dex": -6, "int": -6, "agi": -6, "def": -6, "expd": 30, "spd": 30, "mdRaw": 65, "id": 489}, {"name": "Carvel's Sight", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "9-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "intReq": 8, "mr": 5, "sdPct": 4, "xpb": 4, "lb": 4, "id": 495}, {"name": "Candlestick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-22", "fDam": "11-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "sdPct": 8, "int": 5, "expd": 4, "fDamPct": 10, "wDamPct": -20, "id": 478}, {"name": "Cassiterite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "fDef": 50, "eDef": 50, "lvl": 71, "strReq": 30, "defReq": 30, "hprPct": 15, "mdPct": 10, "xpb": 10, "mdRaw": 150, "fDefPct": 10, "eDefPct": 10, "id": 491}, {"name": "Cataract", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-1630", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "intReq": 50, "sdPct": 15, "ls": -130, "ms": 10, "dex": -30, "int": 10, "atkTier": -1, "wDamPct": 15, "tDefPct": -30, "id": 492}, {"name": "Caterpillar", "tier": "Rare", "type": "leggings", "poison": 3500, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2885, "aDef": -110, "eDef": 130, "lvl": 92, "strReq": 55, "dexReq": 40, "xpb": 8, "str": 8, "def": 5, "spd": -8, "atkTier": -8, "eDamPct": 20, "id": 497}, {"name": "Cave In", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 21, "strReq": 18, "lb": 10, "expd": 35, "spd": -20, "hprRaw": -20, "eDamPct": 25, "spPct3": -21, "id": 493}, {"name": "Celestial", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-16", "fDam": "0-0", "wDam": "0-0", "aDam": "6-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "agiReq": 8, "mr": 5, "xpb": 5, "ref": 3, "id": 501}, {"name": "Ceiling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-120", "tDam": "0-0", "eDam": "40-80", "atkSpd": "FAST", "lvl": 70, "strReq": 30, "agiReq": 35, "sdPct": -10, "mdPct": 10, "xpb": 15, "spd": 12, "wDamPct": -17, "id": 494}, {"name": "Celebration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "xpb": 25, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 5, "id": 500}, {"name": "Cementing Arrow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "140-175", "aDam": "0-0", "tDam": "0-0", "eDam": "140-175", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 8, "agi": -12, "spd": -12, "wDamPct": 8, "eDamPct": 8, "id": 496}, {"name": "Cemented Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "160-200", "fDam": "0-0", "wDam": "360-465", "aDam": "0-0", "tDam": "0-0", "eDam": "360-465", "atkSpd": "SUPER_SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "sdPct": 6, "mdPct": 6, "str": 10, "agi": -12, "spd": -12, "wDamPct": 12, "eDamPct": 12, "id": 498}, {"name": "Cementing String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "40-55", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "SLOW", "lvl": 48, "strReq": 20, "intReq": 20, "sdPct": 8, "mdPct": 8, "str": 5, "agi": -8, "spd": -8, "wDamPct": 6, "eDamPct": 6, "id": 503}, {"name": "Cenote", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 40, "eDef": 40, "lvl": 68, "strReq": 50, "intReq": 50, "hprPct": 20, "str": 4, "int": 4, "hprRaw": 55, "wDefPct": 12, "eDefPct": 12, "id": 504}, {"name": "Centrifugal", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-95", "atkSpd": "SLOW", "lvl": 90, "strReq": 25, "intReq": 25, "sdPct": 6, "mdPct": 6, "ms": 5, "spd": -7, "eDamPct": 8, "aDefPct": -10, "id": 502}, {"name": "Centennial", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2125, "fDef": 100, "wDef": 100, "lvl": 80, "intReq": 20, "defReq": 20, "hprPct": 18, "mr": 5, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 499}, {"name": "Ceramic Shell Greaves", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2555, "fDef": 135, "aDef": 70, "tDef": -135, "eDef": -70, "lvl": 91, "agiReq": 25, "defReq": 45, "sdPct": -40, "int": -12, "agi": 8, "expd": 18, "spd": 15, "wDamPct": 40, "fDefPct": 12, "aDefPct": 12, "spPct1": -21, "id": 507}, {"name": "Cerid's Dynamo", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 59, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "id": 506}, {"name": "Chain Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "45-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "strReq": 50, "agiReq": 20, "sdPct": -12, "mdPct": 8, "str": 8, "agi": 4, "eDamPct": 19, "fDefPct": -9, "id": 508}, {"name": "Cerid's Precision", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "wDef": -20, "tDef": 30, "eDef": -20, "lvl": 42, "dexReq": 25, "sdPct": 10, "dex": 9, "expd": 5, "mdRaw": 60, "tDamPct": 8, "eDamPct": -10, "wDefPct": -10, "eDefPct": -10, "id": 505}, {"name": "Chain Link", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 400, "lvl": 45, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdRaw": 30, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 511}, {"name": "Chain Rule", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "wDef": 85, "tDef": -75, "eDef": 145, "lvl": 85, "strReq": 105, "hprPct": -36, "ms": 5, "sdRaw": 135, "wDamPct": -20, "tDamPct": -22, "eDamPct": 20, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3617}, {"name": "Chains of Steel", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 280, "lvl": 38, "xpb": 5, "str": 7, "hpBonus": 40, "id": 510}, {"name": "Chained Pixels", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 512, "fDef": 16, "wDef": 16, "aDef": 16, "tDef": 16, "eDef": 16, "lvl": 38, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "xpb": 16, "lb": 16, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 509}, {"name": "Chakram", "tier": "Legendary", "type": "dagger", "poison": 350, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-50", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "22-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 60, "agi": 13, "spd": 21, "atkTier": 1, "eSteal": 5, "tDamPct": 10, "tDefPct": 10, "id": 513}, {"name": "Chaleur", "tier": "Legendary", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "70-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 25, "hprPct": -25, "int": -5, "def": 7, "expd": 15, "sdRaw": 35, "mdRaw": 59, "fDamPct": 15, "wDefPct": -25, "id": 512}, {"name": "Chandelle", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "5-8", "fDam": "5-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "hprPct": 5, "hpBonus": 10, "id": 540}, {"name": "Chameleon", "tier": "Unique", "type": "helmet", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 750, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 57, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 9, "mdPct": 9, "ref": 9, "str": -5, "dex": -5, "int": -5, "agi": -5, "def": -5, "spd": 9, "id": 515}, {"name": "Chaos", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 62, "sdPct": 30, "mdPct": 30, "hpBonus": 1200, "sdRaw": 70, "mdRaw": 90, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "id": 514}, {"name": "Chaotic", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-193", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 71, "dexReq": 40, "dex": 9, "expd": 7, "spd": 7, "eDamPct": -30, "eDefPct": -30, "id": 517}, {"name": "Charm of the Magma", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 625, "fDef": 45, "eDef": 45, "lvl": 88, "classReq": "Warrior", "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 10, "xpb": 6, "lb": 6, "spd": -8, "hpBonus": 500, "type": "necklace", "id": 516}, {"name": "Charm of the Storms", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -200, "wDef": 30, "aDef": 30, "tDef": -70, "lvl": 88, "classReq": "Archer", "intReq": 40, "agiReq": 40, "mdPct": -8, "xpb": 6, "lb": 6, "agi": 5, "wDamPct": 13, "aDamPct": 13, "type": "necklace", "id": 518}, {"name": "Charm of the Tides", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": 40, "tDef": -80, "lvl": 88, "classReq": "Mage", "intReq": 40, "defReq": 40, "mr": 5, "sdPct": -21, "mdPct": -21, "xpb": 6, "lb": 6, "wDamPct": 15, "type": "necklace", "id": 520}, {"name": "Charm of the Tempest", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 25, "tDef": 25, "eDef": -60, "lvl": 88, "classReq": "Assassin", "dexReq": 40, "agiReq": 40, "hprPct": -15, "xpb": 6, "lb": 6, "mdRaw": 52, "aDamPct": 11, "tDamPct": 11, "type": "necklace", "id": 523}, {"name": "Charm of the Flea", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 15, "lvl": 20, "agiReq": 8, "ls": 4, "agi": 3, "type": "necklace", "id": 522}, {"name": "Charm of the Leech", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 100, "lvl": 50, "intReq": 15, "ls": 21, "ms": 5, "tDefPct": -7, "type": "necklace", "id": 521}, {"name": "Charm of the Tick", "tier": "Unique", "poison": 60, "category": "accessory", "drop": "lootchest", "hp": 45, "lvl": 35, "ls": 9, "type": "necklace", "id": 524}, {"name": "Charon's Left Arm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-13", "eDam": "10-17", "atkSpd": "SLOW", "lvl": 21, "strReq": 10, "ls": 14, "ms": -5, "str": 4, "dex": 4, "spd": -5, "tDamPct": 10, "fDefPct": -15, "id": 525}, {"name": "Charm of the Vampire", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 65, "ls": 45, "tDamPct": 5, "type": "necklace", "id": 526}, {"name": "Charybdis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "wDef": 80, "tDef": -120, "eDef": 80, "lvl": 85, "strReq": 40, "intReq": 40, "mr": 5, "sdPct": 6, "str": 5, "int": 5, "spd": -8, "mdRaw": 190, "wDamPct": 12, "eDamPct": 12, "tDefPct": -12, "id": 528}, {"name": "Chef Hamsey's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 3, "drop": "never", "hp": 2900, "fDef": -150, "wDef": -150, "tDef": 150, "lvl": 96, "hprPct": 25, "mr": 10, "int": 7, "def": 7, "spRegen": 10, "id": 527}, {"name": "Cherufe", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-90", "fDam": "75-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-75", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "defReq": 20, "ls": 50, "def": 5, "mdRaw": 145, "eDamPct": 10, "wDefPct": -18, "id": 530}, {"name": "Chief", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "4-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 14, "xpb": 7, "lb": 8, "def": 4, "hpBonus": 40, "fDamPct": 5, "id": 533}, {"name": "Chest Breaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "strReq": 30, "sdPct": 7, "mdPct": 18, "str": 7, "def": -4, "expd": 8, "hpBonus": -210, "aDefPct": -15, "id": 531}, {"name": "Chestplate of Ineptitude", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3375, "lvl": 98, "sdPct": -10, "mdPct": 10, "str": -3, "dex": -3, "int": -3, "agi": -3, "def": -3, "atkTier": 1, "sdRaw": -110, "mdRaw": 140, "id": 529}, {"name": "Chill", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -40, "fDef": -5, "wDef": 5, "aDef": 5, "lvl": 41, "intReq": 15, "spd": -3, "sdRaw": 13, "wDamPct": 5, "aDamPct": 5, "type": "ring", "id": 534}, {"name": "Chimaera", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 78, "lvl": 13, "ls": 5, "str": 7, "agi": 7, "def": 7, "id": 536}, {"name": "Chinked Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "fDef": 90, "aDef": -160, "lvl": 72, "defReq": 20, "hprPct": 12, "def": 8, "spd": -9, "hpBonus": 650, "fDefPct": 15, "aDefPct": -15, "tDefPct": 7, "eDefPct": 7, "id": 537}, {"name": "Chipped Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "drop": "never", "hp": 7, "lvl": 3, "id": 539}, {"name": "Chipped Leather Pants", "tier": "Normal", "type": "leggings", "category": "armor", "drop": "never", "hp": 11, "lvl": 5, "id": 535}, {"name": "Chipped Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "hp": 3, "lvl": 1, "id": 541}, {"name": "Chipped Leather Tunic", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "hp": 16, "lvl": 7, "id": 538}, {"name": "Chimney", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 760, "fDef": 55, "wDef": -55, "aDef": 55, "lvl": 52, "agiReq": 25, "defReq": 25, "hprPct": 20, "agi": 5, "def": 5, "expd": 8, "wDamPct": -15, "fDefPct": 12, "aDefPct": 12, "id": 532}, {"name": "Chlorine", "tier": "Unique", "poison": 170, "category": "accessory", "drop": "lootchest", "tDef": -20, "lvl": 64, "intReq": 15, "hprPct": -7, "sdPct": 6, "wDamPct": 5, "type": "ring", "id": 542}, {"name": "Chlorofury", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-40", "fDam": "0-0", "wDam": "35-40", "aDam": "0-0", "tDam": "0-0", "eDam": "35-40", "atkSpd": "NORMAL", "lvl": 63, "strReq": 30, "intReq": 30, "sdPct": 8, "mdPct": 8, "hpBonus": -250, "sdRaw": 60, "mdRaw": 80, "id": 545}, {"name": "Chroma Cannon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "20-60", "wDam": "20-60", "aDam": "20-60", "tDam": "20-60", "eDam": "20-60", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "hpBonus": -150, "spRegen": -30, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 543}, {"name": "Cigar", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 43, "expd": 5, "fDamPct": 12, "eDamPct": 6, "id": 546}, {"name": "Chrysoprase", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-100", "fDam": "40-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "SLOW", "lvl": 59, "strReq": 25, "defReq": 25, "sdPct": -13, "mdPct": 11, "hpBonus": 300, "fDamPct": 12, "wDamPct": -15, "eDamPct": 12, "wDefPct": -15, "id": 544}, {"name": "Ciocca", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "0-0", "aDam": "10-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "agiReq": 15, "sdPct": 8, "mdPct": -5, "spd": 8, "fDefPct": -8, "eDefPct": 8, "id": 548}, {"name": "Circuit Buster", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-31", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "dexReq": 10, "hprPct": -9, "dex": 5, "sdRaw": 15, "mdRaw": 20, "id": 547}, {"name": "Cinnabar", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 90, "wDef": -75, "aDef": 90, "tDef": -75, "lvl": 77, "agiReq": 55, "defReq": 55, "hprPct": 25, "sdPct": -12, "mdPct": -12, "agi": 9, "def": 9, "expd": 30, "hprRaw": 80, "fDefPct": 15, "aDefPct": 15, "id": 550}, {"name": "Cirrus", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 40, "aDef": 70, "tDef": -90, "eDef": -70, "lvl": 69, "agiReq": 50, "ms": 5, "agi": 7, "spd": 12, "wDamPct": 6, "aDamPct": 10, "wDefPct": 10, "aDefPct": 6, "id": 553}, {"name": "Clairvoyance", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "60-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "intReq": 55, "sdPct": 20, "ms": 10, "ref": 20, "dex": 13, "spRegen": 5, "wDefPct": 14, "tDefPct": 14, "id": 551}, {"name": "Circuit Flights", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "43-60", "tDam": "52-74", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 66, "dexReq": 25, "agiReq": 25, "ls": -169, "xpb": 12, "mdRaw": 75, "aDamPct": 18, "tDamPct": 18, "eDefPct": 24, "id": 549}, {"name": "Clap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 13, "mdPct": 4, "mdRaw": 4, "type": "ring", "id": 552}, {"name": "Clarity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 12, "int": 3, "type": "ring", "id": 556}, {"name": "Cleanshear", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 875, "lvl": 63, "dexReq": 60, "ls": 75, "ref": 3, "dex": 8, "spd": 6, "mdRaw": 100, "eDamPct": -10, "id": 554}, {"name": "Cleansing Flame", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "8-16", "fDam": "45-55", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 20, "defReq": 20, "mr": 5, "def": 8, "spd": -10, "hpBonus": 200, "wDamPct": 15, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 560}, {"name": "Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 5, "xpb": 3, "id": 557}, {"name": "Clash Hook", "tier": "Legendary", "type": "spear", "thorns": 34, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "5-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "mdPct": 10, "xpb": 10, "agi": 7, "spd": 5, "id": 555}, {"name": "Clearwater", "tier": "Unique", "type": "bow", "poison": -200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "intReq": 55, "hprPct": 20, "mr": 5, "int": 9, "spRegen": 5, "wDefPct": 14, "tDefPct": -8, "id": 558}, {"name": "Clerical", "tier": "Rare", "type": "leggings", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "wDef": 195, "tDef": -110, "lvl": 94, "intReq": 60, "mr": 5, "sdPct": -50, "mdPct": -60, "ref": 25, "int": 10, "wDamPct": 40, "tDamPct": -25, "wDefPct": 25, "id": 3605}, {"name": "Clay", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 50, "lvl": 73, "mdPct": 6, "type": "ring", "id": 559}, {"name": "Clock Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "xpb": 8, "id": 563}, {"name": "Cloud Cover", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "aDef": 80, "tDef": -70, "lvl": 72, "intReq": 15, "agiReq": 40, "ms": 5, "agi": 8, "spd": 6, "hprRaw": 60, "fDamPct": -11, "wDamPct": 8, "wDefPct": 11, "id": 561}, {"name": "Cloud Nine", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "30-100", "aDam": "10-10", "tDam": "50-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "intReq": 40, "mdPct": -11, "ref": 20, "dex": 8, "int": 8, "fDamPct": -40, "fDefPct": 15, "wDefPct": 25, "aDefPct": 20, "tDefPct": 25, "eDefPct": 15, "id": 564}, {"name": "Cloudbreaker", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-65", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "35-52", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "agiReq": 25, "dex": 7, "agi": 7, "spd": 20, "fDamPct": -5, "aDamPct": 20, "tDamPct": 20, "eDamPct": -10, "id": 562}, {"name": "Clovis Leg Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 380, "fDef": -40, "aDef": 15, "eDef": 15, "lvl": 46, "strReq": 20, "agiReq": 20, "sdPct": -20, "mdPct": 8, "spd": 8, "mdRaw": 65, "aDamPct": 10, "eDamPct": 10, "id": 565}, {"name": "Cloudburst", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 80, "aDef": 10, "lvl": 19, "agiReq": 20, "def": -5, "spd": 12, "mdRaw": 30, "aDamPct": 15, "id": 568}, {"name": "Cnidocyte", "tier": "Unique", "type": "leggings", "poison": 450, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 70, "aDef": -80, "tDef": -80, "eDef": 90, "lvl": 78, "strReq": 45, "intReq": 25, "hprPct": -16, "sdPct": 6, "mdPct": 6, "str": 7, "tDefPct": -20, "id": 566}, {"name": "Cluster", "tier": "Legendary", "type": "bow", "poison": 800, "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-240", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "ls": 585, "ms": 10, "expd": 65, "eSteal": 10, "id": 567}, {"name": "Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "fDef": 15, "wDef": -15, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 3, "def": 4, "expd": 8, "spd": -5, "hpBonus": 70, "id": 570}, {"name": "Coba", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 80, "wDef": -70, "tDef": 80, "eDef": -100, "lvl": 78, "dexReq": 45, "defReq": 40, "sdPct": 7, "ls": 125, "xpb": 10, "lb": 15, "dex": 4, "hpBonus": -150, "spRegen": -5, "id": 569}, {"name": "Corase Torc", "displayName": "Coarse Torc", "tier": "Unique", "poison": 80, "category": "accessory", "drop": "lootchest", "hp": 55, "aDef": -20, "eDef": 20, "lvl": 43, "strReq": 15, "str": 3, "eDamPct": 7, "type": "necklace", "id": 571}, {"name": "Coat of Byakko", "tier": "Unique", "type": "chestplate", "thorns": 20, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -100, "aDef": 75, "eDef": 75, "lvl": 85, "strReq": 30, "agiReq": 30, "mdPct": -10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 220, "aDamPct": 10, "eDamPct": 10, "id": 574}, {"name": "Cobra", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "dexReq": 15, "xpb": 6, "lb": 6, "dex": 4, "eSteal": 6, "mdRaw": 23, "aDamPct": 6, "id": 573}, {"name": "Cockleburr", "tier": "Unique", "type": "dagger", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-155", "atkSpd": "SLOW", "lvl": 96, "strReq": 45, "ls": 290, "ms": 5, "spd": -8, "mdRaw": 190, "eDamPct": 7, "fDefPct": -10, "aDefPct": 12, "id": 575}, {"name": "Coconut\u058e", "displayName": "Coconut", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "90-105", "aDam": "0-0", "tDam": "0-0", "eDam": "90-105", "atkSpd": "VERY_SLOW", "lvl": 45, "strReq": 20, "intReq": 15, "hprPct": 10, "mdPct": 12, "str": 7, "spd": -10, "id": 576}, {"name": "Coeur de Lion", "tier": "Rare", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-75", "fDam": "30-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 30, "hprPct": 15, "mr": 5, "def": 10, "hpBonus": 600, "fDefPct": 20, "wDefPct": -20, "id": 572}, {"name": "Cognizance", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "lvl": 49, "intReq": 40, "str": -4, "int": 10, "def": -4, "wDamPct": 7, "eDamPct": -7, "fDefPct": -7, "wDefPct": 7, "id": 580}, {"name": "Coiled Briar", "tier": "Rare", "thorns": 11, "category": "accessory", "drop": "lootchest", "fDef": -15, "lvl": 90, "mdPct": 5, "ref": -6, "spd": -5, "eDamPct": 8, "type": "ring", "id": 578}, {"name": "Cold Integrity", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "24-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 74, "intReq": 55, "agiReq": 40, "mr": 5, "int": 15, "hpBonus": -1500, "spRegen": 15, "sdRaw": 800, "wDamPct": 72, "aDefPct": 30, "id": 579}, {"name": "Col Legno", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-35", "eDam": "30-35", "atkSpd": "FAST", "lvl": 48, "strReq": 24, "dexReq": 24, "ls": -50, "def": -10, "mdRaw": 52, "tDamPct": 10, "eDamPct": 10, "id": 577}, {"name": "Cold Wave", "tier": "Fabled", "majorIds": ["FLASHFREEZE"], "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 75, "intReq": 40, "sdPct": 6, "spd": -10, "wDamPct": 8, "fDefPct": -14, "type": "ring", "id": 3556}, {"name": "Collector", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "necklace", "id": 583}, {"name": "Comfort", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 6, "hpBonus": 8, "hprRaw": 2, "mdRaw": -3, "type": "bracelet", "id": 588}, {"name": "Columns", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 50, "aDef": -5, "eDef": 5, "lvl": 11, "str": 4, "def": 4, "spd": -5, "hpBonus": 20, "id": 584}, {"name": "Collier Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "fDef": 7, "wDef": -5, "lvl": 14, "hprPct": 8, "def": 3, "hpBonus": 15, "id": 582}, {"name": "Concentration", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 8, "mr": 5, "type": "ring", "id": 581}, {"name": "Conclave Crossfire", "tier": "Rare", "type": "relik", "poison": 99, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "12-15", "wDam": "0-0", "aDam": "0-0", "tDam": "12-15", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 13, "defReq": 13, "str": -10, "dex": 15, "expd": -100, "aDamPct": -50, "eDamPct": -50, "id": 587}, {"name": "Conductor", "tier": "Legendary", "type": "leggings", "thorns": 9, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "wDef": -10, "tDef": -10, "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 14, "dex": 8, "expd": 7, "tDamPct": 16, "id": 585}, {"name": "Conflagrate", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1800, "fDef": 180, "lvl": 84, "defReq": 90, "ls": 260, "int": -16, "def": 16, "mdRaw": 285, "fDamPct": 50, "wDefPct": -30, "spRaw3": -5, "id": 589}, {"name": "Conductor's Baton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "27-37", "aDam": "0-0", "tDam": "27-37", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 25, "intReq": 35, "sdPct": 12, "ls": -120, "ms": 5, "dex": 5, "int": 7, "eDefPct": -12, "id": 600}, {"name": "Conference Call", "tier": "Legendary", "type": "relik", "poison": 1111, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-30", "fDam": "72-78", "wDam": "0-0", "aDam": "0-0", "tDam": "72-78", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 94, "dexReq": 47, "defReq": 47, "ls": 350, "ms": 10, "str": -15, "dex": 15, "expd": -100, "fDamPct": 15, "tDamPct": 15, "aDefPct": -70, "eDefPct": -70, "id": 591}, {"name": "Conrupt", "tier": "Rare", "type": "helmet", "poison": 600, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2950, "wDef": -100, "aDef": -100, "tDef": 110, "eDef": 110, "lvl": 99, "strReq": 50, "dexReq": 50, "mdPct": 15, "ls": 295, "str": 8, "dex": 8, "spRegen": -20, "hprRaw": -125, "tDamPct": 20, "eDamPct": 20, "id": 590}, {"name": "Conspirator's Trickpockets", "tier": "Fabled", "type": "leggings", "majorIds": ["CHERRY_BOMBS"], "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": -80, "eDef": -80, "lvl": 78, "classReq": "Assassin", "agiReq": 65, "mr": 5, "expd": 23, "eSteal": 5, "sdRaw": 140, "aDamPct": 19, "tDamPct": -58, "wDefPct": -20, "spRaw4": 5, "id": 3551}, {"name": "Contrail", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 10, "aDef": 50, "lvl": 94, "agiReq": 45, "agi": 4, "spd": 10, "aDamPct": 8, "type": "bracelet", "id": 597}, {"name": "Collier's Guard", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "fDef": 75, "wDef": -40, "aDef": -40, "lvl": 64, "defReq": 25, "hprPct": 21, "agi": -2, "def": 7, "expd": 5, "spd": -7, "hpBonus": 275, "id": 598}, {"name": "Contamination", "tier": "Legendary", "type": "bow", "poison": 1000, "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-30", "atkSpd": "SLOW", "lvl": 51, "sdPct": -15, "expd": 65, "spd": 6, "id": 593}, {"name": "Convallaria", "tier": "Legendary", "type": "leggings", "poison": 300, "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -65, "eDef": 55, "lvl": 55, "strReq": 40, "ls": 75, "spd": -8, "mdRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 594}, {"name": "Cooler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -30, "wDef": 40, "aDef": 25, "tDef": -30, "lvl": 50, "intReq": 20, "ms": 5, "ref": 12, "int": 5, "spd": -11, "sdRaw": 55, "fDamPct": -5, "id": 596}, {"name": "Cool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 8, "sdPct": 4, "agi": 3, "type": "bracelet", "id": 592}, {"name": "Copper-Alloy Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-38", "fDam": "8-14", "wDam": "0-0", "aDam": "0-0", "tDam": "8-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "dexReq": 10, "defReq": 10, "sdPct": 5, "ms": 5, "fDamPct": 12, "tDamPct": 12, "eDefPct": -15, "id": 601}, {"name": "Copper-Alloy Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "fDef": 8, "wDef": -10, "tDef": 8, "eDef": -10, "lvl": 38, "dexReq": 10, "defReq": 10, "mdPct": 8, "hprRaw": 15, "fDamPct": 5, "wDamPct": -7, "tDamPct": 5, "eDamPct": -7, "id": 599}, {"name": "Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "fDef": -8, "tDef": -8, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 9, "ref": 5, "fDamPct": 6, "tDamPct": 8, "id": 605}, {"name": "Centipede", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 80, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "sdPct": -1000, "spd": 24, "atkTier": 2, "eSteal": 8, "fixID": true, "id": 604}, {"name": "Air Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": -50, "aDef": 300, "lvl": 80, "agiReq": 70, "aDamPct": 85, "fixID": true, "id": 602}, {"name": "Earth Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "aDef": -80, "eDef": 330, "lvl": 80, "strReq": 70, "eDamPct": 85, "fixID": true, "id": 603}, {"name": "Copper Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "73-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "73-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "strReq": 40, "dexReq": 35, "ms": 10, "tDamPct": 12, "eDamPct": 25, "fDefPct": -20, "wDefPct": -20, "tDefPct": -15, "id": 595}, {"name": "Fire Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 350, "wDef": -100, "lvl": 80, "defReq": 70, "fDamPct": 85, "fixID": true, "id": 608}, {"name": "Rainbow Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 80, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "fDamPct": 85, "wDamPct": 85, "aDamPct": 85, "tDamPct": 85, "eDamPct": 85, "fixID": true, "id": 606}, {"name": "Thunder Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "tDef": 320, "eDef": -70, "lvl": 80, "dexReq": 70, "tDamPct": 85, "fixID": true, "id": 609}, {"name": "Dust Skaters", "tier": "Rare", "type": "boots", "poison": 800, "thorns": 18, "sprint": 12, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2375, "aDef": 55, "eDef": -80, "lvl": 87, "agiReq": 55, "sdPct": 18, "agi": 8, "spd": 24, "mdRaw": 210, "eDamPct": 15, "aDefPct": 45, "fixID": true, "sprintReg": 12, "id": 611}, {"name": "Corrupted Nii Mukluk", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2275, "fDef": 100, "tDef": -50, "lvl": 78, "defReq": 65, "def": 10, "fDamPct": 20, "fDefPct": 10, "fixID": true, "id": 610, "set": "Corrupted Nii"}, {"name": "Water Sanctuary", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "wDef": 340, "tDef": -90, "lvl": 80, "intReq": 70, "wDamPct": 85, "fixID": true, "id": 615}, {"name": "Dune Storm", "tier": "Rare", "type": "helmet", "sprint": 28, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": -1300, "aDef": 260, "eDef": 190, "lvl": 87, "strReq": 60, "agiReq": 70, "str": 12, "agi": 16, "spd": 36, "mdRaw": 520, "aDamPct": 56, "eDamPct": 48, "fixID": true, "id": 607}, {"name": "Golden Scarab", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "tDef": 80, "lvl": 88, "dexReq": 80, "sdPct": 24, "mdPct": 24, "ms": 10, "xpb": 16, "lb": 32, "dex": 8, "spd": 8, "eSteal": 8, "tDamPct": 8, "eDamPct": -64, "fixID": true, "id": 613}, {"name": "Infidel", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-875", "fDam": "0-0", "wDam": "0-1000", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 50, "intReq": 45, "sdPct": 20, "ms": 10, "dex": 5, "int": 10, "sdRaw": 285, "tDamPct": 30, "fDefPct": -70, "fixID": true, "id": 612}, {"name": "Judas", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-45", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 60, "mdPct": 33, "ls": -1085, "ms": 10, "lb": 30, "dex": 10, "spRegen": -30, "sdRaw": 125, "wDamPct": -70, "tDamPct": 20, "fixID": true, "id": 619}, {"name": "Lion's Pelt", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "aDef": -70, "tDef": 100, "eDef": 120, "lvl": 89, "strReq": 60, "mdPct": 15, "ls": 310, "str": 8, "eDamPct": 20, "eDefPct": 40, "fixID": true, "id": 614}, {"name": "Plague", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 4, "drop": "never", "restrict": "Untradable", "nDam": "500-720", "fDam": "500-720", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 55, "defReq": 45, "ls": 700, "ms": 15, "ref": 30, "def": 10, "expd": 30, "tDamPct": 15, "fDefPct": 30, "wDefPct": -40, "aDefPct": 35, "tDefPct": 25, "fixID": true, "id": 617}, {"name": "Manna", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "140-240", "fDam": "0-0", "wDam": "150-270", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "strReq": 55, "intReq": 40, "mr": 10, "sdPct": 15, "str": 5, "int": 5, "hpBonus": 1800, "hprRaw": 175, "eDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "id": 616}, {"name": "Sacramentalia", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "aDef": 20, "tDef": 20, "lvl": 89, "strReq": 50, "intReq": 40, "mr": 10, "sdPct": -12, "spRegen": 10, "hprRaw": 50, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 618}, {"name": "Corrupted Nii Shako", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1650, "fDef": 50, "wDef": 50, "tDef": -50, "lvl": 70, "intReq": 50, "defReq": 50, "hprPct": 30, "mr": 5, "fDefPct": 15, "wDefPct": 15, "fixID": true, "id": 624, "set": "Corrupted Nii"}, {"name": "Corrupted Uth Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2850, "fDef": 150, "wDef": -70, "lvl": 86, "defReq": 75, "def": 10, "fDamPct": 15, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 620, "set": "Corrupted Uth"}, {"name": "Ghoul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "75-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "agiReq": 55, "ls": 235, "ms": 10, "agi": 10, "spd": 20, "aDamPct": 10, "tDamPct": 14, "fixID": true, "id": 621}, {"name": "Nest", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-90", "atkSpd": "NORMAL", "lvl": 76, "strReq": 20, "mdPct": 10, "xpb": 15, "fDamPct": -15, "aDamPct": -15, "tDamPct": -15, "eDamPct": 35, "fixID": true, "id": 623}, {"name": "Corrupted Nii Plate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1625, "wDef": 100, "tDef": -75, "lvl": 74, "intReq": 65, "int": 10, "wDamPct": 20, "wDefPct": 10, "fixID": true, "id": 622, "set": "Corrupted Nii"}, {"name": "Salticidae", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "315-815", "tDam": "0-0", "eDam": "95-495", "atkSpd": "SUPER_SLOW", "lvl": 76, "strReq": 30, "agiReq": 40, "sdPct": -10, "agi": 30, "spd": 42, "fixID": true, "jh": 3, "id": 676}, {"name": "Scytodidae", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "180-230", "fDam": "0-0", "wDam": "130-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "intReq": 40, "mr": 10, "ms": 10, "def": -20, "sdRaw": 130, "fDefPct": -10, "fixID": true, "id": 625}, {"name": "Vanguard", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 77, "sdPct": 10, "mdPct": 10, "xpb": 15, "lb": 10, "type": "bracelet", "fixID": true, "id": 626}, {"name": "Argos", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 3900, "lvl": 86, "defReq": 50, "sdPct": -65, "ls": 275, "def": 15, "atkTier": -1, "fDamPct": 100, "fDefPct": 20, "fixID": true, "id": 630}, {"name": "Achilles", "tier": "Legendary", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3600, "fDef": 200, "wDef": -850, "aDef": 200, "tDef": 200, "eDef": 250, "lvl": 86, "strReq": 40, "defReq": 20, "str": 7, "def": 15, "mdRaw": 380, "fDamPct": 15, "eDamPct": 15, "fDefPct": 40, "eDefPct": 500, "fixID": true, "id": 627}, {"name": "Drain", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 375, "lvl": 85, "ls": 200, "xpb": 10, "spRegen": -75, "type": "necklace", "fixID": true, "id": 631}, {"name": "Corrupted Uth Plume", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "wDef": -60, "aDef": 150, "lvl": 82, "agiReq": 75, "agi": 10, "spd": 20, "aDamPct": 15, "fixID": true, "id": 632, "set": "Corrupted Uth"}, {"name": "Black Catalyst", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -325, "lvl": 83, "xpb": -5, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": -5, "type": "ring", "fixID": true, "id": 628, "set": "Black Catalyst"}, {"name": "Tophet", "tier": "Legendary", "type": "leggings", "poison": 666, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3050, "fDef": 100, "wDef": -120, "tDef": 100, "lvl": 85, "dexReq": 40, "ms": 10, "str": 5, "dex": 8, "def": 5, "expd": 35, "fDamPct": 25, "wDamPct": -15, "tDamPct": 20, "eDamPct": 20, "eDefPct": 25, "fixID": true, "id": 635}, {"name": "Prognosticum", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 84, "intReq": 40, "ms": 10, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 634}, {"name": "Coronium", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "wDef": -40, "tDef": 30, "lvl": 50, "dexReq": 20, "defReq": 15, "hprPct": -8, "xpb": 8, "def": 5, "expd": 12, "wDamPct": -10, "tDamPct": 10, "id": 638}, {"name": "Coriolis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "aDef": 55, "eDef": -60, "lvl": 58, "agiReq": 35, "ref": 6, "agi": 4, "spd": 12, "aDamPct": 11, "aDefPct": 8, "eDefPct": -10, "id": 633}, {"name": "Brace of the Ninth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "113-119", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "intReq": 55, "mr": 10, "ref": 20, "int": 40, "spd": -20, "wDamPct": 15, "fixID": true, "id": 636}, {"name": "Desperation", "tier": "Rare", "type": "dagger", "thorns": -100, "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-76", "wDam": "0-0", "aDam": "0-160", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 91, "agiReq": 35, "defReq": 50, "hprPct": 50, "ls": 360, "ref": -100, "str": -20, "spd": 35, "hpBonus": -1000, "wDamPct": -20, "fixID": true, "id": 637}, {"name": "Closure", "tier": "Rare", "type": "bow", "poison": 1500, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "120-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-355", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "dexReq": 35, "defReq": 45, "ms": 15, "xpb": 15, "ref": 15, "sdRaw": 145, "fDamPct": 80, "aDamPct": -100, "aDefPct": -20, "fixID": true, "id": 643}, {"name": "Final Compulsion", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "270-315", "fDam": "130-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 35, "defReq": 50, "hprPct": -100, "mdPct": 40, "ls": 290, "spd": -10, "hpBonus": 2875, "tDamPct": -20, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 640}, {"name": "Pulse Stopper", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 20, "eDef": 20, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": -10, "sdPct": 10, "ls": 130, "sdRaw": 50, "type": "necklace", "fixID": true, "id": 642}, {"name": "Peaceful Rest", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "16-24", "fDam": "52-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 55, "defReq": 45, "sdPct": 35, "int": 8, "spd": -25, "atkTier": -30, "spRegen": 100, "wDamPct": 30, "tDamPct": -30, "fDefPct": 40, "wDefPct": 40, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "id": 644}, {"name": "Pulse Starter", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 650, "fDef": 35, "tDef": 35, "lvl": 91, "dexReq": 40, "defReq": 40, "hprPct": 10, "hprRaw": 80, "fDamPct": 7, "tDamPct": 7, "type": "necklace", "fixID": true, "id": 641}, {"name": "Rune of Safe Passage", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": -25, "wDef": -30, "aDef": -25, "lvl": 92, "spd": 7, "spRegen": 5, "fDefPct": 15, "wDefPct": 10, "aDefPct": 15, "type": "ring", "fixID": true, "id": 645}, {"name": "Corrupted Uth Sandals", "tier": "Set", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3400, "fDef": 75, "wDef": -80, "aDef": 75, "lvl": 90, "agiReq": 85, "defReq": 85, "ref": 20, "spd": 30, "fixID": true, "id": 646, "set": "Corrupted Uth"}, {"name": "The Crossing", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "tDef": -75, "eDef": -75, "lvl": 93, "mr": -10, "spRegen": 10, "sdRaw": 425, "wDamPct": -20, "fixID": true, "id": 651}, {"name": "Corrupted Witherhead's Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "37-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-170", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 74, "dexReq": 75, "agiReq": 10, "sdPct": 20, "dex": 10, "spd": -15, "spRegen": -10, "aDamPct": 14, "tDamPct": 7, "fixID": true, "id": 667}, {"name": "Depth", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "45-55", "fDam": "30-45", "wDam": "0-0", "aDam": "55-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "agiReq": 40, "defReq": 20, "def": 5, "spd": 10, "hpBonus": 900, "fDamPct": 12, "aDamPct": 12, "fixID": true, "id": 649}, {"name": "Bane", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 120, "lvl": 72, "dexReq": 50, "dex": 17, "expd": 30, "mdRaw": 125, "fixID": true, "id": 647}, {"name": "Demonio", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "90-110", "fDam": "130-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 71, "defReq": 60, "ls": 190, "xpb": 10, "str": 5, "expd": 30, "eDamPct": 20, "fixID": true, "id": 648}, {"name": "Nightmare", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "defReq": 70, "hprPct": 30, "ls": 255, "agi": 12, "fDamPct": 10, "wDamPct": -20, "aDamPct": 15, "fixID": true, "id": 650}, {"name": "Gaze from the Snowbank", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3200, "wDef": -50, "aDef": -75, "lvl": 92, "strReq": 75, "ls": -240, "ms": 20, "spd": -12, "atkTier": -2, "eSteal": 8, "mdRaw": 700, "eDamPct": 40, "fixID": true, "id": 694}, {"name": "Destructor", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "460-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "dexReq": 50, "sdPct": -15, "mdPct": 35, "expd": 100, "spd": -100, "mdRaw": 315, "tDamPct": 10, "eDamPct": 25, "fixID": true, "id": 652}, {"name": "Wall Breaker", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "225-335", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-1125", "atkSpd": "SUPER_SLOW", "lvl": 72, "strReq": 80, "sdPct": -60, "mdPct": 65, "str": 10, "expd": 100, "spd": -20, "aDamPct": 15, "fixID": true, "id": 654}, {"name": "Corruption Seal", "tier": "Unique", "type": "boots", "poison": 675, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2650, "wDef": -90, "aDef": -90, "tDef": 90, "eDef": 90, "lvl": 92, "strReq": 40, "dexReq": 40, "ls": 205, "ms": 5, "str": 7, "dex": 7, "spRegen": -10, "hprRaw": -125, "tDamPct": 23, "eDamPct": 23, "id": 655}, {"name": "Cotton Swab", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "130-138", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 83, "agiReq": 40, "agi": 40, "fDefPct": -50, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 656}, {"name": "Void", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "aDef": 80, "lvl": 73, "agiReq": 60, "xpb": 15, "lb": 15, "int": -10, "spd": 15, "aDamPct": 15, "fixID": true, "id": 653}, {"name": "Cosmium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 450, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 657}, {"name": "Couteau", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "66-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 56, "sdPct": -5, "mdPct": 10, "str": 8, "dex": 8, "id": 662}, {"name": "Countdown", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-52", "fDam": "10-62", "wDam": "10-62", "aDam": "0-72", "tDam": "0-72", "eDam": "20-52", "atkSpd": "FAST", "lvl": 84, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": -15, "sdPct": 15, "mdPct": 15, "hprRaw": -290, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "id": 661}, {"name": "Coursing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1250, "wDef": -60, "eDef": -60, "lvl": 68, "dexReq": 25, "dex": 7, "expd": 10, "mdRaw": 105, "wDamPct": -7, "tDamPct": 13, "eDamPct": -7, "id": 659}, {"name": "Coyote Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 67, "dexReq": 20, "dex": 5, "agi": 3, "mdRaw": 16, "type": "necklace", "id": 663}, {"name": "Crack the Skies", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-160", "tDam": "80-110", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 100, "dexReq": 35, "agiReq": 50, "sdPct": 15, "dex": 7, "agi": 13, "spd": 15, "aDamPct": 10, "tDamPct": 12, "eDefPct": -16, "id": 664}, {"name": "Cracklers", "tier": "Unique", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 80, "wDef": -115, "tDef": 50, "lvl": 86, "defReq": 35, "hprPct": 30, "ls": 200, "def": 12, "expd": 20, "atkTier": -7, "mdRaw": 750, "fDamPct": 15, "tDamPct": 10, "wDefPct": -10, "id": 668}, {"name": "Coyopa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "52-96", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 25, "mr": -5, "sdPct": 12, "ls": 60, "ms": 5, "dex": 4, "expd": 15, "id": 660}, {"name": "Crackshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "125-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 11, "ms": 5, "xpb": 15, "id": 669}, {"name": "Crash", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -215, "wDef": -50, "tDef": 30, "eDef": 40, "lvl": 63, "strReq": 20, "dexReq": 10, "sdPct": 7, "mdPct": 7, "expd": 5, "spd": -5, "type": "necklace", "id": 692}, {"name": "Crafted Gem", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "1-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 44, "xpb": 15, "lb": 12, "id": 665}, {"name": "Crater Print", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "wDef": -80, "aDef": -120, "eDef": 120, "lvl": 93, "strReq": 70, "sdPct": 19, "ms": 5, "str": 10, "spd": -15, "hprRaw": 155, "mdRaw": 255, "eDamPct": 15, "id": 671}, {"name": "Creek", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "wDef": 50, "tDef": -50, "lvl": 54, "intReq": 20, "mr": 5, "ref": 7, "spd": -10, "spRegen": 10, "wDefPct": 20, "id": 670}, {"name": "Crescendo", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "fDef": 45, "wDef": 45, "lvl": 57, "intReq": 30, "defReq": 30, "hprPct": 22, "mr": 5, "sdPct": -15, "mdPct": -15, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "id": 673}, {"name": "Creeper Mask", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "thorns": 5, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 14, "expd": 5, "fixID": true, "id": 672}, {"name": "Crescent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-145", "fDam": "0-0", "wDam": "115-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "intReq": 50, "mr": 5, "xpb": 12, "spRegen": 10, "wDamPct": 15, "wDefPct": 15, "tDefPct": -10, "id": 677}, {"name": "Crestfallen", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": -90, "lvl": 99, "strReq": 50, "agiReq": 40, "sdPct": 10, "mdPct": -15, "ms": 10, "sdRaw": 170, "fDamPct": -20, "tDamPct": -20, "id": 675}, {"name": "Cross", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "41-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "sdPct": -4, "mdPct": -3, "xpb": 10, "lb": 5, "id": 674}, {"name": "Cross-aegis", "displayName": "Cross-Aegis", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-105", "fDam": "31-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 30, "hprPct": 19, "def": 9, "spd": -12, "hpBonus": 450, "hprRaw": 32, "fDefPct": 13, "wDefPct": -30, "aDefPct": 13, "tDefPct": 12, "eDefPct": 12, "id": 678}, {"name": "Crimson", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-90", "fDam": "95-110", "wDam": "95-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 45, "defReq": 45, "hprPct": 30, "ls": 436, "ms": -5, "int": 13, "def": 13, "hprRaw": 207, "aDefPct": 35, "tDefPct": 35, "eDefPct": 35, "id": 679}, {"name": "Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 42, "sdPct": 20, "mdPct": 20, "str": 7, "spd": -20, "id": 681}, {"name": "Crossroad Killer", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "314-486", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "194-686", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "dexReq": 70, "sdPct": -15, "mdPct": 19, "dex": 14, "def": -5, "eDefPct": -10, "id": 680}, {"name": "Crowbeak", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "21-24", "tDam": "14-36", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "sdPct": 5, "agi": 5, "spd": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": -6, "tDefPct": -6, "eDefPct": -6, "id": 682}, {"name": "Crown of Suzaku", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 2100, "fDef": 250, "wDef": -90, "aDef": 250, "lvl": 88, "strReq": 40, "dexReq": 40, "ls": 165, "ms": 5, "str": 5, "dex": 5, "agi": -5, "def": -5, "expd": 20, "spd": -9, "eSteal": 8, "tDamPct": 14, "eDamPct": 14, "id": 683}, {"name": "Crustacean", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "35-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "mr": 5, "hpBonus": 25, "id": 729}, {"name": "Crwth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "65-125", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "95-120", "atkSpd": "VERY_FAST", "lvl": 83, "strReq": 35, "defReq": 35, "mr": 5, "ms": -5, "spd": -10, "fDamPct": 23, "eDamPct": 23, "aDefPct": -15, "id": 687}, {"name": "Cruel Sun", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-85", "fDam": "75-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 24, "defReq": 15, "mdPct": 20, "ls": 20, "def": 10, "expd": 30, "hprRaw": -10, "fDamPct": 15, "spRaw1": 10, "id": 684}, {"name": "Crust Crusher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "195-210", "fDam": "210-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-270", "atkSpd": "VERY_SLOW", "lvl": 99, "strReq": 35, "defReq": 35, "sdPct": -8, "mdPct": 20, "str": 10, "def": 10, "expd": 20, "spd": -15, "id": 685}, {"name": "Cryoseism", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "241-275", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "intReq": 70, "mr": 10, "mdPct": -35, "int": 15, "spd": -10, "wDamPct": 25, "spRaw1": 5, "spRaw3": -5, "spRaw4": 5, "id": 686}, {"name": "Crystal", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1575, "wDef": 110, "aDef": 110, "tDef": -70, "eDef": -70, "lvl": 69, "intReq": 45, "agiReq": 45, "mr": 10, "ref": 50, "int": 9, "agi": 9, "spd": 10, "id": 688}, {"name": "Crystal Senbon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "77-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 690}, {"name": "Crystal Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 28, "strReq": 3, "dexReq": 3, "intReq": 3, "agiReq": 3, "defReq": 3, "ref": 5, "type": "necklace", "id": 689}, {"name": "Crystal Thorn", "tier": "Rare", "type": "wand", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "55-75", "atkSpd": "NORMAL", "lvl": 80, "strReq": 30, "intReq": 30, "mr": 10, "mdPct": 5, "ref": 12, "aDefPct": -10, "tDefPct": -10, "id": 693}, {"name": "Culex", "tier": "Rare", "type": "leggings", "poison": 172, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 585, "aDef": -20, "tDef": -25, "lvl": 50, "agiReq": 20, "ls": 60, "agi": 9, "id": 695}, {"name": "Cue Stick", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "220-270", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "150-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 50, "mdPct": 12, "ms": 5, "dex": 16, "eSteal": 5, "tDefPct": 77, "id": 691}, {"name": "Cumulus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1225, "wDef": 30, "aDef": 60, "tDef": -80, "lvl": 70, "agiReq": 40, "agi": 8, "spd": 9, "wDamPct": 10, "id": 701}, {"name": "Curador Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3300, "fDef": 120, "wDef": 120, "tDef": -150, "lvl": 99, "intReq": 45, "defReq": 45, "hprPct": 20, "ls": 255, "ms": 10, "dex": 8, "int": 5, "def": 5, "expd": -30, "hprRaw": 160, "eDamPct": -20, "id": 698}, {"name": "Curse", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "9-11", "aDam": "0-0", "tDam": "0-0", "eDam": "9-11", "atkSpd": "VERY_FAST", "lvl": 38, "strReq": 5, "hprPct": 12, "mr": 5, "ls": -20, "int": 7, "tDamPct": -10, "eDamPct": 10, "wDefPct": 10, "tDefPct": -10, "id": 697}, {"name": "Cursed Spike", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-185", "atkSpd": "FAST", "lvl": 80, "strReq": 45, "hprPct": -30, "hpBonus": -1700, "spRegen": -15, "eDefPct": 6, "id": 699}, {"name": "Cursed Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 18, "mr": -10, "ms": 20, "xpb": 10, "lb": 10, "spRegen": -5, "aDefPct": -15, "id": 702}, {"name": "Cursed Jackboots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 80, "tDef": 50, "lvl": 66, "dexReq": 20, "intReq": 20, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 120, "wDamPct": 12, "tDamPct": 12, "eDefPct": -35, "fixID": true, "id": 3630}, {"name": "Cyanine", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 90, "tDef": -120, "lvl": 73, "intReq": 55, "mdPct": -17, "int": 5, "wDamPct": 25, "tDefPct": -12, "id": 700}, {"name": "Cyclo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 21, "dexReq": 4, "agiReq": 8, "dex": 4, "agi": 8, "spd": 10, "sdRaw": 23, "mdRaw": 26, "id": 705}, {"name": "Cyclone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-45", "fDam": "0-0", "wDam": "0-0", "aDam": "30-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "agiReq": 25, "defReq": 40, "agi": 10, "spd": 25, "hprRaw": -150, "mdRaw": 45, "fDamPct": 30, "fDefPct": 8, "aDefPct": 8, "id": 703}, {"name": "Cyclops' Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-18", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "intReq": 10, "hprPct": -8, "mr": 5, "sdPct": 6, "int": 7, "sdRaw": 15, "id": 704}, {"name": "Cypress", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "9-57", "aDam": "0-0", "tDam": "0-0", "eDam": "16-50", "atkSpd": "SLOW", "lvl": 35, "strReq": 18, "intReq": 18, "sdPct": 10, "mdPct": 10, "str": 4, "int": 4, "wDamPct": 8, "eDamPct": 8, "aDefPct": -19, "id": 706}, {"name": "Czytash's Compass", "tier": "Rare", "category": "accessory", "drop": "lootchest", "eDef": 20, "lvl": 55, "lb": 6, "agi": 4, "spd": 4, "type": "bracelet", "id": 707}, {"name": "Butterfly", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 70, "lvl": 24, "agiReq": 10, "agi": 12, "spd": 6, "aDefPct": 10, "fixID": true, "id": 709}, {"name": "Widow", "tier": "Rare", "type": "relik", "poison": 2400, "thorns": 55, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "42-43", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 77, "dexReq": 40, "defReq": 30, "ls": 220, "ref": 30, "str": 40, "fixID": true, "spPct1": 105, "id": 708}, {"name": "Brise", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 135, "lvl": 24, "intReq": 12, "mr": 5, "sdPct": 15, "int": 5, "fixID": true, "id": 710}, {"name": "Garoth's Hope", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 160, "fDef": 15, "wDef": -20, "lvl": 26, "spd": -5, "fDamPct": 30, "fDefPct": 20, "fixID": true, "id": 713}, {"name": "Field", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 8, "wDef": 10, "aDef": 4, "tDef": 2, "eDef": 6, "lvl": 30, "fDamPct": 6, "wDamPct": 5, "aDamPct": 7, "tDamPct": 8, "eDamPct": 9, "type": "ring", "fixID": true, "id": 712}, {"name": "Gold Digger", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 120, "lvl": 25, "xpb": 10, "lb": 30, "spd": 3, "fixID": true, "id": 714}, {"name": "Mud", "tier": "Legendary", "type": "boots", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 280, "eDef": 20, "lvl": 28, "strReq": 15, "mdPct": 38, "str": 6, "spd": -10, "fixID": true, "id": 711}, {"name": "Nauticals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "75-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-140", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 45, "intReq": 60, "mr": 15, "sdPct": -25, "mdPct": -25, "ms": 15, "dex": 15, "int": 15, "spd": -10, "wDamPct": 30, "fixID": true, "id": 715}, {"name": "Vitre", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 26, "int": 5, "def": -5, "type": "bracelet", "fixID": true, "id": 716}, {"name": "Black Amaranth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-250", "atkSpd": "SLOW", "lvl": 95, "strReq": 60, "str": 10, "hpBonus": 1500, "hprRaw": -150, "eDamPct": 30, "eDefPct": 30, "fixID": true, "spRaw1": -10, "id": 718}, {"name": "Dying Lobelia", "tier": "Legendary", "poison": 1150, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 97, "strReq": 65, "hprPct": -20, "mdPct": 13, "wDamPct": -25, "type": "bracelet", "fixID": true, "id": 719}, {"name": "Forest Aconite", "tier": "Rare", "type": "dagger", "poison": 3300, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "strReq": 70, "hpBonus": -1000, "aDefPct": -25, "fixID": true, "spPct4": 28, "rainbowRaw": 1275, "id": 720}, {"name": "Flashfire Gauntlet", "tier": "Set", "thorns": 6, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 40, "lvl": 94, "defReq": 40, "def": 4, "hprRaw": 90, "type": "bracelet", "fixID": true, "id": 722, "set": "Flashfire"}, {"name": "Yellow Rose", "tier": "Rare", "type": "wand", "thorns": 80, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-925", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 95, "dexReq": 60, "mdPct": 15, "ls": 400, "str": 30, "int": 30, "agi": -30, "def": -30, "fixID": true, "id": 723}, {"name": "Flashfire Knuckle", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 450, "fDef": 10, "wDef": -30, "lvl": 94, "defReq": 40, "ls": 90, "sdRaw": -50, "type": "ring", "fixID": true, "id": 724, "set": "Flashfire"}, {"name": "Royal Hydrangea", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "150-175", "aDam": "140-185", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "intReq": 65, "agiReq": 65, "mr": 10, "sdPct": 65, "ref": 50, "int": 15, "agi": 25, "wDamPct": -25, "aDamPct": -25, "fixID": true, "spPct1": -105, "id": 721}, {"name": "Salpinx", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "113-167", "fDam": "0-0", "wDam": "0-0", "aDam": "113-167", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "agiReq": 77, "mr": -35, "ls": -277, "ms": 35, "agi": 21, "aDamPct": 21, "fixID": true, "spPct2": -54, "spPct3": -34, "id": 726}, {"name": "Paranoia", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "81-81", "fDam": "80-80", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "agiReq": 35, "defReq": 35, "mr": -5, "ls": 200, "ms": 10, "spd": 15, "hprRaw": -100, "fixID": true, "spPct1": -28, "id": 730}, {"name": "Byte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 91, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "type": "ring", "fixID": true, "id": 727}, {"name": "Anti-Static", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "tDef": 200, "eDef": 300, "lvl": 91, "strReq": 80, "ref": 15, "str": 10, "def": 8, "eDamPct": 15, "fDefPct": 10, "wDefPct": 5, "aDefPct": 15, "tDefPct": 30, "eDefPct": 20, "fixID": true, "id": 725}, {"name": "Discharge", "tier": "Rare", "type": "chestplate", "thorns": 15, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2800, "wDef": -100, "tDef": -50, "eDef": -150, "lvl": 91, "dexReq": 80, "dex": 10, "mdRaw": 155, "wDamPct": 10, "tDamPct": 70, "fixID": true, "id": 728}, {"name": "Compiler", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "500-685", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "strReq": 55, "mdPct": 20, "xpb": 20, "str": 20, "dex": 20, "int": 20, "agi": 20, "def": 20, "eDamPct": 20, "fixID": true, "id": 856}, {"name": "Hardcore", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-149", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 75, "ms": 5, "mdRaw": 90, "tDamPct": -20, "eDamPct": 30, "wDefPct": -20, "aDefPct": -35, "fixID": true, "spRaw3": -10, "id": 733}, {"name": "Heat Sink", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3750, "fDef": 160, "lvl": 92, "agiReq": 55, "defReq": 45, "hprPct": 25, "ls": 400, "agi": 10, "def": 5, "spd": 15, "fDamPct": 15, "aDefPct": 20, "fixID": true, "sprintReg": 10, "id": 732}, {"name": "Megabyte", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 512, "lvl": 92, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "type": "bracelet", "fixID": true, "id": 737}, {"name": "Packet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "65-185", "fDam": "0-0", "wDam": "0-0", "aDam": "155-155", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "agiReq": 50, "sdPct": 10, "agi": 5, "expd": 100, "spd": 10, "sdRaw": 210, "aDamPct": 15, "fixID": true, "id": 735}, {"name": "Sawtooth", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "20-45", "fDam": "10-35", "wDam": "10-35", "aDam": "10-35", "tDam": "10-35", "eDam": "10-35", "atkSpd": "SUPER_FAST", "lvl": 91, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 20, "mdPct": 20, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 736}, {"name": "Wick", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "58-90", "fDam": "0-0", "wDam": "0-0", "aDam": "30-55", "tDam": "20-65", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "dexReq": 55, "agiReq": 45, "ms": 10, "ref": 30, "agi": 7, "spd": 25, "aDamPct": 15, "eDamPct": -25, "tDefPct": 20, "fixID": true, "id": 741}, {"name": "Sine", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2550, "wDef": 60, "tDef": 75, "lvl": 93, "dexReq": 75, "intReq": 75, "ms": 15, "dex": 15, "int": 15, "wDamPct": 15, "tDamPct": 15, "aDefPct": -45, "fixID": true, "id": 734}, {"name": "Ensa's Faith", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "fDef": -30, "wDef": 60, "lvl": 73, "intReq": 25, "hprPct": 23, "mr": 5, "xpb": 10, "ref": 10, "spRegen": 15, "type": "necklace", "id": 2263}, {"name": "Gale's Sight", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 2000, "fDef": -140, "aDef": 210, "tDef": 140, "lvl": 80, "agiReq": 60, "xpb": 30, "ref": 30, "dex": 7, "agi": 10, "spd": 20, "aDamPct": 15, "aDefPct": 25, "spRaw2": -15, "jh": 2, "id": 2265}, {"name": "Cerid's Ingenuity", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 630, "fDef": 50, "wDef": 50, "aDef": 30, "lvl": 45, "intReq": 15, "defReq": 20, "hprPct": 18, "mr": 5, "fDamPct": 23, "wDamPct": 23, "tDefPct": -18, "eDefPct": -23, "id": 2262}, {"name": "Remikas' Authority", "tier": "Legendary", "category": "accessory", "drop": "DUNGEON", "hp": 350, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 66, "defReq": 60, "str": 3, "dex": 2, "int": 3, "agi": 2, "def": 6, "type": "bracelet", "id": 2267}, {"name": "Rycar's Elation", "tier": "Legendary", "poison": 340, "category": "accessory", "drop": "DUNGEON", "hp": -140, "lvl": 59, "str": 7, "hprRaw": -25, "type": "ring", "id": 2266}, {"name": "Ohms' Rage", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "DUNGEON", "hp": 440, "aDef": 20, "tDef": 50, "lvl": 52, "dexReq": 40, "mr": -5, "mdPct": 30, "ms": -5, "tDamPct": 30, "wDefPct": -45, "eDefPct": -55, "spPct2": -14, "spPct3": -10, "id": 2264}, {"name": "Kindled Orchid", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": -80, "eDef": -80, "lvl": 96, "dexReq": 50, "defReq": 45, "hprPct": -30, "mr": -5, "mdPct": 10, "ls": 265, "def": 10, "atkTier": 1, "sdRaw": -75, "fixID": true, "id": 740}, {"name": "Ra", "tier": "Legendary", "category": "accessory", "drop": "dungeon", "wDef": -20, "lvl": 36, "hprPct": 12, "hprRaw": 12, "fDamPct": 6, "type": "bracelet", "id": 739}, {"name": "Tisaun's Valor", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "DUNGEON", "hp": 3075, "lvl": 87, "strReq": 50, "defReq": 60, "mdPct": 15, "xpb": 20, "str": 15, "def": 10, "atkTier": 1, "id": 2268}, {"name": "Rat Skull", "tier": "Unique", "type": "helmet", "poison": 4, "category": "armor", "slots": 1, "drop": "dungeon", "hp": 40, "aDef": 3, "lvl": 10, "spd": 8, "id": 744}, {"name": "Scorpion Tail", "tier": "Rare", "type": "leggings", "poison": 135, "category": "armor", "slots": 1, "drop": "dungeon", "restrict": "Untradable", "hp": 250, "lvl": 36, "spd": 5, "id": 738}, {"name": "Witherhead's Bow", "tier": "Legendary", "type": "bow", "poison": 40, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "3-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-17", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 12, "ms": 5, "agi": -3, "sdRaw": 8, "id": 742}, {"name": "Vertebra", "tier": "Unique", "category": "accessory", "drop": "dungeon", "lvl": 8, "def": 4, "hpBonus": 8, "type": "bracelet", "id": 743}, {"name": "Arakadicus' Body", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "dungeon", "hp": 145, "aDef": -10, "eDef": 15, "lvl": 21, "xpb": 10, "lb": 10, "str": 5, "dex": 5, "agi": 10, "spd": 10, "tDamPct": 15, "eDamPct": 15, "id": 745}, {"name": "Silkwrap", "tier": "Rare", "category": "accessory", "drop": "dungeon", "hp": 15, "lvl": 17, "defReq": 5, "mdPct": -3, "spd": -3, "hprRaw": 4, "type": "ring", "id": 747}, {"name": "Spider's Eye Pendant", "tier": "Rare", "category": "accessory", "drop": "dungeon", "lvl": 20, "mdPct": 8, "dex": 4, "type": "necklace", "id": 746}, {"name": "Spider Bracelet", "tier": "Unique", "poison": 18, "category": "accessory", "drop": "dungeon", "eDef": 5, "lvl": 19, "agi": 4, "type": "bracelet", "id": 748}, {"name": "Spiderweb String", "tier": "Unique", "type": "bow", "poison": 57, "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "40-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 17, "ls": 15, "spd": -6, "id": 752}, {"name": "Webstring", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "dungeon", "nDam": "16-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "14-16", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "dexReq": 5, "ms": 5, "dex": 7, "spd": -6, "eSteal": 3, "id": 749}, {"name": "Blasphemy", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 500, "wDef": 30, "lvl": 50, "intReq": 40, "ls": 55, "ms": 30, "xpb": 10, "fixID": true, "id": 751}, {"name": "Brainfreeze", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 550, "wDef": 20, "aDef": 20, "lvl": 46, "sdPct": 18, "mdPct": 18, "int": -10, "spRegen": 10, "fixID": true, "id": 756}, {"name": "Criistal", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 49, "xpb": 15, "lb": 10, "spd": 5, "type": "necklace", "fixID": true, "id": 757}, {"name": "Heartbreak", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 550, "tDef": 30, "lvl": 49, "dexReq": 50, "dex": 5, "atkTier": 1, "tDamPct": 10, "fixID": true, "id": 753}, {"name": "Iron Foot", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "lvl": 49, "strReq": 35, "mdPct": 25, "str": 8, "spd": -10, "eDamPct": 15, "fDefPct": -10, "eDefPct": 20, "fixID": true, "id": 758}, {"name": "Hearthfire", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 48, "defReq": 30, "ls": 50, "def": 7, "fDefPct": 45, "fixID": true, "id": 754}, {"name": "Shade", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 450, "aDef": 40, "lvl": 48, "agiReq": 30, "agi": 10, "spd": 20, "fDamPct": -10, "wDamPct": -10, "aDamPct": 25, "tDamPct": -10, "eDamPct": -10, "fixID": true, "id": 755}, {"name": "Vapor", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 45, "intReq": 35, "fDamPct": 15, "wDamPct": -10, "fDefPct": 15, "type": "ring", "fixID": true, "id": 760}, {"name": "Barbed", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "dexReq": 50, "mdPct": 10, "ref": 20, "def": 5, "tDamPct": 15, "tDefPct": 10, "fixID": true, "id": 759}, {"name": "Cuthroat", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-65", "fDam": "65-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "defReq": 40, "ls": 75, "def": 5, "hpBonus": 980, "fixID": true, "id": 761}, {"name": "Jungle Spirit", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "agiReq": 45, "agi": 10, "spd": 10, "aDamPct": 22, "fixID": true, "id": 764}, {"name": "Granite Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 800, "lvl": 55, "strReq": 40, "sdPct": -30, "mdPct": 40, "spd": -15, "eDamPct": 10, "fixID": true, "id": 763}, {"name": "Fetish", "tier": "Rare", "type": "leggings", "poison": 250, "thorns": 10, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 700, "tDef": 30, "lvl": 55, "dexReq": 35, "dex": 5, "spd": 5, "mdRaw": 90, "tDamPct": 10, "fixID": true, "id": 762}, {"name": "Lobotomy", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 640, "aDef": 40, "lvl": 54, "agiReq": 35, "int": -20, "agi": 5, "spd": 10, "aDamPct": 25, "fixID": true, "id": 768}, {"name": "Molten Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 80, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 56, "defReq": 30, "hprPct": 10, "str": 4, "fDamPct": 15, "eDamPct": 15, "fixID": true, "id": 765}, {"name": "Sacrificial", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "79-95", "eDam": "80-85", "atkSpd": "NORMAL", "lvl": 55, "strReq": 30, "dexReq": 30, "ls": 85, "ms": 5, "tDamPct": 10, "eDamPct": 10, "fixID": true, "spRaw1": -5, "id": 770}, {"name": "Admiral", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 45, "wDef": 45, "aDef": 45, "tDef": 45, "eDef": 45, "lvl": 67, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "xpb": 15, "lb": 20, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "fixID": true, "id": 771}, {"name": "Whirlwind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "55-80", "fDam": "0-0", "wDam": "0-0", "aDam": "50-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "agiReq": 40, "sdPct": 7, "ref": 40, "spd": 10, "aDamPct": 6, "wDefPct": 20, "aDefPct": 20, "fixID": true, "id": 767}, {"name": "Piranha", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "dungeon", "restrict": "Untradable", "hp": 470, "wDef": 20, "lvl": 56, "intReq": 35, "ms": 10, "dex": 5, "agi": 5, "wDamPct": 25, "fixID": true, "id": 766}, {"name": "Algaa", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-330", "atkSpd": "VERY_SLOW", "lvl": 64, "strReq": 40, "lb": 10, "str": 5, "int": 5, "wDamPct": 16, "fixID": true, "id": 774}, {"name": "Grounder", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "SLOW", "lvl": 64, "strReq": 40, "sdPct": -5, "mdPct": 10, "xpb": 18, "tDamPct": 10, "fixID": true, "id": 769}, {"name": "Ouragan", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "35-50", "fDam": "0-0", "wDam": "40-80", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 35, "mr": 10, "sdPct": 15, "agi": 4, "spd": 5, "aDamPct": 10, "fixID": true, "id": 772}, {"name": "Redbeard's Hand Cannon", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "960-1223", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 66, "strReq": 10, "lb": 30, "expd": 40, "spd": -20, "eSteal": 10, "fixID": true, "id": 776}, {"name": "The Evolved", "tier": "Legendary", "type": "bow", "poison": 3500, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_FAST", "lvl": 100, "strReq": 75, "hprPct": -80, "str": 25, "hpBonus": 2250, "mdRaw": 550, "fixID": true, "spRaw1": -20, "id": 777}, {"name": "Gaping Cavity", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "fDef": -80, "lvl": 100, "dexReq": 10, "ls": 1200, "ms": 20, "fixID": true, "id": 775}, {"name": "Rumble", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "6-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 64, "dexReq": 40, "mdPct": 10, "ls": 105, "eSteal": 5, "fDamPct": -10, "wDamPct": -10, "tDamPct": 15, "fixID": true, "id": 778}, {"name": "The Exploited", "tier": "Legendary", "type": "dagger", "majorIds": ["GREED"], "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "45-65", "wDam": "0-0", "aDam": "25-85", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 100, "agiReq": 40, "defReq": 65, "sdPct": -30, "spd": 12, "eSteal": 10, "mdRaw": 135, "fixID": true, "spRaw4": -15, "id": 779}, {"name": "The Forsaken", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "55-100", "fDam": "0-0", "wDam": "28-65", "aDam": "28-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 100, "intReq": 60, "agiReq": 60, "mr": -15, "ms": 15, "int": 10, "spd": 15, "sdRaw": 210, "tDamPct": 30, "fDefPct": -50, "eDefPct": -50, "fixID": true, "id": 780}, {"name": "The Watched", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "57-63", "wDam": "45-50", "aDam": "57-63", "tDam": "57-63", "eDam": "57-63", "atkSpd": "FAST", "lvl": 100, "strReq": 30, "dexReq": 30, "intReq": 30, "agiReq": 30, "defReq": 30, "sdPct": -25, "hpBonus": 5000, "wDamPct": 35, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "tDefPct": 25, "eDefPct": 25, "fixID": true, "spRaw1": -5, "id": 783}, {"name": "Sprout", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-130", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 30, "sdPct": -25, "mdPct": 25, "spd": -25, "eDamPct": 12, "fixID": true, "id": 786}, {"name": "Clunderthap", "tier": "Rare", "type": "wand", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-29", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 20, "xpb": 20, "dex": 5, "hpBonus": -50, "tDamPct": 20, "fixID": true, "id": 784}, {"name": "Writhing Growth", "tier": "Legendary", "type": "leggings", "poison": 998, "thorns": 51, "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4204, "fDef": 129, "tDef": 97, "eDef": 106, "lvl": 100, "strReq": 49, "dexReq": 31, "defReq": 37, "agi": -43, "atkTier": -6, "mdRaw": 1997, "fixID": true, "spPct1": 23, "spPct2": 15, "spPct3": 32, "spPct4": 23, "id": 782}, {"name": "Chaser", "tier": "Legendary", "type": "bow", "poison": 150, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-24", "fDam": "0-0", "wDam": "0-0", "aDam": "39-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "agiReq": 30, "agi": 10, "spd": 30, "fixID": true, "id": 785}, {"name": "Hashr Claw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-50", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 39, "dexReq": 30, "xpb": 10, "spd": 10, "sdRaw": 40, "wDamPct": 10, "fixID": true, "id": 790}, {"name": "Dune Beast Jaw", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 400, "lvl": 36, "strReq": 15, "mdPct": 10, "str": 10, "spd": 5, "fixID": true, "id": 787}, {"name": "Miasma", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "20-40", "fDam": "0-0", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 35, "ls": 39, "ms": 15, "agi": 3, "spd": 10, "fixID": true, "id": 802}, {"name": "Jaw Breaker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "105-135", "atkSpd": "VERY_SLOW", "lvl": 38, "strReq": 25, "mdPct": 10, "xpb": 10, "str": 8, "expd": 15, "spd": -5, "fixID": true, "id": 788}, {"name": "Springtrap", "tier": "Legendary", "type": "chestplate", "thorns": 65, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 650, "eDef": 50, "lvl": 39, "hprPct": -25, "ref": 50, "expd": 40, "fixID": true, "id": 791}, {"name": "Tremolo", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "35-36", "tDam": "34-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "dexReq": 13, "agiReq": 13, "xpb": 11, "lb": 11, "str": -11, "dex": 11, "agi": 11, "fixID": true, "jh": 1, "id": 750}, {"name": "Sol", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-30", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 15, "hprPct": 12, "ref": 10, "hpBonus": 360, "hprRaw": 21, "eDamPct": 10, "fixID": true, "id": 794}, {"name": "Corpse", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-9", "atkSpd": "SLOW", "lvl": 8, "mdPct": 6, "lb": 6, "str": 1, "fixID": true, "id": 793}, {"name": "Defibrillator", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "4-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-15", "eDam": "0-0", "atkSpd": "FAST", "lvl": 9, "dex": 4, "mdRaw": 9, "tDamPct": 7, "fixID": true, "id": 792}, {"name": "Knee", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 38, "lvl": 9, "xpb": 5, "agi": 5, "fixID": true, "id": 797}, {"name": "Macabre", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "untradable", "nDam": "10-12", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "ls": 6, "def": 3, "fDamPct": 6, "fixID": true, "id": 798}, {"name": "Serpent's Kiss", "tier": "Rare", "type": "wand", "poison": 40, "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "agi": 3, "fixID": true, "id": 795}, {"name": "Ribcage", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 58, "wDef": -3, "aDef": -3, "eDef": 5, "lvl": 12, "hprRaw": 5, "eDamPct": 6, "fixID": true, "id": 796}, {"name": "Sketiq", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "1-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "agi": 3, "spd": 5, "aDamPct": 6, "fixID": true, "id": 800}, {"name": "Skull Breaker", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "40-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 10, "sdPct": -6, "mdPct": 8, "spd": -3, "fixID": true, "id": 801}, {"name": "Fangs", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "8-12", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "sdPct": 7, "ms": 5, "xpb": 6, "int": 2, "fixID": true, "id": 799}, {"name": "Stale", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 9, "sdPct": 10, "int": 3, "wDamPct": 6, "fixID": true, "id": 803}, {"name": "Witherhead's Talisman", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 12, "sdPct": 5, "xpb": 8, "lb": 5, "type": "necklace", "fixID": true, "id": 804}, {"name": "Hourglass", "tier": "Rare", "type": "relik", "poison": 135, "thorns": 18, "category": "weapon", "drop": "never", "restrict": "untradable", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "agi": 4, "fixID": true, "spPct1": 105, "id": 805}, {"name": "Iklaj", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "9-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "agiReq": 5, "str": -3, "dex": 2, "agi": 4, "spd": 10, "tDamPct": 8, "fixID": true, "id": 812}, {"name": "Abdomen", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 20, "agi": 4, "spd": 7, "fixID": true, "id": 806, "set": "Spider"}, {"name": "Maul", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "86-114", "atkSpd": "SUPER_SLOW", "lvl": 21, "strReq": 10, "mr": -5, "mdPct": 10, "spd": -6, "fixID": true, "id": 807}, {"name": "Cephalothorax", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 75, "lvl": 16, "dex": 4, "spd": 7, "fixID": true, "id": 809, "set": "Spider"}, {"name": "Spinneret", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 95, "lvl": 19, "dex": 3, "agi": 3, "spd": 7, "fixID": true, "id": 808, "set": "Spider"}, {"name": "Stingy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "wDef": -5, "lvl": 20, "wDamPct": -8, "tDamPct": 17, "fixID": true, "id": 813}, {"name": "Spider Ring", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 3, "lvl": 18, "ls": 3, "spd": 3, "type": "ring", "fixID": true, "id": 811}, {"name": "Sting", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "10-18", "fDam": "14-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "defReq": 5, "ls": 10, "fixID": true, "id": 814}, {"name": "Web Plate", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 50, "fDef": -10, "eDef": 5, "lvl": 22, "ls": 16, "ms": 10, "spd": -10, "eDamPct": 5, "fixID": true, "id": 810}, {"name": "Abolition", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "50-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "defReq": 15, "ls": 38, "xpb": 22, "lb": 22, "fDamPct": 10, "fixID": true, "id": 816}, {"name": "Black Ripper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 250, "wDef": -10, "lvl": 30, "dexReq": 15, "mdRaw": 43, "tDamPct": 20, "fixID": true, "id": 820}, {"name": "Cathedral", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "14-24", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "agiReq": 20, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "aDefPct": 10, "fixID": true, "id": 817}, {"name": "Damnation", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "defReq": 20, "xpb": 10, "def": 4, "mdRaw": 70, "fDamPct": 32, "fixID": true, "id": 818}, {"name": "Dead Samurai's Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 150, "fDef": 10, "wDef": 10, "aDef": 12, "lvl": 27, "agiReq": 10, "xpb": 8, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fixID": true, "id": 819}, {"name": "Hymn of the Dead", "tier": "Legendary", "type": "wand", "poison": 220, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "spd": 10, "aDamPct": 20, "fixID": true, "id": 823}, {"name": "Death's Reach", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "42-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "44-55", "atkSpd": "SLOW", "lvl": 29, "strReq": 10, "sdPct": -20, "mdPct": 20, "str": 4, "spd": -50, "eDamPct": 35, "fixID": true, "id": 822}, {"name": "Sanies", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "20-42", "fDam": "0-0", "wDam": "20-42", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "intReq": 15, "sdPct": 40, "ms": -10, "wDamPct": 5, "eDamPct": 10, "fixID": true, "id": 821}, {"name": "Putrid", "tier": "Rare", "type": "wand", "poison": 60, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "14-18", "aDam": "0-0", "tDam": "0-0", "eDam": "16-22", "atkSpd": "NORMAL", "lvl": 28, "spd": -3, "hpBonus": 150, "fixID": true, "id": 825}, {"name": "Thriller", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "6-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 28, "dexReq": 20, "ms": 5, "spd": 8, "hpBonus": -100, "sdRaw": 40, "tDamPct": 13, "tDefPct": 13, "fixID": true, "id": 824}, {"name": "Styx's Grab", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "15-25", "fDam": "0-0", "wDam": "20-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "intReq": 12, "sdPct": 20, "ls": 24, "ms": 10, "fixID": true, "id": 826}, {"name": "Dalaam", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1480, "fDef": -75, "aDef": 75, "tDef": -75, "eDef": 75, "lvl": 67, "strReq": 30, "agiReq": 30, "mdPct": 10, "str": 10, "agi": 10, "spd": 10, "eDamPct": 10, "aDefPct": 10, "id": 828}, {"name": "Damasse", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 2, "lb": 6, "int": 3, "hpBonus": 3, "id": 827}, {"name": "Dance Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "fDef": -10, "aDef": 15, "eDef": -10, "lvl": 46, "agiReq": 20, "agi": 5, "spd": 11, "fDamPct": -5, "aDamPct": 5, "eDamPct": -5, "id": 829}, {"name": "Web Spitter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "13-26", "fDam": "0-0", "wDam": "14-20", "aDam": "10-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "agi": 3, "spd": 10, "aDamPct": 6, "fixID": true, "id": 815}, {"name": "Dancing Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-55", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "agiReq": 45, "ref": 15, "agi": 10, "spd": 15, "aDamPct": 15, "fDefPct": -15, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 832}, {"name": "Dancer's Rhythm", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-75", "fDam": "0-0", "wDam": "0-0", "aDam": "20-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "agiReq": 20, "agi": 7, "def": -5, "spd": 15, "id": 830}, {"name": "Dandelion", "tier": "Unique", "type": "chestplate", "thorns": 12, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "wDef": 5, "aDef": -6, "eDef": 5, "lvl": 22, "hprPct": 15, "sdRaw": 10, "id": 831}, {"name": "Dapper Trilby", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "lvl": 9, "xpb": 5, "lb": 4, "int": 3, "id": 833}, {"name": "Dark Ambience", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 4, "ls": 5, "lb": 7, "id": 835}, {"name": "Dark Channeler", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "wDef": 90, "aDef": -100, "tDef": 90, "eDef": -100, "lvl": 93, "dexReq": 45, "intReq": 45, "mr": 5, "sdPct": 7, "ms": 5, "spRegen": -5, "sdRaw": 148, "wDamPct": 16, "tDamPct": 16, "aDefPct": -40, "eDefPct": -40, "id": 834}, {"name": "Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-14", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 6, "ms": 5, "eDefPct": -5, "id": 839}, {"name": "Dark Mage Robes", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "wDef": 30, "tDef": 30, "lvl": 52, "dexReq": 15, "intReq": 15, "mr": 5, "sdPct": 10, "mdPct": -10, "ms": 5, "wDamPct": 12, "tDamPct": 12, "fDefPct": -10, "aDefPct": -10, "eDefPct": -10, "id": 841}, {"name": "Dark Shroud", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2675, "aDef": 50, "tDef": 70, "lvl": 82, "dexReq": 15, "agiReq": 50, "sdPct": -15, "mdPct": -20, "ms": 5, "ref": 30, "dex": 15, "agi": 35, "spd": 25, "aDefPct": 40, "id": 836}, {"name": "Karma", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "intReq": 25, "mr": 10, "sdPct": 108, "int": 6, "wDamPct": 10, "aDamPct": 20, "fixID": true, "id": 789}, {"name": "Darkiron Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "defReq": 5, "def": 4, "spd": -3, "hprRaw": 5, "type": "ring", "id": 837}, {"name": "Darkiron Scrap", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 25, "lvl": 3, "def": 7, "spd": -4, "hprRaw": 3, "id": 838}, {"name": "Darksteel Full Helm", "tier": "Rare", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2475, "fDef": 100, "wDef": -120, "tDef": 100, "eDef": -80, "lvl": 90, "dexReq": 45, "defReq": 45, "ref": 15, "str": 10, "dex": 10, "def": 10, "spd": 15, "atkTier": -15, "mdRaw": 1050, "fDamPct": 15, "wDamPct": -15, "tDamPct": 15, "id": 840}, {"name": "Darksteel Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 450, "fDef": 40, "wDef": -30, "tDef": 40, "eDef": -30, "lvl": 96, "dexReq": 20, "defReq": 40, "dex": 5, "def": 4, "spd": -7, "hpBonus": 200, "type": "ring", "id": 862}, {"name": "Darkiron Zweihander", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-125", "fDam": "50-125", "wDam": "0-0", "aDam": "50-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 36, "agiReq": 15, "defReq": 25, "mdPct": 10, "ls": 39, "def": 7, "wDamPct": -15, "fDefPct": 20, "aDefPct": 20, "id": 843}, {"name": "Daybreak", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-50", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "10-60", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 40, "dexReq": 10, "defReq": 15, "hprPct": 10, "sdPct": 15, "lb": 10, "spd": -15, "atkTier": -1, "hpBonus": 125, "wDamPct": -15, "id": 881}, {"name": "Dart Frog's Skin", "tier": "Unique", "type": "boots", "poison": 3000, "thorns": 25, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "fDef": 60, "aDef": -130, "eDef": 70, "lvl": 85, "strReq": 40, "defReq": 35, "sdPct": -10, "mdPct": -50, "ref": 20, "str": 4, "agi": 7, "spd": 12, "atkTier": -1, "tDefPct": -20, "id": 874}, {"name": "Darkweaver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "250-380", "aDam": "0-0", "tDam": "250-380", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 89, "dexReq": 40, "intReq": 40, "mr": -15, "sdPct": 19, "ms": 10, "ref": 17, "spd": -10, "wDamPct": 17, "tDamPct": 17, "eDefPct": -17, "id": 842}, {"name": "Dart Sling", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 8, "sdPct": 6, "dex": 4, "id": 844}, {"name": "Dead Man's Flats", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 620, "fDef": 40, "wDef": -75, "aDef": 30, "lvl": 55, "agiReq": 25, "defReq": 25, "hprPct": -10, "mdPct": 9, "spd": -9, "fDamPct": 12, "aDefPct": 11, "id": 845}, {"name": "Death Growl", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "str": 6, "id": 851}, {"name": "Deathbringer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-120", "eDam": "82-100", "atkSpd": "SLOW", "lvl": 83, "strReq": 35, "dexReq": 35, "mr": -5, "sdPct": 16, "mdPct": 22, "ls": 205, "ms": 5, "spd": -7, "hprRaw": -95, "id": 849}, {"name": "Dead Sands", "tier": "Legendary", "type": "leggings", "poison": 145, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "lvl": 32, "hprPct": -35, "mdPct": 12, "ls": 26, "hpBonus": -100, "fDefPct": 15, "wDefPct": -20, "id": 847}, {"name": "Death's Toe", "tier": "Unique", "type": "boots", "poison": 110, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "eDef": -35, "lvl": 49, "dexReq": 10, "ls": 28, "ms": 10, "id": 846}, {"name": "Decoder Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "intReq": 8, "sdPct": 6, "xpb": 9, "lb": 6, "type": "ring", "id": 855}, {"name": "Deathsplinter", "tier": "Unique", "type": "wand", "poison": 1420, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-170", "eDam": "0-170", "atkSpd": "SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "ls": 725, "ms": 5, "str": 25, "dex": 25, "hprRaw": -500, "aDefPct": -30, "id": 850}, {"name": "Deepwood Root", "tier": "Unique", "type": "wand", "thorns": 6, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "50-75", "atkSpd": "SLOW", "lvl": 86, "strReq": 30, "intReq": 35, "mr": 5, "sdPct": 10, "wDamPct": 8, "fDefPct": -20, "eDefPct": 12, "id": 848}, {"name": "Defiance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "aDef": 50, "lvl": 60, "agiReq": 40, "defReq": 40, "sdPct": -8, "mdPct": -8, "agi": 8, "def": 8, "spd": -12, "wDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 854}, {"name": "Deja Vu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "82-94", "wDam": "82-94", "aDam": "82-94", "tDam": "7-7", "eDam": "7-7", "atkSpd": "NORMAL", "lvl": 86, "strReq": 32, "dexReq": 32, "ls": 100, "lb": 25, "spd": 15, "hprRaw": -100, "fDamPct": -21, "wDamPct": -21, "aDamPct": -21, "tDamPct": 51, "eDamPct": 51, "id": 853}, {"name": "Delirium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "aDef": -200, "tDef": 125, "eDef": 70, "lvl": 87, "strReq": 50, "dexReq": 60, "mdPct": 14, "ls": -275, "ms": 5, "str": 13, "spd": 50, "tDamPct": 22, "eDamPct": 22, "id": 857}, {"name": "Demeter", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -90, "aDef": 50, "eDef": 40, "lvl": 68, "strReq": 35, "agiReq": 35, "agi": 7, "def": -8, "spd": 8, "mdRaw": 165, "fDamPct": -40, "eDamPct": 16, "aDefPct": 12, "id": 859}, {"name": "Deluge", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 700, "lvl": 56, "strReq": 45, "dexReq": 15, "mdPct": 12, "dex": 4, "mdRaw": 100, "tDamPct": 12, "eDamPct": 6, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 852}, {"name": "Dematerialized", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-61", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "intReq": 15, "agiReq": 40, "mr": 5, "ms": 5, "agi": 8, "spd": 16, "hpBonus": -180, "fDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 861}, {"name": "Demon Seeker", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "sdPct": 20, "xpb": 20, "lb": 20, "ref": 10, "id": 858}, {"name": "Demon Tide", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2625, "fDef": 65, "wDef": -200, "tDef": 65, "lvl": 87, "dexReq": 65, "defReq": 45, "sdPct": -45, "mdPct": -40, "int": 10, "fDamPct": 10, "wDamPct": 20, "tDamPct": 10, "spPct1": -21, "spPct2": -14, "spPct3": -17, "spPct4": -21, "id": 860}, {"name": "Demon's Will", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-145", "fDam": "90-170", "wDam": "0-0", "aDam": "0-0", "tDam": "90-170", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "dexReq": 35, "defReq": 35, "ls": 440, "ms": 10, "expd": 5, "spRegen": -5, "sdRaw": 135, "fDamPct": 12, "tDamPct": 15, "wDefPct": -12, "aDefPct": -12, "id": 863}, {"name": "Depressing Shears", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 865}, {"name": "Depressing Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 864}, {"name": "Depressing Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 867}, {"name": "Deracine", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "mdPct": -20, "int": 5, "hpBonus": -50, "wDamPct": 12, "wDefPct": 10, "id": 869}, {"name": "Depressing Stick", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-1", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 866}, {"name": "Derecho", "tier": "Rare", "sprint": 9, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -60, "lvl": 85, "agiReq": 65, "agi": 13, "aDamPct": -7, "type": "necklace", "id": 3603}, {"name": "Dern's Desolation", "tier": "Rare", "type": "spear", "poison": 100, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-24", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 29, "dexReq": 15, "mr": 5, "ms": 5, "aDamPct": -15, "id": 868}, {"name": "Dern's Shadow", "tier": "Rare", "type": "spear", "poison": 24, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "id": 873}, {"name": "Despair", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-80", "fDam": "0-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "dexReq": 25, "defReq": 25, "hprPct": -13, "sdPct": 13, "ls": 75, "ms": 5, "spRegen": -7, "wDamPct": -13, "id": 872}, {"name": "Deserter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-90", "fDam": "0-0", "wDam": "0-0", "aDam": "55-105", "tDam": "0-0", "eDam": "65-95", "atkSpd": "NORMAL", "lvl": 90, "strReq": 35, "agiReq": 35, "xpb": 8, "str": 16, "agi": 16, "spd": 8, "wDamPct": -20, "aDamPct": 12, "eDefPct": 12, "id": 870}, {"name": "Requiem", "displayName": "Desperado", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "12-40", "fDam": "13-91", "wDam": "0-0", "aDam": "0-0", "tDam": "22-30", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "dexReq": 40, "defReq": 50, "ms": 10, "agi": -10, "hpBonus": -1250, "sdRaw": 115, "fDamPct": 23, "wDamPct": -25, "tDamPct": 12, "eDefPct": -20, "id": 871}, {"name": "Detlas' Legacy", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-25", "fDam": "0-0", "wDam": "10-15", "aDam": "0-0", "tDam": "5-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "dexReq": 10, "intReq": 5, "sdPct": 12, "mdPct": -5, "xpb": 8, "dex": 5, "int": 5, "wDamPct": 7, "id": 875}, {"name": "Determination", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 78, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 30, "sdPct": -30, "mdPct": -30, "spRegen": 10, "hprRaw": 120, "id": 877}, {"name": "Detlas' Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 172, "wDef": 20, "tDef": -15, "lvl": 29, "intReq": 5, "defReq": 5, "xpb": 15, "lb": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": -5, "id": 879}, {"name": "Detlas' Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-5", "fDam": "0-0", "wDam": "1-3", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 7, "mr": 5, "xpb": 6, "int": 4, "id": 876}, {"name": "Deux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "fDef": -80, "wDef": 150, "aDef": -80, "tDef": 150, "eDef": -80, "lvl": 81, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 5, "mdPct": -20, "ms": 10, "str": -4, "dex": 6, "int": 6, "agi": -4, "def": -4, "spRegen": 5, "id": 913}, {"name": "Devilish", "tier": "Rare", "poison": 192, "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": -15, "lvl": 52, "dexReq": 5, "defReq": 10, "ls": 29, "expd": 5, "hpBonus": -90, "spRegen": -5, "type": "bracelet", "id": 884}, {"name": "Devil's Scissor", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-24", "fDam": "16-24", "wDam": "0-0", "aDam": "0-0", "tDam": "16-24", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 31, "dexReq": 10, "defReq": 10, "mdPct": 5, "ls": 25, "str": 7, "id": 878}, {"name": "Devotion", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 15, "lvl": 58, "hprPct": 5, "sdPct": 5, "spRegen": 5, "mdRaw": -16, "type": "necklace", "id": 883}, {"name": "Dhoruba", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "dexReq": 40, "ms": 10, "xpb": 15, "lb": 15, "str": -8, "dex": 8, "aDefPct": -30, "tDefPct": 15, "eDefPct": 15, "id": 882}, {"name": "Diablo", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-80", "fDam": "60-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "strReq": 10, "defReq": 30, "sdPct": -24, "mdPct": 36, "def": 7, "expd": 33, "spd": -10, "fDamPct": 25, "wDamPct": -50, "wDefPct": -30, "id": 888}, {"name": "Devoreuse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "58-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "hprPct": 10, "mr": 5, "ls": 41, "ms": 5, "int": -3, "wDamPct": -15, "id": 880}, {"name": "Diaminar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-70", "fDam": "320-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "defReq": 50, "ls": 315, "def": 8, "spd": -5, "hpBonus": 1500, "wDamPct": -14, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 886}, {"name": "Diamond Sky", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 15, "xpb": 8, "lb": 18, "id": 885}, {"name": "Diamond Dust", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2375, "lvl": 93, "xpb": 19, "lb": 34, "ref": 19, "fDefPct": -11, "wDefPct": -11, "aDefPct": -11, "tDefPct": -11, "eDefPct": -11, "id": 887}, {"name": "Digested Dagger", "tier": "Unique", "type": "dagger", "poison": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 16, "str": 3, "dex": 3, "id": 892}, {"name": "Diet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 17, "agiReq": 5, "str": -2, "agi": 4, "spd": 6, "type": "ring", "id": 890}, {"name": "Diode", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "lvl": 24, "dexReq": 10, "ref": 6, "dex": 5, "spd": 4, "tDamPct": 10, "id": 891}, {"name": "Dionaea", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3850, "fDef": 80, "eDef": 110, "lvl": 96, "strReq": 40, "defReq": 40, "sdPct": -8, "mdPct": 12, "ls": 225, "mdRaw": 195, "wDefPct": 25, "aDefPct": -15, "tDefPct": -10, "id": 889}, {"name": "Diorite Boots", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "fDef": 20, "wDef": -40, "eDef": 15, "lvl": 40, "strReq": 25, "defReq": 15, "mdPct": 12, "def": 8, "expd": 6, "fDamPct": 12, "eDamPct": 12, "wDefPct": -24, "id": 894}, {"name": "Disappeared", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -50, "aDef": 10, "lvl": 26, "agiReq": 8, "agi": 7, "type": "necklace", "id": 895}, {"name": "Dirge", "tier": "Unique", "type": "wand", "poison": 485, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "55-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "strReq": 20, "agiReq": 10, "ls": 110, "str": 7, "agi": -2, "aDamPct": -10, "eDamPct": 20, "id": 893}, {"name": "Disco", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "lvl": 27, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spd": 11, "id": 896}, {"name": "Discordant", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 92, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": -7, "wDefPct": -7, "aDefPct": -7, "tDefPct": -7, "eDefPct": -7, "type": "bracelet", "id": 897}, {"name": "Discord", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 370, "fDef": -15, "wDef": -15, "aDef": -15, "eDef": -30, "lvl": 40, "dexReq": 40, "sdPct": 6, "mdPct": 6, "dex": 7, "expd": 10, "spd": 6, "tDamPct": 20, "id": 899}, {"name": "Dislocater", "tier": "Legendary", "type": "dagger", "thorns": 7, "category": "weapon", "drop": "NORMAL", "nDam": "31-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "sdPct": -10, "mdPct": 12, "str": 7, "id": 900}, {"name": "Discotek", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-33", "wDam": "23-33", "aDam": "23-33", "tDam": "23-33", "eDam": "23-33", "atkSpd": "FAST", "lvl": 49, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "sdPct": 15, "mdPct": 15, "spd": 10, "hpBonus": -300, "spPct1": 25, "spPct3": -24, "jh": 1, "id": 898}, {"name": "Dissector", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-51", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "ls": 55, "xpb": 5, "lb": 5, "spd": 5, "id": 902}, {"name": "Djinni", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "140-170", "wDam": "0-0", "aDam": "160-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "agiReq": 35, "defReq": 40, "hprPct": 20, "sdPct": 16, "mdPct": -30, "lb": 15, "hprRaw": 160, "fDamPct": 25, "id": 904}, {"name": "Dizzy Spell", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2750, "fDef": -120, "aDef": 120, "tDef": -120, "eDef": 120, "lvl": 88, "strReq": 50, "agiReq": 50, "mr": -10, "ls": 215, "ms": 10, "str": 9, "agi": 9, "spd": 16, "mdRaw": 215, "id": 901}, {"name": "Dofotri", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 1, "spd": 5, "type": "ring", "id": 905}, {"name": "Dolomite", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 830, "aDef": -50, "eDef": 50, "lvl": 57, "strReq": 35, "sdPct": -10, "mdPct": 12, "lb": 7, "expd": 15, "spd": -10, "eDamPct": 8, "id": 903}, {"name": "Doppler", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": -45, "aDef": 30, "tDef": 30, "eDef": -45, "lvl": 50, "dexReq": 25, "agiReq": 25, "sdPct": 4, "def": -5, "spd": 15, "aDamPct": 12, "tDamPct": 12, "fDefPct": -13, "id": 907}, {"name": "Doomsday", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "strReq": 40, "dexReq": 15, "mr": -5, "mdPct": 10, "ms": 5, "dex": 8, "wDamPct": -20, "eDamPct": 20, "id": 906}, {"name": "Double Vision", "tier": "Fabled", "quest": "Realm of Light V - The Realm of Light", "majorIds": ["LIGHTWEIGHT"], "sprint": 11, "category": "accessory", "drop": "never", "hp": -750, "aDef": -50, "lvl": 79, "xpb": 17, "agi": 3, "spd": 11, "type": "bracelet", "sprintReg": 11, "jh": 3, "id": 3581}, {"name": "Dorian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-106", "fDam": "100-106", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "defReq": 45, "hprPct": 15, "sdPct": 12, "mdPct": -10, "ls": -105, "def": 8, "hprRaw": 45, "wDamPct": -19, "id": 909}, {"name": "Doubt", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "530-600", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "560-670", "atkSpd": "SUPER_SLOW", "lvl": 93, "strReq": 35, "defReq": 50, "mdPct": 15, "fDamPct": 35, "wDamPct": -55, "aDamPct": -55, "tDamPct": -25, "fDefPct": 25, "wDefPct": 15, "tDefPct": 15, "eDefPct": 20, "id": 935}, {"name": "Downfall", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -600, "wDef": -35, "aDef": -35, "lvl": 98, "strReq": 60, "defReq": 55, "str": 6, "spd": 12, "mdRaw": 70, "fDamPct": 8, "eDamPct": 8, "type": "ring", "id": 910}, {"name": "Paradox", "displayName": "Dragon Dance", "tier": "Rare", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "fDef": 30, "wDef": 30, "aDef": 150, "tDef": 30, "eDef": -150, "lvl": 98, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 15, "sdPct": 21, "mdPct": -50, "ls": -235, "ms": 5, "str": -99, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 20, "hprRaw": -195, "sdRaw": 145, "eDefPct": -20, "jh": 1, "id": 2092}, {"name": "Dragon Hide Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 510, "fDef": 50, "wDef": -50, "lvl": 47, "defReq": 25, "sdPct": 5, "lb": 5, "str": 7, "def": 7, "expd": 3, "fDamPct": 10, "wDamPct": -50, "fDefPct": 10, "wDefPct": -20, "id": 912}, {"name": "Dragon Fang", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "4-18", "fDam": "22-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "defReq": 15, "xpb": 5, "def": 7, "expd": 10, "fDamPct": 10, "wDamPct": -20, "fDefPct": 10, "id": 908}, {"name": "Dragon Hide Plate", "tier": "Rare", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2000, "fDef": 100, "lvl": 82, "hprPct": 20, "mr": 5, "xpb": 20, "def": 10, "expd": 20, "fDamPct": 20, "fDefPct": 20, "id": 911}, {"name": "Dragon Slayer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-80", "fDam": "60-70", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 79, "defReq": 40, "xpb": 7, "hpBonus": 500, "fDamPct": 5, "aDamPct": 10, "id": 914}, {"name": "Dragon Skin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": 30, "wDef": -20, "lvl": 57, "defReq": 10, "sdPct": 5, "lb": 15, "fDamPct": 7, "wDamPct": -10, "id": 915}, {"name": "Dragon's Tongue", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-110", "wDam": "70-110", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "intReq": 55, "defReq": 55, "hprPct": 46, "mr": 10, "sdPct": -24, "mdPct": -24, "int": 10, "def": 10, "hprRaw": 131, "tDamPct": -45, "eDamPct": -45, "id": 918}, {"name": "Draken", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "tDef": 70, "eDef": -100, "lvl": 70, "dexReq": 65, "ms": 10, "str": -7, "dex": 9, "tDamPct": 18, "eDamPct": -12, "tDefPct": 10, "eDefPct": -12, "id": 919}, {"name": "Drale's Hide", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 38, "eDef": 5, "lvl": 9, "mdPct": 4, "str": 4, "spd": 6, "id": 917}, {"name": "Dread", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "sdPct": 4, "dex": 3, "spd": 4, "hpBonus": -18, "id": 921}, {"name": "Dravarden", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 950, "fDef": 30, "wDef": 30, "tDef": 30, "lvl": 56, "dexReq": 15, "intReq": 15, "defReq": 15, "hprPct": 20, "mr": 5, "sdPct": 15, "dex": 7, "int": 7, "def": 7, "aDamPct": -40, "eDamPct": -40, "aDefPct": -25, "eDefPct": -25, "id": 916}, {"name": "Dreamcloud", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 70, "wDef": 70, "aDef": 70, "tDef": 70, "eDef": 70, "lvl": 88, "intReq": 30, "agiReq": 30, "hprPct": 20, "mr": 10, "hprRaw": 160, "fDamPct": -8, "wDamPct": -2, "aDamPct": -2, "tDamPct": -8, "eDamPct": -5, "id": 922}, {"name": "Drifter", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-62", "fDam": "0-0", "wDam": "36-88", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 62, "intReq": 30, "dex": -4, "int": 8, "agi": 4, "spd": 13, "sdRaw": 70, "wDamPct": 12, "wDefPct": 17, "tDefPct": -20, "id": 925}, {"name": "Drizzling Doublet", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 375, "tDef": -30, "lvl": 56, "intReq": 40, "mr": 10, "mdPct": -10, "ms": 10, "xpb": 15, "int": 5, "wDamPct": 7, "wDefPct": 7, "tDefPct": -20, "id": 923}, {"name": "Druid's Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "wDef": 20, "eDef": 20, "lvl": 65, "strReq": 5, "intReq": 5, "wDamPct": 5, "eDamPct": 5, "wDefPct": 10, "eDefPct": 10, "type": "ring", "id": 924}, {"name": "Droplets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-95", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 40, "mr": 10, "xpb": 8, "ref": 15, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 926}, {"name": "Dune Sandals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -15, "wDef": -15, "aDef": 20, "eDef": 15, "lvl": 33, "agiReq": 10, "str": 4, "spd": 7, "wDamPct": -10, "aDamPct": 9, "eDamPct": 12, "id": 928}, {"name": "Dunesweeper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "110-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 92, "strReq": 25, "agiReq": 35, "lb": 12, "spd": 15, "mdRaw": 155, "tDamPct": -6, "eDamPct": 19, "aDefPct": 19, "id": 930}, {"name": "Drumstick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "34-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "agiReq": 30, "dex": 13, "mdRaw": 41, "aDamPct": 25, "id": 927}, {"name": "Drifting Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "50-100", "aDam": "15-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "intReq": 25, "agiReq": 25, "xpb": 9, "int": 4, "agi": 5, "spd": 11, "fDamPct": -20, "aDamPct": 15, "wDefPct": 15, "aDefPct": 18, "id": 920}, {"name": "DuskHelm", "displayName": "Duskhelm", "tier": "Unique", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "fDef": 10, "wDef": -7, "lvl": 26, "ref": 5, "fDamPct": -15, "wDamPct": 15, "fDefPct": 5, "wDefPct": -5, "id": 929}, {"name": "Durum's Journey", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 550, "fDef": -20, "wDef": 15, "tDef": -25, "eDef": 30, "lvl": 48, "mr": 5, "sdPct": -15, "xpb": 15, "int": 7, "spd": 10, "hpBonus": 70, "hprRaw": 25, "aDefPct": -15, "id": 932}, {"name": "Dusk Painter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": -5, "sdPct": 7, "mdPct": 7, "ls": 12, "ms": 10, "hprRaw": -8, "id": 931}, {"name": "Dust Bowl", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 500, "aDef": 20, "eDef": 15, "lvl": 51, "strReq": 20, "agiReq": 15, "str": 7, "spd": 10, "sdRaw": -30, "aDamPct": 10, "eDamPct": 12, "id": 939}, {"name": "Dust Devil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -10, "lvl": 88, "agiReq": 30, "spd": 8, "aDamPct": 9, "eDamPct": 9, "type": "ring", "id": 937}, {"name": "DuskShield", "displayName": "Duskshield", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "wDef": 15, "tDef": 15, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -5, "ref": 8, "fDamPct": -8, "eDamPct": -8, "wDefPct": 6, "tDefPct": 6, "id": 934}, {"name": "Dust", "tier": "Rare", "type": "chestplate", "poison": 105, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "aDef": -15, "lvl": 32, "hprPct": -9, "agi": 5, "aDamPct": 8, "eDamPct": 4, "wDefPct": -6, "id": 933}, {"name": "Dusty Staff", "tier": "Unique", "type": "wand", "poison": 80, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "12-16", "atkSpd": "SLOW", "lvl": 26, "strReq": 8, "lb": 12, "aDefPct": -4, "eDefPct": 7, "id": 938}, {"name": "Dying Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "131-141", "aDam": "121-151", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 38, "agiReq": 38, "sdPct": 20, "ls": -217, "int": 10, "agi": 10, "spd": 10, "wDamPct": 15, "aDamPct": 15, "id": 941}, {"name": "Dynamic", "tier": "Unique", "category": "accessory", "drop": "lootchest", "tDef": 7, "eDef": -7, "lvl": 28, "dexReq": 10, "dex": 4, "mdRaw": 5, "tDamPct": 6, "type": "bracelet", "id": 940}, {"name": "Dysnomia", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": -40, "aDef": -40, "lvl": 52, "strReq": 25, "dexReq": 40, "hprPct": -40, "ms": 10, "spd": 10, "wDamPct": -20, "eDamPct": 10, "id": 944}, {"name": "Earth Breaker", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "fDef": 90, "aDef": -150, "eDef": 90, "lvl": 90, "strReq": 50, "defReq": 40, "ls": 220, "str": 9, "def": 8, "expd": 25, "atkTier": -10, "mdRaw": 1150, "fDamPct": 31, "eDamPct": 15, "id": 942}, {"name": "Earth Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-200", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 943}, {"name": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 945}, {"name": "Earthquake", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-114", "fDam": "80-149", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-149", "atkSpd": "SUPER_SLOW", "lvl": 60, "strReq": 25, "defReq": 25, "sdPct": -10, "mdPct": 10, "expd": 25, "spd": -15, "fDamPct": 10, "eDamPct": 10, "wDefPct": -15, "id": 948}, {"name": "Earth Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "140-190", "atkSpd": "VERY_SLOW", "lvl": 60, "strReq": 25, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 949}, {"name": "Earth Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-70", "atkSpd": "SLOW", "lvl": 55, "strReq": 20, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 946}, {"name": "Earthsky Equinox", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "100-165", "tDam": "0-0", "eDam": "120-145", "atkSpd": "FAST", "lvl": 98, "strReq": 50, "agiReq": 50, "mdPct": 15, "str": 16, "agi": 16, "spd": 15, "atkTier": 1, "tDefPct": -30, "id": 947}, {"name": "Dusty Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "agi": 3, "type": "ring", "id": 936}, {"name": "Eater", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "ls": 3, "type": "ring", "id": 952}, {"name": "Ebrithil", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "intReq": 40, "sdPct": 4, "int": 5, "spRegen": 8, "type": "necklace", "id": 950}, {"name": "Ebb and Flow", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "16-24", "fDam": "0-0", "wDam": "46-54", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 37, "intReq": 20, "mr": 5, "sdPct": 11, "str": -5, "dex": -5, "int": 14, "agi": -5, "def": -5, "spRegen": 16, "wDamPct": 11, "id": 951}, {"name": "Echolocation", "tier": "Unique", "type": "relik", "poison": 111, "thorns": -10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "39-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 35, "ls": 18, "ref": -10, "id": 954}, {"name": "Eclipse", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "10-30", "wDam": "10-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "intReq": 22, "defReq": 22, "hprPct": 15, "hprRaw": 20, "sdRaw": -10, "mdRaw": -13, "fDefPct": 10, "wDefPct": 10, "id": 956}, {"name": "Ectoplasm", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1025, "wDef": 55, "aDef": 55, "tDef": -100, "lvl": 63, "intReq": 40, "mr": 5, "sdPct": 10, "mdPct": -15, "ms": 10, "spd": -15, "wDefPct": 10, "aDefPct": -10, "id": 957}, {"name": "Echo", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 22, "agiReq": 8, "agi": 3, "aDamPct": 7, "type": "ring", "id": 955}, {"name": "Edgy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 12, "mdPct": 6, "dex": 3, "type": "bracelet", "id": 953}, {"name": "Effervescence", "tier": "Legendary", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "0-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 24, "mr": 5, "sdPct": 22, "int": 8, "hprRaw": -14, "id": 958}, {"name": "Efilim Sage Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1550, "wDef": 60, "eDef": 60, "lvl": 77, "strReq": 30, "intReq": 40, "mr": 5, "sdPct": 7, "mdPct": -10, "xpb": 10, "str": 7, "int": 7, "spRegen": 10, "hprRaw": 60, "id": 961}, {"name": "Efteling", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "wDef": 50, "aDef": 50, "tDef": -200, "lvl": 94, "intReq": 60, "agiReq": 60, "mr": -25, "sdPct": 30, "ls": 175, "ms": 10, "spd": 16, "sdRaw": 150, "wDamPct": 20, "aDamPct": 20, "id": 959}, {"name": "Egression", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 100, "eDef": -100, "lvl": 73, "agiReq": 60, "sdPct": -45, "mdPct": -45, "xpb": 15, "agi": 13, "spd": 23, "aDamPct": 70, "id": 960}, {"name": "Ehwaz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 39, "agiReq": 10, "agi": 3, "spd": 10, "type": "ring", "id": 962}, {"name": "Eil", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": 13, "hpBonus": 500, "id": 963}, {"name": "Ekeloch", "tier": "Unique", "type": "boots", "poison": 455, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1310, "aDef": -150, "tDef": 150, "lvl": 69, "tDamPct": 5, "id": 966}, {"name": "Electric Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 140, "tDef": 30, "eDef": -30, "lvl": 54, "dexReq": 20, "mdPct": 5, "dex": 4, "tDamPct": 8, "type": "necklace", "id": 965}, {"name": "Ein", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 1, "sdPct": 1, "mdPct": 1, "sdRaw": 1, "mdRaw": 1, "type": "ring", "id": 973}, {"name": "Electrolytic", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-47", "fDam": "0-0", "wDam": "14-58", "aDam": "0-0", "tDam": "3-69", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 33, "intReq": 33, "sdPct": 10, "mdPct": -10, "ms": 5, "sdRaw": 70, "fDamPct": -20, "aDamPct": -20, "eDamPct": -20, "id": 968}, {"name": "Electrocharge Greaves", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "tDef": 60, "eDef": -60, "lvl": 61, "dexReq": 50, "ms": -5, "dex": 7, "spd": 10, "atkTier": 1, "hprRaw": -60, "mdRaw": 90, "tDamPct": 10, "eDefPct": -30, "id": 967}, {"name": "Electrophorus", "tier": "Unique", "type": "helmet", "poison": 300, "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": 60, "eDef": -60, "lvl": 64, "intReq": 40, "sdRaw": 74, "tDamPct": 12, "id": 971}, {"name": "Eitr", "tier": "Rare", "type": "leggings", "poison": 415, "category": "armor", "drop": "NORMAL", "hp": 1430, "fDef": 65, "wDef": -50, "tDef": 55, "eDef": -70, "lvl": 66, "dexReq": 15, "defReq": 30, "mr": -5, "def": 4, "fDamPct": 16, "wDamPct": -18, "tDamPct": 13, "id": 964}, {"name": "Eleven", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 11, "hprPct": 11, "mdPct": 11, "sdRaw": 11, "id": 996}, {"name": "Eliminere", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-83", "eDam": "0-213", "atkSpd": "SUPER_FAST", "lvl": 87, "strReq": 35, "dexReq": 35, "hprPct": -140, "sdPct": 20, "mdPct": 20, "expd": 25, "hpBonus": -1370, "hprRaw": -135, "id": 991}, {"name": "Electrum", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "tDef": 45, "eDef": -90, "lvl": 58, "dexReq": 35, "intReq": 25, "sdPct": 6, "sdRaw": 75, "fDamPct": -20, "wDamPct": 8, "aDamPct": -20, "tDamPct": 8, "eDamPct": -30, "id": 969}, {"name": "Embers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-30", "fDam": "11-19", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "defReq": 10, "hprPct": 13, "ls": 17, "fDamPct": 7, "wDamPct": -9, "id": 974}, {"name": "Emerald Chopper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-200", "fDam": "0-0", "wDam": "0-0", "aDam": "150-250", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "agiReq": 25, "defReq": 35, "lb": 25, "expd": 25, "eSteal": 7, "fDamPct": 40, "id": 970}, {"name": "Emerald Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-80", "atkSpd": "SLOW", "lvl": 72, "lb": 25, "eSteal": 10, "sdRaw": -50, "mdRaw": -65, "id": 975}, {"name": "Elven Moccasins", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 8, "lvl": 3, "hprPct": 8, "id": 972}, {"name": "Emotion", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-30", "fDam": "24-28", "wDam": "23-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "intReq": 12, "defReq": 10, "mr": 5, "sdPct": -5, "mdPct": -5, "ls": -8, "int": 12, "agi": -5, "def": 10, "hprRaw": 8, "id": 977}, {"name": "Empire Builder", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 8, "drop": "NORMAL", "nDam": "50-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 978}, {"name": "Enchanter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "3-5", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 16, "mr": 5, "str": -3, "int": 4, "id": 976}, {"name": "End of Limits", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "60-150", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "strReq": 60, "dexReq": 40, "mr": -5, "sdPct": 11, "mdPct": 16, "ls": -205, "xpb": 10, "sdRaw": 75, "mdRaw": 100, "eDamPct": 16, "id": 979}, {"name": "Enderman's Feet", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": -30, "aDef": -60, "tDef": 80, "lvl": 62, "dexReq": 30, "sdPct": 6, "ref": 12, "dex": 8, "wDamPct": -5, "tDamPct": 6, "tDefPct": 10, "id": 981}, {"name": "Endurance", "tier": "Rare", "type": "chestplate", "thorns": 65, "category": "armor", "drop": "NORMAL", "hp": 2050, "wDef": -150, "lvl": 79, "def": 7, "hprRaw": 65, "fDamPct": 15, "wDamPct": -10, "id": 980}, {"name": "Enduzskam", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "wDef": 50, "tDef": 80, "eDef": -90, "lvl": 83, "dexReq": 35, "intReq": 35, "mr": 5, "sdPct": 14, "dex": 9, "wDamPct": 12, "tDamPct": 16, "eDamPct": -14, "eDefPct": -10, "id": 986}, {"name": "Endotherm", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "fDef": 80, "aDef": 80, "lvl": 71, "agiReq": 40, "defReq": 40, "hprPct": 25, "sdPct": -20, "mdPct": -20, "hpBonus": 300, "hprRaw": 75, "fDefPct": 14, "aDefPct": 14, "id": 982}, {"name": "Enmity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -80, "eDef": -40, "lvl": 100, "strReq": 60, "ms": 10, "dex": 4, "spd": 8, "sdRaw": 53, "mdRaw": 55, "fDefPct": -18, "wDefPct": -18, "aDefPct": -18, "type": "bracelet", "id": 983}, {"name": "Ensa's Failure", "tier": "Rare", "poison": 450, "thorns": 11, "category": "accessory", "drop": "lootchest", "hp": -250, "lvl": 98, "strReq": 40, "dexReq": 40, "spRegen": -15, "tDamPct": 11, "eDamPct": 11, "wDefPct": -8, "aDefPct": -8, "type": "bracelet", "id": 984}, {"name": "Ensa's Resolve", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-10", "fDam": "0-0", "wDam": "120-155", "aDam": "100-175", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "intReq": 40, "agiReq": 35, "hprPct": 30, "mr": 10, "xpb": 19, "ref": 15, "agi": 7, "spRegen": 11, "mdRaw": -95, "fDefPct": 12, "wDefPct": 20, "id": 990}, {"name": "Enzan's Lucky Charm", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 3, "xpb": 3, "eSteal": 1, "type": "bracelet", "id": 988}, {"name": "Ensa's Ideals", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4000, "wDef": 100, "aDef": 100, "lvl": 84, "intReq": 45, "agiReq": 40, "hprPct": 15, "mr": 5, "xpb": 15, "ref": 15, "int": 7, "hpBonus": 962, "spRegen": 25, "hprRaw": 115, "wDefPct": 15, "aDefPct": 15, "id": 985}, {"name": "Entanglement", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": 70, "aDef": -100, "tDef": 70, "lvl": 89, "dexReq": 50, "intReq": 45, "mr": -5, "sdPct": 25, "ms": -5, "dex": 10, "int": 10, "wDamPct": 9, "tDamPct": 9, "wDefPct": 9, "tDefPct": 9, "id": 3612}, {"name": "Equalizer", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1555, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 86, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "mr": 5, "sdPct": 18, "mdPct": 18, "ls": 155, "ms": 5, "ref": 18, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "hprRaw": 105, "id": 989}, {"name": "Equilibrium", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 24, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 987}, {"name": "Erhu", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "60-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "agiReq": 15, "mr": 5, "xpb": 15, "ref": 10, "agi": 7, "spRegen": 10, "fDamPct": -10, "wDamPct": 10, "tDamPct": -10, "id": 995}, {"name": "Equinox", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -22, "lvl": 88, "intReq": 33, "defReq": 33, "expd": 6, "spRegen": 6, "fDamPct": 9, "wDamPct": 9, "type": "ring", "id": 994}, {"name": "Erratio", "tier": "Legendary", "type": "chestplate", "poison": 61, "thorns": 11, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 413, "lvl": 35, "dexReq": 6, "agiReq": 12, "ls": 55, "ref": 3, "spRegen": -2, "hprRaw": -6, "mdRaw": 16, "aDamPct": 4, "aDefPct": 13, "id": 993}, {"name": "Errant", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "fDef": -60, "aDef": 60, "lvl": 95, "agiReq": 45, "sdPct": 7, "spd": 8, "fDamPct": -5, "aDamPct": 5, "fDefPct": -10, "type": "necklace", "id": 992}, {"name": "Eruption", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-160", "atkSpd": "VERY_SLOW", "lvl": 49, "strReq": 30, "defReq": 10, "sdPct": -15, "mdPct": 25, "str": 7, "def": 9, "expd": 25, "spd": -15, "hpBonus": 550, "fDamPct": 20, "id": 997}, {"name": "Esclavage", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 93, "strReq": 15, "defReq": 45, "xpb": 7, "lb": 5, "str": 5, "dex": -1, "def": 5, "spd": -4, "type": "bracelet", "id": 999}, {"name": "Espoir", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 7, "lb": 7, "spRegen": 3, "type": "ring", "id": 1000}, {"name": "Esper's Focus", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "400-505", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 84, "intReq": 40, "mr": 5, "mdPct": -40, "xpb": 15, "hpBonus": -700, "wDamPct": 30, "id": 998}, {"name": "Estuarine", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "71-85", "aDam": "0-0", "tDam": "0-0", "eDam": "100-110", "atkSpd": "NORMAL", "lvl": 71, "strReq": 28, "intReq": 32, "mr": 5, "mdPct": -20, "int": 8, "spd": -12, "mdRaw": 130, "wDamPct": 35, "eDefPct": 30, "id": 1002}, {"name": "Essence Bastion", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-165", "fDam": "110-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 40, "spd": -10, "hpBonus": 1385, "spRegen": 10, "hprRaw": 125, "id": 1001}, {"name": "Eternity's Edge", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "340-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "340-340", "eDam": "340-340", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 35, "dexReq": 35, "ms": 10, "str": 16, "dex": 16, "spd": -16, "sdRaw": 140, "spRaw2": -10, "id": 1004}, {"name": "Ethereal", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-22", "fDam": "0-0", "wDam": "44-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "intReq": 60, "mr": 10, "sdPct": 25, "mdPct": -20, "int": 7, "agi": 7, "spRegen": 10, "wDamPct": 7, "aDamPct": 19, "eDamPct": -30, "tDefPct": -20, "id": 1003}, {"name": "Etikal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "8-12", "wDam": "8-12", "aDam": "8-12", "tDam": "8-12", "eDam": "8-12", "atkSpd": "SLOW", "lvl": 35, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 5, "lb": 5, "id": 1005}, {"name": "Euthanasia", "tier": "Rare", "type": "dagger", "poison": 100, "category": "weapon", "drop": "NORMAL", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "spRegen": -10, "hprRaw": -8, "sdRaw": 32, "id": 1008}, {"name": "Evalach", "tier": "Rare", "type": "leggings", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "lvl": 27, "defReq": 12, "hprPct": 18, "ref": 4, "def": 8, "spd": -7, "wDamPct": -6, "wDefPct": -6, "id": 1010}, {"name": "Evanescent", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-150", "fDam": "0-0", "wDam": "55-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 52, "intReq": 30, "agiReq": 20, "mr": 5, "mdPct": -40, "ms": 5, "agi": 10, "spd": 15, "wDamPct": 15, "aDamPct": 20, "id": 1006}, {"name": "Evening Primrose", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2000, "fDef": 60, "wDef": -40, "aDef": -40, "tDef": 60, "eDef": -40, "lvl": 67, "dexReq": 30, "defReq": 30, "hprPct": 12, "def": 13, "spd": -15, "hpBonus": -500, "hprRaw": 70, "fDamPct": 15, "tDamPct": 15, "id": 1015}, {"name": "Evaporator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "aDef": -70, "lvl": 60, "intReq": 20, "defReq": 35, "spd": -8, "aDamPct": -18, "aDefPct": -13, "id": 1009}, {"name": "Euouae", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -75, "lvl": 75, "dexReq": 30, "agiReq": 60, "dex": 5, "agi": 9, "spd": 6, "fDamPct": -15, "tDamPct": 5, "type": "bracelet", "id": 1007}, {"name": "Event Horizon", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-140", "eDam": "0-140", "atkSpd": "VERY_FAST", "lvl": 99, "strReq": 55, "dexReq": 55, "hpBonus": 5000, "wDamPct": -35, "fDefPct": -76, "wDefPct": -76, "aDefPct": -76, "tDefPct": -76, "eDefPct": -76, "id": 1012}, {"name": "Example", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "int": 8, "type": "bracelet", "id": 3626}, {"name": "Executioner Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "lvl": 75, "mdPct": 27, "ls": 265, "ms": 10, "hpBonus": 115, "sdRaw": 150, "id": 1013}, {"name": "Exhaustion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": 140, "wDef": -65, "lvl": 90, "defReq": 70, "hprPct": 35, "mr": -5, "ls": 345, "def": 7, "spd": -20, "atkTier": -1, "hpBonus": 500, "hprRaw": 150, "fDefPct": 18, "id": 1014}, {"name": "Exion", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 21, "tDef": 3, "eDef": -6, "lvl": 5, "mr": 5, "spd": 6, "sdRaw": 4, "id": 1018}, {"name": "Facedown", "tier": "Unique", "type": "helmet", "thorns": -15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 89, "dexReq": 55, "sdPct": 20, "mdPct": 20, "xpb": 15, "ref": -15, "dex": 10, "agi": -5, "tDamPct": 15, "id": 1017}, {"name": "Exosphere", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 81, "dexReq": 24, "agiReq": 24, "mr": 5, "sdPct": 18, "ref": 18, "spRegen": 6, "aDamPct": 6, "tDamPct": 6, "aDefPct": 6, "tDefPct": 6, "id": 1016}, {"name": "Facile", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 99, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 8, "sdPct": 6, "mdPct": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "ring", "id": 1019}, {"name": "Facetious", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 40, "tDef": -20, "lvl": 98, "strReq": 50, "sdPct": 7, "mdPct": -6, "spd": 5, "wDamPct": 5, "type": "bracelet", "id": 1020}, {"name": "Faith Healer", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "wDef": 65, "aDef": 65, "lvl": 78, "intReq": 40, "agiReq": 40, "hprPct": 15, "sdPct": -15, "mdPct": -15, "spRegen": 20, "hprRaw": 75, "wDefPct": 10, "aDefPct": 10, "id": 1021}, {"name": "Faith of the Bovemist", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 45, "int": 4, "spRegen": 15, "tDefPct": 7, "type": "ring", "id": 1023}, {"name": "Faded", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 190, "lvl": 39, "xpb": 15, "ref": 5, "spRegen": 3, "id": 1024}, {"name": "Fatigue", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 8, "spd": -6, "mdRaw": 26, "id": 1029}, {"name": "Fate's Shear", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "45-50", "aDam": "0-0", "tDam": "0-0", "eDam": "65-105", "atkSpd": "SUPER_FAST", "lvl": 97, "strReq": 45, "intReq": 50, "ms": 5, "spRegen": 10, "hprRaw": -300, "sdRaw": 180, "mdRaw": 85, "wDamPct": 15, "eDamPct": 15, "fDefPct": -35, "id": 1026}, {"name": "Fault Lines", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-130", "atkSpd": "VERY_SLOW", "lvl": 32, "strReq": 15, "defReq": 15, "mdPct": 18, "str": 8, "agi": -10, "def": 8, "spd": -15, "fDamPct": 18, "aDamPct": -20, "eDamPct": 18, "aDefPct": -20, "id": 1025}, {"name": "Faustian Contract", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "200-225", "wDam": "0-0", "aDam": "0-0", "tDam": "175-250", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "dexReq": 50, "defReq": 40, "hprPct": -25, "mr": -10, "sdPct": 30, "ms": 10, "expd": 20, "spd": -20, "atkTier": -1, "mdRaw": 550, "id": 1027}, {"name": "Ex Nihilo", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "fDef": -100, "wDef": -100, "lvl": 98, "strReq": 50, "agiReq": 50, "sdPct": 25, "ls": 280, "int": 15, "def": -15, "spd": 15, "mdRaw": 235, "fDamPct": -40, "id": 1011}, {"name": "Featherweight", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 8, "agi": 4, "spd": 11, "id": 1031}, {"name": "Feedback", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 45, "ref": 25, "dex": 17, "hprRaw": -90, "tDamPct": 16, "eDamPct": -16, "wDefPct": -8, "id": 1028}, {"name": "Fehu", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 97, "xpb": 7, "lb": 13, "type": "ring", "id": 1033}, {"name": "Feithid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "fDef": -5, "lvl": 40, "agiReq": 20, "ls": 20, "agi": 7, "spd": 7, "aDamPct": 7, "id": 1032}, {"name": "Female Pirate Wig", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "hp": 3075, "lvl": 98, "xpb": 10, "lb": 15, "spd": 5, "eSteal": 3, "fixID": true, "id": 1037}, {"name": "Favian's Wing", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": -10, "tDef": -15, "lvl": 36, "agiReq": 20, "spd": 12, "aDamPct": 5, "type": "bracelet", "id": 1030}, {"name": "Fenmask", "tier": "Legendary", "type": "helmet", "thorns": 80, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": 105, "eDef": 140, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 30, "mr": 5, "ref": -40, "wDamPct": 18, "eDamPct": 18, "id": 1035}, {"name": "Fermion", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "fDef": 75, "wDef": 75, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "mr": 10, "sdPct": -7, "mdPct": -7, "ref": 15, "spRegen": 15, "id": 1034}, {"name": "Fern", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "2-6", "atkSpd": "VERY_FAST", "lvl": 16, "hprPct": 8, "ls": 11, "hpBonus": 40, "id": 1036}, {"name": "Fever Dream", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "39-39", "fDam": "39-39", "wDam": "0-0", "aDam": "39-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 35, "defReq": 35, "mr": -5, "sdPct": 28, "mdPct": 28, "str": 10, "dex": 10, "fDefPct": -26, "wDefPct": -33, "aDefPct": -26, "id": 1041}, {"name": "Fibreglass", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-50", "tDam": "0-0", "eDam": "10-40", "atkSpd": "FAST", "lvl": 51, "strReq": 17, "agiReq": 17, "sdPct": -10, "mdPct": 10, "mdRaw": 46, "fDefPct": -30, "id": 1039}, {"name": "Fierte", "tier": "Legendary", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "55-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "defReq": 35, "ref": 8, "def": 8, "hpBonus": 700, "fDamPct": 13, "wDefPct": -20, "id": 1040}, {"name": "Fierce Thunder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-47", "eDam": "0-0", "atkSpd": "FAST", "lvl": 39, "dexReq": 20, "sdPct": 7, "mdPct": 7, "xpb": 8, "spd": 15, "wDamPct": 20, "tDefPct": 10, "eDefPct": -25, "id": 1038}, {"name": "Fiery Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1043}, {"name": "Fiery Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1045}, {"name": "Fiery Bow", "tier": "Normal", "type": "bow", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1042}, {"name": "Fiery Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1044}, {"name": "Fiery Wand", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "restrict": "Quest Item", "nDam": "0-0", "fDam": "1-3", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "id": 1048}, {"name": "Fiery Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 400, "fDef": 40, "wDef": -40, "lvl": 69, "defReq": 25, "hprPct": 12, "def": 4, "fDamPct": 7, "type": "necklace", "id": 1047}, {"name": "Fighting Spirit", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 41, "hprPct": 15, "sdPct": 12, "mdPct": 12, "fDamPct": 19, "wDamPct": 19, "aDamPct": 19, "tDamPct": 19, "eDamPct": 19, "fDefPct": -15, "wDefPct": -15, "aDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1046}, {"name": "Fingertrap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 55, "dex": -1, "hprRaw": -5, "mdRaw": 26, "type": "ring", "id": 1049}, {"name": "Finesse", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 89, "dexReq": 25, "intReq": 25, "dex": 5, "int": 4, "sdRaw": 35, "type": "ring", "id": 1050}, {"name": "Fire Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-100", "fDam": "70-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 440, "hprRaw": 40, "fDamPct": 10, "fDefPct": 20, "id": 1055}, {"name": "Fire Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-90", "fDam": "70-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 770, "hprRaw": 65, "fDamPct": 10, "fDefPct": 20, "id": 1053}, {"name": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 25, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1052}, {"name": "Fireball", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "lvl": 86, "defReq": 30, "sdPct": 5, "expd": 4, "fDamPct": 8, "wDamPct": -10, "type": "ring", "id": 1051}, {"name": "Fire Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "defReq": 20, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 590, "hprRaw": 50, "fDamPct": 10, "fDefPct": 20, "id": 1068}, {"name": "Firecloud", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 4, "lvl": 38, "def": 3, "mdRaw": 13, "fDamPct": 4, "type": "ring", "id": 1057}, {"name": "Firesworn", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "61-82", "fDam": "61-82", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "defReq": 25, "sdPct": 61, "mdPct": 15, "hprRaw": -36, "fDamPct": 20, "fDefPct": -25, "id": 1060}, {"name": "Firequake", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 70, "wDef": -85, "aDef": -85, "eDef": 70, "lvl": 63, "strReq": 40, "defReq": 30, "xpb": 6, "str": 5, "expd": 26, "hprRaw": -65, "fDamPct": 21, "eDamPct": 21, "id": 1058}, {"name": "Firefly", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": 65, "wDef": -70, "aDef": 50, "lvl": 66, "agiReq": 20, "defReq": 20, "hprPct": 20, "ls": 105, "agi": 5, "spd": 6, "fDamPct": 8, "aDefPct": 8, "id": 1054}, {"name": "Fishscale", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2525, "fDef": 80, "wDef": 80, "tDef": -180, "lvl": 93, "intReq": 40, "defReq": 40, "ms": 10, "spd": 7, "sdRaw": 175, "fDamPct": 15, "wDamPct": 15, "aDefPct": -15, "tDefPct": -30, "id": 1059}, {"name": "Fission Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-74", "fDam": "0-74", "wDam": "0-0", "aDam": "0-0", "tDam": "0-74", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "defReq": 25, "sdPct": 5, "mdPct": 5, "ls": 150, "expd": 33, "hprRaw": -70, "fDamPct": 5, "wDamPct": -143, "tDamPct": 5, "id": 1063}, {"name": "Flameshot Hilt", "tier": "Legendary", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "1100-1300", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 93, "defReq": 60, "mdPct": 15, "def": 20, "expd": 45, "fDamPct": 25, "wDamPct": -150, "fDefPct": 35, "spRaw3": -15, "id": 1062}, {"name": "Firestorm Bellows", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-95", "fDam": "45-135", "wDam": "0-0", "aDam": "45-135", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "agiReq": 50, "defReq": 50, "mdPct": 15, "int": -8, "expd": 30, "spd": 20, "hpBonus": 750, "hprRaw": -125, "fDamPct": 15, "wDefPct": -33, "id": 1056}, {"name": "Fissure", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-170", "atkSpd": "VERY_SLOW", "lvl": 48, "strReq": 40, "sdPct": -9, "mdPct": 18, "str": 10, "expd": 26, "spd": -10, "fDamPct": 25, "aDamPct": -10, "eDamPct": 11, "aDefPct": -12, "id": 1061}, {"name": "Flamiche", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-24", "fDam": "18-22", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "defReq": 25, "hprPct": 16, "def": 7, "hpBonus": 250, "fDefPct": 10, "wDefPct": -5, "id": 1064}, {"name": "Flaming Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-20", "fDam": "6-8", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "hpBonus": 16, "id": 1065}, {"name": "Flaming Fangs", "tier": "Unique", "type": "dagger", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-68", "fDam": "32-42", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "str": -3, "def": 10, "expd": 5, "sdRaw": 50, "id": 1066}, {"name": "Flash", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "36-100", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "dexReq": 50, "agiReq": 20, "ms": 5, "dex": 4, "agi": 8, "spd": 20, "hpBonus": -400, "id": 1069}, {"name": "Flare Blitz", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "73-87", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "defReq": 24, "mdPct": 10, "ls": 40, "def": 8, "hpBonus": -100, "hprRaw": -15, "fDamPct": 8, "id": 1067}, {"name": "Flashing Boots", "tier": "Unique", "type": "boots", "thorns": 20, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2100, "aDef": 60, "tDef": 100, "eDef": -200, "lvl": 87, "dexReq": 30, "agiReq": 15, "ref": 20, "int": -40, "spd": 8, "spPct1": -17, "spPct2": -10, "spPct3": -17, "spPct4": -10, "id": 1070}, {"name": "Flawed Golden Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 58, "lvl": 17, "id": 1074}, {"name": "Flawed Golden Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 44, "lvl": 15, "id": 1071}, {"name": "Flawless Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "77-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1075}, {"name": "Flawless Andesite Shears", "displayName": "Flawless Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 39, "id": 1076}, {"name": "Flawed Leather Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 35, "lvl": 13, "id": 1073}, {"name": "Flawless Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "130-154", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1077}, {"name": "Flawless Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "80-109", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 39, "id": 1078}, {"name": "Flawed Leather Cap", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 31, "lvl": 11, "id": 1072}, {"name": "Flawless Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "49-53", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1080}, {"name": "Flawless Andesite Stick", "displayName": "Flawless Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "id": 1083}, {"name": "Flawless Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "63-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1079}, {"name": "Flawless Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "id": 1085}, {"name": "Flawless Birch Stick", "displayName": "Flawless Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "id": 1082}, {"name": "Flawless Chain Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 155, "lvl": 33, "id": 1084}, {"name": "Flawless Birch Shears", "displayName": "Flawless Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "29-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 36, "id": 1081}, {"name": "Flawless Chain Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "lvl": 31, "id": 1089}, {"name": "Flawless Chain Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 192, "lvl": 37, "id": 1086}, {"name": "Flawless Chain Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 176, "lvl": 35, "id": 1087}, {"name": "Flawless Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "178-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1092}, {"name": "Flawless Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "104-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1088}, {"name": "Flawless Diorite Shears", "displayName": "Flawless Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "id": 1090}, {"name": "Flawless Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "112-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 47, "id": 1091}, {"name": "Flawless Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "213-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1097}, {"name": "Flawless Diorite Stick", "displayName": "Flawless Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "47-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "id": 1095}, {"name": "Flawless Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1093}, {"name": "Flawless Granite Shears", "displayName": "Flawless Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 54, "id": 1094}, {"name": "Flawless Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "150-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 54, "id": 1096}, {"name": "Flawless Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1098}, {"name": "Flawless Granite Stick", "displayName": "Flawless Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "id": 1099}, {"name": "Flawless Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1101}, {"name": "Flawless Jungle Shears", "displayName": "Flawless Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "id": 1122}, {"name": "Flawless Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "id": 1100}, {"name": "Flawless Jungle Stick", "displayName": "Flawless Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "id": 1103}, {"name": "Flawless Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "56-72", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1104}, {"name": "Flawless Light Birch Shears", "displayName": "Flawless Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "id": 1107}, {"name": "Flawless Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1102}, {"name": "Flawless Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "37-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "id": 1108}, {"name": "Flawless Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1110}, {"name": "Flawless Light Birch Stick", "displayName": "Flawless Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "id": 1106}, {"name": "Flawless Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1105}, {"name": "Flawless Light Jungle Shears", "displayName": "Flawless Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "id": 1111}, {"name": "Flawless Light Jungle Stick", "displayName": "Flawless Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "id": 1109}, {"name": "Flawless Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "id": 1112}, {"name": "Flawless Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1113}, {"name": "Flawless Light Oak Shears", "displayName": "Flawless Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "id": 1118}, {"name": "Flawless Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1114}, {"name": "Flawless Light Oak Stick", "displayName": "Flawless Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "id": 1117}, {"name": "Flawless Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "id": 1115}, {"name": "Flawless Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "72-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1119}, {"name": "Flawless Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "67-69", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1125}, {"name": "Flawless Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "id": 1123}, {"name": "Flawless Light Spruce Stick", "displayName": "Flawless Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "id": 1120}, {"name": "Flawless Light Spruce Shears", "displayName": "Flawless Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "41-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "id": 1116}, {"name": "Flawless Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "41-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1121}, {"name": "Flawless Oak Shears", "displayName": "Flawless Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "id": 1126}, {"name": "Flawless Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 28, "id": 1127}, {"name": "Flawless Oak Stick", "displayName": "Flawless Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1129}, {"name": "Flawless Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1130}, {"name": "Flawless Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1128}, {"name": "Flawless Spruce Shears", "displayName": "Flawless Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "42-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "id": 1132}, {"name": "Flawless Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "63-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "id": 1131}, {"name": "Flawless Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "90-106", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1137}, {"name": "Flawless Spruce Stick", "displayName": "Flawless Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "id": 1134}, {"name": "Flawless Stone Shears", "displayName": "Flawless Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "id": 1135}, {"name": "Flawless Stone Stick", "displayName": "Flawless Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-31", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1133}, {"name": "Flawless Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "55-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 30, "id": 1136}, {"name": "Fleet", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "wDef": 15, "aDef": 15, "tDef": -20, "lvl": 43, "intReq": 10, "agiReq": 20, "mdPct": -8, "xpb": 9, "int": 5, "spd": 14, "mdRaw": -45, "aDamPct": 7, "wDefPct": 11, "aDefPct": 10, "id": 1140}, {"name": "Flex", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -95, "aDef": 40, "eDef": 50, "lvl": 72, "strReq": 70, "mr": -5, "mdPct": 12, "str": 8, "int": -6, "agi": 5, "hpBonus": 400, "mdRaw": 130, "id": 1139}, {"name": "Flood Bath", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-156", "wDam": "147-159", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "intReq": 30, "defReq": 30, "sdPct": -11, "mdPct": -11, "hpBonus": 661, "fDamPct": 33, "wDamPct": 33, "aDamPct": -33, "tDamPct": -33, "eDamPct": -33, "spPct3": -23, "id": 1143}, {"name": "Flintlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-150", "fDam": "40-170", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-170", "atkSpd": "SLOW", "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 7, "str": 25, "def": 25, "expd": 40, "spd": -7, "wDefPct": -14, "id": 1142}, {"name": "Floodgate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "intReq": 55, "sdPct": 10, "int": 13, "fDamPct": -40, "wDamPct": 10, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 1141}, {"name": "Fluffster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-95", "fDam": "0-0", "wDam": "0-0", "aDam": "85-140", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "agiReq": 15, "hprPct": 19, "xpb": 5, "ref": 10, "spd": 15, "hpBonus": 300, "id": 1144}, {"name": "Hero's End", "displayName": "Flummox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2750, "fDef": 115, "wDef": -130, "tDef": 115, "eDef": -100, "lvl": 94, "dexReq": 40, "defReq": 40, "hprPct": 25, "mdPct": -15, "ls": 245, "def": 9, "sdRaw": 175, "fDamPct": 14, "tDamPct": 14, "eDamPct": -35, "id": 1354}, {"name": "Flawless Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "51-59", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "id": 1138}, {"name": "Fluffy Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "43-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 33, "defReq": 10, "mdPct": -15, "def": 8, "hpBonus": 125, "fDefPct": 8, "aDefPct": 8, "id": 1148}, {"name": "Fluorescence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "lvl": 82, "hprPct": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spd": 20, "eSteal": 6, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 88}, {"name": "Flux and Flow", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "12-14", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 25, "dexReq": 10, "sdPct": 5, "sdRaw": 27, "wDamPct": 13, "tDamPct": 5, "spPct1": 14, "id": 1145}, {"name": "Fluorine", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -1, "lvl": 9, "mdPct": 7, "expd": 2, "type": "necklace", "id": 1146}, {"name": "Foam Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "aDef": 10, "tDef": -45, "lvl": 66, "intReq": 15, "sdPct": 6, "xpb": 6, "wDamPct": 4, "type": "bracelet", "id": 1149}, {"name": "Flush", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 30, "spd": 8, "wDamPct": 20, "tDefPct": -20, "id": 1147}, {"name": "Fog", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 10, "aDef": 30, "tDef": -25, "eDef": -40, "lvl": 68, "intReq": 10, "agiReq": 25, "wDamPct": 4, "aDamPct": 7, "wDefPct": 4, "aDefPct": 7, "type": "bracelet", "id": 1151}, {"name": "Follow The Wind", "displayName": "Follow the Wind", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 50, "eDef": 40, "lvl": 90, "agiReq": 60, "mdPct": -10, "xpb": 10, "ref": 10, "spd": 18, "eDamPct": -10, "type": "bracelet", "id": 1153}, {"name": "Fog of Creation", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "165-200", "fDam": "55-60", "wDam": "55-60", "aDam": "55-60", "tDam": "55-60", "eDam": "55-60", "atkSpd": "SLOW", "lvl": 100, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprRaw": 200, "sdRaw": 140, "mdRaw": 180, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1182}, {"name": "Foot Warmers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 30, "lvl": 48, "defReq": 10, "hprPct": 15, "xpb": 6, "def": 5, "spd": -5, "fDamPct": 7, "wDefPct": 6, "aDefPct": 6, "id": 1150}, {"name": "Foreboding", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 93, "dexReq": 50, "mdPct": 5, "xpb": 5, "dex": 7, "eDamPct": -20, "type": "bracelet", "id": 1154}, {"name": "Fortitude", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 40, "fDef": 5, "wDef": -8, "lvl": 28, "defReq": 12, "mdPct": -6, "def": 5, "spd": -6, "hpBonus": 25, "hprRaw": 6, "type": "bracelet", "id": 1156}, {"name": "Forgotten", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 36, "lvl": 12, "lb": 7, "str": 2, "dex": 3, "int": 2, "agi": 1, "def": 3, "id": 1152}, {"name": "Fractured", "tier": "Legendary", "thorns": 6, "category": "accessory", "drop": "lootchest", "hp": 300, "fDef": 30, "wDef": -60, "tDef": 20, "lvl": 95, "dexReq": 40, "defReq": 40, "ls": 165, "int": -4, "hpBonus": 150, "type": "ring", "id": 1161}, {"name": "Fragment", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-110", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "30-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 94, "dexReq": 40, "agiReq": 40, "mdPct": 18, "ms": -5, "aDamPct": 14, "tDamPct": 14, "fDefPct": -30, "wDefPct": -25, "eDefPct": -15, "id": 1159}, {"name": "Fourchette", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 5, "hprPct": 11, "id": 1157}, {"name": "Frenzy", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "39-109", "fDam": "0-0", "wDam": "0-0", "aDam": "29-69", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 50, "spd": 23, "atkTier": 1, "mdRaw": 50, "fDefPct": -10, "wDefPct": -10, "aDefPct": -5, "tDefPct": -10, "eDefPct": -10, "id": 1164}, {"name": "Frenzied Mockery", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2727, "fDef": 95, "wDef": -135, "aDef": -75, "tDef": 115, "lvl": 90, "dexReq": 50, "defReq": 40, "sdPct": 20, "ms": 5, "hpBonus": -400, "sdRaw": 144, "fDamPct": 14, "tDamPct": 14, "fDefPct": -50, "tDefPct": -50, "id": 1158}, {"name": "Founder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 500, "aDef": -50, "eDef": 50, "lvl": 97, "strReq": 25, "defReq": 35, "hprPct": 12, "str": 5, "def": 4, "spd": -6, "hpBonus": 270, "type": "necklace", "id": 1155}, {"name": "Frigid", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1270, "fDef": -75, "wDef": 75, "aDef": 75, "tDef": -75, "lvl": 74, "intReq": 35, "agiReq": 35, "mr": 5, "int": 4, "agi": 4, "wDamPct": 12, "aDamPct": 12, "fDefPct": -11, "tDefPct": -11, "id": 1160}, {"name": "Frontier", "tier": "Unique", "type": "relik", "thorns": 10, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "363-369", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "182-184", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 45, "hprPct": 20, "hpBonus": 800, "aDefPct": 15, "eDefPct": 20, "id": 1163}, {"name": "Frontliner", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 50, "aDef": 50, "lvl": 82, "agiReq": 60, "defReq": 60, "ls": 190, "ms": 5, "agi": 9, "def": 15, "wDamPct": -25, "fDefPct": 30, "wDefPct": -30, "aDefPct": 30, "id": 1162}, {"name": "Frostbite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 60, "aDef": 60, "lvl": 63, "intReq": 40, "agiReq": 30, "hprPct": -35, "ms": 10, "wDamPct": 15, "aDamPct": 15, "fDefPct": -20, "id": 1166}, {"name": "Frozen Brook", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-80", "fDam": "0-0", "wDam": "30-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "intReq": 20, "mr": 5, "sdPct": 12, "ref": 10, "int": 10, "agi": -5, "spd": -20, "wDamPct": 8, "wDefPct": 15, "tDefPct": -15, "id": 1168}, {"name": "Flawless Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "id": 1124}, {"name": "Frustration", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-77", "fDam": "39-39", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "defReq": 35, "expd": 15, "hpBonus": 300, "hprRaw": -90, "fDamPct": 10, "eDamPct": 17, "wDefPct": -12, "id": 1167}, {"name": "Frosted Leggings", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "wDef": 60, "lvl": 57, "intReq": 30, "ms": 5, "int": 7, "spd": -5, "fDamPct": -15, "wDamPct": 20, "fDefPct": -35, "wDefPct": 30, "id": 1165}, {"name": "Full Charge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "490-605", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "mr": 5, "sdPct": 13, "ls": 305, "ms": -15, "spd": -15, "id": 1172}, {"name": "Fulmine Belt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1775, "aDef": -50, "tDef": 100, "eDef": -50, "lvl": 83, "dexReq": 40, "sdPct": 14, "mdPct": 14, "dex": 6, "expd": 14, "aDamPct": -10, "tDamPct": 10, "tDefPct": 10, "id": 1169}, {"name": "Fyrespit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "115-160", "fDam": "120-180", "wDam": "45-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 81, "intReq": 35, "defReq": 30, "mr": 5, "xpb": 8, "hpBonus": 1500, "hprRaw": 100, "fDamPct": 10, "wDamPct": 15, "id": 1173}, {"name": "Funnel", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 20, "lvl": 7, "ls": 2, "xpb": 5, "id": 1171}, {"name": "Fuse", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": 50, "lvl": 75, "hprRaw": 30, "type": "ring", "id": 1170}, {"name": "Gert Bow", "displayName": "Gert Shootstick Tossflinger", "tier": "Legendary", "type": "bow", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1350-1750", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 79, "strReq": 70, "sdPct": -60, "mdPct": 30, "atkTier": -1, "mdRaw": 710, "fixID": true, "id": 1219}, {"name": "Gert Boots", "displayName": "Gert Shakestomper Toefeet", "tier": "Rare", "type": "boots", "quest": "The Hunger of Gerts Part 1", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1800, "aDef": -80, "eDef": 70, "lvl": 78, "strReq": 60, "mdPct": 50, "expd": 40, "spd": -15, "atkTier": -1, "mdRaw": 300, "fixID": true, "id": 1174}, {"name": "Gert Knife", "displayName": "Gert Swingpoke Cuttyrock", "tier": "Legendary", "type": "dagger", "quest": "The Hunger of Gerts Part 2", "poison": 800, "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "22-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "strReq": 30, "dexReq": 40, "mr": -10, "atkTier": 1, "tDamPct": 20, "fixID": true, "id": 1176}, {"name": "Gert Hammer", "displayName": "Gert Rock Smashbanger", "tier": "Legendary", "type": "spear", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "450-550", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 79, "strReq": 40, "hprPct": -30, "str": 5, "eDamPct": 65, "fixID": true, "id": 1175}, {"name": "Gert Relik", "displayName": "Gert Bangswing Manypointystick", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NEVER", "restrict": "Untradable", "nDam": "650-880", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 55, "agiReq": 35, "sdPct": -300, "ms": 10, "xpb": 6, "atkTier": -1, "mdRaw": 410, "eDamPct": 20, "fixID": true, "id": 421}, {"name": "Gert Leggings", "displayName": "Gert Bumpstump Legcovercloth", "tier": "Rare", "type": "leggings", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 70, "eDef": 70, "lvl": 78, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 8, "str": 4, "agi": 4, "fixID": true, "id": 1191}, {"name": "Gert Super Special Magic Ultistick", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "sdPct": -1, "id": 1177}, {"name": "Gert Wand", "displayName": "Gert Whooshy Bonkpole", "tier": "Legendary", "type": "wand", "quest": "The Hunger of Gerts Part 2", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "140-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "strReq": 40, "agiReq": 40, "sdPct": -45, "mdPct": 30, "spd": 7, "wDamPct": -20, "aDamPct": 30, "fixID": true, "id": 1179}, {"name": "Reinforced Gert Chestplate", "displayName": "Gert Veryhard Chestclothes", "tier": "Rare", "type": "chestplate", "quest": "The Hunger of Gerts Part 1", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2425, "fDef": 110, "wDef": -70, "lvl": 78, "defReq": 40, "sdPct": -15, "mdPct": 12, "def": 6, "eDamPct": 15, "fixID": true, "id": 1178}, {"name": "Gale's Force", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-123", "fDam": "0-0", "wDam": "0-0", "aDam": "100-123", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "agiReq": 55, "xpb": 15, "ref": 15, "dex": 7, "agi": 13, "spd": 30, "spRegen": 15, "aDamPct": 25, "eDamPct": -50, "id": 1180}, {"name": "Gale Rider", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-20", "fDam": "0-0", "wDam": "0-0", "aDam": "14-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "agiReq": 15, "lb": 12, "agi": 8, "def": -5, "spd": 20, "hpBonus": -60, "aDefPct": 11, "id": 1186}, {"name": "Galloping Spurs", "tier": "Fabled", "type": "boots", "majorIds": ["CAVALRYMAN"], "thorns": 10, "category": "armor", "drop": "NORMAL", "hp": 560, "eDef": 20, "lvl": 40, "strReq": 25, "mdPct": 8, "xpb": 15, "spd": 10, "eDamPct": 15, "id": 1187}, {"name": "Galaxy Piercer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 4, "hprPct": 5, "sdPct": 5, "dex": 3, "id": 1183}, {"name": "Galena", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": 60, "wDef": -80, "lvl": 59, "defReq": 45, "mdPct": -15, "ls": 60, "def": 5, "spd": -20, "hpBonus": 200, "hprRaw": 50, "fDamPct": 8, "id": 1181}, {"name": "Galvanization", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": -80, "wDef": 60, "tDef": 60, "eDef": -80, "lvl": 83, "dexReq": 30, "intReq": 30, "hprPct": -12, "mr": 5, "sdPct": 12, "ms": 5, "fDamPct": -15, "wDamPct": 15, "tDamPct": 15, "eDamPct": -15, "fDefPct": -14, "id": 1185}, {"name": "Gargantuan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 15, "sdPct": -10, "mdPct": 20, "str": 7, "spd": -10, "hpBonus": 50, "id": 1188}, {"name": "Garnet", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "20-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 54, "intReq": 20, "defReq": 35, "sdPct": 10, "mdPct": -10, "def": 7, "hprRaw": -48, "fDamPct": 18, "id": 1184}, {"name": "Garnet Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": 20, "lvl": 67, "defReq": 20, "def": 4, "hprRaw": 18, "fDefPct": 6, "type": "ring", "id": 1189}, {"name": "Gavel's Memory", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-30", "fDam": "0-0", "wDam": "0-0", "aDam": "14-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "agi": 4, "spd": 15, "wDamPct": 15, "eDefPct": -15, "id": 1190}, {"name": "Geis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 850, "wDef": -90, "lvl": 54, "strReq": 40, "dexReq": 40, "ms": 10, "xpb": 25, "int": -15, "agi": -10, "def": -10, "hprRaw": 40, "tDamPct": 15, "eDamPct": 15, "id": 1192}, {"name": "Gemini", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 4550, "lvl": 95, "dexReq": 55, "agiReq": 55, "sdPct": -10, "mdPct": -10, "ls": 310, "ms": 10, "dex": 10, "agi": 10, "spd": 15, "eSteal": 8, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "id": 1194}, {"name": "Gearbox Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "xpb": 20, "lb": 10, "id": 1193}, {"name": "Genoxyde", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-310", "fDam": "0-0", "wDam": "0-0", "aDam": "290-330", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "agiReq": 30, "defReq": 40, "ls": 290, "expd": 15, "spd": 12, "hpBonus": -1000, "fDamPct": 20, "wDefPct": -15, "tDefPct": -15, "eDefPct": -15, "id": 1196}, {"name": "Geothermal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -10, "eDef": 10, "lvl": 38, "strReq": 10, "defReq": 5, "hprPct": 10, "mdPct": 6, "fDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 1200}, {"name": "Gert Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MzY1MTUwOTY5NzcsInByb2ZpbGVJZCI6IjA3NmVjZDVhMzEzMzRjMzRiOTEyNDBhNTQ5MGY0YzgwIiwicHJvZmlsZU5hbWUiOiJibWFucnVsZXMiLCJpc1B1YmxpYyI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhhZWUyZjMwMTE2MzhjOTllNDI4NTk2NjRhZWIxM2RlYWRhOGRmZDZiM2ZkYmQ2YmNhNTEzNWE3ZTBlNiJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1300, "fDef": -40, "eDef": 40, "lvl": 75, "id": 1198}, {"name": "Genesis", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 78, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "hprPct": 35, "spRegen": 10, "hprRaw": 140, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1195}, {"name": "Gestation", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "21-33", "atkSpd": "SLOW", "lvl": 23, "strReq": 10, "xpb": 15, "str": 5, "spd": -8, "hpBonus": 60, "hprRaw": 25, "spPct1": 14, "spRaw3": -5, "id": 1197}, {"name": "Geyser", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "fDef": 65, "wDef": 65, "aDef": 65, "lvl": 74, "intReq": 35, "agiReq": 35, "defReq": 35, "mr": 10, "mdPct": -20, "agi": 7, "expd": 19, "spd": 15, "hprRaw": 100, "tDamPct": -100, "aDefPct": 15, "id": 1203}, {"name": "Ghostly Blades", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-17", "aDam": "13-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 40, "intReq": 15, "agiReq": 15, "mdPct": -10, "ms": 10, "str": -5, "int": 7, "agi": 7, "spd": 10, "spRegen": 5, "sdRaw": 30, "id": 1206}, {"name": "Giant's Bracer", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "lvl": 42, "strReq": 20, "mdPct": 19, "str": 12, "dex": -2, "agi": -2, "spd": -7, "sdRaw": -70, "mdRaw": 90, "id": 1199}, {"name": "Ghost", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 25, "lvl": 77, "intReq": 5, "agiReq": 15, "sdPct": 5, "agi": 5, "spd": 6, "spRegen": 5, "type": "ring", "id": 1201}, {"name": "Giant Step", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "lvl": 37, "hprPct": 25, "mr": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 10, "id": 1207}, {"name": "Giant Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 68, "mdPct": 15, "xpb": 9, "id": 1204}, {"name": "Gibyeong", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-100", "fDam": "0-0", "wDam": "75-115", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "intReq": 40, "defReq": 50, "mr": 5, "sdPct": 7, "ref": 13, "int": 8, "def": 9, "hprRaw": 140, "fDamPct": 25, "eDamPct": -15, "id": 1202}, {"name": "Ginto", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 28, "sdPct": 9, "lb": 18, "int": 4, "fDefPct": -6, "id": 1210}, {"name": "Gilded Cuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 24, "lb": 8, "type": "bracelet", "id": 1205}, {"name": "Gilded Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "lvl": 24, "xpb": 8, "lb": 12, "id": 1211}, {"name": "Glare", "tier": "Legendary", "type": "wand", "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-40", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 41, "dexReq": 15, "xpb": 10, "ref": 40, "sdRaw": 50, "fDamPct": 10, "eDamPct": -15, "id": 1209}, {"name": "Glitchtean", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "48-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-117", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "sdPct": -18, "mdPct": -16, "xpb": 6, "lb": 10, "ref": 13, "sdRaw": 115, "mdRaw": 70, "id": 1215}, {"name": "Glissando", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "drop": "NORMAL", "nDam": "0-7", "fDam": "0-7", "wDam": "0-7", "aDam": "0-7", "tDam": "0-7", "eDam": "0-7", "atkSpd": "FAST", "lvl": 92, "spd": 10, "eSteal": 10, "sdRaw": 1170, "mdRaw": 750, "sprintReg": 10, "jh": 1, "id": 1214}, {"name": "Glacial Crest", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "20-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 20, "mr": 5, "sdPct": 8, "mdPct": 15, "ls": 36, "hpBonus": -75, "hprRaw": -15, "fDamPct": -30, "aDamPct": 15, "id": 1208}, {"name": "Glitz", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 34, "lb": 8, "type": "ring", "id": 1212}, {"name": "Glowing Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-6", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 15, "hprPct": 12, "hpBonus": 15, "spRegen": 1, "id": 1218}, {"name": "Gnarl", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 78, "strReq": 20, "sdPct": 12, "mdPct": 12, "ms": -10, "str": 7, "spd": -5, "aDefPct": -12, "eDefPct": 12, "id": 1216}, {"name": "Glowstone Killer", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-47", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "56-73", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "xpb": 17, "str": -3, "dex": 7, "tDamPct": 12, "id": 1221}, {"name": "Gloomstone", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -25, "aDef": -15, "eDef": -10, "lvl": 85, "dexReq": 60, "sdPct": 6, "spd": 4, "spRegen": -5, "sdRaw": 25, "tDamPct": 6, "type": "ring", "id": 1213}, {"name": "Gnir", "tier": "Unique", "thorns": 7, "category": "accessory", "drop": "lootchest", "hp": 220, "wDef": 25, "lvl": 85, "strReq": 30, "intReq": 20, "str": 4, "spd": -7, "hprRaw": 25, "type": "ring", "id": 1217}, {"name": "Gnocchi", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 74, "lvl": 17, "mr": 5, "sdPct": 8, "mdPct": -5, "xpb": 8, "spRegen": 3, "id": 1234}, {"name": "Goliath", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 100, "fDef": 4, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 19, "defReq": 12, "hprRaw": 5, "id": 1225}, {"name": "Golden Pants of Fortune", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 19, "xpb": 5, "lb": 15, "dex": 3, "agi": 3, "id": 1220}, {"name": "Golden Embrace", "tier": "Rare", "type": "chestplate", "thorns": 4, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 116, "lvl": 19, "sdPct": -6, "mdPct": -6, "ref": 4, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1222}, {"name": "Gospel", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 78, "agiReq": 20, "xpb": 10, "spRegen": 10, "aDamPct": 5, "type": "necklace", "id": 1223}, {"name": "Goswhit", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "fDef": 50, "lvl": 48, "defReq": 40, "hprPct": 10, "def": 5, "spd": -12, "hprRaw": 23, "fDamPct": 8, "wDamPct": -10, "id": 1224}, {"name": "Grandfather", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 20, "mr": 5, "ms": 5, "hpBonus": -24, "id": 1230}, {"name": "Gouttes", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 8, "tDef": -4, "lvl": 38, "intReq": 20, "sdPct": 6, "int": 4, "type": "ring", "id": 1226}, {"name": "Grateful Dead", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "835-835", "fDam": "0-0", "wDam": "3-3", "aDam": "3-3", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 83, "intReq": 35, "agiReq": 35, "mr": 5, "ms": 5, "def": -10, "wDefPct": 15, "aDefPct": 15, "tDefPct": 20, "id": 1228}, {"name": "Granite Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 20, "aDef": 60, "eDef": 20, "lvl": 63, "strReq": 45, "defReq": 5, "def": 9, "expd": 26, "spd": -9, "hpBonus": 400, "mdRaw": 130, "wDefPct": -25, "aDefPct": 20, "eDefPct": 20, "id": 1227}, {"name": "Graviton Lance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "355-355", "aDam": "0-0", "tDam": "255-455", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "dexReq": 36, "intReq": 36, "ms": -5, "str": -20, "dex": 55, "int": 55, "agi": -20, "def": -20, "id": 1232}, {"name": "Great Brace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 150, "fDef": 20, "wDef": -20, "lvl": 51, "defReq": 25, "hprPct": 5, "hprRaw": 18, "wDamPct": -7, "fDefPct": 7, "type": "bracelet", "id": 1233}, {"name": "Gravity", "tier": "Legendary", "type": "chestplate", "majorIds": ["MAGNET"], "thorns": 30, "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 5500, "fDef": 250, "wDef": 250, "aDef": 250, "tDef": 250, "eDef": 250, "lvl": 100, "strReq": 55, "dexReq": 55, "intReq": 55, "agiReq": 55, "defReq": 55, "ls": 295, "ms": 5, "ref": 30, "spd": -25, "atkTier": -1, "hprRaw": 200, "sdRaw": -105, "id": 1231}, {"name": "Great Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 40, "xpb": 5, "hpBonus": 125, "type": "necklace", "id": 1236}, {"name": "Greaves of the Veneer", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4000, "fDef": 200, "wDef": 65, "aDef": 65, "eDef": 200, "lvl": 89, "strReq": 30, "defReq": 60, "mr": 5, "def": 20, "spd": -10, "hpBonus": 1500, "hprRaw": 200, "wDamPct": -5, "aDamPct": -15, "tDamPct": -15, "wDefPct": 50, "aDefPct": 40, "tDefPct": 40, "id": 1237}, {"name": "Grenouille", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-75", "fDam": "0-0", "wDam": "20-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "intReq": 30, "sdPct": 8, "mdPct": -8, "agi": 5, "spd": 5, "aDamPct": 8, "id": 1241}, {"name": "Green Helmet", "tier": "Unique", "type": "helmet", "poison": 200, "category": "armor", "drop": "NORMAL", "hp": 1850, "eDef": 60, "lvl": 80, "xpb": 20, "eSteal": 2, "eDamPct": 20, "eDefPct": 20, "id": 1235}, {"name": "Gridlock", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "30-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "dexReq": 25, "intReq": 25, "ms": 10, "spd": -15, "wDamPct": 10, "tDamPct": 10, "eDefPct": -25, "id": 1242}, {"name": "Griffin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "40-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "intReq": 60, "agiReq": 30, "mr": 10, "sdPct": 8, "mdPct": -15, "int": 10, "spd": 15, "fDamPct": -20, "wDamPct": 19, "id": 1240}, {"name": "Green Perfection", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-25", "fDam": "11-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 15, "lb": 6, "str": 5, "eSteal": 5, "eDamPct": 10, "id": 1238}, {"name": "Grillface", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3400, "fDef": 175, "aDef": 150, "eDef": -150, "lvl": 87, "agiReq": 55, "defReq": 70, "int": -20, "agi": 15, "expd": 25, "hprRaw": 192, "mdRaw": 240, "fDamPct": 20, "aDamPct": 20, "wDefPct": -40, "id": 1239}, {"name": "Griswold's Edge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-30", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "mr": 5, "mdPct": 7, "xpb": 7, "lb": 7, "dex": 7, "spd": 7, "tDamPct": 7, "id": 1255}, {"name": "Grip of the Land", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2350, "fDef": 140, "wDef": -120, "eDef": 140, "lvl": 88, "strReq": 55, "defReq": 45, "hprPct": 65, "str": 7, "def": 7, "spd": -15, "hprRaw": -65, "fDamPct": 12, "eDamPct": 12, "fDefPct": 12, "eDefPct": 12, "id": 1244}, {"name": "Groundshakers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "aDef": -80, "eDef": 80, "lvl": 72, "strReq": 35, "mr": -5, "mdPct": 7, "lb": 10, "str": 5, "sdRaw": -55, "mdRaw": 165, "eDamPct": 10, "eDefPct": 10, "id": 1245}, {"name": "Guacamole", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "128-131", "aDam": "0-0", "tDam": "0-0", "eDam": "128-131", "atkSpd": "NORMAL", "lvl": 88, "strReq": 30, "intReq": 30, "mr": 5, "str": 17, "int": 17, "hpBonus": 940, "hprRaw": 110, "spRaw4": -5, "id": 1243}, {"name": "Gust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -5, "aDef": 5, "lvl": 20, "agiReq": 5, "spd": 5, "aDamPct": 5, "type": "bracelet", "id": 1246}, {"name": "Gungnir", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "xpb": 25, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1247}, {"name": "Gwydion", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "NORMAL", "lvl": 69, "strReq": 20, "intReq": 45, "sdPct": 12, "mdPct": -12, "int": 7, "eSteal": 5, "wDamPct": 20, "aDamPct": -12, "aDefPct": -12, "id": 1248}, {"name": "Gypsum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "aDef": -20, "eDef": 20, "lvl": 37, "strReq": 25, "sdPct": -12, "expd": 5, "spd": -10, "mdRaw": 70, "eDamPct": 8, "id": 1250}, {"name": "Abyss-Imbued Leggings", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3400, "wDef": 175, "aDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "intReq": 40, "agiReq": 40, "ls": 425, "ms": 20, "dex": -30, "def": -30, "sdRaw": 265, "mdRaw": 320, "wDamPct": 20, "aDamPct": 20, "eDamPct": 20, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1252}, {"name": "Ambertoise Shell", "set": "Earth Hive", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 3000, "fDef": 100, "wDef": 150, "tDef": 150, "eDef": 100, "lvl": 88, "strReq": 30, "defReq": 30, "hprPct": 25, "mdPct": 20, "ms": 5, "str": 5, "agi": 10, "def": 5, "fDefPct": 20, "wDefPct": 25, "tDefPct": 25, "eDefPct": 20, "fixID": true, "id": 1251}, {"name": "Boreal-Patterned Aegis", "displayName": "Anima-Infused Cuirass", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 200, "wDef": 200, "tDef": 200, "lvl": 100, "dexReq": 40, "intReq": 40, "defReq": 40, "mr": 10, "str": -30, "agi": -30, "fDamPct": 20, "wDamPct": 20, "tDamPct": 20, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "fixID": true, "spRaw1": -5, "spRaw3": -5, "spRaw4": -5, "id": 1249}, {"name": "Beetle Aegis", "set": "Earth Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": -60, "aDef": -60, "tDef": 120, "eDef": 120, "lvl": 91, "strReq": 55, "dexReq": 45, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 9, "dex": 9, "agi": -6, "def": -6, "tDamPct": 30, "eDamPct": 30, "fixID": true, "id": 1253}, {"name": "Bottled Thunderstorm", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 81, "dexReq": 20, "agiReq": 20, "dex": 6, "agi": 6, "aDamPct": 10, "tDamPct": 10, "type": "necklace", "fixID": true, "id": 1254}, {"name": "Breezehands", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 85, "dexReq": 55, "agiReq": 55, "spd": 5, "atkTier": 1, "type": "ring", "fixID": true, "id": 1257}, {"name": "Chaos-Woven Greaves", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "poison": 2250, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "wDef": 100, "tDef": 100, "eDef": 100, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "sdPct": 50, "mdPct": 50, "ms": 15, "agi": -30, "def": -30, "wDamPct": 30, "tDamPct": 30, "eDamPct": 30, "wDefPct": 5, "tDefPct": 5, "eDefPct": 5, "fixID": true, "id": 1256}, {"name": "Grindcore", "tier": "Rare", "type": "relik", "poison": 100, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "24-28", "eDam": "20-28", "atkSpd": "SLOW", "lvl": 25, "strReq": 10, "dexReq": 10, "ls": -15, "str": 4, "dex": 4, "mdRaw": 52, "spPct1": 18, "id": 1261}, {"name": "Cinderchain", "set": "Fire Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2875, "fDef": 150, "wDef": -150, "tDef": 150, "eDef": -150, "lvl": 98, "dexReq": 30, "defReq": 60, "sdPct": 10, "dex": 10, "def": 7, "expd": 25, "atkTier": -1, "mdRaw": 420, "fDamPct": 45, "aDamPct": -65, "tDamPct": 40, "eDamPct": -65, "fixID": true, "id": 1259}, {"name": "Clockwork", "set": "Fire Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 60, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 97, "defReq": 60, "hprPct": 20, "ref": 20, "type": "bracelet", "fixID": true, "id": 1258}, {"name": "Coral Ring", "set": "Water Hive", "tier": "Rare", "poison": -365, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 800, "wDef": 50, "lvl": 93, "hprPct": 10, "mr": 5, "dex": -4, "type": "ring", "fixID": true, "id": 1262}, {"name": "Contrast", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "poison": 750, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "lvl": 100, "mr": 10, "ls": 200, "spd": 15, "hprRaw": 150, "type": "necklace", "fixID": true, "id": 1260}, {"name": "Dupliblaze", "set": "Fire Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "fDef": 40, "wDef": -80, "lvl": 98, "defReq": 60, "def": 6, "expd": 18, "fDamPct": 24, "wDefPct": -12, "type": "bracelet", "fixID": true, "id": 1265}, {"name": "Hephaestus-Forged Greaves", "displayName": "Eden-Blessed Guards", "tier": "Legendary", "type": "leggings", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4600, "fDef": 300, "wDef": 300, "aDef": 300, "lvl": 100, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 50, "mr": 20, "str": -30, "dex": -30, "spRegen": 25, "hprRaw": 325, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "fixID": true, "id": 1263}, {"name": "Elder Oak Roots", "set": "Earth Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2725, "wDef": 120, "eDef": 120, "lvl": 90, "strReq": 40, "intReq": 30, "hprPct": 20, "mr": 10, "sdPct": 15, "spd": -12, "hprRaw": 200, "wDamPct": 20, "eDamPct": 20, "aDefPct": -25, "fixID": true, "id": 1266}, {"name": "Elysium-Engraved Aegis", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4200, "fDef": 200, "aDef": 200, "eDef": 200, "lvl": 100, "strReq": 40, "agiReq": 40, "defReq": 40, "mdPct": 15, "dex": -30, "int": -30, "spd": 20, "hprRaw": 275, "mdRaw": 500, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 1264}, {"name": "Flashstep", "set": "Air Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2350, "aDef": 100, "lvl": 85, "agiReq": 50, "agi": 12, "spd": 40, "aDamPct": 15, "fDefPct": -20, "fixID": true, "id": 1270}, {"name": "Gaea-Hewn Boots", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5000, "fDef": 225, "wDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "intReq": 40, "defReq": 40, "mr": 15, "sdPct": 15, "dex": -30, "agi": -30, "expd": 20, "hprRaw": 300, "fDamPct": 10, "wDamPct": 10, "eDamPct": 10, "fDefPct": 25, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 1268}, {"name": "Golemlus Core", "set": "Earth Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1225, "fDef": 50, "wDef": -30, "aDef": 50, "tDef": -30, "eDef": 50, "lvl": 90, "strReq": 25, "defReq": 25, "spd": -6, "hprRaw": 110, "tDamPct": -10, "eDamPct": 8, "type": "necklace", "fixID": true, "id": 1271}, {"name": "Gale's Freedom", "set": "Air Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2225, "aDef": 120, "tDef": 120, "lvl": 87, "dexReq": 30, "agiReq": 30, "sdPct": 20, "xpb": 20, "ref": 20, "dex": 7, "int": 12, "agi": 7, "spd": 20, "fixID": true, "id": 1269}, {"name": "Hephaestus-Forged Sabatons", "tier": "Legendary", "type": "boots", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 250, "aDef": 250, "tDef": 250, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "ls": 500, "ms": 20, "str": -30, "int": -30, "spd": 25, "fDamPct": 10, "aDamPct": 10, "tDamPct": 10, "fDefPct": 25, "aDefPct": 25, "tDefPct": 25, "fixID": true, "spPct3": -28, "id": 1272}, {"name": "Humbark Moccasins", "set": "Earth Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2400, "aDef": -100, "tDef": 80, "eDef": 80, "lvl": 89, "strReq": 50, "dexReq": 50, "sdPct": -20, "mdPct": 15, "ls": 210, "agi": 10, "spd": 15, "atkTier": 1, "fixID": true, "id": 1273}, {"name": "Infused Hive Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1274}, {"name": "Infused Hive Bow", "tier": "Legendary", "type": "bow", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "250-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1276}, {"name": "Infused Hive Relik", "tier": "Legendary", "type": "relik", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "260-290", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1277}, {"name": "Insulated Plate Mail", "set": "Thunder Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 150, "wDef": 100, "aDef": 100, "tDef": 150, "eDef": 150, "lvl": 83, "dexReq": 55, "defReq": 55, "ls": 270, "def": 10, "spd": -15, "atkTier": -1, "tDamPct": -15, "wDefPct": 30, "tDefPct": 40, "eDefPct": 40, "fixID": true, "spPct3": -17, "spPct4": -17, "id": 1279}, {"name": "Infused Hive Spear", "tier": "Legendary", "type": "spear", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "160-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1275}, {"name": "Infused Hive Wand", "tier": "Legendary", "type": "wand", "quest": "The Qira Hive", "set": "Master Hive", "category": "weapon", "slots": 5, "drop": "never", "restrict": "Untradable", "nDam": "125-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "mr": 5, "ms": 5, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 1278}, {"name": "Lightning Flash", "set": "Thunder Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 82, "sdPct": 10, "dex": 5, "spd": 12, "eDamPct": -5, "type": "necklace", "fixID": true, "id": 1296}, {"name": "Intensity", "tier": "Legendary", "quest": "The Qira Hive", "set": "Master Hive", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 425, "lvl": 100, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "type": "ring", "fixID": true, "id": 1280}, {"name": "Mantlewalkers", "set": "Fire Hive", "tier": "Rare", "type": "boots", "thorns": 25, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 4000, "fDef": 125, "eDef": 150, "lvl": 97, "strReq": 25, "defReq": 50, "str": 7, "def": 7, "expd": 50, "fDamPct": 40, "wDamPct": -20, "eDamPct": 40, "fixID": true, "id": 1281}, {"name": "Moon Pool Circlet", "set": "Water Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 35, "lvl": 94, "intReq": 65, "mr": 10, "int": 3, "spRegen": 10, "type": "ring", "fixID": true, "id": 1282}, {"name": "Obsidian-Framed Helmet", "tier": "Legendary", "type": "helmet", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 5400, "fDef": 225, "tDef": 225, "eDef": 225, "lvl": 100, "strReq": 40, "dexReq": 40, "defReq": 40, "ls": 450, "ms": 15, "int": -30, "agi": -30, "atkTier": -14, "mdRaw": 2000, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 20, "tDefPct": 20, "eDefPct": 20, "fixID": true, "id": 1283}, {"name": "Pride of the Aerie", "set": "Air Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2450, "fDef": -70, "aDef": 140, "eDef": 140, "lvl": 84, "strReq": 40, "agiReq": 50, "hprPct": 28, "str": 14, "agi": 7, "spd": 21, "atkTier": 1, "tDefPct": -35, "eDefPct": 21, "fixID": true, "id": 1286}, {"name": "Silt of the Seafloor", "set": "Water Hive", "tier": "Rare", "type": "boots", "thorns": 35, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3250, "wDef": 240, "aDef": -70, "tDef": -70, "eDef": 200, "lvl": 93, "strReq": 30, "intReq": 40, "mr": 10, "ms": 10, "ref": 30, "str": 8, "int": 15, "spd": -12, "fDefPct": 40, "wDefPct": 30, "eDefPct": 40, "fixID": true, "id": 1285}, {"name": "Soulflare", "set": "Fire Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3800, "fDef": 150, "wDef": 125, "tDef": -125, "lvl": 99, "intReq": 40, "defReq": 50, "mr": 10, "ls": 440, "ms": 10, "int": 10, "def": 10, "spRegen": 33, "wDefPct": 20, "tDefPct": -25, "fixID": true, "id": 1287}, {"name": "Sparkling Visor", "set": "Thunder Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2000, "tDef": 125, "lvl": 80, "dexReq": 45, "sdPct": 20, "ms": 15, "xpb": 20, "ref": 20, "tDamPct": 20, "tDefPct": 15, "eDefPct": -25, "fixID": true, "id": 1288}, {"name": "Sparkweaver", "set": "Fire Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 3850, "fDef": 150, "tDef": 200, "lvl": 96, "defReq": 50, "ms": 15, "dex": 20, "def": 10, "wDamPct": -15, "fDefPct": 20, "tDefPct": 30, "fixID": true, "id": 1289}, {"name": "Stillwater Blue", "set": "Water Hive", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2500, "wDef": 180, "tDef": -100, "lvl": 95, "intReq": 60, "mr": 20, "ref": 30, "int": 10, "spRegen": 15, "wDamPct": 25, "tDamPct": -20, "wDefPct": 20, "fixID": true, "id": 1290}, {"name": "Static-charged Leggings", "displayName": "Static-Charged Leggings", "set": "Thunder Hive", "tier": "Rare", "type": "leggings", "thorns": 40, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2050, "tDef": 100, "eDef": -100, "lvl": 82, "dexReq": 55, "hprPct": -40, "ls": 175, "ref": 20, "atkTier": 1, "tDamPct": 40, "wDefPct": -25, "eDefPct": -15, "fixID": true, "id": 1293}, {"name": "Subur Clip", "set": "Earth Hive", "tier": "Rare", "thorns": 20, "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 89, "strReq": 30, "def": -2, "spd": 10, "mdRaw": 105, "eDamPct": 12, "type": "bracelet", "fixID": true, "id": 1291}, {"name": "Trench Scourer", "set": "Water Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2450, "wDef": 130, "tDef": 100, "lvl": 94, "dexReq": 35, "intReq": 50, "ms": 20, "xpb": 40, "lb": 40, "eSteal": 5, "wDamPct": 25, "tDamPct": 25, "fixID": true, "id": 1294}, {"name": "Thunderous Step", "set": "Thunder Hive", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2100, "fDef": -80, "tDef": 125, "lvl": 81, "dexReq": 45, "agiReq": 30, "agi": 15, "def": -5, "spd": 16, "sdRaw": 235, "mdRaw": 400, "eDamPct": -25, "fixID": true, "id": 1297}, {"name": "Twilight-Gilded Cloak", "tier": "Legendary", "type": "chestplate", "quest": "The Qira Hive", "set": "Master Hive", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3000, "aDef": 175, "tDef": 175, "eDef": 175, "lvl": 100, "strReq": 40, "dexReq": 40, "agiReq": 40, "sdPct": -40, "int": -30, "def": -30, "spd": 20, "atkTier": 2, "mdRaw": 90, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "fixID": true, "id": 1295}, {"name": "Vortex Bracer", "set": "Air Hive", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 400, "fDef": -40, "aDef": 40, "lvl": 86, "agiReq": 30, "spd": 10, "sdRaw": 65, "mdRaw": 85, "aDamPct": 12, "type": "bracelet", "fixID": true, "id": 1298}, {"name": "Whitecap Crown", "set": "Water Hive", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2300, "wDef": 150, "tDef": -120, "lvl": 92, "intReq": 75, "int": 10, "sdRaw": 250, "fDamPct": -10, "wDamPct": 20, "tDefPct": -20, "fixID": true, "id": 1299}, {"name": "Turbine Greaves", "set": "Air Hive", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 2800, "fDef": 100, "aDef": 100, "lvl": 86, "ref": 25, "agi": 7, "def": 7, "spd": 20, "mdRaw": 275, "fDefPct": 20, "aDefPct": 20, "fixID": true, "sprintReg": 16, "id": 1292}, {"name": "Hailstone", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "wDef": 40, "aDef": 40, "tDef": -80, "lvl": 56, "intReq": 30, "agiReq": 30, "sdPct": 10, "mdPct": -10, "spd": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": -10, "id": 1300}, {"name": "Hairy Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4, "lvl": 1, "dex": 3, "id": 1302}, {"name": "Halbert", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "36-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 22, "sdPct": -6, "mdPct": 6, "lb": 6, "str": 8, "spd": -6, "id": 1303}, {"name": "Hammer of the Forge", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-180", "fDam": "190-390", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-390", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 25, "defReq": 25, "str": 7, "def": 7, "spd": -15, "hpBonus": 750, "fDamPct": 15, "wDamPct": -15, "eDamPct": 15, "wDefPct": -15, "id": 1304}, {"name": "Hammer of the Blacksmith", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "23-46", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "126-183", "atkSpd": "SUPER_SLOW", "lvl": 30, "strReq": 25, "sdPct": -15, "mdPct": 22, "spd": -7, "mdRaw": 105, "eDamPct": 15, "aDefPct": -12, "id": 1306}, {"name": "Hamsey's Brilliance", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 720, "fDef": 30, "wDef": 30, "lvl": 96, "intReq": 30, "defReq": 30, "mdPct": -7, "ms": 5, "int": 4, "spd": -10, "hprRaw": 60, "tDefPct": -10, "type": "bracelet", "id": 1308}, {"name": "Hallfred's Greed", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 41, "spRegen": -3, "eSteal": 6, "type": "bracelet", "id": 1301}, {"name": "Handcuff", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 33, "strReq": 5, "defReq": 5, "mdPct": 7, "str": 4, "dex": -2, "def": 4, "spd": -4, "type": "bracelet", "id": 1305}, {"name": "Handmade Bucie Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "48-58", "fDam": "34-56", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "xpb": 7, "lb": 7, "str": 5, "hpBonus": 200, "eDamPct": 10, "wDefPct": -6, "id": 1310}, {"name": "Harbinger of Fate", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "130-130", "wDam": "0-0", "aDam": "0-0", "tDam": "100-160", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "dexReq": 40, "defReq": 40, "dex": 13, "def": 13, "expd": 40, "spRegen": -20, "hprRaw": -100, "fDamPct": 20, "tDamPct": 20, "id": 1313}, {"name": "Haqherphix", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-32", "eDam": "11-21", "atkSpd": "SUPER_FAST", "lvl": 42, "strReq": 30, "dexReq": 30, "mr": -10, "ms": 20, "xpb": 9, "expd": 17, "mdRaw": 20, "id": 1309}, {"name": "Hard Light", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "51-57", "wDam": "51-57", "aDam": "51-57", "tDam": "51-57", "eDam": "51-57", "atkSpd": "FAST", "lvl": 96, "strReq": 23, "dexReq": 23, "intReq": 23, "agiReq": 23, "defReq": 23, "mr": 5, "sdPct": 15, "mdPct": 15, "ms": 5, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "fDefPct": -25, "wDefPct": -25, "aDefPct": -25, "tDefPct": -25, "eDefPct": -25, "id": 1311}, {"name": "Hard Hat", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 180, "lvl": 31, "defReq": 10, "ref": 4, "def": 7, "hpBonus": 50, "id": 1307}, {"name": "Hardline", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 20, "wDef": -20, "aDef": -20, "eDef": 35, "lvl": 51, "strReq": 25, "defReq": 25, "sdPct": -8, "mdPct": 8, "str": 4, "spd": -8, "hpBonus": 325, "fDamPct": 6, "id": 1316}, {"name": "Harsh Noise", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 6, "expd": 15, "eSteal": 2, "sdRaw": 15, "id": 1312}, {"name": "Harwrol", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-50", "fDam": "0-0", "wDam": "0-0", "aDam": "60-85", "tDam": "0-0", "eDam": "60-85", "atkSpd": "FAST", "lvl": 97, "strReq": 55, "agiReq": 55, "mdPct": 19, "str": 13, "agi": 13, "spd": 23, "hpBonus": 2500, "wDamPct": -25, "tDamPct": -25, "fDefPct": 25, "tDefPct": 25, "id": 1315}, {"name": "Haze", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "20-50", "wDam": "0-0", "aDam": "20-50", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 20, "defReq": 20, "agi": 10, "def": 10, "hpBonus": 350, "wDefPct": -15, "id": 1320}, {"name": "Head Knocker", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "22-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 18, "sdPct": -12, "mdPct": 4, "int": -3, "spd": -4, "mdRaw": 36, "eDamPct": 4, "id": 1319}, {"name": "Heart of Fire", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 650, "fDef": 35, "wDef": -35, "lvl": 52, "defReq": 30, "hpBonus": 150, "hprRaw": 35, "fDamPct": 5, "wDamPct": -15, "fDefPct": 10, "id": 1317}, {"name": "Heartache", "tier": "Unique", "type": "spear", "thorns": 12, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-80", "fDam": "0-0", "wDam": "140-190", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "intReq": 40, "ls": -175, "ref": 12, "int": 10, "sdRaw": 115, "wDamPct": 20, "tDamPct": -20, "id": 1321}, {"name": "Hearts Club", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-32", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hprPct": 10, "sdPct": -5, "hpBonus": 20, "hprRaw": 5, "id": 1318}, {"name": "Heat Death", "tier": "Fabled", "type": "wand", "majorIds": ["FLASHFREEZE"], "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "36-38", "aDam": "26-48", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "intReq": 55, "agiReq": 35, "mr": 5, "ls": 110, "hpBonus": -500, "sdRaw": 110, "spPct4": -28, "id": 3557}, {"name": "Heartstrings", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "62-90", "fDam": "30-50", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "agiReq": 20, "defReq": 30, "hprPct": 20, "ls": 140, "xpb": 10, "def": 7, "hprRaw": 60, "fDefPct": 10, "aDefPct": 15, "id": 1322}, {"name": "Heat Burst", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-54", "fDam": "76-80", "wDam": "0-0", "aDam": "76-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 58, "agiReq": 20, "defReq": 20, "sdPct": -15, "ls": 95, "fDamPct": 32, "wDamPct": -35, "aDamPct": 32, "id": 1323}, {"name": "Heatwave", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "400-750", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 95, "defReq": 55, "def": 15, "fDamPct": 30, "wDamPct": -20, "fDefPct": 15, "wDefPct": -20, "id": 1324}, {"name": "Heatwind", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "17-26", "fDam": "23-31", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "agiReq": 20, "defReq": 30, "hprPct": 20, "agi": 5, "spd": 10, "aDamPct": 6, "fDefPct": 10, "id": 1326}, {"name": "Heavenly Wisp", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 25, "agiReq": 25, "mr": 10, "xpb": 10, "spd": 10, "spRegen": 10, "tDamPct": -20, "tDefPct": -20, "id": 1327}, {"name": "Heaven's Gate", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "20-66", "aDam": "20-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "agiReq": 30, "sdPct": 15, "mdPct": -10, "spd": 13, "spRegen": 25, "wDamPct": 12, "aDamPct": 12, "id": 1325}, {"name": "Heliophilia", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": 6, "lvl": 8, "hprPct": 20, "xpb": 12, "hpBonus": 30, "hprRaw": 10, "id": 1329}, {"name": "Heliophobia", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": 80, "tDef": -65, "lvl": 60, "intReq": 25, "ms": 10, "lb": 15, "ref": 12, "spRegen": 5, "sdRaw": 75, "tDamPct": -18, "tDefPct": -8, "id": 1332}, {"name": "HellRaiser", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "30-35", "fDam": "26-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "defReq": 10, "expd": 5, "fDamPct": 10, "wDamPct": -30, "id": 1328}, {"name": "Hell's Scream", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "120-200", "wDam": "0-0", "aDam": "80-240", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "agiReq": 35, "defReq": 35, "ls": 255, "str": -8, "agi": 10, "expd": 20, "spd": 18, "eDamPct": -100, "fDefPct": 30, "aDefPct": 30, "id": 1330}, {"name": "Hell Walk", "tier": "Unique", "type": "boots", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 140, "wDef": -160, "lvl": 67, "spd": -8, "fDefPct": 22, "id": 1333}, {"name": "Hellion", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 380, "fDef": 40, "wDef": -40, "lvl": 91, "defReq": 45, "ls": 85, "def": 4, "fDamPct": 6, "wDamPct": -8, "type": "ring", "id": 1334}, {"name": "Heavensent", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-4", "fDam": "0-0", "wDam": "54-66", "aDam": "54-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "intReq": 17, "agiReq": 17, "mr": 5, "xpb": 10, "int": 15, "agi": 15, "def": -8, "spd": 10, "id": 1331}, {"name": "Hellkite's Beak", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-130", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 25, "defReq": 25, "sdPct": 11, "mdPct": 11, "int": -6, "expd": 8, "spRegen": -6, "fDamPct": 8, "wDamPct": -8, "tDamPct": 8, "wDefPct": -20, "id": 1336}, {"name": "Hellbow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-110", "fDam": "120-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-75", "atkSpd": "SLOW", "lvl": 76, "strReq": 10, "defReq": 40, "mdPct": 4, "spd": -3, "hpBonus": 300, "fDamPct": 3, "eDamPct": 7, "id": 1335}, {"name": "Hellkite's Wing", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-48", "wDam": "0-0", "aDam": "0-0", "tDam": "32-72", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "dexReq": 10, "defReq": 20, "sdPct": 9, "mdPct": 9, "ms": 5, "int": -5, "spRegen": -5, "fDamPct": 7, "wDamPct": -10, "tDamPct": 10, "wDefPct": -15, "id": 1337}, {"name": "Helm of Andesite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": 20, "wDef": -40, "eDef": 20, "lvl": 49, "strReq": 20, "agiReq": 10, "mdPct": 12, "str": 8, "expd": 6, "fDamPct": 12, "eDamPct": 10, "fDefPct": -5, "wDefPct": -15, "eDefPct": -5, "id": 1338}, {"name": "Hellstrand", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "230-290", "fDam": "150-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "defReq": 55, "hprPct": 25, "mr": 5, "sdPct": 15, "ls": 655, "dex": 13, "spRegen": -25, "wDamPct": -40, "aDefPct": 30, "id": 1341}, {"name": "Helm of Darkness", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "tDef": 15, "lvl": 35, "sdPct": 12, "ref": 30, "spd": 5, "tDamPct": 10, "id": 1339}, {"name": "Helm of the Dead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 390, "aDef": -30, "tDef": 20, "eDef": 15, "lvl": 44, "strReq": 5, "dexReq": 5, "hprPct": 15, "ls": 27, "str": 7, "agi": -5, "aDamPct": -10, "tDefPct": 5, "eDefPct": 5, "id": 1340}, {"name": "Helmet of Blue Stone", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1050, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 62, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 7, "fDamPct": -5, "wDamPct": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": -5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1346}, {"name": "Helmet of Intelligence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 13, "lvl": 6, "int": 4, "id": 1344}, {"name": "Helter Skelter", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "19-29", "tDam": "19-29", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "dexReq": 10, "agiReq": 5, "atkTier": 1, "hpBonus": -40, "sdRaw": -45, "aDamPct": 11, "tDamPct": 11, "spRaw2": -5, "jh": 1, "id": 1342}, {"name": "Heracul", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "580-840", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "120-225", "atkSpd": "VERY_SLOW", "lvl": 77, "strReq": 90, "mdPct": 30, "str": 20, "def": -10, "expd": 30, "spd": -20, "fDefPct": -8, "wDefPct": -6, "aDefPct": -10, "tDefPct": -4, "eDefPct": -2, "id": 1345}, {"name": "Helmet of Wisdom", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "lvl": 12, "xpb": 3, "int": 5, "id": 1343}, {"name": "Hero's Beginning", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "fDef": 3, "wDef": 3, "aDef": 3, "tDef": 3, "eDef": 3, "lvl": 27, "strReq": 15, "sdPct": 5, "mdPct": 7, "str": 3, "spRegen": 3, "mdRaw": 33, "id": 1375}, {"name": "Hertz", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "tDef": 8, "eDef": -10, "lvl": 23, "dexReq": 10, "mdPct": 6, "tDamPct": 14, "id": 1349}, {"name": "Heroism", "tier": "Rare", "type": "helmet", "thorns": 31, "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3500, "fDef": 120, "wDef": 50, "aDef": 120, "tDef": 50, "eDef": 50, "lvl": 96, "agiReq": 60, "defReq": 60, "hprPct": -143, "ls": 300, "ref": 31, "agi": 10, "def": 10, "spd": 23, "hpBonus": 1000, "hprRaw": -10, "id": 1348}, {"name": "Hesperium", "tier": "Fabled", "type": "bow", "majorIds": ["FISSION"], "poison": 600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "239-239", "fDam": "94-239", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "94-239", "atkSpd": "VERY_SLOW", "lvl": 65, "strReq": 50, "defReq": 40, "hprPct": 30, "dex": -20, "expd": 12, "atkTier": 1, "sdRaw": -165, "tDefPct": -60, "id": 3642}, {"name": "Heura", "tier": "Unique", "type": "chestplate", "thorns": 34, "category": "armor", "drop": "NORMAL", "hp": 3025, "fDef": -110, "wDef": 80, "eDef": 110, "lvl": 96, "strReq": 50, "mdPct": 8, "str": 8, "spd": -7, "mdRaw": 180, "eDamPct": 15, "fDefPct": -20, "wDefPct": 10, "id": 1350}, {"name": "Hetusol", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4200, "fDef": 180, "wDef": 80, "tDef": -160, "eDef": -100, "lvl": 98, "defReq": 55, "hprPct": 60, "mr": 10, "def": 10, "spd": -10, "spRegen": 15, "hprRaw": 100, "tDamPct": -30, "eDamPct": -20, "id": 1347}, {"name": "Hewa", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-140", "fDam": "0-0", "wDam": "0-0", "aDam": "172-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "agiReq": 40, "ms": 10, "xpb": 15, "lb": 15, "agi": 8, "def": -8, "fDefPct": 15, "wDefPct": -30, "aDefPct": 15, "id": 1351}, {"name": "Hickory Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-80", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "defReq": 35, "sdPct": 6, "mdPct": 10, "def": 7, "hprRaw": 80, "fDefPct": 10, "wDefPct": -8, "aDefPct": 10, "id": 1355}, {"name": "Hiker's Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "aDef": -5, "eDef": 7, "lvl": 20, "strReq": 7, "mdPct": 7, "str": 4, "sdRaw": -8, "id": 1358}, {"name": "Hidden", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 7, "type": "ring", "id": 1353}, {"name": "Hilltop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "aDef": -7, "eDef": 15, "lvl": 33, "mdPct": 6, "spd": -4, "mdRaw": 46, "eDefPct": 6, "id": 1356}, {"name": "Hilt", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "8-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 16, "xpb": 6, "sdRaw": -6, "mdRaw": -8, "id": 1357}, {"name": "Hirudo", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "74-120", "aDam": "0-0", "tDam": "0-0", "eDam": "84-110", "atkSpd": "NORMAL", "lvl": 82, "strReq": 30, "intReq": 25, "hprPct": 30, "ms": 5, "xpb": 13, "mdRaw": 130, "tDamPct": -17, "tDefPct": -17, "id": 1359}, {"name": "Holiday Spirit", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-22", "fDam": "30-36", "wDam": "30-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "intReq": 15, "defReq": 20, "mr": 15, "mdPct": -10, "lb": 20, "hprRaw": 45, "fixID": true, "id": 1362}, {"name": "Hollow", "tier": "Unique", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1500, "lvl": 75, "strReq": 40, "agiReq": 40, "ls": 110, "agi": 7, "spd": 8, "mdRaw": 140, "eDamPct": 10, "id": 1363}, {"name": "Hollow Branch", "tier": "Unique", "type": "wand", "poison": 560, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "45-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "ms": 5, "hpBonus": -250, "sdRaw": 65, "wDamPct": 12, "aDamPct": -12, "eDamPct": 12, "id": 1360}, {"name": "Holocene", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-110", "atkSpd": "SLOW", "lvl": 49, "strReq": 25, "fDamPct": -8, "wDamPct": -8, "aDamPct": -8, "tDamPct": -8, "eDamPct": 15, "spRaw4": -5, "id": 1361}, {"name": "Holy Greaves", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "wDef": 25, "tDef": 25, "eDef": -30, "lvl": 40, "hprPct": 20, "mr": 5, "ref": 15, "int": 9, "hpBonus": 75, "spRegen": 5, "eDefPct": -8, "id": 1365}, {"name": "Hope", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "mr": 5, "xpb": 18, "lb": 16, "id": 1364}, {"name": "Hook", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "13-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 29, "agiReq": 10, "xpb": 7, "dex": 4, "spd": 7, "aDamPct": 4, "tDamPct": 6, "id": 1367}, {"name": "Horizon", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "fDef": -100, "aDef": 100, "eDef": 120, "lvl": 90, "strReq": 60, "agiReq": 45, "mdPct": -10, "ref": 15, "dex": 5, "agi": 10, "spd": 14, "atkTier": 1, "hprRaw": 150, "sdRaw": -160, "id": 1366}, {"name": "Hornblende", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 340, "aDef": -15, "eDef": 20, "lvl": 40, "strReq": 5, "mdPct": 8, "str": 5, "fDamPct": 10, "eDefPct": 12, "id": 1369}, {"name": "Hostage", "tier": "Unique", "type": "spear", "quest": "Prison Story", "category": "weapon", "drop": "NORMAL", "nDam": "7-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "str": 3, "spd": -3, "hpBonus": 10, "id": 1371}, {"name": "Hunter", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-15", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 23, "dexReq": 12, "xpb": 4, "lb": 5, "spd": 4, "eDamPct": -6, "id": 1373}, {"name": "Hothead", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": 5, "lvl": 15, "mdPct": 8, "expd": 8, "hprRaw": 5, "id": 1368}, {"name": "Hunger", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 110, "lvl": 17, "mdPct": 10, "ls": 9, "ms": 5, "hprRaw": -7, "id": 1370}, {"name": "Hexed Amulet", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 51, "xpb": 16, "lb": 16, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spRegen": 5, "eSteal": 5, "type": "necklace", "id": 1352}, {"name": "Hydra", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-66", "fDam": "77-99", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 77, "defReq": 55, "hprPct": 33, "ls": 160, "hpBonus": 777, "hprRaw": 99, "id": 1376}, {"name": "Hypercane", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-44", "wDam": "11-33", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "intReq": 25, "defReq": 25, "sdPct": 10, "fDamPct": 12, "wDamPct": 12, "tDefPct": -20, "eDefPct": -20, "id": 1372}, {"name": "Icarus", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "fDef": -20, "aDef": 20, "lvl": 36, "agiReq": 15, "ref": 10, "agi": 5, "spd": 12, "fDamPct": -12, "aDamPct": 6, "fDefPct": -10, "id": 1378}, {"name": "Hysteria", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "fDef": 70, "wDef": -100, "tDef": 80, "eDef": -100, "lvl": 86, "dexReq": 55, "defReq": 20, "hprPct": 40, "mr": -5, "mdPct": 7, "ms": 10, "dex": 4, "def": 8, "spd": 10, "atkTier": -1, "fDamPct": 18, "tDamPct": 20, "id": 1374}, {"name": "Ice Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-32", "fDam": "0-0", "wDam": "12-42", "aDam": "2-52", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "intReq": 30, "agiReq": 30, "dex": -10, "int": 8, "agi": 8, "spd": 9, "wDamPct": 10, "aDamPct": 10, "tDamPct": -20, "tDefPct": -20, "id": 1380}, {"name": "Ice Band", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": 25, "lvl": 56, "intReq": 15, "ref": 9, "spd": -3, "wDamPct": 5, "type": "bracelet", "id": 1377}, {"name": "Ife", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": 25, "lvl": 59, "intReq": 10, "agiReq": 25, "mdPct": -9, "xpb": 6, "spd": 10, "hpBonus": 150, "spRegen": 10, "fDamPct": -14, "fDefPct": -10, "id": 1387}, {"name": "Ice Climbing Boots", "tier": "Rare", "type": "boots", "thorns": 9, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 440, "wDef": 30, "tDef": -40, "eDef": 10, "lvl": 43, "strReq": 5, "intReq": 10, "xpb": 8, "spd": -3, "sdRaw": 35, "fDamPct": -10, "wDamPct": 12, "eDamPct": 10, "id": 1379}, {"name": "Ignition", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "22-55", "fDam": "85-135", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "defReq": 65, "sdPct": -10, "mdPct": 10, "ls": 435, "def": 15, "expd": 40, "fDamPct": 20, "wDamPct": -30, "wDefPct": -30, "id": 1382}, {"name": "Ignatius", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "70-80", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "defReq": 25, "hprPct": 5, "def": 5, "hpBonus": 150, "hprRaw": 25, "fDamPct": 10, "fDefPct": 10, "id": 1381}, {"name": "Ik-El-Van", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "48-75", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 35, "hprPct": 16, "mr": 5, "sdPct": 10, "mdPct": -15, "ls": -120, "ms": 10, "tDamPct": -25, "tDefPct": -25, "id": 1383}, {"name": "Electro Mage's Boots", "tier": "Rare", "type": "boots", "quest": "The Envoy Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2400, "tDef": 80, "lvl": 89, "dexReq": 90, "xpb": 10, "dex": 10, "spd": 15, "tDamPct": 17, "eDefPct": -30, "spRaw1": -5, "spRaw2": 5, "spRaw3": -5, "id": 1386}, {"name": "Impact Winter", "tier": "Fabled", "type": "leggings", "majorIds": ["FLASHFREEZE"], "poison": 270, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1450, "fDef": -90, "aDef": -90, "lvl": 66, "strReq": 40, "intReq": 25, "sdPct": 14, "ms": 10, "hprRaw": -75, "wDamPct": 15, "eDamPct": 24, "fDefPct": -20, "id": 3558}, {"name": "Impeccable Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "450-517", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1384}, {"name": "Impeccable Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "258-271", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1390}, {"name": "Impeccable Andesite Shears", "displayName": "Impeccable Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "143-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "id": 1388}, {"name": "Impeccable Andesite Stick", "displayName": "Impeccable Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "115-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "id": 1389}, {"name": "Impeccable Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "292-345", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 86, "id": 1391}, {"name": "Impeccable Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "250-280", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1394}, {"name": "Impeccable Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "184-196", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1392}, {"name": "Impeccable Birch Shears", "displayName": "Impeccable Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "id": 1393}, {"name": "Impeccable Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "146-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "id": 1397}, {"name": "Impeccable Birch Stick", "displayName": "Impeccable Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "id": 1398}, {"name": "Impeccable Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "310-367", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1404}, {"name": "Impeccable Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "485-543", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "id": 1395}, {"name": "Impeccable Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "275-287", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1399}, {"name": "Impeccable Diorite Shears", "displayName": "Impeccable Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "158-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "id": 1396}, {"name": "Impeccable Diorite Stick", "displayName": "Impeccable Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 93, "id": 1400}, {"name": "Impeccable Granite Shears", "displayName": "Impeccable Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "162-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1492}, {"name": "Impeccable Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "500-555", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1403}, {"name": "Impeccable Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1401}, {"name": "Impeccable Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "320-375", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 98, "id": 1402}, {"name": "Impeccable Granite Stick", "displayName": "Impeccable Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-160", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 98, "id": 1405}, {"name": "Impeccable Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-305", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1406}, {"name": "Impeccable Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "204-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1407}, {"name": "Impeccable Jungle Shears", "displayName": "Impeccable Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 97, "id": 1423}, {"name": "Impeccable Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "163-220", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "id": 1409}, {"name": "Impeccable Jungle Stick", "displayName": "Impeccable Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "id": 1411}, {"name": "Impeccable Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-219", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1410}, {"name": "Impeccable Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1408}, {"name": "Impeccable Light Birch Shears", "displayName": "Impeccable Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "id": 1414}, {"name": "Illuminite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 725, "tDef": 60, "lvl": 55, "dexReq": 15, "intReq": 20, "sdPct": 15, "ms": 5, "xpb": 15, "ref": 5, "wDamPct": 10, "tDamPct": 5, "tDefPct": -10, "eDefPct": -10, "id": 1385}, {"name": "Impeccable Light Birch Stick", "displayName": "Impeccable Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "76-88", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "id": 1413}, {"name": "Impeccable Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "125-141", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "id": 1412}, {"name": "Impeccable Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "198-222", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1415}, {"name": "Impeccable Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-176", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1417}, {"name": "Impeccable Light Jungle Shears", "displayName": "Impeccable Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 98, "id": 1416}, {"name": "Impeccable Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "170-184", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1422}, {"name": "Impeccable Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "131-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "id": 1418}, {"name": "Impeccable Light Jungle Stick", "displayName": "Impeccable Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 98, "id": 1420}, {"name": "Impeccable Light Oak Shears", "displayName": "Impeccable Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "id": 1421}, {"name": "Impeccable Light Oak Stick", "displayName": "Impeccable Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-81", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1427}, {"name": "Impeccable Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "id": 1419}, {"name": "Impeccable Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-226", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1425}, {"name": "Impeccable Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "116-132", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "id": 1424}, {"name": "Impeccable Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "168-174", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1426}, {"name": "Impeccable Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "132-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "id": 1431}, {"name": "Impeccable Light Spruce Shears", "displayName": "Impeccable Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "102-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 95, "id": 1430}, {"name": "Impeccable Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "175-181", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1432}, {"name": "Impeccable Light Spruce Stick", "displayName": "Impeccable Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "id": 1429}, {"name": "Impeccable Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "235-263", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1428}, {"name": "Impeccable Oak Shears", "displayName": "Impeccable Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "107-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "id": 1433}, {"name": "Impeccable Oak Stick", "displayName": "Impeccable Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 78, "id": 1434}, {"name": "Impeccable Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "149-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 78, "id": 1435}, {"name": "Impeccable Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "270-298", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1437}, {"name": "Impeccable Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "197-208", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1439}, {"name": "Impeccable Spruce Shears", "displayName": "Impeccable Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "id": 1436}, {"name": "Impeccable Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "154-215", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 91, "id": 1438}, {"name": "Impeccable Spruce Stick", "displayName": "Impeccable Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "90-112", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "id": 1440}, {"name": "Impeccable Stone Shears", "displayName": "Impeccable Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-163", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "id": 1441}, {"name": "Impeccable Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-491", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1444}, {"name": "Impeccable Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "243-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1443}, {"name": "Impeccable Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "280-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 80, "id": 1449}, {"name": "Imperious", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "385-385", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "agiReq": 55, "int": 30, "agi": 15, "spd": 25, "eSteal": 8, "aDamPct": 15, "aDefPct": 15, "id": 1442}, {"name": "Impeccable Stone Stick", "displayName": "Impeccable Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "id": 1450}, {"name": "Impudent", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "agiReq": 25, "str": 5, "agi": 4, "mdRaw": 37, "type": "ring", "id": 1445}, {"name": "Incandescent", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "fDef": 30, "wDef": 30, "eDef": -50, "lvl": 50, "intReq": 20, "defReq": 20, "hprPct": 13, "xpb": 11, "ref": 17, "fDefPct": 8, "wDefPct": 8, "id": 1452}, {"name": "Impure Morph-Gold", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 125, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1447}, {"name": "Incendiary", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 255, "fDef": 40, "wDef": -30, "lvl": 71, "dexReq": 20, "defReq": 30, "xpb": 6, "expd": 8, "mdRaw": 39, "fDamPct": 6, "wDefPct": -12, "type": "necklace", "id": 1448}, {"name": "Impulse", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-229", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "126-371", "eDam": "126-371", "atkSpd": "SUPER_SLOW", "lvl": 53, "strReq": 25, "dexReq": 25, "mr": -35, "mdPct": 12, "ls": 110, "ms": 30, "int": -5, "hprRaw": -75, "tDamPct": 14, "eDamPct": 14, "id": 1446}, {"name": "Incense Burner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-46", "fDam": "31-51", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "defReq": 15, "xpb": 10, "def": 5, "spd": -5, "hpBonus": 70, "spRegen": 10, "hprRaw": 10, "id": 1453}, {"name": "Incinerator", "tier": "Unique", "type": "bow", "poison": 500, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "121-143", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "defReq": 30, "def": 7, "fDamPct": 18, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "id": 1451}, {"name": "Infatuation", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-70", "fDam": "27-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "agiReq": 5, "defReq": 25, "hprPct": 15, "ls": 48, "int": -5, "hpBonus": 450, "spRegen": 5, "sdRaw": -60, "aDamPct": 18, "id": 1456}, {"name": "Infected Band", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "lootchest", "hp": -60, "lvl": 65, "hprPct": -8, "ls": 30, "type": "bracelet", "id": 1454}, {"name": "Inferna Flamewreath", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "330-350", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "defReq": 80, "sdPct": 10, "hprRaw": -200, "fDamPct": 20, "wDamPct": -50, "wDefPct": -30, "spRaw1": -5, "spRaw3": -5, "id": 1457}, {"name": "Infernal Impulse", "tier": "Fabled", "type": "leggings", "majorIds": ["RALLY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": 95, "wDef": -80, "aDef": -80, "tDef": 65, "lvl": 73, "dexReq": 20, "defReq": 55, "mr": -5, "sdPct": 16, "wDamPct": -30, "fDefPct": -14, "tDefPct": 18, "jh": 1, "id": 3599}, {"name": "Infilak", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-77", "fDam": "55-77", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "defReq": 50, "expd": 99, "spd": 10, "mdRaw": 188, "id": 1455}, {"name": "Ingrainment", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 230, "fDef": -40, "wDef": 90, "eDef": 90, "lvl": 59, "strReq": 30, "intReq": 40, "hprPct": 30, "ls": 46, "spd": -25, "hprRaw": 55, "fDamPct": -50, "tDamPct": -50, "eDefPct": 10, "id": 1460}, {"name": "Iniquity", "tier": "Rare", "poison": 395, "category": "accessory", "drop": "lootchest", "wDef": -40, "aDef": -60, "tDef": 60, "eDef": 40, "lvl": 74, "strReq": 30, "dexReq": 25, "dex": 4, "spRegen": -8, "wDamPct": -10, "tDamPct": 6, "eDamPct": 6, "type": "bracelet", "id": 1461}, {"name": "Inmate Outfit", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1550, "lvl": 72, "id": 773}, {"name": "Influence", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "54-66", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "hprPct": 14, "mdPct": 15, "ls": 46, "xpb": 19, "spRegen": -19, "tDamPct": 15, "id": 1458}, {"name": "Insulation", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 240, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 60, "fDamPct": -4, "tDamPct": -4, "type": "bracelet", "id": 1463}, {"name": "Interference", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "3-158", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "dexReq": 28, "ls": -38, "dex": 7, "sdRaw": 56, "tDamPct": 9, "eDefPct": -21, "spRaw3": -5, "id": 1462}, {"name": "Ionian", "tier": "Unique", "type": "dagger", "poison": 488, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-90", "atkSpd": "NORMAL", "lvl": 69, "strReq": 25, "sdPct": -5, "str": 5, "wDamPct": -15, "eDamPct": 12, "wDefPct": -10, "id": 1467}, {"name": "Inundatio", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 35, "tDef": 30, "eDef": -65, "lvl": 88, "dexReq": 15, "intReq": 65, "sdPct": 5, "mdPct": -10, "sdRaw": 35, "wDamPct": 6, "eDefPct": -10, "type": "necklace", "id": 1464}, {"name": "Iodide", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1180, "tDef": 70, "eDef": -60, "lvl": 73, "dexReq": 20, "intReq": 15, "sdPct": 12, "int": 4, "wDamPct": 7, "tDamPct": 10, "id": 1465}, {"name": "Iris", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-32", "fDam": "28-32", "wDam": "28-32", "aDam": "28-32", "tDam": "28-32", "eDam": "28-32", "atkSpd": "SLOW", "lvl": 85, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "sdPct": -10, "mdPct": -10, "fDefPct": 14, "wDefPct": 14, "aDefPct": 14, "tDefPct": 14, "eDefPct": 14, "id": 1468}, {"name": "Iron Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 10, "def": 4, "spd": -3, "type": "bracelet", "id": 1471}, {"name": "Iron Grippers", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "20-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "200-400", "eDam": "250-350", "atkSpd": "VERY_SLOW", "lvl": 84, "strReq": 35, "dexReq": 35, "ms": 5, "str": 10, "spd": -10, "mdRaw": 390, "tDamPct": 25, "eDamPct": 20, "id": 1469}, {"name": "Iron Knuckle", "tier": "Legendary", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-9", "atkSpd": "SUPER_FAST", "lvl": 15, "strReq": 5, "xpb": 8, "str": 5, "def": 5, "eDamPct": 10, "id": 1470}, {"name": "Iron Incrusted Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 42, "wDef": -2, "eDef": 5, "lvl": 9, "def": 3, "spd": -7, "hpBonus": 10, "aDefPct": -5, "eDefPct": 10, "id": 1472}, {"name": "Iron Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "aDef": -2, "eDef": 5, "lvl": 12, "spd": -5, "hpBonus": 12, "eDamPct": 5, "id": 1476}, {"name": "Iron String", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "47-63", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 5, "sdPct": -3, "mdPct": 8, "str": 5, "agi": -2, "id": 1473}, {"name": "Iron Scrap", "tier": "Unique", "type": "chestplate", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": 30, "aDef": -40, "eDef": 30, "lvl": 48, "strReq": 10, "defReq": 15, "mdPct": 8, "spd": -5, "id": 1475}, {"name": "Irradiation", "tier": "Unique", "type": "wand", "poison": 487, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-41", "aDam": "0-0", "tDam": "17-72", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 28, "intReq": 28, "hprPct": -23, "dex": 8, "int": 5, "wDamPct": 20, "eDamPct": -30, "eDefPct": -15, "id": 1474}, {"name": "Ironclad", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 30, "eDef": 30, "lvl": 66, "strReq": 25, "defReq": 40, "mdPct": 14, "def": 9, "expd": 10, "wDamPct": -10, "wDefPct": -18, "id": 1478}, {"name": "Isaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-3", "fDam": "0-0", "wDam": "6-9", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "mr": 5, "wDamPct": 10, "id": 1480}, {"name": "Island Chain", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "120-132", "fDam": "0-0", "wDam": "140-155", "aDam": "0-0", "tDam": "0-0", "eDam": "140-155", "atkSpd": "SLOW", "lvl": 83, "strReq": 40, "intReq": 40, "mr": 10, "mdPct": -20, "int": 10, "spd": -20, "hpBonus": 2500, "hprRaw": 165, "spRaw1": -5, "id": 1477}, {"name": "Ivory", "tier": "Legendary", "type": "dagger", "poison": -1000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-130", "fDam": "0-0", "wDam": "0-0", "aDam": "55-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "agiReq": 35, "ms": 10, "ref": 30, "agi": 13, "spRegen": 25, "hprRaw": 225, "tDamPct": -40, "fDefPct": 30, "tDefPct": 30, "id": 1479}, {"name": "Ivy", "tier": "Unique", "type": "bow", "poison": 50, "thorns": 6, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-16", "atkSpd": "SLOW", "lvl": 17, "id": 1481}, {"name": "Ivory Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "155-185", "fDam": "15-20", "wDam": "15-20", "aDam": "15-20", "tDam": "15-20", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 75, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -10, "wDamPct": -10, "aDamPct": -10, "tDamPct": -10, "eDamPct": -10, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 1483}, {"name": "Infinity", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "FAST", "lvl": 55, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1459}, {"name": "Jackal Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 24, "hprPct": 9, "hprRaw": 4, "type": "necklace", "id": 1482}, {"name": "Jackpot", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 77, "lvl": 77, "xpb": 7, "lb": 7, "eSteal": 7, "type": "necklace", "id": 1484}, {"name": "Jade Talon", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "108-127", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "mdPct": 19, "ms": 5, "str": 3, "dex": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 1487}, {"name": "Jate", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 17, "sdPct": 8, "xpb": 4, "ref": 5, "id": 1486}, {"name": "Jag", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "lootchest", "lvl": 4, "mdRaw": 3, "type": "ring", "id": 1485}, {"name": "Javelin", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "8-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "dex": 4, "mdRaw": 8, "id": 1491}, {"name": "Jera", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 55, "xpb": 10, "lb": 40, "id": 1488}, {"name": "Jiandan Handwraps", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 83, "strReq": 40, "defReq": 40, "mdPct": 10, "xpb": 10, "hpBonus": 827, "mdRaw": 45, "type": "bracelet", "id": 1489}, {"name": "Jewel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1645, "fDef": 100, "wDef": -80, "lvl": 76, "sdPct": 7, "xpb": 10, "ref": 5, "fDamPct": -20, "wDamPct": 10, "id": 1490}, {"name": "Jike", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 60, "lvl": 16, "lb": 4, "spd": 5, "mdRaw": 14, "id": 1495}, {"name": "Jilted", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 45, "defReq": 30, "def": 5, "hpBonus": 100, "spRegen": -5, "fDamPct": 4, "fDefPct": 6, "id": 1497}, {"name": "Jingu Headband", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "wDef": 6, "tDef": 6, "eDef": -12, "lvl": 33, "dexReq": 10, "intReq": 10, "ms": 5, "xpb": 11, "wDamPct": 8, "tDamPct": 8, "eDefPct": -10, "id": 1494}, {"name": "Joker", "tier": "Rare", "type": "spear", "poison": 120, "thorns": 1, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-40", "wDam": "0-0", "aDam": "0-40", "tDam": "0-0", "eDam": "0-40", "atkSpd": "NORMAL", "lvl": 45, "strReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "ref": 1, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "expd": 1, "spRegen": 1, "eSteal": 1, "id": 1493}, {"name": "Jolt of Inspiration", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "0-0", "wDam": "11-14", "aDam": "0-0", "tDam": "13-22", "eDam": "0-0", "atkSpd": "FAST", "lvl": 40, "dexReq": 10, "intReq": 15, "mr": 5, "sdPct": 8, "ms": 5, "xpb": 10, "int": 4, "tDefPct": -15, "eDefPct": -18, "id": 1498}, {"name": "Juneberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-85", "fDam": "0-0", "wDam": "65-90", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 30, "agiReq": 30, "mr": 5, "sdPct": 10, "int": 8, "agi": 7, "spd": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": -14, "id": 1500}, {"name": "Jungle Sludge", "tier": "Unique", "type": "helmet", "poison": 265, "thorns": 5, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 950, "wDef": -60, "eDef": 50, "lvl": 60, "hprPct": -15, "hpBonus": -275, "wDamPct": 11, "tDefPct": -7, "id": 1499}, {"name": "Jungle Artifact", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "140-210", "fDam": "70-210", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "210-280", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 21, "defReq": 21, "mdPct": 14, "str": 9, "agi": -7, "expd": 14, "spd": -21, "sdRaw": -77, "fDamPct": 14, "id": 1496}, {"name": "Jungle Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1505}, {"name": "Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1502}, {"name": "Jungle Wood Shears", "displayName": "Jungle Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 19, "id": 1501}, {"name": "Jungle Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "id": 1511}, {"name": "Jungle Wood Stick", "displayName": "Jungle Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "id": 1504}, {"name": "Juniper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 26, "strReq": 8, "hprRaw": 4, "eDamPct": 4, "type": "ring", "id": 1503}, {"name": "Justice", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": 50, "wDef": -30, "tDef": -30, "lvl": 96, "defReq": 40, "hprPct": 12, "def": 5, "fDamPct": 8, "type": "bracelet", "id": 1507}, {"name": "Kaas' Fur", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 40, "lvl": 40, "intReq": 15, "mr": 10, "sdPct": -12, "ms": 5, "tDefPct": -10, "id": 1506}, {"name": "Kanata", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-32", "fDam": "0-0", "wDam": "0-0", "aDam": "22-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 20, "spd": 6, "eSteal": 3, "aDamPct": 6, "id": 1509}, {"name": "Kamikaze", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "20-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 27, "defReq": 18, "sdPct": 10, "mdPct": 12, "ls": -8, "agi": 7, "def": -3, "expd": 10, "fDamPct": 5, "wDamPct": -10, "id": 1517}, {"name": "Kapok", "tier": "Rare", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": -60, "wDef": 60, "tDef": -60, "eDef": 60, "lvl": 64, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "wDamPct": 8, "eDamPct": 8, "tDefPct": -15, "id": 1510}, {"name": "Kaleidoscope", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 47, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "xpb": 10, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "id": 1508}, {"name": "Karabiner", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "34-48", "fDam": "23-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 5, "defReq": 25, "hprPct": 18, "lb": 8, "agi": 5, "def": 4, "spd": 6, "aDamPct": 10, "aDefPct": 10, "id": 1512}, {"name": "Karraska", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 140, "aDef": -7, "lvl": 24, "strReq": 8, "sdPct": -5, "mdPct": 12, "str": 8, "agi": -2, "spd": -4, "hpBonus": 35, "eDamPct": 10, "aDefPct": -5, "eDefPct": 5, "id": 1513}, {"name": "Katana", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "74-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "dex": 7, "spd": 10, "sdRaw": -20, "mdRaw": 46, "id": 1514}, {"name": "Katoa's Warmth", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 185, "fDef": 15, "lvl": 23, "hprPct": 45, "hpBonus": 75, "spRegen": 10, "sdRaw": -25, "mdRaw": -26, "id": 1515}, {"name": "Kayde", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 10, "spRegen": 7, "type": "bracelet", "id": 1516}, {"name": "Kaze", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": 20, "lvl": 91, "agiReq": 75, "agi": 5, "spd": 15, "aDefPct": 11, "type": "ring", "id": 1520}, {"name": "Keen Measure", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-18", "fDam": "0-0", "wDam": "11-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 17, "intReq": 5, "mr": 5, "dex": 3, "int": 3, "spd": -4, "spPct2": -14, "id": 1519}, {"name": "Keeper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 4, "type": "bracelet", "id": 1518}, {"name": "Kekkai", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "65-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 66, "agiReq": 30, "ref": 11, "spd": -10, "fDamPct": -30, "wDefPct": 10, "aDefPct": 25, "tDefPct": 10, "eDefPct": 10, "id": 1521}, {"name": "Kelight's Gauntlet", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 435, "wDef": -15, "aDef": -15, "lvl": 69, "strReq": 40, "mdPct": 7, "str": 4, "mdRaw": 18, "wDefPct": -7, "aDefPct": -7, "type": "bracelet", "id": 1522}, {"name": "Kelight's Shield", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 75, "wDef": -60, "aDef": -45, "tDef": 75, "eDef": 60, "lvl": 64, "defReq": 40, "hprPct": 25, "xpb": 10, "def": 9, "hpBonus": 550, "fDefPct": 22, "wDefPct": -8, "tDefPct": 22, "id": 1535}, {"name": "Kelvik", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "fDef": 15, "lvl": 40, "defReq": 15, "def": 5, "spd": -6, "hpBonus": 80, "fDamPct": 8, "wDamPct": -7, "fDefPct": 10, "aDefPct": 5, "id": 1523}, {"name": "Kenaz", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-71", "fDam": "28-36", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "defReq": 20, "ref": 13, "hpBonus": 150, "spRegen": 3, "fDamPct": 8, "wDamPct": -5, "wDefPct": -10, "id": 1526}, {"name": "Kelight's Toothbrush", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "8-9", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 17, "mdPct": 5, "xpb": 4, "lb": 9, "eDamPct": -5, "eDefPct": -5, "id": 1538}, {"name": "Kernel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -150, "wDef": -60, "lvl": 94, "dexReq": 55, "intReq": 10, "int": 4, "sdRaw": 55, "wDamPct": -8, "tDamPct": 4, "type": "necklace", "id": 1524}, {"name": "Kickback", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -75, "aDef": 140, "eDef": -75, "lvl": 99, "agiReq": 80, "mdPct": 13, "str": 5, "agi": 5, "def": 5, "spd": 12, "mdRaw": 260, "aDamPct": 22, "wDefPct": -13, "tDefPct": -13, "jh": 1, "id": 1525}, {"name": "Kickers", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 34, "lvl": 10, "mdPct": 6, "hpBonus": -6, "id": 1529}, {"name": "Kilauea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "FAST", "lvl": 68, "strReq": 30, "defReq": 25, "sdPct": 7, "str": 5, "expd": 15, "spd": 12, "hpBonus": -750, "mdRaw": 115, "id": 1528}, {"name": "Kilij", "tier": "Legendary", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-5", "tDam": "0-0", "eDam": "2-4", "atkSpd": "FAST", "lvl": 40, "strReq": 20, "agiReq": 20, "sdPct": -30, "spd": 20, "mdRaw": 90, "aDamPct": 20, "tDamPct": -80, "eDamPct": 20, "id": 1531}, {"name": "Kilpkonn", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 360, "wDef": 25, "tDef": -15, "lvl": 37, "defReq": 12, "ref": 6, "def": 10, "spd": -12, "hpBonus": 40, "hprRaw": 16, "id": 1527}, {"name": "King of Hearts", "tier": "Rare", "type": "wand", "poison": -25000, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 97, "intReq": 75, "defReq": 65, "mr": 15, "hpBonus": 3692, "hprRaw": 200, "sdRaw": -25000, "mdRaw": -25000, "wDamPct": 81, "spRaw1": -5, "id": 1533}, {"name": "Kindle", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 50, "lvl": 62, "defReq": 60, "hprPct": 7, "sdPct": -20, "mdPct": -20, "def": 9, "spRegen": 8, "hprRaw": 60, "fDefPct": 8, "id": 1532}, {"name": "King of Blocks", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "70-100", "atkSpd": "SLOW", "lvl": 73, "strReq": 20, "xpb": 15, "lb": 10, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "id": 1534}, {"name": "Kitten Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-42", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-75", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "sdPct": -6, "mdPct": -4, "dex": 13, "spd": 8, "mdRaw": 52, "id": 1530}, {"name": "Kivilu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-690", "wDam": "0-690", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 100, "intReq": 45, "defReq": 45, "hprPct": 15, "mr": 10, "int": 20, "def": -20, "hpBonus": -3900, "hprRaw": 465, "fDamPct": 31, "wDamPct": 31, "id": 1537}, {"name": "Kizuato", "tier": "Unique", "type": "chestplate", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1550, "fDef": 80, "wDef": -70, "aDef": -70, "tDef": 80, "lvl": 74, "dexReq": 20, "defReq": 20, "ls": 140, "def": 3, "expd": 11, "id": 1536}, {"name": "Knight Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 230, "fDef": 10, "wDef": -5, "aDef": -5, "eDef": 10, "lvl": 33, "strReq": 12, "defReq": 12, "hprPct": 20, "sdPct": -5, "mdPct": 10, "fDamPct": 10, "eDamPct": 10, "id": 1540}, {"name": "Knucklebones", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 99, "ls": -1835, "ms": -200, "xpb": 25, "lb": 25, "expd": 20, "atkTier": 2, "spRegen": -50, "eSteal": 5, "type": "bracelet", "id": 1539}, {"name": "Kolkhaar", "tier": "Unique", "type": "spear", "poison": 245, "category": "weapon", "drop": "NORMAL", "nDam": "21-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "13-33", "eDam": "17-29", "atkSpd": "SLOW", "lvl": 43, "strReq": 25, "dexReq": 25, "mdPct": -60, "spd": -7, "atkTier": 2, "spRegen": -10, "id": 1543}, {"name": "Kratke", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 58, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 1542}, {"name": "Krakem", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "343-503", "fDam": "0-0", "wDam": "137-229", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 55, "intReq": 25, "mdPct": 9, "str": 5, "int": 9, "sdRaw": 80, "fDamPct": -16, "eDamPct": 20, "id": 1541}, {"name": "Krolton's Cruelty", "tier": "Rare", "poison": 500, "category": "accessory", "drop": "lootchest", "fDef": 40, "wDef": -80, "tDef": 60, "lvl": 88, "strReq": 40, "dexReq": 70, "str": 5, "dex": 5, "hprRaw": -70, "mdRaw": 55, "type": "bracelet", "id": 1544}, {"name": "Kuuichi", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 6, "tDef": -2, "lvl": 11, "xpb": 6, "int": 5, "sdRaw": 10, "id": 1563}, {"name": "Kuiper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-5", "fDam": "9-17", "wDam": "9-17", "aDam": "9-17", "tDam": "9-17", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 25, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "hpBonus": -39, "id": 1545}, {"name": "Bronze Basic Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "eSteal": 5, "type": "bracelet", "fixID": true, "id": 1546}, {"name": "Bronze Basic Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 10, "lb": 10, "spRegen": 10, "type": "necklace", "fixID": true, "id": 1547}, {"name": "Diamond Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 65, "lvl": 95, "strReq": 100, "mdPct": 16, "str": 6, "eDamPct": 16, "eDefPct": 5, "type": "bracelet", "fixID": true, "id": 1548}, {"name": "Bronze Basic Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 500, "lvl": 90, "xpb": 12, "lb": 12, "type": "ring", "fixID": true, "id": 1549}, {"name": "Diamond Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 80, "lvl": 95, "strReq": 100, "str": 12, "eDamPct": 10, "eDefPct": 16, "type": "necklace", "fixID": true, "id": 1550}, {"name": "Diamond Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 100, "mdPct": 14, "str": 7, "expd": 12, "spd": -5, "mdRaw": 95, "type": "ring", "fixID": true, "id": 1552}, {"name": "Diamond Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "type": "bracelet", "fixID": true, "id": 1554}, {"name": "Diamond Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "type": "necklace", "fixID": true, "id": 1553}, {"name": "Diamond Fusion Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 95, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": 7, "mdPct": 7, "ref": 10, "hpBonus": 500, "type": "ring", "fixID": true, "id": 1551}, {"name": "Diamond Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "mr": 5, "ms": 5, "int": 5, "wDamPct": 10, "wDefPct": 10, "type": "ring", "fixID": true, "id": 1556}, {"name": "Diamond Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 80, "lvl": 95, "intReq": 100, "mr": 10, "ref": 15, "int": 7, "sdRaw": 55, "type": "necklace", "fixID": true, "id": 1558}, {"name": "Diamond Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 70, "lvl": 95, "intReq": 100, "sdPct": 8, "ms": 15, "int": 7, "wDamPct": 12, "type": "bracelet", "fixID": true, "id": 1555}, {"name": "Diamond Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1500, "fDef": 80, "lvl": 95, "defReq": 100, "def": 8, "expd": 15, "fDamPct": 14, "fDefPct": 7, "type": "bracelet", "fixID": true, "id": 1557}, {"name": "Diamond Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 120, "lvl": 95, "defReq": 100, "hprPct": 20, "def": 12, "fDamPct": 8, "fDefPct": 20, "type": "necklace", "fixID": true, "id": 1561}, {"name": "Diamond Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -450, "tDef": 100, "lvl": 95, "dexReq": 100, "sdPct": 8, "dex": 7, "sdRaw": 60, "tDamPct": 16, "tDefPct": 10, "type": "bracelet", "fixID": true, "id": 1559}, {"name": "Diamond Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1000, "fDef": 60, "lvl": 95, "defReq": 100, "hprPct": 16, "sdPct": -5, "mdPct": -2, "def": 3, "hprRaw": 110, "fDefPct": 7, "type": "ring", "fixID": true, "id": 1562}, {"name": "Diamond Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 50, "lvl": 95, "dexReq": 100, "spd": 5, "atkTier": 1, "mdRaw": 29, "tDamPct": 6, "type": "necklace", "fixID": true, "id": 1560}, {"name": "Diamond Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 135, "lvl": 95, "agiReq": 100, "agi": 7, "spd": 18, "aDamPct": 8, "aDefPct": 12, "type": "bracelet", "fixID": true, "id": 1566}, {"name": "Diamond Static Ring", "tier": "Legendary", "thorns": 10, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 70, "lvl": 95, "dexReq": 100, "hprPct": -10, "dex": 10, "tDamPct": 16, "type": "ring", "fixID": true, "id": 1564}, {"name": "Diamond Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 100, "lvl": 95, "agiReq": 100, "ref": 16, "agi": 12, "spd": 16, "aDamPct": 8, "aDefPct": 16, "type": "necklace", "fixID": true, "id": 1565}, {"name": "Gold Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 75, "mdPct": 12, "str": 4, "eDamPct": 11, "type": "bracelet", "fixID": true, "id": 1569}, {"name": "Diamond Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -240, "aDef": 50, "lvl": 95, "agiReq": 100, "agi": 5, "spd": 12, "aDamPct": 18, "aDefPct": 7, "type": "ring", "fixID": true, "id": 1568}, {"name": "Gold Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 60, "lvl": 95, "strReq": 75, "str": 9, "eDamPct": 7, "eDefPct": 12, "type": "necklace", "fixID": true, "id": 1567}, {"name": "Gold Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 35, "wDef": 35, "aDef": 35, "tDef": 35, "eDef": 35, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "lb": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "type": "bracelet", "fixID": true, "id": 1572}, {"name": "Gold Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 75, "mdPct": 11, "str": 5, "expd": 8, "spd": -4, "mdRaw": 80, "type": "ring", "fixID": true, "id": 1570}, {"name": "Gold Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "sdPct": 6, "ms": 10, "int": 5, "wDamPct": 8, "type": "bracelet", "fixID": true, "id": 1577}, {"name": "Gold Fusion Ring", "tier": "Legendary", "thorns": 7, "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 4, "mdPct": 4, "ref": 7, "hpBonus": 375, "type": "ring", "fixID": true, "id": 1571}, {"name": "Gold Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 95, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "type": "necklace", "fixID": true, "id": 1573}, {"name": "Gold Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 65, "lvl": 95, "intReq": 75, "mr": 5, "ref": 5, "int": 5, "sdRaw": 40, "type": "necklace", "fixID": true, "id": 1583}, {"name": "Gold Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 775, "fDef": 50, "lvl": 95, "defReq": 75, "hprPct": 12, "sdPct": -3, "def": 2, "hprRaw": 70, "fDefPct": 4, "type": "ring", "fixID": true, "id": 1578}, {"name": "Gold Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 1100, "fDef": 65, "lvl": 95, "defReq": 75, "def": 5, "expd": 5, "fDamPct": 9, "fDefPct": 4, "type": "bracelet", "fixID": true, "id": 1576}, {"name": "Gold Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 825, "fDef": 90, "lvl": 95, "defReq": 75, "hprPct": 10, "def": 9, "fDamPct": 5, "fDefPct": 15, "type": "necklace", "fixID": true, "id": 1575}, {"name": "Gold Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 40, "lvl": 95, "dexReq": 75, "spd": 2, "mdRaw": 25, "tDamPct": 4, "type": "necklace", "fixID": true, "id": 1580}, {"name": "Gold Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -350, "tDef": 75, "lvl": 95, "dexReq": 75, "sdPct": 5, "dex": 5, "sdRaw": 40, "tDamPct": 12, "tDefPct": 7, "type": "bracelet", "fixID": true, "id": 1581}, {"name": "Gold Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 105, "lvl": 95, "agiReq": 75, "agi": 4, "spd": 14, "aDamPct": 6, "aDefPct": 10, "type": "bracelet", "fixID": true, "id": 1585}, {"name": "Gold Static Ring", "tier": "Legendary", "thorns": 4, "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 75, "hprPct": -7, "dex": 8, "tDamPct": 12, "type": "ring", "fixID": true, "id": 1579}, {"name": "Gold Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 35, "lvl": 95, "agiReq": 75, "agi": 3, "spd": 9, "aDamPct": 14, "aDefPct": 5, "type": "ring", "fixID": true, "id": 1582}, {"name": "Legendary Medallion", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 100, "type": "necklace", "id": 1587}, {"name": "Gold Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -180, "aDef": 75, "lvl": 95, "agiReq": 75, "ref": 8, "agi": 8, "spd": 12, "aDamPct": 4, "aDefPct": 10, "type": "necklace", "fixID": true, "id": 1626}, {"name": "Silver Fiber Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 40, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 2, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 1589}, {"name": "Silver Fiber Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 50, "lvl": 95, "strReq": 50, "str": 6, "eDamPct": 5, "eDefPct": 8, "type": "necklace", "fixID": true, "id": 1586}, {"name": "Silver Fiber Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "eDef": 20, "lvl": 95, "strReq": 50, "mdPct": 8, "str": 3, "spd": -3, "mdRaw": 65, "type": "ring", "fixID": true, "id": 1588}, {"name": "Silver Fusion Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "lb": 6, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 1584}, {"name": "Silver Fusion Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "type": "necklace", "fixID": true, "id": 1590}, {"name": "Silver Hydro Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "sdPct": 3, "ms": 5, "int": 4, "wDamPct": 5, "type": "bracelet", "fixID": true, "id": 1593}, {"name": "Silver Fusion Ring", "tier": "Legendary", "thorns": 5, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 95, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 3, "mdPct": 3, "ref": 5, "hpBonus": 250, "type": "ring", "fixID": true, "id": 1591}, {"name": "Silver Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 40, "lvl": 95, "intReq": 50, "ms": 5, "int": 3, "wDamPct": 5, "wDefPct": 5, "type": "ring", "fixID": true, "id": 1594}, {"name": "Silver Hydro Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 50, "int": 3, "sdRaw": 35, "type": "necklace", "fixID": true, "id": 1592}, {"name": "Gold Hydro Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 55, "lvl": 95, "intReq": 75, "mr": 5, "int": 4, "wDamPct": 7, "wDefPct": 7, "type": "ring", "fixID": true, "id": 1574}, {"name": "Silver Solar Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 900, "fDef": 50, "lvl": 95, "defReq": 50, "def": 3, "fDamPct": 6, "fDefPct": 2, "type": "bracelet", "fixID": true, "id": 1595}, {"name": "Silver Solar Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 750, "fDef": 70, "lvl": 95, "defReq": 50, "def": 6, "fDefPct": 10, "type": "necklace", "fixID": true, "id": 1599}, {"name": "Silver Solar Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 40, "lvl": 95, "defReq": 50, "hprPct": 8, "def": 1, "hprRaw": 40, "type": "ring", "fixID": true, "id": 1596}, {"name": "Silver Steam Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "aDef": 90, "lvl": 95, "agiReq": 50, "agi": 2, "spd": 10, "aDamPct": 4, "aDefPct": 8, "type": "bracelet", "fixID": true, "id": 1600}, {"name": "Silver Static Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 95, "dexReq": 50, "mdRaw": 20, "tDamPct": 2, "type": "necklace", "fixID": true, "id": 1598}, {"name": "Silver Static Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -210, "tDef": 30, "lvl": 95, "dexReq": 50, "dex": 6, "tDamPct": 8, "type": "ring", "fixID": true, "id": 1602}, {"name": "Silver Steam Necklace", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 60, "lvl": 95, "agiReq": 50, "ref": 4, "agi": 4, "spd": 10, "aDefPct": 5, "type": "necklace", "fixID": true, "id": 1603}, {"name": "Silver Steam Ring", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -120, "aDef": 20, "lvl": 95, "agiReq": 50, "agi": 1, "spd": 6, "aDamPct": 10, "aDefPct": 3, "type": "ring", "fixID": true, "id": 1601}, {"name": "Lacerator", "tier": "Unique", "type": "dagger", "poison": 195, "category": "weapon", "drop": "NORMAL", "nDam": "17-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "ls": 23, "dex": 7, "id": 1604}, {"name": "Laen's Curiosity", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 6, "lvl": 25, "intReq": 12, "xpb": 8, "int": 5, "type": "bracelet", "id": 1605}, {"name": "Lake", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 23, "int": 3, "sdRaw": 5, "wDamPct": 2, "wDefPct": 5, "type": "ring", "id": 1606}, {"name": "Laoc Alcher", "tier": "Unique", "type": "bow", "poison": 665, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "114-800", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-343", "eDam": "0-343", "atkSpd": "SUPER_SLOW", "lvl": 70, "strReq": 35, "dexReq": 35, "hprPct": 25, "mr": -10, "ls": 220, "hpBonus": -1350, "hprRaw": 50, "mdRaw": 455, "id": 1608}, {"name": "Lapis Necklace", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 59, "intReq": 35, "mr": 5, "sdRaw": -25, "type": "necklace", "id": 1607}, {"name": "Largo", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 36, "strReq": 25, "mdPct": 10, "str": 8, "dex": -12, "expd": 20, "spd": -15, "mdRaw": 175, "id": 1609}, {"name": "Silver Static Bracelet", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -280, "tDef": 50, "lvl": 95, "dexReq": 50, "sdPct": 3, "dex": 3, "sdRaw": 25, "tDamPct": 8, "tDefPct": 5, "type": "bracelet", "fixID": true, "id": 1597}, {"name": "Last Perdition", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "320-330", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 30, "defReq": 30, "mr": -5, "dex": 10, "hpBonus": -500, "fDamPct": 15, "tDamPct": 15, "wDefPct": -10, "id": 1610}, {"name": "Lasting", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 63, "spd": -5, "spRegen": 5, "hprRaw": 33, "type": "bracelet", "id": 1611}, {"name": "Latchkey", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 77, "def": 8, "type": "bracelet", "id": 1612}, {"name": "Layton", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "65-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "intReq": 40, "xpb": 10, "int": 15, "sdRaw": 120, "id": 1613}, {"name": "Lazybones", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "265-335", "fDam": "0-0", "wDam": "110-145", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "hprPct": 12, "mr": 5, "xpb": 15, "spd": -12, "id": 1617}, {"name": "Lead", "tier": "Unique", "poison": 235, "category": "accessory", "drop": "lootchest", "hp": -75, "eDef": 20, "lvl": 62, "strReq": 15, "str": 4, "int": -1, "spd": -4, "type": "ring", "id": 1615}, {"name": "Leaning Log", "tier": "Unique", "type": "wand", "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "135-180", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 35, "mdPct": 8, "str": 7, "int": 7, "hpBonus": 1200, "aDamPct": -20, "tDamPct": -20, "id": 1616}, {"name": "Leadlights", "tier": "Rare", "type": "boots", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3125, "lvl": 95, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "spRegen": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "fDefPct": 11, "wDefPct": 11, "aDefPct": 11, "tDefPct": 11, "eDefPct": 11, "id": 1614}, {"name": "Leather Face", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 40, "lvl": 13, "xpb": 3, "lb": 4, "def": 3, "tDefPct": 5, "id": 1621}, {"name": "Leech Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "ls": 7, "def": 3, "id": 1620}, {"name": "Lecade's Rank", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 550, "lvl": 79, "mdPct": 8, "xpb": 8, "type": "bracelet", "id": 1618}, {"name": "Led Balloon", "tier": "Unique", "type": "relik", "sprint": -12, "category": "weapon", "drop": "NORMAL", "nDam": "97-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "51-57", "atkSpd": "SUPER_SLOW", "lvl": 23, "strReq": 10, "mdPct": 6, "spd": 5, "aDamPct": 10, "eDefPct": 8, "id": 1622}, {"name": "Leech Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "lvl": 20, "ls": 8, "id": 1623}, {"name": "Leg of the Scared", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": 80, "eDef": -60, "lvl": 66, "agiReq": 25, "agi": 5, "spd": 15, "aDamPct": 10, "id": 1619}, {"name": "Leggings of Desolation", "tier": "Rare", "type": "leggings", "poison": 800, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2400, "fDef": 50, "wDef": -200, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 89, "dexReq": 40, "defReq": 40, "hprPct": -20, "sdPct": 20, "mdPct": 20, "ls": 240, "ms": 10, "spRegen": -50, "wDamPct": -20, "id": 1627}, {"name": "Legendary Smasher", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "50-125", "fDam": "25-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 26, "def": 4, "expd": 65, "wDamPct": -15, "wDefPct": -5, "id": 1624}, {"name": "Leggings of Haste", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1500, "aDef": 60, "lvl": 79, "agiReq": 80, "sdPct": -20, "spd": 15, "atkTier": 1, "mdRaw": 120, "aDamPct": 15, "fDefPct": -50, "id": 1625}, {"name": "Leggings of Restoration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 60, "wDef": 60, "aDef": -60, "tDef": -60, "lvl": 74, "intReq": 20, "defReq": 20, "hprPct": 25, "mr": 5, "sdPct": -7, "mdPct": -7, "spRegen": 5, "hprRaw": 80, "id": 1629}, {"name": "Leictreach Makani", "tier": "Rare", "type": "leggings", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "aDef": 150, "tDef": 150, "lvl": 95, "dexReq": 60, "agiReq": 60, "sdPct": 19, "ms": 5, "ref": 35, "dex": 15, "agi": 15, "spd": 27, "atkTier": 1, "aDamPct": 32, "tDamPct": 32, "eDefPct": -60, "id": 1632}, {"name": "Leggings of the Halt", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 300, "lvl": 36, "defReq": 20, "spd": -19, "fDefPct": 10, "wDefPct": 10, "aDefPct": -5, "tDefPct": 10, "eDefPct": 10, "id": 1628}, {"name": "Leikkuri", "tier": "Rare", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "65-83", "fDam": "25-33", "wDam": "0-0", "aDam": "30-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "agiReq": 30, "defReq": 10, "agi": 7, "def": 7, "spd": 11, "fDefPct": 12, "wDefPct": -10, "aDefPct": 8, "id": 1630}, {"name": "Lemon Legs", "tier": "Legendary", "type": "leggings", "poison": 35, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 125, "tDef": 15, "eDef": -5, "lvl": 18, "mdPct": 15, "xpb": 7, "dex": 7, "sdRaw": 15, "tDamPct": 10, "eDamPct": -12, "eDefPct": -10, "id": 1633}, {"name": "Lethality", "tier": "Unique", "type": "relik", "poison": 575, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-32", "fDam": "30-32", "wDam": "0-0", "aDam": "0-0", "tDam": "30-32", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 110, "ms": -10, "expd": 15, "id": 1635}, {"name": "Leo", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 4200, "fDef": 200, "wDef": -200, "lvl": 93, "sdPct": -30, "mdPct": -30, "hpBonus": 1400, "hprRaw": 200, "fDamPct": 30, "id": 1631}, {"name": "Lerteco", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "eDef": -50, "lvl": 78, "dexReq": 50, "mdPct": 5, "str": -10, "dex": 13, "mdRaw": 135, "tDamPct": 5, "tDefPct": 5, "id": 1637}, {"name": "Ley Lines", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1975, "wDef": 90, "tDef": 90, "eDef": -175, "lvl": 82, "intReq": 50, "mr": 10, "xpb": 8, "hpBonus": -550, "spRegen": 8, "sdRaw": 120, "id": 1636}, {"name": "Lichcall", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 20, "sdPct": 15, "mdPct": 11, "ms": 5, "wDamPct": -30, "aDamPct": -15, "id": 1638}, {"name": "Libella", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 32, "agi": 4, "spd": 4, "aDamPct": 4, "type": "ring", "id": 1639}, {"name": "Libra", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 3150, "lvl": 91, "strReq": 33, "dexReq": 33, "intReq": 33, "agiReq": 33, "defReq": 33, "mr": 5, "str": 7, "dex": 7, "int": 7, "agi": 7, "def": 7, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 1641}, {"name": "Lichclaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 20, "sdPct": 11, "mdPct": 15, "ls": 135, "wDefPct": -20, "aDefPct": -10, "id": 1640}, {"name": "Lichenwal", "tier": "Unique", "type": "boots", "poison": 245, "thorns": 7, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "aDef": -80, "eDef": 120, "lvl": 84, "strReq": 40, "str": 10, "expd": 15, "hprRaw": 100, "eDamPct": 10, "eDefPct": 15, "id": 1644}, {"name": "Ligfamblawende", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-111", "fDam": "200-244", "wDam": "0-0", "aDam": "167-277", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "agiReq": 40, "defReq": 35, "ls": 260, "agi": 8, "def": 8, "hpBonus": 800, "fDamPct": 10, "wDamPct": -25, "fDefPct": 20, "aDefPct": 20, "id": 1643}, {"name": "Life Extractor", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "32-46", "fDam": "32-46", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 26, "ls": 35, "lb": 5, "hpBonus": 46, "fDefPct": 5, "wDefPct": -10, "id": 1642}, {"name": "Light Birch Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "id": 1647}, {"name": "Light Jungle Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "id": 1646}, {"name": "Light Kaekell", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 500, "aDef": 15, "tDef": 15, "lvl": 55, "dexReq": 25, "agiReq": 25, "sdPct": 10, "mdPct": 10, "dex": 4, "agi": 4, "spd": 10, "aDamPct": 10, "tDamPct": 10, "eDefPct": -30, "id": 1648}, {"name": "Light Oak Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 4, "id": 1645}, {"name": "Lightning Edge", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "72-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "9-145", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 94, "dexReq": 50, "ls": 245, "ms": 5, "dex": 9, "hprRaw": -120, "tDamPct": 12, "tDefPct": 10, "eDefPct": -15, "id": 1686}, {"name": "Light Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 17, "id": 1651}, {"name": "Limbo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "155-275", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-1200", "eDam": "385-385", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 45, "dexReq": 45, "mr": -20, "mdPct": 25, "str": 9, "dex": 13, "hprRaw": -250, "aDamPct": 50, "tDamPct": 15, "eDamPct": 20, "id": 1655}, {"name": "Lightningrod", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-67", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 30, "intReq": 35, "sdPct": 8, "dex": 8, "wDamPct": 23, "fDefPct": -20, "tDefPct": 30, "id": 1649}, {"name": "Lightshow", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "19-23", "wDam": "18-25", "aDam": "17-26", "tDam": "16-27", "eDam": "20-22", "atkSpd": "SUPER_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 70, "spRegen": 20, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 1650}, {"name": "Liquified Sun", "displayName": "Liquefied Sun", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-90", "fDam": "80-85", "wDam": "0-0", "aDam": "0-0", "tDam": "45-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 92, "dexReq": 45, "defReq": 35, "ref": 20, "def": 10, "hpBonus": 1731, "wDamPct": -20, "eDamPct": -20, "fDefPct": 25, "tDefPct": 25, "id": 1654}, {"name": "Lithium", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 14, "xpb": 5, "hprRaw": 2, "type": "necklace", "id": 1652}, {"name": "Little Inferno", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 120, "wDef": -20, "lvl": 27, "defReq": 15, "sdPct": 20, "mdPct": 10, "expd": 25, "fDamPct": 15, "wDefPct": -25, "id": 1653}, {"name": "Little Machine", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "13-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "4-8", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "dex": 4, "sdRaw": 13, "mdRaw": 13, "spPct1": 18, "id": 1658}, {"name": "Lizard", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 18, "lvl": 18, "fDamPct": 5, "type": "ring", "id": 1656}, {"name": "Loaded Question", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "72-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "140-165", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 90, "dexReq": 70, "ms": 10, "int": -10, "def": -15, "sdRaw": 240, "mdRaw": 140, "tDamPct": 30, "fDefPct": -30, "wDefPct": -30, "id": 1660}, {"name": "Loam", "tier": "Unique", "type": "wand", "poison": 180, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-15", "atkSpd": "NORMAL", "lvl": 39, "strReq": 10, "intReq": 5, "int": 5, "wDamPct": 10, "tDamPct": -5, "eDefPct": 7, "id": 1657}, {"name": "Lockpick\u058e", "displayName": "Lockpick", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-10", "fDam": "0-0", "wDam": "0-0", "aDam": "14-21", "tDam": "14-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "agiReq": 15, "dex": 7, "spd": 10, "eSteal": 5, "eDamPct": -12, "eDefPct": -12, "id": 1659}, {"name": "Lodestone", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "wDef": 10, "eDef": -15, "lvl": 56, "intReq": 25, "mr": -5, "sdPct": 11, "xpb": 10, "sdRaw": 30, "tDamPct": 6, "type": "ring", "id": 1665}, {"name": "Log Suit", "tier": "Unique", "type": "chestplate", "thorns": 6, "category": "armor", "drop": "NORMAL", "hp": 21, "fDef": -3, "eDef": 5, "lvl": 6, "spd": -2, "id": 1662}, {"name": "Locrian", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "28-33", "aDam": "22-33", "tDam": "17-55", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 15, "intReq": 20, "agiReq": 15, "ls": 115, "ms": 15, "dex": 7, "int": 9, "agi": 7, "sdRaw": 125, "fDefPct": -40, "eDefPct": -40, "id": 1661}, {"name": "Logistics", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "wDef": 90, "tDef": 90, "eDef": -120, "lvl": 81, "dexReq": 50, "intReq": 40, "mdPct": -55, "dex": 8, "int": 8, "wDamPct": 40, "tDamPct": 40, "spRaw1": 5, "spRaw3": 5, "spRaw4": -5, "id": 1663}, {"name": "Lost Soul", "tier": "Rare", "type": "spear", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-90", "fDam": "0-0", "wDam": "0-0", "aDam": "70-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "agiReq": 50, "ls": 260, "spd": 7, "mdRaw": 110, "aDamPct": 8, "aDefPct": 9, "id": 1668}, {"name": "Long Bow", "tier": "Unique", "type": "bow", "thorns": 5, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "SLOW", "lvl": 38, "strReq": 25, "hprPct": 15, "lb": 5, "str": 7, "agi": -5, "spd": -10, "aDefPct": -15, "eDefPct": 10, "id": 1664}, {"name": "Topaz Staff", "displayName": "Lonesome", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "190-270", "tDam": "0-0", "eDam": "240-320", "atkSpd": "SUPER_SLOW", "lvl": 91, "strReq": 35, "agiReq": 30, "sdPct": -25, "mdPct": 19, "ms": -5, "spd": 12, "spRegen": -10, "aDefPct": 15, "id": 1667}, {"name": "Luas", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "agi": 3, "spd": 5, "type": "bracelet", "id": 1666}, {"name": "Lucky Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "lvl": 28, "lb": 10, "spRegen": 3, "eSteal": 3, "id": 1670}, {"name": "Lumina", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "285-350", "fDam": "0-0", "wDam": "0-0", "aDam": "300-335", "tDam": "640-680", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 80, "dexReq": 45, "agiReq": 35, "spd": 25, "atkTier": -1, "hpBonus": -1250, "mdRaw": 875, "aDamPct": 20, "tDamPct": 30, "wDefPct": -30, "id": 1671}, {"name": "Lullaby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 34, "intReq": 10, "hprPct": 10, "mr": 5, "mdPct": -6, "spd": -5, "wDamPct": 7, "id": 1669}, {"name": "Luminiferous Aether", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "tDef": 110, "eDef": -110, "lvl": 92, "dexReq": 60, "mdPct": -15, "dex": 10, "atkTier": 1, "hprRaw": 125, "mdRaw": 130, "tDamPct": 10, "id": 3627}, {"name": "Lucky Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 30, "lvl": 31, "lb": 5, "eSteal": 2, "type": "necklace", "id": 1672}, {"name": "Luminis", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 52, "intReq": 30, "ms": 5, "sdRaw": 15, "tDamPct": 6, "type": "necklace", "id": 1673}, {"name": "Lurrun", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1650, "fDef": 100, "aDef": 80, "tDef": -70, "eDef": -70, "lvl": 77, "agiReq": 40, "defReq": 40, "hprPct": 14, "mdPct": -8, "ref": 9, "spd": 16, "fDamPct": 6, "aDamPct": 6, "wDefPct": -10, "id": 1676}, {"name": "Luster Purge", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-18", "fDam": "0-0", "wDam": "40-48", "aDam": "35-53", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "intReq": 25, "agiReq": 25, "sdPct": 15, "ref": -20, "hpBonus": 400, "mdRaw": -58, "wDamPct": 15, "aDamPct": 15, "spRaw3": -5, "id": 1677}, {"name": "Lunar Spine", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "616-616", "fDam": "0-0", "wDam": "0-210", "aDam": "0-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 87, "intReq": 50, "agiReq": 50, "mr": -330, "sdPct": 66, "mdPct": 66, "ls": -370, "ms": 110, "atkTier": -66, "hprRaw": -333, "wDamPct": 33, "aDamPct": 33, "id": 1674}, {"name": "Lustrous", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "50-150", "fDam": "140-270", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "170-240", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 40, "defReq": 30, "mdPct": 10, "str": 7, "int": -12, "hpBonus": -2400, "mdRaw": 280, "fDamPct": 12, "eDamPct": 12, "wDefPct": -30, "id": 1678}, {"name": "Luto Aquarum", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-25", "fDam": "0-0", "wDam": "5-5", "aDam": "0-0", "tDam": "0-0", "eDam": "190-220", "atkSpd": "SLOW", "lvl": 98, "strReq": 50, "intReq": 40, "ls": 269, "ms": 15, "spd": -25, "hpBonus": 3000, "mdRaw": 169, "wDamPct": 40, "eDefPct": 20, "spPct3": -22, "id": 1680}, {"name": "Lycoris", "tier": "Legendary", "type": "boots", "poison": 155, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 15, "tDef": 15, "eDef": -40, "lvl": 39, "dexReq": 15, "intReq": 15, "sdPct": 12, "ls": -33, "hpBonus": -150, "wDamPct": 10, "tDamPct": 10, "id": 1679}, {"name": "Lydian", "tier": "Rare", "type": "spear", "poison": 450, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-70", "atkSpd": "SLOW", "lvl": 39, "strReq": 25, "spd": -12, "aDamPct": -10, "eDamPct": 10, "id": 1681}, {"name": "Lust", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "15-65", "wDam": "10-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 10, "mr": 5, "hprRaw": 15, "fDefPct": 10, "wDefPct": 10, "id": 1675}, {"name": "Cracked Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3560}, {"name": "Cracked Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3559}, {"name": "Cracked Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3563}, {"name": "Cracked Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3562}, {"name": "Cracked Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 3561}, {"name": "Aftershock", "tier": "Mythic", "type": "relik", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "80-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1245-1430", "atkSpd": "SUPER_SLOW", "lvl": 77, "strReq": 80, "sdPct": -20, "str": 20, "def": 20, "hpBonus": 1850, "eDamPct": 20, "eDefPct": 20, "spPct4": -28, "id": 1684}, {"name": "Alkatraz", "tier": "Mythic", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "1350-1500", "atkSpd": "SUPER_SLOW", "lvl": 94, "strReq": 110, "mdPct": 40, "str": 40, "dex": -10, "int": -10, "agi": -10, "def": -10, "expd": 40, "eDamPct": 40, "id": 1683}, {"name": "Apocalypse", "tier": "Mythic", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "420-680", "fDam": "255-475", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "defReq": 95, "hprPct": -125, "ls": 666, "int": -20, "def": 35, "expd": 150, "spRegen": -20, "wDamPct": -50, "fDefPct": 20, "wDefPct": -50, "id": 1685}, {"name": "Az", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "110-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-250", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "dexReq": 80, "xpb": 15, "int": 15, "def": 15, "fDamPct": 40, "wDamPct": 40, "spPct1": -23, "id": 1689}, {"name": "Crusade Sabatons", "tier": "Mythic", "type": "boots", "thorns": 35, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5050, "fDef": 200, "eDef": 125, "lvl": 90, "strReq": 60, "defReq": 70, "hprPct": 31, "str": 20, "def": 30, "spd": -15, "hpBonus": 2500, "fDefPct": 20, "eDefPct": 30, "id": 1696}, {"name": "Discoverer", "tier": "Mythic", "type": "chestplate", "category": "armor", "drop": "lootchest", "lvl": 89, "xpb": 15, "lb": 154, "id": 1694}, {"name": "Grandmother", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-595", "atkSpd": "SLOW", "lvl": 95, "strReq": 110, "hprPct": -35, "sdPct": 21, "mdPct": 21, "xpb": 15, "lb": 25, "str": 15, "agi": 55, "spd": -6, "hprRaw": -605, "id": 1704}, {"name": "Hero", "tier": "Mythic", "type": "spear", "majorIds": ["HERO"], "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "0-0", "aDam": "120-150", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 91, "agiReq": 110, "hprPct": 40, "mdPct": 40, "str": 20, "agi": 30, "spd": 40, "id": 1708}, {"name": "Archangel", "tier": "Mythic", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-60", "fDam": "0-0", "wDam": "0-0", "aDam": "165-200", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 69, "agiReq": 70, "hprPct": 30, "agi": 15, "def": 10, "spd": 41, "hpBonus": 1900, "hprRaw": 120, "id": 1688}, {"name": "Ignis", "tier": "Mythic", "type": "bow", "majorIds": ["ALTRUISM"], "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-210", "fDam": "160-235", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 95, "defReq": 105, "hprPct": 40, "def": 20, "hpBonus": 4000, "hprRaw": 345, "fDamPct": 10, "fDefPct": 100, "aDefPct": 50, "spPct4": -35, "id": 1706}, {"name": "Moontower", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4150, "fDef": 75, "wDef": 125, "aDef": 125, "tDef": 225, "eDef": 75, "lvl": 95, "intReq": 70, "agiReq": 80, "str": -10, "dex": -10, "int": 35, "agi": 60, "def": -40, "spd": 25, "wDefPct": 40, "aDefPct": 40, "id": 1709}, {"name": "Quetzalcoatl", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "25-45", "fDam": "0-0", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "50-70", "atkSpd": "VERY_FAST", "lvl": 103, "strReq": 70, "agiReq": 70, "ls": 1423, "spd": 28, "sdRaw": 270, "mdRaw": 95, "wDamPct": -80, "jh": 2, "id": 3644}, {"name": "Singularity", "tier": "Mythic", "type": "wand", "category": "weapon", "slots": 15, "drop": "NORMAL", "nDam": "0-0", "fDam": "125-275", "wDam": "150-250", "aDam": "100-300", "tDam": "75-325", "eDam": "175-225", "atkSpd": "SUPER_SLOW", "lvl": 99, "strReq": 42, "dexReq": 42, "intReq": 42, "agiReq": 42, "defReq": 42, "sdPct": 10, "mdPct": 15, "dex": 35, "spd": -40, "hprRaw": 250, "sdRaw": 222, "mdRaw": 444, "id": 1715}, {"name": "Stratiformis", "tier": "Mythic", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "95-175", "fDam": "0-0", "wDam": "0-0", "aDam": "170-300", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "agiReq": 115, "sdPct": 12, "mdPct": 12, "ref": 12, "agi": 25, "spd": 76, "hpBonus": -2000, "id": 1765}, {"name": "Sunstar", "tier": "Mythic", "type": "relik", "thorns": 30, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-260", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "375-545", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 115, "ls": 625, "ref": 90, "mdRaw": 577, "wDamPct": -30, "tDamPct": 20, "id": 1720}, {"name": "Mach", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-46", "fDam": "0-0", "wDam": "0-0", "aDam": "12-32", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 56, "agiReq": 25, "defReq": 10, "agi": 8, "expd": 12, "spd": 15, "atkTier": 1, "hprRaw": 30, "fDamPct": 20, "id": 1728}, {"name": "Warchief", "tier": "Mythic", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 5225, "fDef": -100, "wDef": -100, "aDef": -100, "tDef": -150, "eDef": -150, "lvl": 98, "strReq": 80, "dexReq": 80, "mdPct": 40, "str": 20, "dex": 10, "expd": 35, "spd": -15, "mdRaw": 315, "tDamPct": 50, "eDamPct": 40, "id": 1725}, {"name": "Macht", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 5, "mdPct": 5, "str": 3, "type": "bracelet", "id": 1731}, {"name": "Maelstrom", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-90", "aDam": "40-100", "tDam": "60-110", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 15, "mdPct": 15, "dex": 8, "int": 8, "agi": 8, "spd": 20, "hpBonus": -550, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "id": 1727}, {"name": "Magic Bounce", "tier": "Unique", "type": "relik", "thorns": 35, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-37", "fDam": "30-37", "wDam": "30-37", "aDam": "30-37", "tDam": "30-37", "eDam": "30-37", "atkSpd": "FAST", "lvl": 78, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "sdPct": 10, "xpb": 10, "lb": 10, "ref": 35, "expd": 35, "spRaw2": -5, "id": 1732}, {"name": "Magellan's Sail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1900, "wDef": 70, "aDef": 60, "eDef": -80, "lvl": 75, "intReq": 45, "agiReq": 40, "mr": 5, "spd": 16, "hprRaw": -90, "wDamPct": 14, "aDamPct": 9, "id": 1730}, {"name": "Magicant", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "5-15", "wDam": "5-15", "aDam": "5-15", "tDam": "5-15", "eDam": "5-15", "atkSpd": "NORMAL", "lvl": 41, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 1735}, {"name": "Magma Rod", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "74-112", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "defReq": 40, "str": 5, "expd": 25, "hprRaw": -35, "fDamPct": 20, "wDamPct": -30, "fDefPct": 20, "wDefPct": -30, "eDefPct": 10, "id": 1739}, {"name": "Magma Chalice", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "110-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 96, "strReq": 40, "defReq": 30, "hprPct": 31, "expd": 15, "hpBonus": 2335, "eDamPct": 20, "fDefPct": 20, "aDefPct": -15, "eDefPct": 20, "id": 1734}, {"name": "Magmarizer", "tier": "Unique", "type": "dagger", "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-110", "fDam": "60-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-70", "atkSpd": "NORMAL", "lvl": 93, "strReq": 30, "defReq": 35, "sdPct": -15, "hpBonus": 3200, "hprRaw": 120, "fDefPct": 15, "eDefPct": 15, "id": 1736}, {"name": "Magmawalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 775, "fDef": 15, "eDef": 40, "lvl": 56, "strReq": 15, "defReq": 15, "hprPct": 20, "str": 4, "def": 7, "expd": 8, "spd": -8, "aDamPct": -8, "fDefPct": 25, "eDefPct": 25, "id": 1738}, {"name": "Magmatic Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1400, "wDef": -130, "lvl": 72, "strReq": 40, "defReq": 50, "mdPct": 22, "str": 9, "def": 10, "expd": 19, "fDamPct": 28, "eDamPct": 28, "wDefPct": -34, "id": 1733}, {"name": "Magnet Repulsor", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3225, "fDef": -100, "wDef": 100, "tDef": -175, "eDef": -100, "lvl": 96, "dexReq": 55, "intReq": 60, "mdPct": -20, "ms": 10, "int": 5, "expd": 12, "sdRaw": 205, "tDefPct": -20, "id": 3597}, {"name": "Magnus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "355-535", "fDam": "445-600", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 92, "intReq": 40, "defReq": 30, "sdPct": 15, "expd": 33, "wDamPct": 20, "aDamPct": -20, "fDefPct": 10, "wDefPct": 10, "id": 1737}, {"name": "Magnitude", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 98, "strReq": 50, "mdPct": 10, "ms": 5, "str": 7, "expd": 5, "fDamPct": -20, "aDamPct": -20, "eDamPct": 15, "id": 1740}, {"name": "Mail of the Sweltering", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": -120, "aDef": 30, "lvl": 60, "agiReq": 20, "defReq": 20, "ls": 75, "def": 5, "expd": 3, "hprRaw": 40, "aDamPct": 10, "fDefPct": 12, "id": 1741}, {"name": "Maji", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-95", "fDam": "0-0", "wDam": "110-138", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 83, "intReq": 40, "ls": 200, "xpb": 15, "lb": 15, "dex": -8, "int": 8, "hprRaw": 100, "wDefPct": 15, "tDefPct": 15, "eDefPct": -30, "id": 1742}, {"name": "Major", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "mdRaw": 9, "type": "ring", "id": 1743}, {"name": "Malachite", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 20, "eDef": 20, "lvl": 75, "strReq": 10, "dexReq": 10, "str": 3, "dex": 3, "sdRaw": 35, "mdRaw": 31, "type": "ring", "id": 1744}, {"name": "Maltic's Old Spear", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 7, "xpb": 10, "str": 7, "dex": 7, "id": 1749}, {"name": "Malfunction", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-50", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 48, "dexReq": 20, "intReq": 20, "hprPct": -20, "sdPct": 14, "ms": 5, "xpb": 10, "hpBonus": -150, "tDamPct": 12, "wDefPct": -20, "tDefPct": -20, "id": 1745}, {"name": "Maltic's Aid", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 8, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 1746}, {"name": "Manablast", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "180-215", "aDam": "0-0", "tDam": "180-215", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 40, "intReq": 40, "mr": 10, "sdPct": 20, "mdPct": -20, "ms": -15, "expd": 20, "sdRaw": 231, "mdRaw": -235, "id": 1748}, {"name": "Mama Zomble's Memory", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1747}, {"name": "Manaflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 80, "eDef": -80, "lvl": 78, "intReq": 50, "mr": 5, "sdPct": 10, "mdPct": -13, "ls": -75, "str": -5, "int": 7, "wDamPct": 10, "eDamPct": -10, "id": 1751}, {"name": "Mangrove", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 630, "fDef": -65, "wDef": 50, "eDef": 50, "lvl": 52, "strReq": 30, "intReq": 30, "hprPct": 10, "mr": 5, "spd": -11, "hprRaw": 30, "wDefPct": 8, "eDefPct": 8, "id": 1750}, {"name": "Maple", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "43-57", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-34", "atkSpd": "NORMAL", "lvl": 58, "str": 7, "hprRaw": 40, "eDamPct": 8, "fDefPct": -5, "id": 1752}, {"name": "Marble", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 90, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 48, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "sdPct": 5, "sdRaw": 12, "type": "ring", "id": 1754}, {"name": "Marble Forest", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "133-136", "tDam": "0-0", "eDam": "133-136", "atkSpd": "NORMAL", "lvl": 87, "strReq": 30, "agiReq": 30, "str": 15, "dex": -15, "agi": 15, "def": -15, "fDamPct": -25, "aDamPct": 25, "tDamPct": -25, "eDamPct": 25, "fDefPct": -20, "aDefPct": 20, "tDefPct": -20, "eDefPct": 20, "id": 1753}, {"name": "Marrow", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "lvl": 65, "hprPct": 24, "mdPct": -4, "hprRaw": 60, "fDamPct": 7, "id": 1757}, {"name": "Marius' Lament", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -25, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": -25, "lvl": 49, "dexReq": 5, "intReq": 5, "agiReq": 5, "ls": 29, "agi": 5, "spRegen": 10, "type": "bracelet", "id": 1756}, {"name": "Marsh Runner", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 920, "wDef": 75, "tDef": -60, "lvl": 58, "intReq": 20, "xpb": 8, "ref": 12, "int": 5, "wDamPct": 7, "tDamPct": -4, "id": 1755}, {"name": "Marsh Waders", "tier": "Rare", "type": "leggings", "poison": 788, "thorns": 22, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 100, "aDef": -100, "tDef": -60, "eDef": 60, "lvl": 86, "strReq": 20, "intReq": 20, "mr": 5, "str": 8, "spd": -7, "wDamPct": 15, "id": 1758}, {"name": "Marvel", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -100, "wDef": 15, "aDef": 15, "eDef": -25, "lvl": 72, "intReq": 50, "agiReq": 10, "sdPct": 11, "mdPct": -8, "ref": 14, "spd": 8, "type": "ring", "id": 1761}, {"name": "Martyr", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 15, "aDef": 15, "lvl": 77, "agiReq": 30, "defReq": 30, "hprPct": -12, "sdPct": 8, "mdPct": 12, "hprRaw": -36, "type": "ring", "id": 1829}, {"name": "Mask of the Spirits", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjdlODQ5MGMwZjk3ZTU5ZTJjNjA5MzI3MjVmMTAyMzVlOTdiNzQ0YmRhYjU5ODcwMmEwYjJlNzk5MGRlMzA0YyJ9fX0= ", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 3649}, {"name": "Masochist", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -40, "eDef": 30, "lvl": 59, "strReq": 30, "hprPct": 40, "sdPct": -45, "mdPct": 35, "ls": -230, "ms": -5, "xpb": 15, "str": 7, "eDamPct": 12, "id": 1759}, {"name": "Master", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -10, "lvl": 11, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "type": "necklace", "id": 1760}, {"name": "Matchbook", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "fDef": -60, "lvl": 83, "defReq": 65, "def": 13, "expd": 12, "fDamPct": -7, "type": "necklace", "id": 3622}, {"name": "Mazurka", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "1-207", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 73, "dexReq": 35, "dex": 5, "hpBonus": -750, "sdRaw": 101, "mdRaw": 54, "tDamPct": 15, "id": 1762}, {"name": "Meanderthal", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 335, "eDef": 20, "lvl": 29, "strReq": 12, "mdPct": 10, "xpb": 10, "str": 9, "def": 9, "spd": -10, "id": 1766}, {"name": "Mech Core", "tier": "Rare", "quest": "Desperate Metal", "category": "accessory", "drop": "never", "fDef": 50, "wDef": -25, "lvl": 86, "defReq": 35, "hprPct": 10, "mr": -5, "int": -5, "def": 8, "hpBonus": 630, "hprRaw": 75, "type": "necklace", "id": 1861}, {"name": "Medico", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 17, "hprPct": 14, "hpBonus": 22, "hprRaw": 6, "id": 1768}, {"name": "Meep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "lvl": 59, "sdPct": -6, "mdPct": -6, "agi": 5, "spd": 11, "type": "ring", "id": 1767}, {"name": "Meditation Robe", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 10, "tDef": -25, "lvl": 35, "intReq": 25, "mr": 5, "mdPct": -10, "ms": 5, "xpb": 10, "wDamPct": 12, "tDefPct": -10, "id": 1769}, {"name": "Meikyo Shisui", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1500, "wDef": 60, "lvl": 66, "intReq": 60, "mr": 10, "ref": 10, "int": 7, "spd": -15, "spRegen": 10, "hprRaw": 40, "id": 1770}, {"name": "Melody", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 6, "lvl": 48, "agiReq": 24, "mdPct": 4, "agi": 3, "spd": 2, "sdRaw": 14, "type": "ring", "id": 1774}, {"name": "Melange", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-11", "fDam": "10-12", "wDam": "9-13", "aDam": "7-15", "tDam": "6-16", "eDam": "8-14", "atkSpd": "NORMAL", "lvl": 31, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "sdPct": 7, "mdPct": 7, "xpb": 7, "lb": 7, "spd": 7, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 1771}, {"name": "Melon Cutter", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-160", "atkSpd": "NORMAL", "lvl": 58, "strReq": 30, "mdPct": 20, "str": 10, "hpBonus": -350, "eDamPct": 10, "id": 1772}, {"name": "Melted Ruby", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-18", "fDam": "10-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 10, "mr": 5, "sdPct": 9, "hpBonus": 25, "wDamPct": -5, "id": 1773}, {"name": "Meltok", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "3-5", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "hprPct": 10, "xpb": 4, "id": 1778}, {"name": "Meltsteel Greaves", "tier": "Unique", "type": "leggings", "thorns": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "fDef": 90, "wDef": -50, "aDef": -50, "lvl": 77, "strReq": 30, "defReq": 30, "mdPct": 11, "str": 5, "expd": 8, "spd": -8, "id": 1777}, {"name": "Memento", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "wDef": 150, "tDef": -150, "lvl": 92, "intReq": 80, "mr": 10, "sdPct": 15, "ls": -600, "xpb": 20, "spRegen": 15, "sdRaw": 120, "id": 1775}, {"name": "Mercury Bomb", "tier": "Legendary", "type": "relik", "poison": 1530, "thorns": 20, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "42-48", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "dexReq": 35, "defReq": 35, "hprPct": -100, "ls": 30, "ms": -5, "def": 12, "expd": 39, "tDamPct": 20, "id": 1781}, {"name": "Mender", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "fDef": 60, "wDef": 60, "tDef": -80, "lvl": 61, "intReq": 30, "defReq": 20, "hprPct": 30, "int": 5, "def": 4, "tDamPct": -20, "fDefPct": 10, "wDefPct": 12, "id": 1776}, {"name": "Meridian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-32", "fDam": "0-0", "wDam": "14-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 5, "mr": 5, "xpb": 12, "int": 7, "wDamPct": 5, "id": 1784}, {"name": "Mercy", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 71, "hprPct": 15, "sdPct": -2, "mdPct": -2, "xpb": 8, "type": "ring", "id": 1780}, {"name": "Mesosphere", "tier": "Rare", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2400, "wDef": -70, "aDef": 70, "tDef": 90, "eDef": -90, "lvl": 91, "dexReq": 50, "agiReq": 25, "mr": 5, "ms": 5, "ref": 15, "agi": 5, "spd": 11, "sdRaw": 145, "mdRaw": 190, "tDamPct": 13, "id": 1785}, {"name": "Mesarock Arch", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 10, "xpb": 10, "lb": 10, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "id": 1782}, {"name": "Meteoric Aegis", "tier": "Unique", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "mr": 10, "xpb": 10, "ref": 15, "id": 1783}, {"name": "Meteoric Arch", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "150-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 3, "hprRaw": 35, "sdRaw": 60, "id": 1786}, {"name": "Meteorite", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "10-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-25", "atkSpd": "FAST", "lvl": 40, "strReq": 10, "defReq": 10, "mdPct": 15, "expd": 10, "wDefPct": -10, "aDefPct": -10, "id": 1800}, {"name": "Midnight Bell", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "6-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "agi": 7, "spd": 5, "fDefPct": -5, "id": 1788}, {"name": "Mighty Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 15, "id": 1787}, {"name": "Mind Rot", "tier": "Rare", "type": "helmet", "poison": 420, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1700, "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 70, "hprPct": -12, "mr": -5, "ls": 115, "ms": 10, "int": -6, "hpBonus": -150, "mdRaw": 130, "id": 1792}, {"name": "Millennium", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 63, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRegen": 3, "hprRaw": 60, "sdRaw": 120, "id": 1789}, {"name": "Mind Cracker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 8, "sdPct": 3, "int": 1, "type": "ring", "id": 1790}, {"name": "Minor", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 20, "sdRaw": 7, "type": "ring", "id": 1791}, {"name": "Minus", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "75-99", "eDam": "84-90", "atkSpd": "SLOW", "lvl": 42, "strReq": 18, "dexReq": 18, "spd": -10, "hpBonus": -185, "spRegen": -15, "spRaw1": -5, "spRaw3": -5, "id": 1794}, {"name": "Mirror", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 56, "ref": 14, "type": "ring", "id": 1793}, {"name": "Mirror's Edge", "tier": "Fabled", "type": "leggings", "sprint": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 625, "lvl": 63, "agiReq": 60, "ref": 30, "agi": 20, "spd": 25, "spPct2": -42, "sprintReg": 100, "jh": 1, "id": 1795}, {"name": "Misericorde", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-25", "fDam": "14-15", "wDam": "14-15", "aDam": "14-15", "tDam": "14-15", "eDam": "14-15", "atkSpd": "NORMAL", "lvl": 42, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "mr": -10, "sdPct": -12, "mdPct": 10, "ls": 55, "ms": 15, "hprRaw": -28, "id": 1797}, {"name": "Mirror Shard", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-55", "aDam": "0-0", "tDam": "61-85", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 67, "dexReq": 25, "intReq": 30, "sdPct": 22, "ms": 5, "lb": 12, "ref": 30, "hprRaw": -71, "eDefPct": -25, "id": 1796}, {"name": "Misconduct", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "46-100", "aDam": "0-0", "tDam": "20-126", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 98, "dexReq": 40, "intReq": 40, "hprPct": -30, "sdPct": 20, "ms": 10, "spd": 12, "hpBonus": -1100, "hprRaw": -140, "id": 1799}, {"name": "Hornet", "displayName": "Missile", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "43-55", "fDam": "0-0", "wDam": "0-0", "aDam": "80-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "agiReq": 25, "defReq": 35, "mdPct": 15, "ls": -260, "expd": 50, "spd": 20, "mdRaw": 80, "fDamPct": 40, "tDamPct": -20, "eDamPct": 19, "id": 1809}, {"name": "Misfit", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "81-83", "eDam": "81-83", "atkSpd": "SUPER_FAST", "lvl": 96, "strReq": 60, "dexReq": 60, "mr": -5, "mdPct": 20, "ms": -15, "lb": 15, "expd": 25, "tDamPct": 15, "eDamPct": 15, "spRaw4": -10, "id": 1798}, {"name": "Mist", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 56, "intReq": 20, "agiReq": 30, "sdPct": -10, "mdPct": -10, "xpb": 8, "ref": 8, "agi": 7, "spd": 4, "id": 1802}, {"name": "Mist Blade", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-24", "fDam": "0-0", "wDam": "0-0", "aDam": "7-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "agiReq": 10, "ms": 5, "agi": 4, "wDamPct": 5, "aDamPct": 5, "id": 1801}, {"name": "Mistral", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "fDef": -80, "aDef": 80, "lvl": 85, "intReq": 30, "agiReq": 50, "mr": 5, "sdPct": 20, "mdPct": -20, "ref": 16, "spd": 16, "aDamPct": 20, "id": 1806}, {"name": "Mistweaver", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "69-75", "fDam": "0-0", "wDam": "69-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 66, "intReq": 20, "agiReq": 25, "agi": 5, "aDamPct": 20, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": -15, "id": 1807}, {"name": "Mistpuff", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "wDef": 20, "aDef": 30, "tDef": -60, "lvl": 53, "intReq": 15, "agiReq": 20, "ref": 9, "int": 4, "agi": 5, "def": -3, "spd": 9, "eDamPct": -12, "id": 1804}, {"name": "Mithril Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "fDef": -5, "wDef": -5, "aDef": -5, "tDef": -5, "lvl": 39, "strReq": 20, "mdPct": 5, "xpb": 5, "def": 10, "id": 1805}, {"name": "Mitten", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "hpBonus": 5, "hprRaw": 1, "id": 1811}, {"name": "Missing", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2500, "lvl": 80, "dexReq": 40, "defReq": 40, "ls": 195, "ms": 10, "int": -23, "eSteal": 10, "spPct1": -14, "spPct3": -7, "id": 1803}, {"name": "Mixolydian", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-21", "fDam": "0-0", "wDam": "0-0", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "agiReq": 25, "agi": 7, "spd": 15, "aDamPct": 10, "id": 1812}, {"name": "Moisture", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": 15, "aDef": 20, "tDef": -50, "lvl": 51, "intReq": 30, "agiReq": 30, "mdPct": -20, "xpb": 15, "ref": 10, "spd": 10, "sdRaw": 40, "wDamPct": 8, "aDamPct": 10, "id": 1808}, {"name": "Molten Flow", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2425, "fDef": 120, "wDef": -130, "eDef": 50, "lvl": 84, "defReq": 50, "hprPct": 30, "str": 6, "def": 6, "spd": -8, "hprRaw": 110, "fDamPct": 16, "eDamPct": 14, "fDefPct": 6, "aDefPct": 20, "eDefPct": 18, "id": 1816}, {"name": "Molotov", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-40", "fDam": "35-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 21, "defReq": 20, "hprPct": -15, "mdPct": 12, "def": 5, "expd": 20, "fDamPct": 8, "id": 1810}, {"name": "Mercenary Hood", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 120, "fDef": 4, "tDef": 6, "eDef": -8, "lvl": 19, "dexReq": 5, "hprPct": 15, "dex": 3, "mdRaw": 20, "id": 1779}, {"name": "Monk's Cowl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 52, "wDef": 2, "tDef": 2, "lvl": 12, "hprPct": 10, "xpb": 6, "spRegen": 10, "id": 1814}, {"name": "Momentum", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 79, "strReq": 50, "ms": 5, "str": 5, "dex": 4, "spd": -8, "atkTier": -1, "mdRaw": 275, "type": "bracelet", "id": 1813}, {"name": "Monk's Battle Staff", "tier": "Rare", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "110-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-75", "atkSpd": "VERY_SLOW", "lvl": 50, "strReq": 29, "sdPct": -10, "mdPct": 10, "spd": 3, "sdRaw": -45, "mdRaw": 130, "aDefPct": -12, "id": 1815}, {"name": "Montefiore", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1340, "lvl": 64, "hprPct": 25, "ms": -5, "spRegen": 5, "hprRaw": 65, "id": 1821}, {"name": "Moonsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-75", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 73, "dexReq": 10, "defReq": 20, "hprPct": 12, "xpb": 8, "int": -3, "expd": 5, "wDamPct": -15, "tDamPct": 10, "wDefPct": -5, "aDefPct": 5, "id": 1820}, {"name": "Morning Star", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-140", "fDam": "80-140", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "mdPct": 10, "ref": 15, "spRegen": 5, "wDamPct": -5, "aDamPct": 10, "fDefPct": 10, "aDefPct": 5, "id": 1822}, {"name": "Moonbeam", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": 80, "tDef": -80, "lvl": 89, "intReq": 60, "mr": 10, "sdPct": 8, "xpb": 12, "int": 8, "spRegen": 12, "wDamPct": 8, "wDefPct": 12, "aDefPct": 12, "id": 1817}, {"name": "Mortar", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "aDef": -5, "eDef": 10, "lvl": 28, "strReq": 10, "mdPct": 10, "str": 4, "expd": 2, "aDamPct": -10, "eDamPct": 7, "id": 1819}, {"name": "Mosaic", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "40-60", "wDam": "40-60", "aDam": "40-60", "tDam": "40-60", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 76, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -9, "mdPct": -9, "hprRaw": 80, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 1826}, {"name": "Moulded Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "aDef": -80, "eDef": 100, "lvl": 67, "strReq": 35, "sdPct": 7, "mdPct": 11, "expd": 12, "spd": -8, "atkTier": -1, "eDamPct": 40, "aDefPct": -20, "eDefPct": 20, "id": 1823}, {"name": "Moss", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "wDef": 65, "eDef": 65, "lvl": 81, "strReq": 30, "intReq": 30, "hprPct": 25, "sdPct": -5, "mdPct": -5, "hprRaw": 100, "wDefPct": 15, "tDefPct": 25, "eDefPct": 15, "id": 1824}, {"name": "Mountain Spirit", "tier": "Rare", "type": "dagger", "quest": "The Lost", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "dexReq": 35, "agiReq": 35, "sdPct": 4, "xpb": 8, "dex": 5, "agi": 5, "mdRaw": 120, "aDamPct": 8, "tDamPct": 8, "id": 1825}, {"name": "Mouth of Fate", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "86-100", "tDam": "76-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 92, "dexReq": 38, "agiReq": 38, "sdPct": 9, "mdPct": 9, "dex": 9, "agi": 9, "spd": 9, "sdRaw": 135, "mdRaw": 110, "eDefPct": -30, "id": 1827}, {"name": "Mountaintop", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "wDef": -70, "aDef": 70, "tDef": -150, "eDef": 150, "lvl": 92, "strReq": 35, "agiReq": 15, "mdPct": 12, "dex": 10, "spd": 8, "mdRaw": 175, "fDamPct": -12, "aDamPct": 5, "eDamPct": 5, "eDefPct": 12, "id": 1830}, {"name": "Msitu", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-130", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "mr": 10, "xpb": 15, "lb": 15, "str": 8, "agi": -8, "fDefPct": -30, "aDefPct": 15, "eDefPct": 15, "id": 1828}, {"name": "Mud Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 46, "wDef": 5, "aDef": -7, "eDef": 5, "lvl": 13, "mdPct": 7, "spd": -4, "wDamPct": 4, "id": 1831}, {"name": "Muddy Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 410, "wDef": 10, "aDef": -20, "eDef": 15, "lvl": 45, "strReq": 15, "intReq": 5, "str": 7, "spd": -7, "aDamPct": -6, "fDefPct": 10, "wDefPct": 8, "tDefPct": 10, "eDefPct": 8, "id": 1833}, {"name": "Mullberry", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-10", "atkSpd": "NORMAL", "lvl": 11, "hprPct": 10, "xpb": 6, "hpBonus": 15, "id": 1835}, {"name": "Multitool", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 76, "dex": 8, "type": "bracelet", "id": 3578}, {"name": "Murk", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 970, "wDef": 55, "tDef": -65, "lvl": 63, "intReq": 45, "sdPct": 5, "ms": 5, "spd": -6, "sdRaw": 85, "wDamPct": 5, "tDamPct": 8, "eDamPct": -6, "tDefPct": -8, "id": 1837}, {"name": "Mudskipper", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "wDef": 60, "aDef": 60, "tDef": -100, "eDef": 60, "lvl": 70, "strReq": 25, "intReq": 25, "agiReq": 25, "sdPct": 7, "mdPct": 7, "str": 4, "agi": 4, "spd": 8, "wDamPct": 8, "tDefPct": -10, "id": 1832}, {"name": "Muskeg", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 780, "wDef": 45, "aDef": -55, "eDef": 45, "lvl": 53, "strReq": 30, "intReq": 30, "mr": 5, "agi": -4, "spd": -8, "wDamPct": 12, "eDamPct": 12, "aDefPct": -10, "id": 1836}, {"name": "Muscle Shirt", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 140, "lvl": 25, "strReq": 15, "str": 8, "id": 1834}, {"name": "Mustard Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 90, "fDef": -10, "wDef": 5, "eDef": 5, "lvl": 22, "strReq": 3, "intReq": 3, "expd": 3, "wDamPct": 5, "eDefPct": 5, "id": 1838}, {"name": "Mycelium Plating", "tier": "Unique", "type": "leggings", "poison": 720, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3025, "wDef": -60, "aDef": -80, "eDef": 130, "lvl": 96, "strReq": 50, "ls": -100, "ms": -5, "str": 7, "hprRaw": 150, "aDamPct": -15, "eDamPct": 20, "eDefPct": 12, "id": 1839}, {"name": "Mystic Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "wDef": 10, "tDef": -10, "lvl": 22, "intReq": 10, "mr": 5, "int": 4, "sdRaw": 15, "tDamPct": -6, "id": 1841}, {"name": "Myelin", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2050, "wDef": 120, "tDef": 50, "lvl": 87, "dexReq": 20, "intReq": 50, "sdPct": 10, "mdPct": -25, "ms": 10, "int": 7, "sdRaw": 165, "tDamPct": 8, "tDefPct": 12, "id": 1842}, {"name": "Mythical Trousers", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 500, "lvl": 42, "defReq": 25, "hprPct": 20, "mr": -5, "ls": 37, "hpBonus": 150, "hprRaw": 27, "wDamPct": -7, "aDamPct": -7, "tDamPct": -7, "eDamPct": -7, "fDefPct": 20, "id": 1843}, {"name": "Mystical Lance", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-95", "fDam": "0-0", "wDam": "0-0", "aDam": "45-45", "tDam": "45-45", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 84, "dexReq": 40, "agiReq": 40, "sdPct": 7, "mdPct": 7, "dex": 18, "agi": 18, "def": -22, "fDamPct": -96, "fDefPct": -41, "id": 1844}, {"name": "Abyssal Amulet", "tier": "Legendary", "quest": "Eye of the Storm", "poison": 450, "category": "accessory", "drop": "never", "fDef": 30, "tDef": 30, "lvl": 72, "hprPct": -15, "ls": 75, "spRegen": -10, "type": "necklace", "id": 1847}, {"name": "Abysso Galoshes", "tier": "Legendary", "type": "boots", "quest": "Beneath the Depths", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": 80, "lvl": 60, "hprPct": -20, "ms": 10, "dex": 7, "int": 7, "sdRaw": 100, "wDamPct": 10, "tDamPct": 10, "eDefPct": -35, "id": 1845}, {"name": "Aerolia Boots", "tier": "Unique", "type": "boots", "quest": "Suspended Flowers", "category": "armor", "slots": 1, "drop": "never", "hp": 55, "lvl": 14, "hprPct": 15, "mr": 5, "id": 1848}, {"name": "Air Relic Dagger", "displayName": "Air Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "39-66", "fDam": "0-0", "wDam": "0-0", "aDam": "39-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "agiReq": 30, "xpb": 15, "lb": 15, "agi": 7, "spd": 20, "sdRaw": 85, "aDamPct": 15, "aDefPct": 15, "id": 1846}, {"name": "Air Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-65", "fDam": "0-0", "wDam": "0-0", "aDam": "25-65", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 15, "xpb": 15, "lb": 15, "agi": 5, "spd": 20, "sdRaw": 60, "aDamPct": 15, "aDefPct": 15, "id": 1852}, {"name": "Amulet of Rejuvenation", "tier": "Rare", "quest": "Aldorei^s Secret Part II", "poison": -20000, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 15, "sdPct": -500, "mdPct": -500, "spd": -300, "hprRaw": 750, "sdRaw": -10000, "mdRaw": -10000, "type": "necklace", "fixID": true, "id": 1850}, {"name": "Altum Spatium", "tier": "Legendary", "quest": "???\u058e", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 251, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 80, "xpb": 19, "ref": 19, "type": "necklace", "id": 1849}, {"name": "Anya's Penumbra", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "wDef": 30, "tDef": 30, "lvl": 100, "int": 15, "spRegen": -14, "type": "bracelet", "spRaw2": 5, "id": 1860}, {"name": "Ancient Runic Relik", "tier": "Legendary", "type": "relik", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "290-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1851}, {"name": "Mvuke", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-72", "fDam": "90-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 79, "defReq": 40, "mr": 10, "xpb": 15, "lb": 15, "int": -8, "def": 8, "fDefPct": 15, "wDefPct": 15, "tDefPct": -30, "id": 1840}, {"name": "Avalanche", "tier": "Rare", "type": "helmet", "quest": "Fate of the Fallen", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 225, "fDef": -20, "lvl": 43, "intReq": 20, "mr": 10, "xpb": 10, "int": 7, "fDamPct": -10, "wDamPct": 10, "aDamPct": 5, "fDefPct": -12, "id": 1853}, {"name": "Blood Moon", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "never", "hp": 2125, "wDef": -75, "eDef": 75, "lvl": 70, "sdPct": -50, "mdPct": 50, "sdRaw": -165, "mdRaw": 215, "id": 1856}, {"name": "Bear Head", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "id": 2393, "set": "Bear"}, {"name": "Bob's Battle Chestplate", "tier": "Unique", "type": "chestplate", "quest": "Bob's Lost Soul", "category": "armor", "slots": 3, "drop": "never", "hp": 450, "lvl": 45, "sdPct": 8, "mdPct": 8, "xpb": 8, "lb": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "id": 1855}, {"name": "Black Veil", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "poison": 105, "category": "armor", "drop": "never", "hp": 570, "tDef": 30, "eDef": -30, "lvl": 51, "sdPct": 15, "ls": 49, "ms": 5, "xpb": -8, "lb": -8, "spRegen": -8, "id": 1866}, {"name": "Bob's Mythic Bow", "tier": "Legendary", "type": "bow", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "380-450", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1857}, {"name": "Bob's Mythic Daggers", "tier": "Legendary", "type": "dagger", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "185-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1858}, {"name": "Bob's Mythic Spear", "tier": "Legendary", "type": "spear", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "250-310", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1918}, {"name": "Bob's Mythic Wand", "tier": "Legendary", "type": "wand", "quest": "Reincarnation", "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "sdPct": 10, "mdPct": 10, "xpb": 20, "lb": 20, "str": 10, "dex": 10, "int": 10, "agi": 10, "def": 10, "fixID": true, "id": 1859}, {"name": "Bovine Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 50, "eDef": 20, "lvl": 55, "mdPct": 5, "str": 7, "type": "bracelet", "id": 1862}, {"name": "Calamaro's Bow", "tier": "Rare", "type": "bow", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-27", "fDam": "0-0", "wDam": "20-31", "aDam": "11-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1863}, {"name": "Calamaro's Spear", "tier": "Rare", "type": "spear", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-22", "fDam": "0-0", "wDam": "17-25", "aDam": "7-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1870}, {"name": "Breathing Helmet II", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 300, "wDef": 40, "tDef": -40, "lvl": 40, "ref": 20, "spd": 5, "wDamPct": 15, "fixID": true, "id": 1867}, {"name": "Calamaro's Relik", "tier": "Rare", "type": "relik", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-23", "fDam": "0-0", "wDam": "25-26", "aDam": "13-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1865}, {"name": "Calamaro's Staff", "tier": "Rare", "type": "wand", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "16-22", "aDam": "6-10", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1871}, {"name": "Calamaro's Sword", "tier": "Rare", "type": "dagger", "quest": "Underice", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "18-28", "aDam": "9-14", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "mr": 5, "sdPct": 12, "mdPct": -5, "int": 4, "spd": 10, "fixID": true, "id": 1868}, {"name": "Clearsight Spectacles", "tier": "Legendary", "type": "helmet", "quest": "Realm of Light IV - Finding the Light", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 71, "xpb": 20, "lb": 15, "ref": 50, "int": 5, "spRegen": 25, "hprRaw": 85, "id": 1873}, {"name": "Changeling's Chestplate", "tier": "Rare", "type": "chestplate", "quest": "General's Orders", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 55, "wDef": 55, "aDef": 55, "tDef": 55, "eDef": 55, "lvl": 80, "xpb": 15, "lb": 15, "str": -1, "dex": -1, "int": -1, "agi": -1, "def": -1, "spd": 15, "hprRaw": 100, "sdRaw": 135, "mdRaw": 175, "jh": 1, "id": 1869}, {"name": "Climbing Helmet", "tier": "Unique", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 350, "aDef": 30, "eDef": 30, "lvl": 42, "xpb": 10, "lb": 10, "str": 5, "agi": 5, "spd": 10, "mdRaw": 56, "id": 1872}, {"name": "Confusing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 99, "lvl": 18, "int": -20, "id": 1874}, {"name": "Contest Wynner Cap", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1875}, {"name": "Dark Diadem", "tier": "Rare", "quest": "The Dark Descent", "category": "accessory", "drop": "never", "wDef": -20, "lvl": 24, "sdPct": 4, "ms": 5, "xpb": 6, "spRegen": -10, "type": "necklace", "id": 1876}, {"name": "Detective's Ring", "tier": "Rare", "quest": "Murder Mystery", "category": "accessory", "drop": "never", "lvl": 74, "sdPct": 7, "xpb": 6, "int": 7, "type": "ring", "id": 1926}, {"name": "Breathing Helmet I", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 20, "wDef": 5, "tDef": -3, "lvl": 8, "id": 1864}, {"name": "Digested Corpse", "tier": "Unique", "type": "chestplate", "poison": 480, "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": -60, "lvl": 71, "strReq": 25, "dexReq": 25, "hprPct": -140, "mdPct": 7, "hprRaw": -9, "mdRaw": 125, "id": 1878}, {"name": "Cloak of Luminosity", "tier": "Rare", "type": "chestplate", "quest": "Realm of Light III - A Headless History", "category": "armor", "drop": "never", "hp": 1280, "fDef": 40, "wDef": 75, "aDef": 40, "tDef": 75, "eDef": 40, "lvl": 64, "mr": 5, "sdPct": 15, "ms": 5, "xpb": 15, "lb": 15, "ref": 15, "spRegen": 15, "wDamPct": 5, "tDamPct": 5, "id": 1877}, {"name": "Earth Relic Dagger", "displayName": "Earth Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "85-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "85-110", "atkSpd": "NORMAL", "lvl": 65, "strReq": 30, "mdPct": 15, "xpb": 15, "lb": 15, "str": 7, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1880}, {"name": "Dull Ancient Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1350, "lvl": 77, "id": 1881}, {"name": "Earth Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-100", "atkSpd": "SLOW", "lvl": 45, "strReq": 15, "mdPct": 15, "xpb": 15, "lb": 15, "str": 5, "expd": 15, "eDamPct": 20, "eDefPct": 10, "id": 1884}, {"name": "Emerald Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "42-68", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "xpb": 7, "lb": 23, "eSteal": 7, "id": 1883}, {"name": "Empowered Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1400, "wDef": 50, "tDef": -50, "lvl": 77, "id": 1888}, {"name": "Fire Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-70", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "defReq": 15, "xpb": 15, "lb": 15, "def": 5, "hpBonus": 335, "hprRaw": 30, "fDamPct": 10, "fDefPct": 20, "id": 1889}, {"name": "Fire Relic Dagger", "displayName": "Fire Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-70", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "defReq": 30, "xpb": 15, "lb": 15, "def": 7, "hpBonus": 920, "hprRaw": 80, "fDamPct": 10, "fDefPct": 20, "id": 1887}, {"name": "Factory Helmet", "tier": "Unique", "type": "helmet", "quest": "An Iron Heart Part I", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 500, "lvl": 50, "hprPct": 15, "mr": -5, "xpb": 10, "lb": 15, "ref": 10, "def": 7, "hpBonus": 200, "id": 1886}, {"name": "Fire Wire", "tier": "Rare", "type": "leggings", "quest": "From The Mountains", "thorns": 15, "category": "armor", "slots": 1, "drop": "never", "hp": 1600, "fDef": 120, "wDef": -90, "lvl": 67, "hprPct": 35, "def": 7, "spd": -15, "hprRaw": 50, "wDamPct": -15, "fDefPct": 12, "id": 1891}, {"name": "First Steps", "tier": "Unique", "quest": "Cook Assistant", "category": "accessory", "drop": "never", "hp": 4, "lvl": 5, "xpb": 3, "spd": 5, "type": "ring", "id": 3545}, {"name": "Generator Amulet", "tier": "Rare", "quest": "Heart of Llevigar", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": -10, "tDef": 10, "eDef": -20, "lvl": 41, "sdPct": 8, "expd": 5, "sdRaw": 20, "type": "necklace", "id": 1890}, {"name": "Gernald's Amulet", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 70, "fDef": 7, "wDef": 7, "aDef": 7, "tDef": 7, "eDef": 7, "lvl": 43, "xpb": -4, "lb": 11, "type": "necklace", "id": 1893}, {"name": "Gerten Ritual Mask", "tier": "Rare", "type": "helmet", "quest": "The Hunger of Gerts Part 2", "skin": "eyJ0aW1lc3RhbXAiOjE0Mzc5NTUxMDU1MjAsInByb2ZpbGVJZCI6ImRlZDdhMmFmMTVlNjRjOWVhYjIzZWFlOTkyMzUzMDY4IiwicHJvZmlsZU5hbWUiOiJFbmVyZ3l4eGVyIiwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzczYzIxYjNjYWY4YTZlYWI3ZDE4MTczNGE0MzBkYjUyMWIxZGI4MzNjODk4N2RkZTI0MTE4MDIzMWU0NzgyNiJ9fX0=", "category": "armor", "slots": 1, "drop": "never", "hp": 1800, "aDef": -60, "eDef": 100, "lvl": 78, "sdPct": -10, "str": 7, "spd": -10, "mdRaw": 180, "eDamPct": 20, "aDefPct": -10, "id": 1892}, {"name": "Essren's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 50, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 15, "int": 4, "sdRaw": 20, "wDamPct": 10, "id": 1885}, {"name": "Gnome's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": -250, "aDef": 30, "eDef": -10, "lvl": 76, "agiReq": 25, "mdPct": -8, "str": -3, "agi": 5, "spd": 8, "aDamPct": 7, "eDamPct": -8, "type": "ring", "id": 1895}, {"name": "Glaciate", "tier": "Rare", "type": "leggings", "quest": "Frost Bite", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "wDef": 30, "eDef": -30, "lvl": 48, "dexReq": 20, "intReq": 25, "ms": 5, "lb": 10, "ref": 20, "dex": 7, "spd": 10, "wDamPct": 6, "tDamPct": 8, "eDefPct": -15, "id": 1897}, {"name": "Giant's Ring", "tier": "Unique", "quest": "The Bigger Picture", "category": "accessory", "drop": "never", "hp": 250, "aDef": -10, "eDef": 30, "lvl": 76, "strReq": 25, "mdPct": 7, "str": 5, "agi": -3, "spd": -8, "aDamPct": -8, "eDamPct": 7, "type": "ring", "id": 1894}, {"name": "Gnomish Topper", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "eDef": 50, "lvl": 75, "agiReq": 35, "sdPct": -10, "mdPct": 5, "xpb": 10, "str": 7, "agi": 4, "spd": 15, "id": 1896}, {"name": "Guard's Uniform", "tier": "Normal", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 1150, "lvl": 72, "id": 1898}, {"name": "Greaves of Honor", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "hprPct": 20, "xpb": 30, "ref": 10, "spRegen": 3, "id": 1900}, {"name": "Hallowynn Mask", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "never", "hp": 115, "tDef": 5, "lvl": 22, "xpb": 5, "sdRaw": 15, "mdRaw": 16, "id": 1899}, {"name": "Helmet of Legends", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1000, "lvl": 68, "id": 1901}, {"name": "Helmet of Shimmering Light", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Quest Item", "hp": 1850, "lvl": 74, "id": 1902}, {"name": "Hide of Gregg'r", "tier": "Rare", "type": "chestplate", "quest": "Green Skinned Trouble", "category": "armor", "slots": 1, "drop": "never", "hp": 600, "fDef": 40, "wDef": -50, "aDef": 20, "lvl": 44, "agiReq": 10, "defReq": 15, "sdPct": -10, "mdPct": 10, "expd": 8, "spd": 8, "fDamPct": 12, "id": 1903}, {"name": "Howler Hide", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 430, "fDef": -20, "eDef": 25, "lvl": 41, "strReq": 25, "mdPct": 20, "str": 10, "expd": 8, "spd": -5, "aDamPct": 16, "id": 1908}, {"name": "Inhibitor", "tier": "Fabled", "type": "chestplate", "category": "armor", "drop": "NEVER", "lvl": 100, "mr": -15, "sdPct": -300, "mdPct": -300, "spRegen": -150, "sdRaw": -800, "mdRaw": -1000, "id": 3650}, {"name": "Lazarus' Brace", "tier": "Rare", "quest": "Lazarus Pit", "category": "accessory", "drop": "never", "hp": -250, "lvl": 69, "hprPct": 10, "xpb": 5, "hprRaw": 40, "type": "bracelet", "id": 1904}, {"name": "Mask of the Dark Curse", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 70, "wDef": -5, "tDef": 10, "lvl": 15, "mr": -5, "sdPct": 6, "ls": 7, "ms": 5, "xpb": 10, "spRegen": -5, "id": 1906}, {"name": "Mummy's Rag", "tier": "Legendary", "type": "chestplate", "quest": "Wrath of the Mummy", "thorns": 5, "category": "armor", "drop": "never", "hp": 400, "aDef": 20, "eDef": 20, "lvl": 38, "ref": 5, "spd": -20, "atkTier": 1, "spRegen": -3, "id": 1907}, {"name": "Olux's Prized Bow", "tier": "Legendary", "type": "bow", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-100", "fDam": "0-0", "wDam": "60-80", "aDam": "0-0", "tDam": "0-0", "eDam": "80-120", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1905}, {"name": "Olux's Prized Dagger", "tier": "Legendary", "type": "dagger", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "55-60", "atkSpd": "FAST", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1911}, {"name": "Olux's Prized Spear", "tier": "Legendary", "type": "spear", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-70", "fDam": "0-0", "wDam": "25-40", "aDam": "0-0", "tDam": "0-0", "eDam": "65-90", "atkSpd": "SLOW", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1910}, {"name": "Olux's Prized Relik", "tier": "Legendary", "type": "relik", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-64", "fDam": "0-0", "wDam": "40-48", "aDam": "0-0", "tDam": "0-0", "eDam": "70-72", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1909}, {"name": "Olux's Prized Wand", "tier": "Legendary", "type": "wand", "quest": "The Shadow of the Beast", "poison": 295, "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-40", "fDam": "0-0", "wDam": "15-30", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "NORMAL", "lvl": 55, "mr": 5, "xpb": 15, "str": 5, "int": 5, "eDamPct": 10, "wDefPct": 10, "fixID": true, "id": 1915}, {"name": "Ominous Wind", "tier": "Rare", "quest": "One Thousand Meters Under", "thorns": 10, "category": "accessory", "drop": "never", "hp": -400, "aDef": 55, "eDef": 55, "lvl": 95, "sdPct": 6, "mdPct": -4, "xpb": 10, "spd": 11, "type": "necklace", "id": 1912}, {"name": "Orc Mask", "tier": "Normal", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 900, "lvl": 64, "id": 1913}, {"name": "Upgraded Orc Mask", "tier": "Unique", "type": "helmet", "quest": "A Fighting Species", "skin": "eyJ0aW1lc3RhbXAiOjE0NDA2OTQ3MTUyMDQsInByb2ZpbGVJZCI6ImU3MzE3OWViMzBkMTQ0NjY5NTMyNWIwOTEyODQwZDQyIiwicHJvZmlsZU5hbWUiOiJKZWVvcmMiLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RiMzdmM2ViMWEzMWQ5MzU5ZmQ1OTk2YmJkMmFiNGU4YzM5MjRjM2UxYzhiNTFiYWU2YTU0MTVlZWRkNjkxNCJ9fX0=", "category": "armor", "slots": 3, "drop": "never", "hp": 1100, "lvl": 64, "mdPct": 10, "xpb": 20, "str": 5, "def": 4, "spd": -8, "hprRaw": 65, "id": 1914}, {"name": "Ornate Shadow Cloud", "set": "Ornate Shadow", "tier": "Fabled", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1916}, {"name": "Ornate Shadow Cowl", "set": "Ornate Shadow", "tier": "Fabled", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1917}, {"name": "Ornate Shadow Cover", "set": "Ornate Shadow", "tier": "Fabled", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1919}, {"name": "Ornate Shadow Garb", "set": "Ornate Shadow", "tier": "Fabled", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 4000, "tDef": 100, "eDef": 100, "lvl": 103, "sdPct": 20, "mdPct": 20, "spd": 15, "spRegen": -15, "sdRaw": 170, "mdRaw": 170, "fixID": true, "id": 1922}, {"name": "Pendant of Prosperity", "tier": "Rare", "quest": "Fantastic Voyage", "category": "accessory", "drop": "never", "lvl": 90, "lb": 16, "hpBonus": -100, "eSteal": 5, "type": "necklace", "id": 1923}, {"name": "Paw", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "lvl": 70, "agi": 16, "spd": 30, "fDamPct": -6, "wDamPct": -6, "aDamPct": 24, "eDamPct": -18, "id": 1920}, {"name": "Phoenix Prince's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 3900, "fDef": 125, "wDef": -125, "aDef": 125, "lvl": 90, "agiReq": 35, "defReq": 35, "hprPct": 27, "agi": 9, "def": 7, "spd": 15, "spRegen": 20, "hprRaw": 205, "fDefPct": 20, "id": 1921}, {"name": "Psychomend Vest", "tier": "Rare", "type": "chestplate", "quest": "Shattered Minds", "category": "armor", "slots": 2, "drop": "never", "hp": 1500, "lvl": 70, "hprPct": 19, "sdPct": -15, "mdPct": -5, "int": -3, "hpBonus": 600, "hprRaw": 100, "id": 1925}, {"name": "Purified Helmet of the Legends", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Quest Item", "hp": 1450, "lvl": 68, "hprPct": 20, "sdPct": 12, "mdPct": 12, "xpb": 10, "lb": 10, "spRegen": 5, "id": 1927}, {"name": "Quartron's Eye", "tier": "Rare", "quest": "Rise of the Quartron", "category": "accessory", "drop": "never", "hp": -60, "lvl": 49, "expd": 10, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "ring", "id": 1924}, {"name": "Quicksand Crossers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 235, "wDef": -20, "aDef": 10, "eDef": 10, "lvl": 34, "agiReq": 15, "lb": 10, "agi": 7, "spd": 9, "eDefPct": 12, "id": 1928}, {"name": "Raging Wind", "tier": "Rare", "quest": "Beyond the Grave", "category": "accessory", "drop": "never", "fDef": -20, "aDef": 20, "lvl": 87, "agiReq": 40, "agi": 5, "spd": 12, "aDamPct": 9, "type": "ring", "id": 1929}, {"name": "Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-22", "fDam": "20-22", "wDam": "20-22", "aDam": "20-22", "tDam": "20-22", "eDam": "20-22", "atkSpd": "NORMAL", "lvl": 45, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 1932}, {"name": "Restored Ancient Helmet", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 2100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 77, "mr": 5, "xpb": 15, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 8, "id": 1934}, {"name": "Randall's Leg Plating", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 450, "lvl": 38, "defReq": 45, "sdPct": -15, "mdPct": -8, "lb": 15, "str": 4, "def": 15, "fDefPct": 17, "id": 1930}, {"name": "Ring of Generosity", "tier": "Rare", "quest": "Memory Paranoia", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 10, "hpBonus": 350, "spRegen": 5, "type": "ring", "id": 1933}, {"name": "Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -280, "lvl": 75, "xpb": 8, "lb": 12, "eSteal": 8, "type": "ring", "id": 1935}, {"name": "Pirate Queen's Ring of Rubies", "tier": "Rare", "quest": "Flight in Distress", "category": "accessory", "drop": "never", "hp": -50, "lvl": 75, "xpb": 6, "lb": 9, "eSteal": 2, "type": "ring", "id": 1936}, {"name": "Royal Blazing Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "def": 3, "hpBonus": 650, "fDamPct": 5, "type": "necklace", "fixID": true, "id": 1939}, {"name": "Royal Cyclone Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "agi": 3, "spd": 10, "aDamPct": 5, "type": "necklace", "fixID": true, "id": 1937}, {"name": "Royal Dusty Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mdPct": 8, "xpb": 5, "lb": 5, "str": 3, "eDamPct": 5, "type": "necklace", "fixID": true, "id": 1938}, {"name": "Royal Shocking Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "thorns": 5, "category": "accessory", "drop": "never", "lvl": 75, "xpb": 5, "lb": 5, "dex": 3, "mdRaw": 25, "tDamPct": 5, "type": "necklace", "fixID": true, "id": 1941}, {"name": "Royal Stormy Amulet", "tier": "Legendary", "quest": "WynnExcavation Site D", "category": "accessory", "drop": "never", "lvl": 75, "mr": 5, "xpb": 5, "lb": 5, "int": 3, "wDamPct": 5, "type": "necklace", "fixID": true, "id": 1943}, {"name": "Bandit's Bangle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -15, "lvl": 36, "lb": 6, "eSteal": 4, "type": "bracelet", "id": 1942, "set": "Bandit's"}, {"name": "Bandit's Ring", "tier": "Set", "category": "accessory", "drop": "never", "hp": -20, "lvl": 32, "lb": 7, "eSteal": 3, "type": "ring", "id": 1946, "set": "Bandit's"}, {"name": "Builder's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1947, "set": "Builder's"}, {"name": "Bandit's Locket", "tier": "Set", "category": "accessory", "drop": "never", "hp": -10, "lvl": 38, "lb": 4, "eSteal": 5, "type": "necklace", "id": 1945, "set": "Bandit's"}, {"name": "Builder's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1951, "set": "Builder's"}, {"name": "Builder's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1944, "set": "Builder's"}, {"name": "Bandit's Knuckle", "tier": "Set", "category": "accessory", "drop": "never", "hp": -25, "lvl": 34, "lb": 3, "eSteal": 6, "type": "ring", "id": 1940, "set": "Bandit's"}, {"name": "GM's Boots", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1949, "set": "GM's"}, {"name": "GM's Breastplate", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1953, "set": "GM's"}, {"name": "GM's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1954, "set": "GM's"}, {"name": "Builder's Trousers", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1950, "set": "Builder's"}, {"name": "GM's Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 50, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 1948, "set": "GM's"}, {"name": "Sandshooter", "tier": "Rare", "type": "bow", "thorns": 10, "category": "weapon", "slots": 1, "drop": "never", "nDam": "25-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "25-75", "atkSpd": "SLOW", "lvl": 36, "strReq": 15, "lb": 15, "str": 9, "wDamPct": -15, "aDamPct": 7, "id": 1952}, {"name": "Sandslasher", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "strReq": 10, "agiReq": 10, "sdPct": -5, "spd": 4, "sdRaw": -20, "mdRaw": 52, "aDamPct": 12, "eDamPct": 10, "id": 1957}, {"name": "Santa Boots", "tier": "Rare", "type": "boots", "quest": "Meaningful Holiday", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "fDef": 20, "lvl": 33, "hprPct": 20, "xpb": 15, "lb": 10, "hpBonus": 55, "aDefPct": 10, "id": 1955}, {"name": "Santa's Coat", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 260, "lvl": 32, "xpb": 15, "lb": 15, "hpBonus": 40, "hprRaw": 15, "id": 1958}, {"name": "Seekers Aid", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 1, "id": 1959}, {"name": "Shameful Greaves", "tier": "Rare", "type": "leggings", "quest": "An Iron Heart Part II", "poison": 285, "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "lvl": 58, "ls": 75, "lb": 30, "eSteal": 5, "id": 1961}, {"name": "Sodeta Boots", "tier": "Legendary", "type": "boots", "quest": "Lost Soles", "category": "armor", "slots": 3, "drop": "never", "hp": 1150, "lvl": 66, "hprPct": 14, "mr": 10, "sdPct": 22, "ls": 50, "xpb": 24, "id": 1965}, {"name": "Skeletal Legs", "tier": "Rare", "type": "leggings", "quest": "Pit of the Dead", "poison": 41, "category": "armor", "slots": 1, "drop": "never", "hp": 144, "lvl": 23, "ls": 11, "ms": 5, "def": -3, "hpBonus": -30, "id": 1962}, {"name": "Sound Proof Earmuff", "tier": "Rare", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 1500, "tDef": 50, "eDef": -50, "lvl": 73, "id": 1964}, {"name": "Santa Hat", "tier": "Rare", "type": "helmet", "quest": "Craftmas Chaos", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "lvl": 30, "hprPct": 30, "xpb": 15, "lb": 15, "hpBonus": 25, "wDefPct": 10, "id": 1956}, {"name": "Shadow Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "1-111", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "dexReq": 10, "lb": 15, "dex": 10, "agi": 4, "spd": 10, "hpBonus": -60, "id": 1963}, {"name": "Spiketop", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NEVER", "restrict": "Untradable", "fDef": 3, "lvl": 9, "hpBonus": 92, "id": 3546}, {"name": "Sunblight Boots", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "restrict": "Quest Item", "hp": 1650, "wDef": 80, "aDef": -90, "tDef": -90, "eDef": 100, "lvl": 76, "id": 1968}, {"name": "Santa's Pants", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 250, "wDef": 25, "tDef": -20, "lvl": 31, "hprPct": 20, "xpb": 10, "lb": 15, "hpBonus": 35, "fDefPct": 5, "id": 1960}, {"name": "Temporal Cage", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "tDef": 30, "lvl": 20, "ms": 10, "spd": 10, "hprRaw": -7, "sdRaw": 20, "mdRaw": 26, "tDamPct": 10, "id": 1967}, {"name": "Spear of Testiness", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "90-90", "fDam": "1-10", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 3651}, {"name": "The Juggernaut", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "never", "hp": 275, "fDef": 10, "wDef": -10, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 33, "defReq": 20, "lb": 10, "def": 9, "spd": -15, "hpBonus": 77, "id": 1969}, {"name": "The Queen's Headpiece", "tier": "Rare", "type": "helmet", "quest": "Royal Trials", "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "aDef": 100, "tDef": 75, "lvl": 98, "dexReq": 25, "agiReq": 50, "ms": 5, "agi": 9, "spd": 19, "eSteal": 7, "mdRaw": 260, "aDamPct": 12, "tDamPct": 12, "fDefPct": -25, "eDefPct": -25, "id": 1966}, {"name": "Thoracic", "tier": "Rare", "type": "chestplate", "quest": "The Sewers of Ragni", "category": "armor", "slots": 1, "drop": "never", "hp": 45, "aDef": -2, "tDef": 5, "lvl": 9, "xpb": 7, "lb": -2, "dex": 7, "mdRaw": 13, "tDamPct": 6, "id": 1971}, {"name": "Thunder Relic Dagger", "displayName": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "22-99", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "22-99", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 30, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 1972}, {"name": "Thunder Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "dexReq": 15, "ms": 5, "xpb": 15, "lb": 15, "dex": 5, "mdRaw": 59, "tDamPct": 20, "tDefPct": 10, "id": 1974}, {"name": "Treasure Boots", "tier": "Unique", "type": "boots", "quest": "Underwater", "category": "armor", "slots": 1, "drop": "never", "hp": 24, "lvl": 7, "xpb": 5, "lb": 20, "id": 1973}, {"name": "Trick", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": -10, "expd": 10, "type": "ring", "id": 1975, "set": "Hallowynn 2016"}, {"name": "Treat", "tier": "Set", "quest": "A Grave Mistake", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 50, "lb": 10, "expd": -10, "type": "ring", "id": 1970, "set": "Hallowynn 2016"}, {"name": "Vandalizer", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "50-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "defReq": 10, "ls": 39, "lb": 15, "expd": 10, "eSteal": 15, "wDefPct": -15, "id": 1980}, {"name": "Troms Kid Badge", "tier": "Rare", "quest": "Out of my Mind\u058e", "category": "accessory", "drop": "never", "lvl": 63, "xpb": 4, "lb": 7, "spd": 7, "spRegen": 4, "hprRaw": 19, "type": "necklace", "id": 1976}, {"name": "Vindicator", "tier": "Fabled", "quest": "The Mercenary", "majorIds": ["MAGNET"], "category": "accessory", "drop": "never", "hp": 50, "lvl": 30, "xpb": 7, "lb": 7, "type": "bracelet", "id": 1979}, {"name": "Waist Apron", "tier": "Rare", "type": "leggings", "quest": "Infested Plants", "thorns": 8, "category": "armor", "drop": "NEVER", "hp": 30, "lvl": 7, "xpb": 5, "expd": 8, "id": 3547}, {"name": "Dodegar's Ultimate Weapon", "tier": "Legendary", "type": "dagger", "quest": "The Ultimate Weapon", "category": "weapon", "drop": "never", "restrict": "Untradable", "nDam": "1-3", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "id": 1978}, {"name": "Water Relic Dagger", "displayName": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 30, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 1977}, {"name": "Water Relic Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "50-60", "fDam": "0-0", "wDam": "50-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "intReq": 15, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 5, "wDamPct": 10, "wDefPct": 20, "id": 1982}, {"name": "Wynnter Fair 2017 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1981}, {"name": "Wynnter Fair 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 1983}, {"name": "Wynnterfest 2016 Souvenir", "tier": "Legendary", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 1, "type": "necklace", "id": 2109}, {"name": "Nacreous", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 51, "strReq": 11, "dexReq": 11, "intReq": 11, "agiReq": 11, "defReq": 11, "xpb": 9, "lb": 9, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "id": 1988}, {"name": "Yellow Content Cap of Fame", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 5, "lvl": 1, "id": 1986}, {"name": "Necklace of a Thousand Storms", "tier": "Fabled", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -300, "aDef": 60, "lvl": 98, "agiReq": 50, "hprPct": -20, "str": -5, "agi": 10, "spd": 15, "fDamPct": -15, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "type": "necklace", "id": 1985}, {"name": "Naragath's Hoof", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "fDef": 60, "wDef": -100, "tDef": 60, "lvl": 58, "dexReq": 30, "defReq": 30, "dex": 8, "int": -6, "def": 8, "expd": 10, "spRegen": -20, "fDamPct": 15, "wDamPct": -20, "tDamPct": 15, "wDefPct": -20, "id": 1991}, {"name": "Naga Viper", "tier": "Rare", "type": "leggings", "poison": 275, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 940, "lvl": 56, "strReq": 10, "agiReq": 10, "agi": 9, "spd": 9, "hpBonus": -125, "eSteal": 2, "eDamPct": 12, "aDefPct": -10, "id": 1984}, {"name": "Namazu", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "240-320", "fDam": "0-0", "wDam": "328-455", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 30, "intReq": 25, "str": 10, "spd": -7, "atkTier": -3, "mdRaw": 350, "eDamPct": 18, "tDefPct": -10, "id": 1989}, {"name": "Narcissist", "tier": "Fabled", "type": "relik", "majorIds": ["GEOCENTRISM"], "thorns": 50, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "225-340", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "600-600", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 70, "sdPct": -20, "mdPct": -20, "ref": 65, "int": -5, "spd": 30, "hprRaw": 175, "eDefPct": 25, "id": 3648}, {"name": "Narima Pasukan", "tier": "Rare", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 500, "lvl": 48, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDamPct": 9, "wDamPct": 9, "aDamPct": 9, "tDamPct": 9, "eDamPct": 9, "id": 1994}, {"name": "Nature's Gift", "tier": "Legendary", "poison": 240, "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": -50, "wDef": 20, "aDef": 20, "eDef": 20, "lvl": 61, "strReq": 30, "intReq": 20, "xpb": 5, "spRegen": 8, "hprRaw": 35, "fDefPct": -18, "type": "necklace", "id": 1987}, {"name": "Nebulous", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 99, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 9, "sdRaw": 45, "type": "bracelet", "id": 1995}, {"name": "Needle Cuff", "tier": "Unique", "thorns": 11, "category": "accessory", "drop": "lootchest", "lvl": 81, "dexReq": 20, "mdRaw": 13, "type": "bracelet", "id": 1993}, {"name": "Cancer", "displayName": "Necrosis", "tier": "Legendary", "type": "helmet", "poison": 4000, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "aDef": -150, "tDef": 100, "lvl": 98, "dexReq": 120, "sdPct": -1000, "mdPct": -1000, "ls": 385, "ms": 10, "atkTier": 3, "mdRaw": -1000, "id": 1990}, {"name": "Neolithic", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "lvl": 20, "strReq": 5, "defReq": 10, "hprPct": 20, "sdPct": -10, "mdPct": 5, "str": 3, "def": 7, "hpBonus": 80, "eDamPct": 12, "id": 1997}, {"name": "Nemract's Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 7, "xpb": 5, "lb": 5, "id": 1992}, {"name": "Neodymium", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 25, "tDef": 6, "eDef": -2, "lvl": 6, "hprRaw": 4, "sdRaw": 4, "mdRaw": 5, "id": 1998}, {"name": "Nemract's Ruin", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 235, "wDef": 20, "aDef": -10, "tDef": -10, "eDef": 20, "lvl": 27, "strReq": 10, "intReq": 5, "sdPct": 12, "int": 7, "mdRaw": 52, "fDamPct": -6, "wDamPct": 10, "tDamPct": -6, "eDamPct": 12, "id": 1999}, {"name": "Nemract's Rage", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 25, "mr": 10, "sdPct": 23, "tDefPct": -25, "id": 1996}, {"name": "Neon", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 71, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "type": "bracelet", "id": 2001}, {"name": "Nephilim", "tier": "Rare", "type": "helmet", "sprint": 16, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2075, "lvl": 88, "dexReq": 45, "agiReq": 55, "ls": 180, "ms": 10, "ref": 20, "dex": 8, "agi": 7, "spd": 20, "atkTier": 1, "aDamPct": 15, "tDamPct": 15, "id": 2002}, {"name": "Nepta Floodbringer", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "70-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 80, "mr": 5, "sdPct": 20, "int": 13, "hpBonus": -1750, "wDamPct": 15, "tDamPct": -100, "tDefPct": -30, "id": 2000}, {"name": "Nerium Great Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-70", "fDam": "0-0", "wDam": "0-0", "aDam": "150-230", "tDam": "0-0", "eDam": "150-230", "atkSpd": "VERY_SLOW", "lvl": 85, "strReq": 35, "agiReq": 35, "mdPct": 15, "str": 10, "spd": -16, "mdRaw": 220, "aDefPct": 12, "eDefPct": 12, "id": 2014}, {"name": "Nesaak's Shadow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 730, "wDef": 50, "tDef": -30, "lvl": 54, "dexReq": 10, "agiReq": 10, "ls": 65, "lb": 8, "eSteal": 5, "aDamPct": 5, "tDamPct": 5, "id": 2003}, {"name": "Nesaak's Will", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "46-68", "fDam": "0-0", "wDam": "21-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "strReq": 10, "intReq": 10, "xpb": 11, "spd": -5, "spRegen": 3, "eDamPct": 10, "wDefPct": 10, "id": 2004}, {"name": "Nerium Long Spear", "tier": "Unique", "type": "spear", "poison": 360, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "77-97", "tDam": "0-0", "eDam": "77-97", "atkSpd": "VERY_SLOW", "lvl": 59, "strReq": 25, "agiReq": 25, "sdPct": -20, "mdPct": 10, "str": 8, "spd": -12, "aDefPct": 10, "eDefPct": 10, "id": 2005}, {"name": "Nerium Old Spear", "tier": "Unique", "type": "spear", "poison": 180, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "24-30", "tDam": "0-0", "eDam": "24-30", "atkSpd": "VERY_SLOW", "lvl": 39, "strReq": 15, "agiReq": 15, "sdPct": -10, "mdPct": 5, "str": 5, "spd": -8, "aDefPct": 8, "eDefPct": 8, "id": 2006}, {"name": "Nether's Deep", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "40-50", "wDam": "0-0", "aDam": "0-0", "tDam": "20-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "dexReq": 25, "defReq": 35, "hprPct": 23, "ls": 225, "ms": -5, "hpBonus": 1154, "spRegen": -8, "wDamPct": -20, "tDamPct": 12, "fDefPct": 12, "wDefPct": -20, "id": 2010}, {"name": "Nether's Reach", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 100, "wDef": -80, "tDef": 100, "eDef": -120, "lvl": 95, "dexReq": 20, "defReq": 40, "hprPct": 20, "str": 8, "hpBonus": 450, "hprRaw": 140, "mdRaw": 175, "fDamPct": 7, "wDamPct": -15, "tDamPct": 7, "id": 2008}, {"name": "Nether's Scar", "tier": "Legendary", "type": "boots", "poison": 525, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 140, "aDef": -140, "tDef": 140, "eDef": -140, "lvl": 95, "dexReq": 50, "defReq": 50, "hprPct": 140, "mdPct": 10, "dex": 12, "def": 12, "expd": 15, "atkTier": 1, "hprRaw": -571, "fDamPct": 10, "tDamPct": 10, "id": 2007}, {"name": "Neuron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2150, "wDef": 100, "tDef": -150, "lvl": 95, "dexReq": 50, "intReq": 20, "mr": 10, "sdPct": 20, "dex": 7, "wDamPct": 11, "tDamPct": 11, "id": 2011}, {"name": "Neutrino", "tier": "Rare", "type": "leggings", "poison": -3000, "thorns": 23, "category": "armor", "slots": 6, "drop": "NORMAL", "hp": 3575, "lvl": 100, "strReq": 40, "dexReq": 40, "intReq": 40, "agiReq": 40, "defReq": 40, "hprPct": 30, "ref": 23, "expd": -100, "fDefPct": 23, "wDefPct": 23, "aDefPct": 23, "tDefPct": 23, "eDefPct": 23, "id": 2015}, {"name": "Nettle", "tier": "Unique", "poison": 40, "category": "accessory", "drop": "lootchest", "lvl": 25, "strReq": 5, "hprPct": -4, "eDamPct": 4, "type": "necklace", "id": 2009}, {"name": "Nehza", "displayName": "Nezha", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": -70, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 83, "defReq": 90, "fDamPct": 7, "type": "ring", "id": 2013}, {"name": "Niflheim", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "110-120", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 84, "intReq": 50, "mr": 10, "ms": -10, "ref": 20, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 2012}, {"name": "NightMail", "displayName": "Nightmail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": -3, "aDef": 3, "tDef": 3, "eDef": -3, "lvl": 16, "dexReq": 3, "agiReq": 3, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "aDamPct": 5, "tDamPct": 5, "id": 2016}, {"name": "Night Rush", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "182-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "agiReq": 50, "agi": 30, "spd": 25, "aDamPct": 35, "eDamPct": -20, "fDefPct": 20, "eDefPct": -20, "id": 2019}, {"name": "Nighthawk", "tier": "Fabled", "type": "helmet", "majorIds": ["HAWKEYE"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4000, "tDef": -125, "lvl": 94, "classReq": "Archer", "mdPct": -20, "spd": 12, "hpBonus": -1000, "sdRaw": 175, "id": 2021}, {"name": "Nightlife", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "80-94", "wDam": "0-0", "aDam": "0-0", "tDam": "160-190", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 32, "defReq": 32, "hprPct": -20, "mdPct": 11, "ls": 240, "def": 11, "spd": 11, "spRegen": 11, "fDamPct": 35, "id": 2025}, {"name": "NightVest", "displayName": "Nightvest", "tier": "Unique", "type": "chestplate", "sprint": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2150, "fDef": -100, "aDef": 175, "lvl": 93, "agiReq": 50, "agi": 20, "def": -15, "spd": 15, "sprintReg": 10, "id": 2018}, {"name": "Nimble Fingers", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 41, "dexReq": 25, "mdPct": -4, "lb": 5, "dex": 4, "eSteal": 4, "type": "bracelet", "id": 2020}, {"name": "Nightshade", "tier": "Unique", "poison": 400, "category": "accessory", "drop": "lootchest", "fDef": -20, "lvl": 82, "hprRaw": -15, "type": "ring", "id": 2028}, {"name": "Nipun", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 27, "lvl": 7, "sdPct": 5, "mdPct": 5, "dex": 4, "id": 2029}, {"name": "Nightling", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "tDef": 80, "eDef": -100, "lvl": 76, "dexReq": 35, "mdPct": 5, "dex": 8, "agi": 3, "spd": 12, "mdRaw": 125, "tDamPct": 8, "eDamPct": -20, "id": 2022}, {"name": "Nimbus", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "33-88", "aDam": "55-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 89, "intReq": 25, "agiReq": 30, "mr": 5, "xpb": 8, "int": 5, "agi": 8, "spd": 12, "fDamPct": -10, "aDamPct": 10, "id": 2024}, {"name": "Nivla's Arch", "tier": "Unique", "type": "bow", "poison": 250, "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "122-136", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "80-96", "atkSpd": "VERY_SLOW", "lvl": 45, "spd": -10, "eDamPct": 5, "id": 2026}, {"name": "Nitre", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "fDef": -20, "wDef": -30, "lvl": 55, "dexReq": 15, "defReq": 30, "hprPct": -15, "sdPct": 11, "mdPct": 5, "def": 5, "expd": 45, "wDamPct": -6, "id": 2023}, {"name": "Noble Phantasm", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-130", "fDam": "85-145", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 98, "defReq": 55, "def": 30, "hpBonus": 2700, "hprRaw": 153, "fDefPct": -60, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2027}, {"name": "Noise Stream", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-1", "wDam": "1-1", "aDam": "1-160", "tDam": "1-1", "eDam": "1-1", "atkSpd": "VERY_FAST", "lvl": 94, "agiReq": 55, "ls": 210, "ms": 5, "fDamPct": 10, "wDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fDefPct": -10, "wDefPct": -10, "tDefPct": -10, "eDefPct": -10, "id": 2030}, {"name": "Noisemaker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": -15, "aDef": 25, "eDef": -15, "lvl": 51, "agiReq": 35, "sdPct": 9, "mdPct": 9, "xpb": 12, "spd": 5, "hpBonus": -120, "aDamPct": 13, "id": 2031}, {"name": "Noctilucent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "0-0", "wDam": "15-25", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "intReq": 17, "agiReq": 17, "sdPct": 6, "mdPct": -8, "spd": 8, "wDamPct": 6, "aDamPct": 6, "id": 2033}, {"name": "Nordstrom", "tier": "Unique", "type": "wand", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-54", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-38", "atkSpd": "SLOW", "lvl": 49, "strReq": 15, "mdPct": 9, "agi": 5, "spd": 7, "aDamPct": 12, "wDefPct": -8, "id": 2045}, {"name": "Nightstar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-150", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 45, "mr": 5, "sdPct": 12, "xpb": 8, "spRegen": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "id": 2017}, {"name": "Nucleoken", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "sdPct": 5, "xpb": 8, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 2034}, {"name": "Nuance", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -50, "eDef": -50, "lvl": 90, "dexReq": 55, "agiReq": 55, "mr": 5, "sdPct": 22, "ms": 5, "dex": 8, "agi": 8, "spd": 15, "mdRaw": 190, "aDefPct": -25, "tDefPct": -25, "sprintReg": 12, "id": 2032}, {"name": "Noun", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "40-360", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 64, "dexReq": 50, "ms": 5, "str": -7, "dex": 9, "tDamPct": 16, "eDamPct": -32, "id": 2037}, {"name": "Breakdown", "displayName": "Nychthemeron", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2375, "wDef": -50, "tDef": -50, "eDef": -50, "lvl": 93, "strReq": 65, "dexReq": 65, "sdPct": 10, "mdPct": 70, "ls": 190, "ms": 10, "str": 10, "dex": 10, "atkTier": -10, "spRegen": -15, "tDamPct": 15, "eDamPct": 15, "id": 3595}, {"name": "Nutrition", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 24, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "necklace", "id": 2035}, {"name": "Nymeria", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-18", "eDam": "0-0", "atkSpd": "FAST", "lvl": 23, "dexReq": 5, "agi": 3, "spd": 5, "id": 2040}, {"name": "Oak Wood Relik", "tier": "Normal", "type": "relik", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2038}, {"name": "Oak Wood Spear", "tier": "Normal", "type": "spear", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2041}, {"name": "Oak Wood Shears", "displayName": "Oak Wood Dagger", "tier": "Normal", "type": "dagger", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "3-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "id": 2039}, {"name": "Oak Wood Bow", "tier": "Normal", "type": "bow", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "5-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 1, "id": 2036}, {"name": "Oasis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-37", "fDam": "0-0", "wDam": "108-128", "aDam": "0-0", "tDam": "0-0", "eDam": "108-128", "atkSpd": "VERY_SLOW", "lvl": 51, "strReq": 18, "intReq": 18, "mr": 5, "mdPct": -12, "lb": 12, "spd": -12, "hprRaw": 24, "id": 2044}, {"name": "Oak Wood Stick", "displayName": "Oak Wood Wand", "tier": "Normal", "type": "wand", "allowCraftsman": true, "category": "weapon", "slots": 1, "drop": "never", "restrict": "Untradable", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "id": 2042}, {"name": "Obsidian", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "38-52", "atkSpd": "SLOW", "lvl": 41, "strReq": 30, "sdPct": -5, "mdPct": 8, "lb": 8, "str": 5, "spd": -6, "fDamPct": -20, "eDamPct": 8, "id": 2043}, {"name": "Ocean Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-20", "fDam": "0-0", "wDam": "15-20", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 32, "intReq": 25, "mr": 5, "sdPct": 12, "def": -3, "sdRaw": 25, "wDamPct": 5, "tDamPct": -10, "id": 2048}, {"name": "Octahedron", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "10-40", "wDam": "15-35", "aDam": "5-45", "tDam": "0-50", "eDam": "20-30", "atkSpd": "FAST", "lvl": 91, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": 16, "mdPct": -32, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "id": 2049}, {"name": "Obsidian Spire", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "105-115", "fDam": "140-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "125-135", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 20, "defReq": 25, "mdPct": 8, "spd": -8, "hpBonus": 500, "fDefPct": 36, "wDefPct": -24, "eDefPct": 18, "id": 2046}, {"name": "Ocelot Claw", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 27, "mr": -5, "sdPct": 8, "mdPct": 8, "spd": 12, "id": 2047}, {"name": "October Fires", "tier": "Legendary", "type": "relik", "thorns": 55, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "730-740", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 70, "defReq": 65, "ls": 130, "ms": 5, "def": 12, "expd": 40, "hpBonus": -828, "hprRaw": 90, "wDamPct": -30, "id": 2050}, {"name": "Odyssey", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 61, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 15, "ls": -75, "ms": -5, "spd": 15, "fDamPct": 14, "wDamPct": 14, "aDamPct": 14, "tDamPct": 14, "eDamPct": 14, "id": 2051}, {"name": "Ogre Faceplate", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "aDef": -110, "eDef": 75, "lvl": 83, "strReq": 30, "dexReq": 25, "mdPct": 15, "str": 9, "atkTier": -4, "mdRaw": 750, "tDamPct": 5, "eDamPct": 5, "id": 2053}, {"name": "Ohms' Wish", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "dexReq": 25, "agiReq": 25, "sdPct": 15, "ms": 5, "dex": 9, "agi": 7, "spd": 10, "spRegen": 10, "aDamPct": 20, "eDamPct": -20, "aDefPct": 30, "id": 2052}, {"name": "Oktavist", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "190-250", "fDam": "445-495", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 84, "defReq": 50, "mdPct": 10, "def": 16, "expd": 20, "spd": -8, "hprRaw": 150, "mdRaw": 560, "tDefPct": -15, "id": 2054}, {"name": "Okit", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 55, "fDef": 10, "wDef": -2, "lvl": 42, "fDamPct": 6, "type": "ring", "id": 2056}, {"name": "Omnitread Boots", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 90, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 15, "agiReq": 10, "spd": 20, "id": 2062}, {"name": "Old Keeper's Ring", "tier": "Legendary", "majorIds": ["GREED"], "category": "accessory", "drop": "lootchest", "hp": -109, "lvl": 82, "lb": 22, "hpBonus": -300, "hprRaw": -50, "type": "ring", "id": 2055}, {"name": "Old Maple Spear", "tier": "Unique", "type": "spear", "thorns": 6, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "57-80", "atkSpd": "SLOW", "lvl": 64, "strReq": 35, "mdPct": 10, "mdRaw": 105, "eDefPct": 15, "id": 2060}, {"name": "Olive", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 600, "fDef": -30, "wDef": 40, "eDef": 40, "lvl": 98, "strReq": 40, "intReq": 30, "sdPct": 9, "int": 5, "eDamPct": 6, "type": "ring", "id": 2058}, {"name": "Oni Helm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 240, "wDef": -15, "tDef": 20, "lvl": 30, "hprPct": -15, "mdPct": 10, "ls": 19, "ms": 5, "mdRaw": 39, "tDamPct": 8, "wDefPct": -15, "id": 2059}, {"name": "Omega", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "32-116", "eDam": "32-116", "atkSpd": "SUPER_FAST", "lvl": 93, "strReq": 40, "dexReq": 40, "hprPct": -40, "sdPct": 15, "mdPct": 15, "int": -11, "agi": -11, "def": -11, "expd": -50, "sdRaw": 115, "mdRaw": 150, "id": 2057}, {"name": "One Thousand Voices", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-155", "fDam": "0-0", "wDam": "0-0", "aDam": "145-155", "tDam": "145-155", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 44, "agiReq": 44, "dex": 8, "agi": 8, "expd": 100, "hpBonus": -1250, "sdRaw": 150, "fDamPct": 45, "wDamPct": -25, "eDamPct": -25, "spPct3": -23, "id": 2063}, {"name": "Onion Ring", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 12, "xpb": 7, "lb": 7, "type": "ring", "id": 2064}, {"name": "Opalite", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1000, "lvl": 62, "intReq": 45, "mr": 5, "sdPct": 10, "xpb": 10, "ref": 10, "spRegen": 10, "fDefPct": -5, "wDefPct": -2, "aDefPct": -5, "tDefPct": -5, "eDefPct": -5, "id": 2066}, {"name": "Ophiuchus", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "fDef": 100, "wDef": 100, "eDef": -200, "lvl": 98, "intReq": 70, "defReq": 70, "mr": 10, "sdPct": 15, "fDamPct": 15, "wDamPct": 15, "tDamPct": -20, "tDefPct": -40, "eDefPct": -15, "id": 2065}, {"name": "Onyx", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-70", "fDam": "10-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-35", "atkSpd": "SLOW", "lvl": 51, "strReq": 15, "defReq": 15, "mdPct": 8, "str": 5, "def": 5, "hpBonus": 300, "wDefPct": -12, "id": 2067}, {"name": "Orient", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-130", "wDam": "85-120", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "intReq": 30, "defReq": 35, "hprPct": 10, "mr": 10, "sdPct": -15, "mdPct": -15, "xpb": 15, "hprRaw": 70, "id": 2070}, {"name": "Opulenity", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 11, "xpb": 10, "lb": 25, "eSteal": 5, "id": 2068}, {"name": "Ormus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "fDef": -75, "aDef": 55, "tDef": 55, "eDef": -45, "lvl": 61, "dexReq": 45, "agiReq": 25, "sdPct": 6, "xpb": 8, "spd": 12, "sdRaw": 55, "aDamPct": 8, "tDamPct": 10, "id": 2086}, {"name": "Ormrod's Isolation", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -15, "aDef": 5, "eDef": 10, "lvl": 33, "strReq": 5, "agiReq": 8, "mdPct": 6, "spd": 8, "hprRaw": -7, "aDamPct": 4, "type": "bracelet", "id": 2069}, {"name": "Orographine", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1350, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 73, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "sdPct": -15, "mdPct": -15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": -12, "hpBonus": 400, "id": 2071}, {"name": "Ornithopter", "tier": "Fabled", "type": "helmet", "majorIds": ["FREERUNNER"], "sprint": -115, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3300, "lvl": 86, "strReq": 35, "agiReq": 70, "str": 15, "spd": 20, "mdRaw": 330, "sprintReg": 320, "id": 3608}, {"name": "Ouroboros", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "lvl": 86, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "ls": 110, "ms": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2072}, {"name": "Outburst", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -55, "eDef": -55, "lvl": 72, "dexReq": 45, "agiReq": 45, "mr": -5, "sdPct": 13, "mdPct": 13, "dex": 9, "agi": 9, "aDamPct": 16, "tDamPct": 16, "id": 2108}, {"name": "Outrage", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": 100, "lvl": 86, "strReq": 70, "mdPct": 50, "ls": 210, "fDamPct": -20, "wDamPct": -20, "aDamPct": -20, "tDamPct": -20, "eDamPct": 5, "id": 3619}, {"name": "Overcharger", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "325-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 77, "dexReq": 70, "ls": -220, "ms": 20, "expd": 25, "spd": 10, "hpBonus": -700, "id": 2073}, {"name": "Overdrive", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "104-112", "aDam": "0-0", "tDam": "104-112", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 88, "dexReq": 44, "intReq": 44, "sdPct": 1150, "mdPct": -35, "ms": 5, "atkTier": 7, "hprRaw": -100, "sdRaw": 940, "wDamPct": 10, "tDamPct": 10, "id": 2074}, {"name": "Overclocker", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "39-69", "aDam": "0-0", "tDam": "39-69", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 68, "dexReq": 45, "intReq": 45, "sdPct": 20, "ms": 10, "fDefPct": -21, "aDefPct": -21, "eDefPct": -21, "id": 2076}, {"name": "Overgrown", "tier": "Rare", "type": "wand", "poison": 650, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-165", "atkSpd": "NORMAL", "lvl": 96, "strReq": 55, "mr": 5, "str": 10, "spd": -25, "fDamPct": -40, "eDamPct": 19, "eDefPct": 15, "id": 2075}, {"name": "Oxalate", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-40", "fDam": "0-0", "wDam": "20-44", "aDam": "0-0", "tDam": "0-0", "eDam": "20-44", "atkSpd": "SLOW", "lvl": 45, "strReq": 20, "intReq": 20, "hprPct": 16, "str": 5, "int": 5, "wDamPct": 9, "tDamPct": -2, "aDefPct": -15, "eDefPct": 9, "id": 2077}, {"name": "Oxford", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 225, "tDef": 20, "eDef": -25, "lvl": 35, "dexReq": 20, "hprPct": -15, "xpb": 12, "lb": 10, "ref": 10, "mdRaw": 39, "tDamPct": 10, "id": 2079}, {"name": "Overly Ironed Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 610, "lvl": 51, "lb": 10, "expd": 10, "id": 2078}, {"name": "Oxidation", "tier": "Unique", "type": "leggings", "poison": 45, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 27, "agiReq": 10, "hprPct": -10, "xpb": 3, "spd": 8, "aDamPct": 6, "id": 2080}, {"name": "Oyster", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 15, "lvl": 45, "intReq": 15, "lb": 6, "wDamPct": 5, "wDefPct": 4, "type": "necklace", "id": 2091}, {"name": "Ozoth's Breath", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 25, "lvl": 49, "defReq": 25, "dex": 5, "type": "ring", "id": 2083}, {"name": "Pacemaker", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 570, "fDef": -10, "wDef": -10, "aDef": -10, "tDef": 50, "eDef": -20, "lvl": 51, "dexReq": 20, "xpb": 8, "spd": 6, "hpBonus": 155, "tDamPct": 15, "tDefPct": 12, "id": 2084}, {"name": "Pacifist", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": 20, "eDef": 45, "lvl": 74, "intReq": 20, "agiReq": 25, "hprPct": 15, "mr": 10, "ls": -185, "ms": -10, "lb": 12, "spd": 21, "id": 2082}, {"name": "Paladin's Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-22", "fDam": "33-44", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "22-55", "atkSpd": "VERY_FAST", "lvl": 69, "strReq": 20, "defReq": 20, "str": 8, "def": 8, "mdRaw": 57, "wDefPct": -12, "id": 2085}, {"name": "Palette", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-90", "fDam": "15-15", "wDam": "15-15", "aDam": "15-15", "tDam": "15-15", "eDam": "15-15", "atkSpd": "NORMAL", "lvl": 59, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mr": 5, "spd": 10, "hprRaw": 50, "sdRaw": 50, "mdRaw": 65, "id": 2095}, {"name": "Pandemic", "tier": "Rare", "type": "leggings", "poison": 575, "category": "armor", "drop": "NORMAL", "hp": 1650, "lvl": 71, "hprPct": -25, "mr": -5, "ls": 135, "ms": 5, "expd": 10, "id": 2087}, {"name": "Pandemonium", "tier": "Legendary", "quest": "???\u058e", "majorIds": ["MADNESS"], "category": "accessory", "drop": "lootchest", "hp": -300, "fDef": -200, "wDef": -200, "aDef": -200, "tDef": -200, "eDef": -200, "lvl": 99, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 16, "mdPct": 16, "ls": -60, "spd": 7, "hpBonus": -1000, "spRegen": -120, "sdRaw": 55, "mdRaw": 35, "type": "bracelet", "id": 2089}, {"name": "Pangea", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-70", "fDam": "0-0", "wDam": "80-110", "aDam": "0-0", "tDam": "0-0", "eDam": "80-110", "atkSpd": "VERY_SLOW", "lvl": 40, "strReq": 18, "intReq": 18, "sdPct": 12, "mdPct": 12, "spd": -10, "wDamPct": 8, "eDamPct": 8, "id": 2090}, {"name": "Panic Attack", "tier": "Fabled", "majorIds": ["FREERUNNER"], "category": "accessory", "drop": "lootchest", "hp": -400, "lvl": 78, "strReq": 25, "dexReq": 30, "ls": 105, "str": 2, "dex": 3, "spd": 12, "spRegen": -12, "type": "bracelet", "id": 3582}, {"name": "Panorama", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 150, "lvl": 30, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "id": 2088}, {"name": "Papyrus", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1000, "fDef": -50, "aDef": 90, "lvl": 77, "mr": 10, "xpb": 30, "sdRaw": 140, "id": 2094}, {"name": "Paradise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-6", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 2, "xpb": 5, "lb": 5, "id": 2093}, {"name": "Ozone", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "21-43", "tDam": "0-64", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 51, "dexReq": 20, "agiReq": 20, "def": -10, "spd": 15, "aDamPct": 10, "tDamPct": 15, "fDefPct": -20, "tDefPct": 20, "id": 2081}, {"name": "One For All", "displayName": "Paradox", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2200, "fDef": -250, "aDef": 100, "tDef": -250, "eDef": 100, "lvl": 98, "strReq": 45, "dexReq": 45, "agiReq": 45, "defReq": 45, "hprPct": -150, "sdPct": 24, "ls": 235, "ms": 20, "str": 5, "dex": 5, "int": -99, "agi": 5, "def": 5, "mdRaw": 260, "fDefPct": 50, "aDefPct": -50, "tDefPct": 50, "eDefPct": -50, "id": 2061}, {"name": "Paradigm Shift", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-17", "wDam": "11-17", "aDam": "11-17", "tDam": "11-17", "eDam": "11-17", "atkSpd": "FAST", "lvl": 54, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 8, "tDamPct": 8, "eDamPct": 8, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 2096}, {"name": "Parang", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "90-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "strReq": 30, "agiReq": 30, "str": 8, "spd": 9, "sdRaw": -100, "eDamPct": 15, "fDefPct": -20, "id": 2097}, {"name": "Paragon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-74", "fDam": "0-0", "wDam": "23-32", "aDam": "17-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 62, "intReq": 20, "agiReq": 20, "sdPct": 12, "mdPct": -26, "spd": 14, "tDefPct": -15, "id": 2101}, {"name": "Passus Lux", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": 120, "tDef": 120, "eDef": -110, "lvl": 73, "dexReq": 25, "intReq": 25, "mr": 10, "ms": 5, "ref": 20, "spd": -5, "spRegen": 8, "fDamPct": -10, "tDamPct": 15, "wDefPct": 30, "eDefPct": -10, "id": 2098}, {"name": "Particle Plating", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1300, "wDef": 80, "aDef": -40, "tDef": 60, "eDef": -100, "lvl": 73, "dexReq": 40, "intReq": 45, "ms": 5, "dex": 7, "int": 7, "sdRaw": 85, "aDamPct": -12, "eDefPct": -12, "id": 2099}, {"name": "Pebble Mesh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 190, "aDef": -10, "eDef": 15, "lvl": 37, "strReq": 15, "mdPct": 10, "xpb": 11, "str": 5, "mdRaw": 49, "eDamPct": 7, "wDefPct": -5, "id": 2104}, {"name": "Pedometer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 75, "agi": 8, "type": "bracelet", "id": 3593}, {"name": "Pass Band", "tier": "Unique", "poison": 475, "thorns": 10, "category": "accessory", "drop": "lootchest", "lvl": 90, "strReq": 25, "ref": 10, "type": "bracelet", "id": 2100}, {"name": "Penance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1450, "fDef": 50, "wDef": 50, "lvl": 75, "hprPct": 12, "mr": 5, "sdPct": -15, "mdPct": -15, "xpb": 20, "spRegen": 12, "hprRaw": 50, "id": 2105}, {"name": "Pencuri", "tier": "Unique", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-110", "fDam": "70-120", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 100, "defReq": 35, "ls": 340, "def": 13, "hpBonus": 1400, "eSteal": 5, "fDamPct": 15, "id": 2103}, {"name": "Pelier", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "aDef": -40, "tDef": 20, "lvl": 42, "ls": 47, "lb": 25, "spRegen": 10, "mdRaw": 80, "eDefPct": 20, "id": 2102}, {"name": "Perfumed Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": -20, "lvl": 32, "intReq": 2, "wDamPct": 15, "id": 2111}, {"name": "Perun's Crown", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -75, "aDef": 50, "tDef": 50, "lvl": 59, "dexReq": 40, "agiReq": 50, "mr": -5, "sdPct": 8, "dex": 8, "agi": 8, "spd": 14, "fDamPct": -52, "aDamPct": 14, "tDamPct": 14, "fDefPct": -26, "id": 2106}, {"name": "Petrichor", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3050, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 98, "strReq": 30, "agiReq": 30, "sdPct": 12, "ms": 10, "str": 7, "agi": 7, "wDamPct": 10, "aDamPct": 10, "eDamPct": 10, "id": 2110}, {"name": "Petrified Horror", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "265-390", "eDam": "245-325", "atkSpd": "VERY_SLOW", "lvl": 94, "strReq": 40, "dexReq": 40, "mr": -20, "sdPct": 58, "mdPct": -480, "ms": 15, "str": 13, "expd": 60, "spd": -38, "mdRaw": 1050, "aDefPct": -35, "id": 2112}, {"name": "Phalanx", "tier": "Rare", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1800, "fDef": 75, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 78, "defReq": 55, "agi": -4, "def": 13, "spd": -15, "id": 2115}, {"name": "Petrified Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 68, "defReq": 25, "hprPct": 9, "mdPct": -4, "def": 7, "spd": -5, "hpBonus": 500, "hprRaw": 65, "fDefPct": 25, "eDefPct": 25, "id": 2107}, {"name": "Phantasmagoria", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2100, "fDef": -150, "aDef": 70, "tDef": 70, "lvl": 98, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "mr": 5, "sdPct": 31, "ls": -355, "ms": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": -99, "mdRaw": 200, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "fDefPct": -30, "id": 3584}, {"name": "Petrified Stick", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "str": 4, "spd": -5, "id": 2113}, {"name": "Philophilia", "tier": "Rare", "type": "leggings", "thorns": -30, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3400, "lvl": 99, "hprPct": 25, "sdPct": -15, "mdPct": -15, "ls": 245, "ref": -30, "int": -10, "hpBonus": 769, "hprRaw": 165, "id": 2117}, {"name": "Phantom Blade", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "13-18", "aDam": "13-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "intReq": 10, "agiReq": 10, "mr": 5, "sdPct": 8, "mdPct": -10, "ms": 5, "agi": 7, "def": -5, "sdRaw": 25, "id": 2151}, {"name": "Philosopher", "tier": "Fabled", "type": "leggings", "majorIds": ["PEACEFUL_EFFIGY"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 525, "fDef": 15, "lvl": 36, "classReq": "Shaman", "intReq": 20, "hprPct": 15, "sdPct": -8, "mdPct": -12, "ref": 45, "def": 4, "spd": -10, "wDamPct": 15, "id": 3552}, {"name": "Phantom", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-55", "tDam": "9-33", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 40, "dexReq": 19, "agiReq": 19, "str": -8, "dex": 8, "agi": 8, "def": -8, "mdRaw": 29, "id": 2114}, {"name": "Philophobia", "tier": "Rare", "type": "boots", "poison": 255, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 840, "lvl": 54, "mdPct": 10, "ref": 10, "spRegen": -3, "id": 2124}, {"name": "Phosphene", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "lvl": 40, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 12, "mdPct": 12, "sdRaw": 30, "mdRaw": 39, "id": 2122}, {"name": "Phoenix", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-18", "fDam": "12-24", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 36, "defReq": 30, "hprPct": 15, "sdPct": -4, "hpBonus": 100, "hprRaw": 15, "fDamPct": 7, "id": 2116}, {"name": "Phoenix Wing", "tier": "Legendary", "type": "wand", "poison": -2000, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-45", "fDam": "20-50", "wDam": "0-0", "aDam": "60-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "agiReq": 40, "defReq": 55, "hprPct": 150, "agi": 15, "hpBonus": 3600, "spRegen": 20, "aDefPct": 30, "eDefPct": -20, "id": 2118}, {"name": "Phrygian", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "dex": 4, "agi": 4, "spd": 5, "id": 2119}, {"name": "Photon Projector", "tier": "Unique", "type": "relik", "thorns": 25, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "150-177", "aDam": "150-177", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 100, "intReq": 35, "agiReq": 35, "mr": 5, "ref": 25, "spd": 12, "hprRaw": 155, "wDefPct": 40, "aDefPct": 40, "id": 2120}, {"name": "Physalis", "tier": "Legendary", "type": "leggings", "poison": 577, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2550, "aDef": -120, "tDef": 70, "eDef": 70, "lvl": 86, "strReq": 65, "dexReq": 40, "mdPct": -15, "str": 8, "dex": 8, "expd": 31, "atkTier": 1, "tDamPct": 13, "eDamPct": 13, "id": 2121}, {"name": "Pierced Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 260, "aDef": -10, "eDef": 20, "lvl": 37, "sdPct": 5, "mdPct": 5, "ref": -5, "dex": 7, "id": 2123}, {"name": "Pigman's Loincloth", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 63, "lvl": 16, "strReq": 5, "mdPct": 6, "str": 4, "mdRaw": 16, "id": 2129}, {"name": "Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 15, "dex": 7, "agi": 5, "def": -5, "eSteal": 5, "id": 2126}, {"name": "Pilot Light", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2575, "fDef": 90, "wDef": -40, "aDef": -40, "tDef": 70, "eDef": 70, "lvl": 86, "defReq": 35, "hprPct": 18, "ref": 8, "def": 5, "hpBonus": 425, "spRegen": 15, "hprRaw": 110, "aDamPct": -7, "wDefPct": -7, "id": 2128}, {"name": "Pigman's Ribbing", "tier": "Unique", "type": "chestplate", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": 10, "aDef": -20, "eDef": 30, "lvl": 50, "strReq": 20, "sdPct": -15, "mdPct": 10, "eDefPct": 15, "id": 2125}, {"name": "Pin", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "24-25", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 6, "xpb": 7, "dex": 4, "id": 2127}, {"name": "Pisces", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3800, "wDef": 100, "eDef": 100, "lvl": 100, "strReq": 60, "intReq": 60, "mr": 10, "sdPct": 15, "mdPct": 15, "str": 10, "mdRaw": 235, "wDamPct": 12, "eDamPct": 12, "id": 2133}, {"name": "Pizzicato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "51-57", "fDam": "51-57", "wDam": "51-57", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "intReq": 25, "defReq": 25, "mr": 10, "sdPct": -7, "mdPct": -7, "int": 7, "def": 7, "spd": 10, "hprRaw": 95, "jh": 1, "id": 2130}, {"name": "Planet Healer", "tier": "Legendary", "poison": 865, "category": "accessory", "drop": "lootchest", "lvl": 100, "hprPct": -15, "ms": 5, "hprRaw": -80, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "necklace", "id": 2134}, {"name": "Placid Step", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 40, "tDef": -30, "lvl": 52, "intReq": 45, "mr": 5, "sdPct": 10, "mdPct": -12, "int": 7, "spRegen": 10, "wDamPct": 10, "id": 2131}, {"name": "Piston String", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-55", "fDam": "44-86", "wDam": "44-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 54, "intReq": 20, "defReq": 20, "dex": -12, "hprRaw": 40, "fDamPct": 8, "wDamPct": 8, "id": 2132}, {"name": "Plankton", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 210, "wDef": 20, "tDef": -30, "lvl": 34, "intReq": 25, "sdPct": 10, "xpb": 6, "int": 4, "spd": 5, "wDamPct": 15, "tDefPct": -15, "id": 2135}, {"name": "Plasma Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "25-54", "wDam": "0-0", "aDam": "0-0", "tDam": "7-46", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "dexReq": 20, "defReq": 25, "hprPct": -17, "sdPct": 9, "mdPct": 9, "fDamPct": 9, "wDamPct": -10, "tDamPct": 9, "id": 2137}, {"name": "Planus Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 18, "lvl": 7, "mdPct": 5, "spd": 4, "id": 2136}, {"name": "Plasma Sabre", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "31-58", "wDam": "0-0", "aDam": "0-0", "tDam": "29-43", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "dexReq": 20, "defReq": 25, "mdPct": 12, "ls": 110, "int": -7, "hprRaw": -43, "fDamPct": 8, "tDamPct": 8, "id": 2138}, {"name": "Plasma Ray", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "88-112", "wDam": "0-0", "aDam": "0-0", "tDam": "99-143", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "dexReq": 25, "defReq": 20, "sdPct": 18, "mdPct": -15, "ms": 5, "dex": 7, "def": 7, "wDefPct": -12, "aDefPct": -12, "eDefPct": -12, "id": 2140}, {"name": "Plasma Shear", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "48-60", "wDam": "0-0", "aDam": "0-0", "tDam": "22-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "dexReq": 20, "defReq": 25, "dex": 9, "sdRaw": 122, "wDamPct": -15, "aDamPct": -15, "fDefPct": 12, "tDefPct": 12, "id": 2139}, {"name": "Photon", "tier": "Unique", "quest": "Realm of Light II - Taproot", "category": "accessory", "drop": "never", "lvl": 61, "mr": 5, "xpb": 8, "ref": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spd": 8, "tDamPct": 3, "type": "ring", "id": 3609}, {"name": "Plated Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "lvl": 8, "str": 4, "id": 2142}, {"name": "Poison Ivy", "tier": "Rare", "type": "spear", "poison": 2000, "thorns": 18, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "200-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "235-275", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 55, "hprPct": -20, "mdPct": 15, "str": 15, "spd": -15, "id": 2145}, {"name": "Poison Touch", "tier": "Unique", "type": "dagger", "poison": 2000, "thorns": 15, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "440-630", "atkSpd": "VERY_SLOW", "lvl": 87, "hprRaw": -95, "wDefPct": -30, "id": 2141}, {"name": "Platinum", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 88, "xpb": -3, "lb": 12, "eSteal": 3, "type": "bracelet", "id": 2143}, {"name": "Post-Ultima", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": -50, "wDef": -50, "aDef": -50, "tDef": -50, "eDef": -50, "lvl": 76, "strReq": 40, "dexReq": 25, "mdPct": 30, "str": 9, "dex": 7, "expd": 20, "mdRaw": 190, "tDamPct": 20, "eDamPct": 20, "id": 2146}, {"name": "Polaris", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "17-17", "wDam": "17-17", "aDam": "17-17", "tDam": "17-17", "eDam": "17-17", "atkSpd": "VERY_FAST", "lvl": 60, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -15, "mdPct": -15, "xpb": 15, "lb": 15, "fDamPct": 30, "wDamPct": 30, "aDamPct": 30, "tDamPct": 30, "eDamPct": 30, "id": 2144}, {"name": "Polyphemus", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "wDef": 70, "aDef": -70, "tDef": -70, "eDef": 70, "lvl": 91, "strReq": 40, "intReq": 40, "sdPct": 13, "mdPct": 13, "ms": 10, "dex": 8, "sdRaw": 140, "aDamPct": -36, "aDefPct": -18, "id": 2149}, {"name": "Powder Snow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "wDef": 90, "aDef": 90, "tDef": -145, "lvl": 88, "intReq": 45, "agiReq": 45, "mr": 5, "ref": 23, "int": 8, "agi": 8, "sdRaw": 160, "wDamPct": 13, "aDamPct": 13, "wDefPct": 13, "aDefPct": 13, "id": 2148}, {"name": "Power Creep", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 81, "strReq": 60, "sdPct": -12, "mdPct": 5, "eDamPct": 7, "type": "necklace", "id": 2147}, {"name": "Power Cell", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -125, "tDef": -60, "lvl": 86, "dexReq": 65, "dex": 13, "mdRaw": 34, "tDamPct": -7, "type": "necklace", "id": 2150}, {"name": "Power Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 74, "str": 8, "type": "bracelet", "id": 2152}, {"name": "Praesidium", "tier": "Rare", "type": "spear", "thorns": 50, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "320-500", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "defReq": 80, "sdPct": -400, "ms": -20, "ref": 50, "def": 50, "hpBonus": 4000, "fDefPct": 77, "wDefPct": 77, "aDefPct": 77, "tDefPct": 77, "eDefPct": 77, "id": 2153}, {"name": "Pragmatism", "tier": "Unique", "type": "leggings", "poison": 154, "thorns": 9, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 425, "lvl": 48, "dexReq": 10, "ms": -5, "expd": 1, "hpBonus": -70, "eSteal": 3, "mdRaw": 59, "tDamPct": 8, "id": 2154}, {"name": "Precedence", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-60", "wDam": "30-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "intReq": 20, "defReq": 20, "mr": 5, "hprRaw": 65, "tDamPct": -7, "tDefPct": -7, "id": 2159}, {"name": "Precious", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -80, "lvl": 41, "xpb": 10, "int": 3, "agi": 4, "spd": 7, "spRegen": -12, "hprRaw": 12, "type": "ring", "id": 2157}, {"name": "Precision", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "160-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 32, "mdPct": 8, "expd": 5, "id": 2158}, {"name": "Presto", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-20", "fDam": "0-0", "wDam": "0-0", "aDam": "6-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 16, "agiReq": 8, "sdPct": 5, "ref": 8, "spd": 15, "fDamPct": -10, "aDefPct": 7, "id": 2160}, {"name": "Priest's Underwears", "tier": "Unique", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 215, "fDef": -15, "aDef": 10, "tDef": 25, "eDef": -15, "lvl": 34, "ref": 10, "spRegen": 10, "aDamPct": 5, "id": 2163}, {"name": "Predposledni", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-60", "aDam": "40-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 40, "agiReq": 50, "mr": 5, "sdPct": 12, "mdPct": -25, "int": 10, "spd": 12, "wDamPct": 15, "tDefPct": -16, "eDefPct": -10, "id": 2161}, {"name": "Prestidigitation", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "wDef": 60, "eDef": -70, "lvl": 68, "intReq": 40, "ms": 5, "str": -7, "expd": 15, "sdRaw": 65, "wDamPct": 8, "eDamPct": -17, "id": 2162}, {"name": "Prism", "tier": "Legendary", "quest": "The Realm of Light", "category": "accessory", "drop": "lootchest", "hp": -400, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 100, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "ref": 5, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 5, "wDefPct": 5, "aDefPct": 5, "tDefPct": 5, "eDefPct": 5, "type": "ring", "id": 2165}, {"name": "Prismatic Pendulum", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "5-350", "fDam": "0-0", "wDam": "5-520", "aDam": "0-0", "tDam": "0-0", "eDam": "5-520", "atkSpd": "VERY_SLOW", "lvl": 92, "strReq": 35, "intReq": 45, "mr": 5, "hpBonus": 1725, "hprRaw": 170, "aDamPct": -30, "tDamPct": -30, "wDefPct": 20, "eDefPct": 20, "id": 2166}, {"name": "Procrastination", "tier": "Legendary", "type": "relik", "majorIds": ["PEACEFUL_EFFIGY"], "category": "weapon", "drop": "NORMAL", "nDam": "1250-1875", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "sdPct": 20, "mdPct": 20, "xpb": -10, "lb": -10, "str": 17, "dex": 17, "int": 17, "agi": 17, "def": 17, "spd": -25, "atkTier": -10, "id": 2164}, {"name": "Preipice", "displayName": "Precipice", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "63-93", "atkSpd": "FAST", "lvl": 69, "strReq": 30, "mdPct": 12, "fDefPct": -18, "wDefPct": -18, "aDefPct": 15, "tDefPct": 15, "eDefPct": 30, "id": 2156}, {"name": "Prosto Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 350, "lvl": 42, "str": 5, "agi": -2, "def": 8, "id": 2167}, {"name": "Prosencephalon", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "wDef": 80, "aDef": -120, "tDef": 80, "eDef": -120, "lvl": 94, "dexReq": 70, "intReq": 70, "hprPct": -20, "mr": 5, "ms": 5, "sdRaw": 100, "mdRaw": -350, "wDamPct": 31, "tDamPct": 31, "aDefPct": -20, "eDefPct": -20, "id": 3620}, {"name": "Prog", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "7-10", "wDam": "0-0", "aDam": "0-0", "tDam": "8-12", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 10, "defReq": 5, "ms": 10, "spRaw1": 10, "spRaw2": -5, "id": 2168}, {"name": "Proto-Shield", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1550, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 74, "defReq": 75, "def": 13, "hpBonus": 423, "fDefPct": 4, "wDefPct": 2, "aDefPct": 2, "tDefPct": 2, "eDefPct": -6, "id": 2171}, {"name": "Protolith", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 900, "eDef": 30, "lvl": 60, "strReq": 45, "mdPct": 15, "str": 4, "wDamPct": -25, "eDamPct": 15, "id": 2169}, {"name": "Prymari", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-90", "fDam": "17-33", "wDam": "17-33", "aDam": "0-0", "tDam": "17-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "dexReq": 25, "intReq": 25, "defReq": 25, "sdPct": 20, "ref": 30, "dex": 9, "int": 9, "def": 9, "hprRaw": 100, "aDamPct": -40, "eDamPct": -40, "fDefPct": 15, "wDefPct": 15, "tDefPct": 15, "id": 2174}, {"name": "Prowl", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "355-455", "fDam": "0-0", "wDam": "0-0", "aDam": "210-285", "tDam": "0-0", "eDam": "355-455", "atkSpd": "SUPER_SLOW", "lvl": 81, "strReq": 25, "agiReq": 40, "mdPct": 12, "xpb": 10, "str": 16, "hpBonus": -750, "sdRaw": -90, "aDamPct": 15, "id": 2170}, {"name": "Psion Marker", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-12", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 28, "dexReq": 20, "mr": -5, "mdPct": 20, "ms": 5, "dex": 5, "expd": 10, "tDamPct": 10, "id": 2176}, {"name": "Proxima", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "210-220", "fDam": "110-200", "wDam": "110-200", "aDam": "110-200", "tDam": "110-200", "eDam": "110-200", "atkSpd": "SUPER_SLOW", "lvl": 85, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 10, "ls": 290, "ms": -5, "xpb": 15, "hprRaw": -90, "id": 2172}, {"name": "Psychoruin", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "10-13", "aDam": "0-0", "tDam": "1-22", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "dexReq": 6, "intReq": 6, "int": 5, "sdRaw": 15, "wDamPct": -3, "tDamPct": 6, "wDefPct": 6, "tDefPct": -9, "id": 2175}, {"name": "Psithurism", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "fDef": -80, "aDef": 75, "eDef": 55, "lvl": 65, "strReq": 25, "agiReq": 35, "agi": 8, "spd": 10, "tDamPct": -8, "aDefPct": 12, "eDefPct": 8, "id": 2173}, {"name": "Puff", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 50, "lvl": 79, "spd": 5, "type": "ring", "id": 2179}, {"name": "Pulsar", "tier": "Legendary", "type": "spear", "poison": -365, "thorns": 21, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-12", "fDam": "8-16", "wDam": "6-18", "aDam": "4-20", "tDam": "2-22", "eDam": "10-14", "atkSpd": "FAST", "lvl": 44, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 14, "xpb": 8, "ref": 21, "spd": -15, "mdRaw": 46, "id": 2178}, {"name": "Pulse Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1800, "tDef": 100, "eDef": -110, "lvl": 75, "dexReq": 75, "hprPct": -40, "mdPct": 10, "ms": 15, "str": -10, "sdRaw": 95, "tDamPct": 15, "eDamPct": -77, "eDefPct": -20, "id": 2177}, {"name": "Puppet Master", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "103-137", "fDam": "0-0", "wDam": "46-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 13, "sdPct": 15, "mdPct": -33, "ms": 5, "lb": 10, "str": -5, "spPct1": -25, "id": 2182}, {"name": "Pumpkin Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "drop": "never", "lvl": 20, "id": 2180}, {"name": "Puppeteer", "tier": "Rare", "type": "chestplate", "thorns": 25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "lvl": 74, "mdPct": 50, "ls": -130, "str": 7, "dex": -5, "agi": 7, "spd": 21, "atkTier": -1, "id": 2181}, {"name": "Pure Andesite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "180-191", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2184}, {"name": "Pure Andesite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "303-360", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2183}, {"name": "Pure Andesite Stick", "displayName": "Pure Andesite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "id": 2188}, {"name": "Pure Andesite Shears", "displayName": "Pure Andesite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "103-118", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "id": 2185}, {"name": "Pure Andesite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "197-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 63, "id": 2187}, {"name": "Pure Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-187", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2186}, {"name": "Pure Birch Shears", "displayName": "Pure Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-92", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "id": 2189}, {"name": "Pure Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2190}, {"name": "Pure Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-131", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "id": 2191}, {"name": "Pure Birch Stick", "displayName": "Pure Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "54-71", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "id": 2192}, {"name": "Pure Diorite Shears", "displayName": "Pure Diorite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "121-139", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "id": 2196}, {"name": "Pure Diamond Chestplate", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 700, "lvl": 57, "id": 2193}, {"name": "Pure Diorite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "358-422", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2195}, {"name": "Pure Diorite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "212-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2194}, {"name": "Pure Diorite Stick", "displayName": "Pure Diorite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-119", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "id": 2197}, {"name": "Pure Diorite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "243-277", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 69, "id": 2198}, {"name": "Pure Granite Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "225-236", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2199}, {"name": "Pure Granite Shears", "displayName": "Pure Granite Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "130-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "id": 2204}, {"name": "Pure Granite Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "388-455", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2201}, {"name": "Pure Granite Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "260-295", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "id": 2200}, {"name": "Pure Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 520, "lvl": 53, "id": 2203}, {"name": "Pure Granite Stick", "displayName": "Pure Granite Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "id": 2202}, {"name": "Pure Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 600, "lvl": 55, "id": 2206}, {"name": "Pure Iron Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 440, "lvl": 51, "id": 2205}, {"name": "Pure Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "216-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2208}, {"name": "Pure Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-167", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2209}, {"name": "Pure Jungle Shears", "displayName": "Pure Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "id": 2210}, {"name": "Pure Light Birch Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "133-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2213}, {"name": "Pure Light Birch Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "111-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2214}, {"name": "Pure Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 72, "id": 2207}, {"name": "Pure Jungle Stick", "displayName": "Pure Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-94", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "id": 2212}, {"name": "Pure Light Birch Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "85-102", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "id": 2211}, {"name": "Pure Light Birch Shears", "displayName": "Pure Light Birch Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "69-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "id": 2215}, {"name": "Pure Light Birch Stick", "displayName": "Pure Light Birch Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "51-61", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "id": 2217}, {"name": "Pure Light Jungle Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-144", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2218}, {"name": "Pure Light Jungle Stick", "displayName": "Pure Light Jungle Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "66-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 76, "id": 2222}, {"name": "Pure Light Jungle Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "158-188", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2216}, {"name": "Pure Light Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "92-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2223}, {"name": "Pure Light Jungle Shears", "displayName": "Pure Light Jungle Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "86-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 76, "id": 2219}, {"name": "Pure Light Jungle Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "98-133", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 76, "id": 2221}, {"name": "Pure Light Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "106-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2220}, {"name": "Pure Light Oak Shears", "displayName": "Pure Light Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "id": 2226}, {"name": "Pure Light Oak Stick", "displayName": "Pure Light Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "44-49", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "id": 2227}, {"name": "Pure Light Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "128-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2228}, {"name": "Pure Light Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-175", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2224}, {"name": "Pure Light Spruce Stick", "displayName": "Pure Light Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "61-67", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "id": 2230}, {"name": "Pure Light Spruce Shears", "displayName": "Pure Light Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "79-97", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 70, "id": 2229}, {"name": "Pure Light Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-86", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "id": 2225}, {"name": "Pure Light Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "99-114", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "id": 2231}, {"name": "Pure Oak Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "102-108", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2235}, {"name": "Pure Oak Wood Shears", "displayName": "Pure Oak Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "62-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 56, "id": 2234}, {"name": "Pure Oak Wood Bow", "displayName": "Pure Oak Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "135-159", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2233}, {"name": "Pure Spruce Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "194-221", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2238}, {"name": "Pure Oak Wood Spear", "displayName": "Pure Oak Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "91-105", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 56, "id": 2232}, {"name": "Pure Spruce Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "145-151", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2241}, {"name": "Pure Spruce Shears", "displayName": "Pure Spruce Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "88-110", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 67, "id": 2236}, {"name": "Pure Spruce Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "129-148", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 67, "id": 2239}, {"name": "Pure Stone Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "249-296", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2244}, {"name": "Pure Spruce Stick", "displayName": "Pure Spruce Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "64-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "id": 2243}, {"name": "Pure Stone Shears", "displayName": "Pure Stone Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "84-98", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 57, "id": 2242}, {"name": "Pure Stone Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "147-158", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2240}, {"name": "Pure Oak Wood Stick", "displayName": "Pure Oak Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "id": 2237}, {"name": "Pure Stone Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "162-201", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 57, "id": 2246}, {"name": "Pyroclast", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "250-790", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "350-690", "atkSpd": "SUPER_SLOW", "lvl": 88, "strReq": 40, "defReq": 35, "expd": 15, "spd": -10, "hprRaw": -155, "mdRaw": 620, "fDamPct": 20, "eDamPct": 20, "wDefPct": -50, "aDefPct": -15, "id": 2247}, {"name": "Pure Stone Stick", "displayName": "Pure Stone Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "71-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 57, "id": 2248}, {"name": "Quartz Choker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "lvl": 52, "sdPct": 8, "xpb": 4, "type": "necklace", "id": 2309}, {"name": "Purgatory", "tier": "Unique", "type": "wand", "thorns": 11, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "150-185", "wDam": "0-0", "aDam": "0-0", "tDam": "100-235", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "defReq": 35, "hprPct": -23, "mr": -5, "sdPct": 18, "expd": 23, "fDamPct": 18, "tDamPct": 18, "id": 2245}, {"name": "Pyromaniac", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 200, "fDef": -40, "wDef": -40, "lvl": 90, "defReq": 50, "sdPct": 11, "int": -3, "expd": 10, "spd": 7, "hprRaw": -60, "type": "necklace", "id": 2250}, {"name": "Quartz-laced Leggings", "displayName": "Quartz-Laced Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 660, "lvl": 53, "sdPct": 10, "xpb": 10, "ref": 10, "id": 2251}, {"name": "Qaxezine", "tier": "Unique", "type": "bow", "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "74-82", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-96", "eDam": "62-84", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "dexReq": 25, "lb": 11, "str": 14, "expd": 12, "spd": -21, "id": 2249}, {"name": "Quartzite Amulet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 4, "sdPct": 4, "type": "necklace", "id": 2252}, {"name": "Quartzite Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2300, "lvl": 91, "sdPct": 20, "sdRaw": 135, "id": 2254}, {"name": "Quartzite Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-150", "fDam": "0-0", "wDam": "150-160", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "dexReq": 35, "intReq": 30, "lb": 12, "int": 8, "sdRaw": 90, "aDamPct": -23, "tDamPct": 25, "aDefPct": -16, "id": 2255}, {"name": "Quartzite Wand", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "2-4", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "xpb": 4, "id": 2253}, {"name": "Quasar", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-130", "fDam": "0-40", "wDam": "0-40", "aDam": "0-40", "tDam": "0-40", "eDam": "0-40", "atkSpd": "SLOW", "lvl": 72, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDefPct": 13, "wDefPct": 13, "aDefPct": 13, "tDefPct": 13, "eDefPct": 13, "id": 2257}, {"name": "Quickshot", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-77", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 20, "xpb": 11, "dex": 8, "id": 2259}, {"name": "Quickstep", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "87-93", "wDam": "0-0", "aDam": "84-96", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 77, "agiReq": 30, "defReq": 25, "xpb": 7, "agi": 6, "spd": 14, "hpBonus": 600, "fDamPct": 12, "aDefPct": 10, "id": 2258}, {"name": "Quatrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 4, "lvl": 16, "hprPct": 4, "sdPct": 4, "mdPct": 4, "xpb": 4, "type": "ring", "id": 2256}, {"name": "Quill", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-80", "fDam": "0-0", "wDam": "0-0", "aDam": "75-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "agiReq": 20, "mr": 5, "sdPct": 10, "xpb": 15, "wDamPct": 16, "aDefPct": 15, "tDefPct": -20, "id": 2260}, {"name": "Quinque", "tier": "Legendary", "type": "spear", "poison": 2000, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-235", "eDam": "5-7", "atkSpd": "SUPER_FAST", "lvl": 99, "dexReq": 65, "mr": -10, "spd": -20, "atkTier": 1, "sdRaw": 175, "mdRaw": 70, "eDamPct": 50, "id": 2261}, {"name": "Abrasion", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 40, "wDef": 40, "lvl": 100, "mr": 5, "sdPct": 8, "ms": 5, "spd": -37, "fDamPct": 10, "type": "necklace", "id": 3624}, {"name": "Recalcitrance", "tier": "Fabled", "category": "accessory", "drop": "never", "hp": -2600, "aDef": -45, "eDef": 65, "lvl": 100, "strReq": 45, "hprPct": 9, "str": 6, "atkTier": 1, "eDamPct": 11, "type": "necklace", "jh": 1, "id": 3601}, {"name": "Eyes on All", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": -60, "tDef": -60, "lvl": 60, "dexReq": 45, "intReq": 45, "sdPct": -11, "ms": 10, "atkTier": -6, "type": "necklace", "id": 3602}, {"name": "Homeorhesis", "tier": "Fabled", "category": "accessory", "drop": "never", "wDef": 35, "eDef": 35, "lvl": 60, "strReq": 40, "sdPct": -45, "mdPct": -45, "ms": 5, "xpb": 10, "sdRaw": 120, "mdRaw": 60, "type": "bracelet", "id": 3576}, {"name": "Cacophony", "tier": "Fabled", "thorns": 6, "category": "accessory", "drop": "never", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 80, "agiReq": 55, "ls": 115, "ref": 6, "spRegen": -8, "hprRaw": 50, "sdRaw": -45, "type": "ring", "id": 3585}, {"name": "Racer's Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 950, "lvl": 60, "agiReq": 40, "mdPct": -5, "agi": 7, "spd": 19, "sdRaw": -25, "id": 2270}, {"name": "Metamorphosis", "tier": "Fabled", "category": "accessory", "drop": "never", "fDef": 20, "wDef": -100, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 80, "mr": -5, "sdPct": 20, "ms": -5, "type": "necklace", "id": 3575}, {"name": "Ragged", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 60, "fDef": -8, "aDef": 10, "lvl": 19, "ls": 7, "def": -2, "spd": 4, "hpBonus": -8, "id": 2271}, {"name": "Raecard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 35, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 22, "strReq": 2, "dexReq": 2, "intReq": 2, "agiReq": 2, "defReq": 2, "lb": 15, "hpBonus": 110, "fDamPct": 6, "wDamPct": 6, "aDamPct": 6, "tDamPct": 6, "eDamPct": 6, "id": 2272}, {"name": "Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-49", "fDam": "15-19", "wDam": "12-24", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 15, "mr": 5, "spRegen": 5, "id": 2269}, {"name": "Ragni's Mail", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": -30, "eDef": 60, "lvl": 50, "strReq": 20, "defReq": 5, "sdPct": -10, "mdPct": 10, "xpb": 10, "def": 7, "fDamPct": 10, "wDamPct": -25, "eDamPct": 10, "id": 2273}, {"name": "Ragni's Old Shoes", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 300, "aDef": -10, "eDef": 20, "lvl": 39, "mdPct": 7, "xpb": 6, "id": 2275}, {"name": "Ragni's Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 3, "str": 3, "id": 2276}, {"name": "Ragon's Bracelet", "tier": "Rare", "quest": "Elemental Exercise", "category": "accessory", "drop": "never", "lvl": 10, "hpBonus": 13, "type": "bracelet", "id": 2277}, {"name": "Rainbow", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 30, "wDef": 30, "aDef": 30, "tDef": 30, "eDef": 30, "lvl": 80, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": -3, "wDamPct": -3, "aDamPct": -3, "tDamPct": -3, "eDamPct": -3, "type": "ring", "id": 2274}, {"name": "Rainstorm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-95", "fDam": "0-0", "wDam": "40-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 93, "dexReq": 35, "intReq": 30, "sdPct": 10, "ms": 5, "xpb": 7, "dex": 8, "int": 5, "tDamPct": 22, "aDefPct": -25, "id": 2280}, {"name": "Raindrop", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -135, "wDef": 20, "lvl": 69, "intReq": 25, "mr": 5, "sdPct": -2, "mdPct": -2, "int": 5, "type": "ring", "id": 2279}, {"name": "Rapier", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "66-76", "fDam": "66-88", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 290, "ref": 15, "def": 12, "fDefPct": 15, "id": 2282}, {"name": "Raptor", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "44-77", "tDam": "0-0", "eDam": "66-77", "atkSpd": "VERY_FAST", "lvl": 62, "strReq": 30, "agiReq": 30, "mdPct": 12, "agi": 4, "def": -5, "spd": 15, "hpBonus": -200, "mdRaw": 65, "id": 2281}, {"name": "Rapids", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "wDef": 130, "tDef": -130, "lvl": 89, "intReq": 55, "mr": 5, "sdPct": 23, "spd": 9, "fDamPct": -15, "wDamPct": 11, "id": 2278}, {"name": "Ration", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": -75, "eDef": -75, "lvl": 99, "intReq": 45, "defReq": 45, "mr": 15, "sdPct": -18, "mdPct": -18, "int": 9, "hprRaw": 150, "id": 2283}, {"name": "Rarity", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 12, "lb": 12, "spRegen": 8, "type": "ring", "id": 2284}, {"name": "Rayshyroth's Knowledge", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 66, "xpb": 12, "spRegen": 3, "type": "bracelet", "id": 2286}, {"name": "Reaction", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 770, "tDef": 45, "eDef": -50, "lvl": 57, "dexReq": 30, "xpb": 6, "expd": 4, "sdRaw": 50, "tDamPct": 9, "wDefPct": -7, "id": 2290}, {"name": "Razor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 4, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 49, "sdPct": 5, "mdPct": 5, "str": 7, "dex": -5, "int": 7, "agi": 7, "def": 7, "spd": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": -40, "eDamPct": 20, "id": 2285}, {"name": "Reaper of Soul", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "ls": 100, "ms": 10, "agi": 7, "spRegen": 10, "eSteal": 10, "id": 2287}, {"name": "Rebellion", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-60", "fDam": "45-60", "wDam": "0-0", "aDam": "0-0", "tDam": "45-60", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 53, "dexReq": 35, "defReq": 35, "sdPct": -6, "ls": 100, "int": -4, "expd": 19, "hpBonus": -230, "fDamPct": 17, "tDamPct": 17, "wDefPct": -12, "id": 2288}, {"name": "Reborn", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": -125, "lvl": 100, "strReq": 45, "dexReq": 45, "int": -4, "agi": -2, "def": -2, "mdRaw": 50, "tDamPct": 10, "eDamPct": 10, "type": "necklace", "id": 2289}, {"name": "Reason", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "60-85", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "intReq": 30, "defReq": 35, "mr": 5, "dex": -7, "int": 8, "def": 5, "hprRaw": 105, "tDamPct": -30, "fDefPct": 13, "wDefPct": 13, "id": 2291}, {"name": "Recharge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "lvl": 59, "mr": -45, "sdPct": 11, "mdPct": -9, "ms": 40, "sdRaw": 50, "id": 2292}, {"name": "Rectificator", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "hpBonus": 150, "fDamPct": 16, "wDamPct": 16, "aDamPct": 16, "tDamPct": 16, "eDamPct": 16, "id": 2294}, {"name": "Red Candle", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-50", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "defReq": 15, "hprPct": 20, "ls": 31, "def": 7, "hpBonus": 100, "hprRaw": 15, "id": 2296}, {"name": "Red", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 25, "fDef": 4, "lvl": 30, "hpBonus": 5, "type": "ring", "id": 2293}, {"name": "Red Ko Rhu", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 470, "fDef": -60, "aDef": 40, "eDef": 40, "lvl": 43, "str": 8, "expd": 10, "spd": -8, "eDefPct": 10, "id": 2295}, {"name": "Red String", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 12, "lvl": 16, "hprPct": 3, "xpb": 3, "spRegen": 2, "type": "ring", "id": 2297}, {"name": "Redirection", "tier": "Unique", "type": "leggings", "thorns": 12, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1050, "tDef": 30, "eDef": -70, "lvl": 65, "dexReq": 25, "ref": 12, "dex": 4, "tDamPct": 12, "tDefPct": 12, "id": 2300}, {"name": "Refined Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "xpb": 4, "id": 2299}, {"name": "Redemption", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1475, "fDef": 50, "aDef": 50, "lvl": 71, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": -5, "ls": 120, "int": -6, "hprRaw": 40, "id": 2298}, {"name": "Refined Chainmail Helmet", "tier": "Normal", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 245, "lvl": 41, "id": 2301}, {"name": "Reflection", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "sdPct": -17, "mdPct": -17, "ref": 25, "hprRaw": 65, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2304}, {"name": "Refined Iron Boots", "tier": "Normal", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "lvl": 43, "id": 2302}, {"name": "Refined Iron Leggings", "tier": "Normal", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 340, "lvl": 45, "id": 2306}, {"name": "Refined Iron Chainmail", "tier": "Normal", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 380, "lvl": 47, "id": 2303}, {"name": "Reflex", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 14, "spd": 5, "type": "ring", "id": 2305}, {"name": "Regal Chaps", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 23, "xpb": 8, "lb": 8, "eSteal": 2, "id": 2308}, {"name": "Regulating Charge", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "57-97", "aDam": "0-0", "tDam": "57-97", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 67, "dexReq": 35, "intReq": 35, "sdPct": 13, "ms": -10, "sdRaw": 75, "wDamPct": 9, "tDamPct": 9, "id": 2313}, {"name": "Regrets", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "12-16", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 23, "intReq": 8, "sdPct": 12, "sdRaw": 21, "id": 2311}, {"name": "Relay", "tier": "Rare", "type": "leggings", "thorns": 8, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "tDef": 15, "eDef": -15, "lvl": 24, "dexReq": 15, "ref": 8, "str": -4, "dex": 5, "id": 2314}, {"name": "Rekkr", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 4500, "fDef": 130, "eDef": 100, "lvl": 99, "strReq": 45, "defReq": 60, "mdPct": 40, "str": 13, "def": 13, "spd": -15, "fDefPct": 20, "aDefPct": 20, "eDefPct": 20, "id": 2310}, {"name": "Relend's Refrain", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 40, "tDef": -50, "eDef": -15, "lvl": 90, "agiReq": 50, "xpb": 7, "spd": 12, "wDamPct": 5, "type": "bracelet", "id": 2312}, {"name": "Relentless", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "70-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "58-70", "eDam": "58-70", "atkSpd": "FAST", "lvl": 70, "strReq": 35, "dexReq": 35, "agi": -10, "def": -10, "expd": 25, "atkTier": 1, "hprRaw": -69, "mdRaw": 60, "id": 2316}, {"name": "Relfect", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-100", "fDam": "20-30", "wDam": "20-30", "aDam": "20-30", "tDam": "20-30", "eDam": "20-30", "atkSpd": "NORMAL", "lvl": 94, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "mdPct": 10, "ms": 5, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "expd": 10, "spd": 10, "hpBonus": 1650, "id": 2315}, {"name": "Relic", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-8", "fDam": "4-10", "wDam": "2-8", "aDam": "6-8", "tDam": "1-12", "eDam": "8-10", "atkSpd": "NORMAL", "lvl": 14, "sdPct": 6, "xpb": 8, "id": 2318}, {"name": "Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "27-41", "fDam": "27-41", "wDam": "27-41", "aDam": "27-41", "tDam": "27-41", "eDam": "27-41", "atkSpd": "SLOW", "lvl": 50, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2317}, {"name": "Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "30-35", "wDam": "30-35", "aDam": "30-35", "tDam": "30-35", "eDam": "30-35", "atkSpd": "SLOW", "lvl": 60, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2319}, {"name": "Refraction", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 74, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "ls": 110, "ms": 5, "fDamPct": 11, "wDamPct": 11, "aDamPct": 11, "tDamPct": 11, "eDamPct": 11, "id": 2307}, {"name": "Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "12-17", "fDam": "12-17", "wDam": "12-17", "aDam": "12-17", "tDam": "12-17", "eDam": "12-17", "atkSpd": "NORMAL", "lvl": 55, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2320}, {"name": "Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "24-30", "fDam": "24-30", "wDam": "24-30", "aDam": "24-30", "tDam": "24-30", "eDam": "24-30", "atkSpd": "FAST", "lvl": 65, "xpb": 15, "lb": 15, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "id": 2322}, {"name": "Remedy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1050, "fDef": 60, "wDef": 60, "tDef": -60, "eDef": -60, "lvl": 70, "intReq": 35, "defReq": 35, "hprPct": 18, "mr": 5, "sdPct": -11, "mdPct": -11, "spRegen": 18, "hprRaw": 70, "sdRaw": -40, "mdRaw": -39, "id": 2321}, {"name": "Remikas' Sanctuary", "tier": "Rare", "type": "chestplate", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "lvl": 68, "defReq": 50, "ref": 8, "def": 7, "spd": -10, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2323}, {"name": "Remikas' Righteousness", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "mr": 5, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 2325}, {"name": "Reminder", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 96, "int": 8, "type": "ring", "id": 2324}, {"name": "Reminiscence", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 80, "fDef": 20, "wDef": 10, "eDef": -30, "lvl": 41, "intReq": 30, "defReq": 10, "hprPct": 8, "mr": 5, "spRegen": 8, "hprRaw": 10, "type": "bracelet", "id": 2326}, {"name": "Render", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 15, "eDef": -15, "lvl": 60, "defReq": 25, "expd": 12, "fDamPct": 10, "wDamPct": -7, "type": "ring", "id": 2328}, {"name": "Resolve", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3425, "fDef": 100, "aDef": 100, "tDef": -150, "lvl": 98, "agiReq": 40, "defReq": 40, "ms": 5, "int": -20, "agi": 7, "def": 7, "wDamPct": -15, "spPct1": -10, "spPct3": -10, "id": 2327}, {"name": "Resistance", "tier": "Unique", "type": "leggings", "thorns": 13, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "tDef": 100, "eDef": 175, "lvl": 97, "dexReq": 60, "ms": 15, "ref": 9, "tDamPct": -15, "tDefPct": 20, "eDefPct": 20, "id": 2333}, {"name": "Repulsion", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-22", "fDam": "0-0", "wDam": "33-42", "aDam": "0-0", "tDam": "33-42", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 59, "dexReq": 30, "intReq": 30, "mr": 5, "ref": 20, "sdRaw": 55, "wDamPct": 9, "tDamPct": 9, "eDamPct": -18, "eDefPct": -23, "id": 2329}, {"name": "Reticence", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "xpb": 15, "str": 7, "sdRaw": -25, "mdRaw": 16, "id": 2331}, {"name": "Return", "tier": "Unique", "thorns": 9, "category": "accessory", "drop": "lootchest", "lvl": 53, "ref": 9, "type": "ring", "id": 2330}, {"name": "Retina Shooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "VERY_SLOW", "lvl": 22, "strReq": 5, "mdPct": 3, "dex": 7, "id": 2332}, {"name": "Return to Ether", "tier": "Legendary", "type": "bow", "poison": -4143, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "12-126", "fDam": "0-0", "wDam": "0-0", "aDam": "16-162", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 90, "intReq": 84, "agiReq": 49, "mr": 10, "mdPct": -27, "xpb": 26, "agi": 44, "spd": 22, "wDamPct": 34, "tDamPct": -149, "eDamPct": -13, "fDefPct": 45, "id": 2334}, {"name": "Reverie", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "108-144", "wDam": "108-144", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 68, "intReq": 25, "defReq": 25, "sdPct": 24, "mdPct": -15, "int": 8, "spd": -15, "fDefPct": 24, "wDefPct": 24, "id": 2336}, {"name": "Reverb", "tier": "Unique", "type": "boots", "thorns": 19, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -90, "aDef": 50, "tDef": 50, "lvl": 64, "dexReq": 30, "agiReq": 30, "ref": 19, "mdRaw": 90, "fDefPct": -15, "aDefPct": 11, "tDefPct": 11, "id": 2335}, {"name": "Reversal", "tier": "Unique", "type": "relik", "thorns": 30, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "23-30", "tDam": "0-0", "eDam": "23-30", "atkSpd": "NORMAL", "lvl": 36, "strReq": 12, "agiReq": 12, "mdPct": 10, "ref": 30, "spd": 10, "mdRaw": 39, "id": 2340}, {"name": "Revolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "60-60", "wDam": "0-0", "aDam": "0-0", "tDam": "60-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 82, "dexReq": 25, "defReq": 25, "mdPct": 12, "ls": 345, "ms": 10, "xpb": 10, "fDamPct": 9, "wDamPct": -25, "aDamPct": -25, "tDamPct": 9, "id": 2338}, {"name": "Revolutionine", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "315-327", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 83, "defReq": 40, "mdPct": 15, "def": 15, "hpBonus": -815, "fDamPct": 20, "wDamPct": -20, "wDefPct": -20, "id": 2339}, {"name": "Rewind", "tier": "Legendary", "type": "dagger", "majorIds": ["SORCERY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-50", "fDam": "0-0", "wDam": "30-50", "aDam": "25-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 80, "intReq": 50, "agiReq": 50, "mr": 10, "ls": 250, "ms": -15, "agi": 10, "spd": 15, "hprRaw": -200, "id": 2337}, {"name": "Rheingold", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "fDef": -60, "aDef": 70, "tDef": 50, "eDef": -60, "lvl": 66, "dexReq": 20, "agiReq": 25, "sdPct": 7, "mdPct": 12, "lb": 16, "dex": 5, "spd": 11, "fDamPct": -14, "id": 2342}, {"name": "Rhunaex", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-34", "eDam": "0-34", "atkSpd": "FAST", "lvl": 41, "strReq": 25, "dexReq": 25, "ls": 33, "dex": 5, "hprRaw": -15, "sdRaw": 25, "mdRaw": 33, "aDamPct": -19, "id": 2341}, {"name": "Ricin", "tier": "Rare", "type": "dagger", "poison": 1930, "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 73, "mdPct": -50, "ms": 5, "sdRaw": 125, "id": 2343}, {"name": "Rime", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -30, "wDef": 10, "aDef": 15, "lvl": 43, "intReq": 15, "agiReq": 30, "sdPct": 7, "ms": 5, "agi": 4, "spd": -9, "aDamPct": 4, "fDefPct": -10, "type": "bracelet", "id": 2347}, {"name": "Ridge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 100, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 34, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "id": 2345}, {"name": "Ring of Focus", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 20, "intReq": 5, "sdPct": 5, "xpb": 4, "type": "ring", "id": 2349}, {"name": "Ring of Fire", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -50, "lvl": 84, "expd": 8, "fDamPct": 11, "wDamPct": -7, "eDamPct": 8, "type": "ring", "id": 2346}, {"name": "Ringlets", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 5, "drop": "NORMAL", "hp": 1875, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 80, "mr": 10, "xpb": 20, "ref": 20, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "spRaw4": -5, "id": 2348}, {"name": "Ringing Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 265, "wDef": 20, "tDef": -20, "lvl": 41, "intReq": 20, "mr": 5, "spRegen": 5, "wDefPct": 10, "aDefPct": 5, "id": 2352}, {"name": "Ring of Strength", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 9, "str": 3, "type": "ring", "id": 2350}, {"name": "Ripper", "tier": "Unique", "category": "accessory", "drop": "lootchest", "eDef": -6, "lvl": 46, "dexReq": 25, "xpb": 3, "dex": 3, "mdRaw": 17, "type": "ring", "id": 2351}, {"name": "Rinkaku", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2000, "fDef": 80, "tDef": 80, "lvl": 79, "dexReq": 40, "defReq": 55, "hprPct": -20, "sdPct": 10, "ls": 110, "def": 8, "hpBonus": -400, "fDamPct": 8, "tDamPct": 8, "id": 2354}, {"name": "Rising Sun", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-150", "fDam": "60-110", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "defReq": 25, "xpb": 15, "spRegen": 6, "id": 2353}, {"name": "Rite Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-26", "fDam": "9-12", "wDam": "9-12", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 10, "defReq": 10, "sdPct": 8, "ls": 25, "lb": 8, "hpBonus": -150, "spRegen": -10, "eSteal": 4, "id": 2355}, {"name": "Riverflow", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 200, "tDef": -100, "lvl": 93, "intReq": 95, "mr": 20, "ref": 5, "spd": 7, "tDamPct": -15, "wDefPct": 20, "tDefPct": -15, "id": 2357}, {"name": "Roaming Thief", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "lvl": 28, "ls": 13, "lb": 8, "dex": 3, "eSteal": 4, "id": 2356}, {"name": "Rock Chisel", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "164-165", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "strReq": 25, "defReq": 35, "sdPct": -9, "lb": 19, "dex": 8, "eSteal": 3, "fDamPct": 24, "eDamPct": 7, "id": 2359}, {"name": "Robin", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-16", "fDam": "5-9", "wDam": "0-0", "aDam": "4-11", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 52, "agiReq": 30, "defReq": 20, "hprPct": 20, "sdPct": -12, "mdPct": -12, "spd": 16, "hprRaw": 30, "id": 2358}, {"name": "Rockworm", "tier": "Unique", "poison": 135, "category": "accessory", "drop": "lootchest", "lvl": 57, "mdPct": 3, "str": 4, "eDamPct": 4, "type": "ring", "id": 2361}, {"name": "Rodoroc's Pride", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3700, "fDef": 125, "wDef": -175, "eDef": 125, "lvl": 98, "strReq": 40, "defReq": 40, "mr": 10, "str": 8, "def": 8, "spd": -8, "hpBonus": 700, "fDamPct": 8, "wDamPct": 10, "aDamPct": -20, "tDamPct": -20, "eDamPct": 8, "id": 2360}, {"name": "Rollick", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1200, "wDef": 100, "tDef": -130, "lvl": 71, "intReq": 100, "sdPct": 15, "int": 7, "sdRaw": 75, "fDamPct": -30, "wDamPct": 20, "aDamPct": -20, "tDamPct": -20, "eDamPct": -20, "wDefPct": 20, "id": 2363}, {"name": "Ronin", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2225, "tDef": 175, "eDef": -100, "lvl": 91, "dexReq": 50, "str": -15, "dex": 20, "spd": 5, "mdRaw": 175, "tDamPct": 15, "id": 2364}, {"name": "Ronco", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "5-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-48", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 29, "dexReq": 30, "sdPct": 12, "lb": 6, "dex": 5, "spd": 8, "hpBonus": -90, "eDefPct": -15, "id": 2362}, {"name": "Rosario", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-32", "atkSpd": "SLOW", "lvl": 43, "strReq": 20, "defReq": 20, "hprPct": 9, "sdPct": -20, "spd": -12, "hpBonus": 250, "hprRaw": 15, "id": 2365}, {"name": "Rot of Dernel", "tier": "Rare", "type": "wand", "poison": 2645, "thorns": 35, "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-12", "eDam": "9-10", "atkSpd": "VERY_SLOW", "lvl": 83, "strReq": 15, "dexReq": 15, "ls": 300, "ms": 15, "int": -30, "hpBonus": -1850, "id": 2367}, {"name": "Rotten Wood", "tier": "Unique", "type": "wand", "poison": 1462, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-5", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "id": 2372}, {"name": "Rotary Crossbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-50", "fDam": "30-100", "wDam": "50-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 74, "intReq": 30, "defReq": 30, "ls": 225, "expd": 14, "hpBonus": 800, "tDefPct": -20, "eDefPct": -14, "id": 2366}, {"name": "Rotten", "tier": "Rare", "type": "chestplate", "poison": 160, "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 280, "fDef": -15, "eDef": 25, "lvl": 37, "id": 2369}, {"name": "Rikter", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "312-670", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "330-570", "atkSpd": "SUPER_SLOW", "lvl": 84, "strReq": 55, "mdPct": 30, "expd": 25, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "id": 2344}, {"name": "Roughcut", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 560, "aDef": -50, "tDef": 20, "eDef": 30, "lvl": 53, "strReq": 15, "mdPct": 10, "dex": 7, "mdRaw": 85, "tDamPct": 10, "eDefPct": 5, "id": 2370}, {"name": "Rounding Test", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "lvl": 1, "xpb": 11, "atkTier": -1, "id": 2371}, {"name": "Runic Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 375, "lvl": 90, "sdPct": 8, "lb": 5, "type": "necklace", "id": 2375}, {"name": "Rubber", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": 50, "lvl": 77, "mdRaw": 26, "type": "ring", "id": 2373}, {"name": "Rubber Rainboots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 225, "tDef": 10, "lvl": 34, "xpb": 5, "wDefPct": 20, "id": 2374}, {"name": "Rubber Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "ref": 10, "dex": -3, "agi": -3, "id": 2377}, {"name": "Running Water", "tier": "Unique", "type": "relik", "sprint": 10, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "50-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "intReq": 30, "int": 9, "spd": 15, "sprintReg": 10, "id": 2376}, {"name": "Runner's Vest", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 24, "lvl": 9, "agi": 3, "spd": 4, "id": 2378}, {"name": "Rust", "tier": "Rare", "type": "helmet", "poison": 665, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 2450, "wDef": -60, "aDef": -60, "lvl": 79, "defReq": 55, "ref": -23, "dex": 9, "tDamPct": 19, "eDamPct": 11, "id": 2399}, {"name": "Rusted Bracelet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 7, "xpb": 2, "lb": 3, "type": "bracelet", "id": 2379}, {"name": "Rusted Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 28, "wDef": 6, "tDef": -3, "lvl": 31, "wDefPct": 4, "tDefPct": -3, "type": "ring", "id": 2387}, {"name": "Rusted Root", "tier": "Legendary", "type": "relik", "poison": 900, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "190-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "190-200", "atkSpd": "SLOW", "lvl": 65, "strReq": 40, "dexReq": 45, "sdRaw": 130, "tDamPct": 35, "wDefPct": -40, "spRaw2": -10, "spPct3": 49, "spPct4": -42, "jh": -1, "id": 2381}, {"name": "Rycar's Bravado", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -35, "aDef": 20, "eDef": 20, "lvl": 58, "strReq": 20, "str": 7, "dex": 3, "int": -10, "agi": 3, "type": "bracelet", "id": 2380}, {"name": "Adventurer's Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 147, "lvl": 27, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2385, "set": "Adventurer's"}, {"name": "Rycar's Swagger", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 250, "lvl": 62, "strReq": 10, "agiReq": 10, "hprPct": -11, "str": 3, "agi": 5, "spd": -4, "eSteal": 2, "type": "necklace", "id": 2382}, {"name": "Adventurer's Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 135, "lvl": 26, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2383, "set": "Adventurer's"}, {"name": "Adventurer's Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 153, "lvl": 28, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2386, "set": "Adventurer's"}, {"name": "Air Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 145, "aDef": 5, "lvl": 25, "agiReq": 15, "agi": 4, "aDamPct": 7, "aDefPct": 7, "id": 2390, "set": "Air Relic"}, {"name": "Adventurer's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 165, "lvl": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "id": 2384, "set": "Adventurer's"}, {"name": "Air Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 205, "aDef": 10, "lvl": 30, "agiReq": 21, "agi": 5, "aDamPct": 9, "aDefPct": 9, "id": 2391, "set": "Air Relic"}, {"name": "Beachside Conch", "tier": "Set", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 19, "intReq": 8, "sdPct": -8, "mdPct": -12, "wDamPct": 12, "wDefPct": 8, "id": 2392, "set": "Beachside"}, {"name": "Beachside Headwrap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 75, "wDef": 6, "lvl": 17, "intReq": 5, "lb": 8, "int": 3, "wDefPct": 8, "id": 2394, "set": "Beachside"}, {"name": "Black Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 13, "ms": 5, "xpb": 5, "dex": 7, "id": 2398, "set": "Black"}, {"name": "Bear Mask", "tier": "Set", "type": "helmet", "skin": "eyJ0aW1lc3RhbXAiOjE0MDkxOTUyODE1ODUsInByb2ZpbGVJZCI6IjVkYTgwMWMxNzkwYzQ3Mzc4YzhiMzk2MjM2ZDlhNzk2IiwicHJvZmlsZU5hbWUiOiJDaHVtYmxlZG9yZSIsImlzUHVibGljIjp0cnVlLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjk1YmJmOWYxNzViMWU3NmE2MWI0Y2QwYmExODNiMThjOTQ2NzAxN2Y0MWVkMTA0NmFiZjY1YTRhNjNjNGEwIn19fQ==", "category": "armor", "drop": "never", "hp": 72, "lvl": 15, "mdRaw": 25, "fixID": true, "id": 1854, "set": "Bear"}, {"name": "Bear Body", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "hp": 78, "lvl": 16, "mdPct": 6, "fixID": true, "id": 2396, "set": "Bear"}, {"name": "Black Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 195, "tDef": 7, "lvl": 33, "dexReq": 10, "dex": 4, "mdRaw": 26, "id": 2395, "set": "Black"}, {"name": "Black Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 245, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 30, "lb": 10, "dex": 7, "sdRaw": 42, "id": 2397, "set": "Black"}, {"name": "Black Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 220, "tDef": 7, "eDef": -10, "lvl": 33, "dexReq": 20, "dex": 5, "spd": 10, "mdRaw": 30, "id": 2400, "set": "Black"}, {"name": "Air Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 275, "aDef": 15, "lvl": 35, "agiReq": 27, "agi": 7, "aDamPct": 11, "aDefPct": 11, "id": 2389, "set": "Air Relic"}, {"name": "Bony Bow", "tier": "Set", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "15-36", "fDam": "0-0", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "mdPct": 8, "agi": 6, "id": 2401, "set": "Bony"}, {"name": "Champion Boots", "tier": "Set", "type": "boots", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 20, "id": 2403, "set": "Champion"}, {"name": "Bony Circlet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "aDef": 5, "lvl": 21, "agiReq": 6, "mdPct": 8, "mdRaw": 30, "id": 2402, "set": "Bony"}, {"name": "Champion Helmet", "tier": "Set", "type": "helmet", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2407, "set": "Champion"}, {"name": "Champion Chestplate", "tier": "Set", "type": "chestplate", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "xpb": 10, "lb": 10, "id": 2405, "set": "Champion"}, {"name": "Champion Leggings", "tier": "Set", "type": "leggings", "quest": "Tower Of Ascension", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "lvl": 75, "lb": 20, "id": 2404, "set": "Champion"}, {"name": "Clock Amulet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 86, "lb": 6, "fDefPct": 4, "wDefPct": 5, "aDefPct": 3, "tDefPct": 2, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2406, "set": "Clock"}, {"name": "Clock Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "lvl": 73, "mr": -5, "mdPct": 10, "ms": 5, "xpb": 6, "agi": 3, "spd": 6, "fixID": true, "id": 2408, "set": "Clock"}, {"name": "Clock Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 950, "lvl": 74, "sdPct": -40, "mdPct": -35, "xpb": 6, "str": -8, "dex": 3, "spd": 10, "atkTier": 1, "mdRaw": 26, "fixID": true, "id": 2410, "set": "Clock"}, {"name": "Clock Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1500, "lvl": 75, "sdPct": 25, "mdPct": 30, "xpb": 5, "str": 3, "spd": -4, "atkTier": -1, "mdRaw": 13, "fixID": true, "id": 2411, "set": "Clock"}, {"name": "Clock Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 76, "hprPct": 15, "mr": 10, "sdPct": 5, "ms": -5, "def": 3, "spd": -3, "hpBonus": 200, "fixID": true, "id": 2409, "set": "Clock"}, {"name": "Clockwork Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -25, "lvl": 80, "sdPct": 5, "lb": 6, "type": "ring", "fixID": true, "id": 2413, "set": "Clock"}, {"name": "Cosmic Vest", "tier": "Set", "type": "chestplate", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2200, "lvl": 80, "mr": 5, "xpb": 19, "spd": 15, "id": 2478, "set": "Cosmic"}, {"name": "Air Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 355, "aDef": 20, "lvl": 40, "agiReq": 42, "agi": 8, "aDamPct": 13, "aDefPct": 13, "id": 2388, "set": "Air Relic"}, {"name": "Cosmic Visor", "tier": "Set", "type": "helmet", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1800, "lvl": 80, "mr": 5, "xpb": 19, "spRegen": 19, "id": 2414, "set": "Cosmic"}, {"name": "Cosmic Walkers", "tier": "Set", "type": "boots", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 1900, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2412, "set": "Cosmic"}, {"name": "Dodge Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "agiReq": 30, "hprPct": 12, "spd": 12, "type": "ring", "id": 3606, "set": "Synch Core"}, {"name": "Earth Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "eDef": 4, "lvl": 25, "strReq": 15, "str": 4, "eDamPct": 8, "eDefPct": 6, "id": 2428, "set": "Earth Relic"}, {"name": "Cosmic Ward", "tier": "Set", "type": "leggings", "quest": "???\u058e", "category": "armor", "slots": 4, "drop": "never", "restrict": "Untradable", "hp": 2100, "lvl": 80, "xpb": 19, "spd": 15, "spRegen": 19, "id": 2416, "set": "Cosmic"}, {"name": "Earth Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 212, "eDef": 8, "lvl": 30, "strReq": 21, "str": 5, "eDamPct": 10, "eDefPct": 8, "id": 2415, "set": "Earth Relic"}, {"name": "Earth Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "eDef": 12, "lvl": 35, "strReq": 27, "str": 7, "eDamPct": 12, "eDefPct": 10, "id": 2418, "set": "Earth Relic"}, {"name": "Earth Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "eDef": 16, "lvl": 40, "strReq": 42, "str": 8, "eDamPct": 14, "eDefPct": 12, "id": 2420, "set": "Earth Relic"}, {"name": "Fire Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "fDef": 10, "lvl": 30, "defReq": 21, "def": 5, "fDamPct": 8, "fDefPct": 10, "id": 2419, "set": "Fire Relic"}, {"name": "Fire Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 330, "fDef": 15, "lvl": 35, "defReq": 27, "def": 7, "fDamPct": 10, "fDefPct": 12, "id": 2421, "set": "Fire Relic"}, {"name": "Fire Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 170, "fDef": 5, "lvl": 25, "defReq": 15, "def": 4, "fDamPct": 6, "fDefPct": 8, "id": 2417, "set": "Fire Relic"}, {"name": "Ghostly Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 20, "eDef": -15, "lvl": 49, "intReq": 35, "mdPct": -18, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2423, "set": "Ghostly"}, {"name": "Fire Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 425, "fDef": 20, "lvl": 40, "defReq": 42, "def": 8, "fDamPct": 12, "fDefPct": 14, "id": 2422, "set": "Fire Relic"}, {"name": "Ghostly Cap", "tier": "Set", "type": "helmet", "allowCraftsman": true, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 20, "eDef": -20, "lvl": 48, "mdPct": -6, "ms": 5, "spRegen": 5, "sdRaw": 65, "id": 2424, "set": "Ghostly"}, {"name": "Ghostly Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "tDef": 30, "eDef": -30, "lvl": 50, "dexReq": 45, "mdPct": -24, "ms": 5, "spRegen": 5, "tDamPct": 14, "id": 2425, "set": "Ghostly"}, {"name": "Ghostly Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 520, "wDef": 30, "eDef": -25, "lvl": 51, "intReq": 45, "mdPct": -12, "ms": 5, "spRegen": 5, "wDamPct": 14, "id": 2444, "set": "Ghostly"}, {"name": "Harden Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "hp": 888, "fDef": 20, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 84, "defReq": 30, "xpb": 5, "type": "ring", "id": 3616, "set": "Synch Core"}, {"name": "Hustle Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 84, "strReq": 30, "sdPct": 10, "mdPct": 10, "ls": 70, "type": "ring", "id": 3623, "set": "Synch Core"}, {"name": "Horse Hoof", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 355, "fDef": -20, "aDef": 20, "lvl": 40, "agiReq": 25, "agi": 7, "spd": 10, "aDamPct": 8, "id": 2426, "set": "Horse"}, {"name": "Horse Mask", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "fDef": -20, "eDef": 20, "lvl": 42, "strReq": 25, "mdPct": 7, "str": 7, "eDamPct": 8, "id": 2427, "set": "Horse"}, {"name": "Jester Bracelet", "tier": "Set", "thorns": 8, "category": "accessory", "drop": "lootchest", "lvl": 72, "xpb": -25, "lb": -25, "ref": 8, "type": "bracelet", "id": 2431, "set": "Jester"}, {"name": "Jester Necklace", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 54, "xpb": -25, "lb": -25, "eSteal": 4, "type": "necklace", "id": 2429, "set": "Jester"}, {"name": "Jester Ring", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 69, "ls": 50, "xpb": -25, "lb": -25, "type": "ring", "id": 2430, "set": "Jester"}, {"name": "Kaerynn's Body", "tier": "Set", "type": "chestplate", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "eDef": 120, "lvl": 78, "strReq": 45, "sdPct": 15, "mdPct": 15, "eDamPct": 20, "id": 2432, "set": "Kaerynn's"}, {"name": "Leaf Boots", "tier": "Set", "type": "boots", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 14, "eDef": 2, "lvl": 4, "hprPct": 10, "hprRaw": 1, "id": 2435}, {"name": "Leaf Cap", "tier": "Set", "type": "helmet", "set": "Leaf", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "eDef": 2, "lvl": 2, "hprPct": 6, "hprRaw": 1, "id": 2438}, {"name": "Kaerynn's Mind", "tier": "Set", "type": "helmet", "quest": "Aldorei's Secret Part II", "category": "armor", "slots": 2, "drop": "never", "hp": 2075, "fDef": -50, "wDef": 120, "lvl": 78, "intReq": 45, "hprPct": 25, "mr": 5, "wDamPct": 20, "id": 2433, "set": "Kaerynn's"}, {"name": "Leaf Pants", "tier": "Set", "type": "leggings", "set": "Leaf", "thorns": 7, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 17, "eDef": 3, "lvl": 5, "hprPct": 8, "id": 2434}, {"name": "Mask of the Dark Vexations", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 90, "lvl": 20, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -15, "xpb": 10, "fDamPct": 7, "wDamPct": 7, "tDamPct": 7, "id": 2437, "set": "Vexing"}, {"name": "Leaf Tunic", "tier": "Set", "type": "chestplate", "set": "Leaf", "thorns": 5, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 22, "lvl": 6, "str": 3, "hprRaw": 2, "id": 2450}, {"name": "Morph-Emerald", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 50, "lvl": 37, "strReq": 16, "dexReq": 16, "intReq": 16, "agiReq": 16, "defReq": 16, "lb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2439, "set": "Morph"}, {"name": "Morph-Iron", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 600, "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 50, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fDamPct": 15, "wDamPct": 15, "aDamPct": 15, "tDamPct": 15, "eDamPct": 15, "id": 2442, "set": "Morph"}, {"name": "Morph-Gold", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 150, "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 25, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spd": 10, "id": 2440, "set": "Morph"}, {"name": "Morph-Amethyst", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 225, "lvl": 87, "strReq": 41, "dexReq": 41, "intReq": 41, "agiReq": 41, "defReq": 41, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "spRegen": 10, "type": "bracelet", "id": 2436, "set": "Morph"}, {"name": "Morph-Ruby", "tier": "Set", "category": "accessory", "drop": "lootchest", "hp": 175, "lvl": 62, "strReq": 29, "dexReq": 29, "intReq": 29, "agiReq": 29, "defReq": 29, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "eSteal": 5, "type": "necklace", "id": 2441, "set": "Morph"}, {"name": "Nether Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 12, "wDef": -6, "lvl": 28, "defReq": 25, "lb": 6, "expd": 6, "fDamPct": 8, "id": 2449, "set": "Nether"}, {"name": "Morph-Steel", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1750, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 75, "strReq": 35, "dexReq": 35, "intReq": 35, "agiReq": 35, "defReq": 35, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 2443, "set": "Morph"}, {"name": "Morph-Topaz", "tier": "Set", "category": "accessory", "drop": "lootchest", "lvl": 12, "strReq": 4, "dexReq": 4, "intReq": 4, "agiReq": 4, "defReq": 4, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "ring", "id": 2447, "set": "Morph"}, {"name": "Nether Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 150, "fDef": 6, "wDef": -6, "lvl": 24, "defReq": 10, "lb": 9, "def": 4, "expd": 8, "id": 2446, "set": "Nether"}, {"name": "Nether Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 160, "fDef": 8, "wDef": -6, "lvl": 25, "defReq": 15, "def": 5, "fDamPct": 6, "id": 2452, "set": "Nether"}, {"name": "Outlaw Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 370, "fDef": -30, "lvl": 39, "agiReq": 40, "ls": 31, "eSteal": 5, "mdRaw": 39, "id": 2454, "set": "Outlaw"}, {"name": "Nether Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 190, "fDef": 10, "wDef": -6, "lvl": 27, "defReq": 20, "lb": 7, "def": 7, "expd": 6, "id": 2448, "set": "Nether"}, {"name": "Outlaw Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 325, "eDef": -20, "lvl": 36, "agiReq": 30, "ls": 29, "agi": 7, "eSteal": 5, "id": 2453, "set": "Outlaw"}, {"name": "Outlaw Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "tDef": -20, "lvl": 37, "agiReq": 35, "mdPct": 8, "ls": 29, "eSteal": 4, "id": 2451, "set": "Outlaw"}, {"name": "Outlaw Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 380, "wDef": -20, "lvl": 38, "agiReq": 35, "ls": 29, "eSteal": 4, "aDamPct": 8, "id": 2456, "set": "Outlaw"}, {"name": "Overload Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "necklace", "id": 3613, "set": "Synch Core"}, {"name": "Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 150, "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 25, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "fDefPct": 7, "wDefPct": 7, "aDefPct": 7, "tDefPct": 7, "eDefPct": 7, "id": 2459, "set": "Relic"}, {"name": "Pigman Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "aDef": -5, "eDef": 5, "lvl": 15, "strReq": 5, "spd": -4, "eDamPct": 14, "id": 2455, "set": "Pigman"}, {"name": "Pigman Battle Hammer", "tier": "Set", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "28-36", "atkSpd": "VERY_SLOW", "lvl": 16, "strReq": 5, "str": 4, "spd": -6, "id": 2457, "set": "Pigman"}, {"name": "Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 215, "fDef": 8, "wDef": 8, "aDef": 8, "tDef": 8, "eDef": 8, "lvl": 30, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 2461, "set": "Relic"}, {"name": "Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 285, "fDef": 12, "wDef": 12, "aDef": 12, "tDef": 12, "eDef": 12, "lvl": 35, "strReq": 8, "dexReq": 8, "intReq": 8, "agiReq": 8, "defReq": 8, "fDefPct": 9, "wDefPct": 9, "aDefPct": 9, "tDefPct": 9, "eDefPct": 9, "id": 2458, "set": "Relic"}, {"name": "Silverfish Boots", "tier": "Set", "type": "boots", "poison": 130, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 10, "aDef": 8, "eDef": 2, "lvl": 32, "agiReq": 30, "agi": 13, "id": 2462, "set": "Silverfish"}, {"name": "Silverfish Helm", "tier": "Set", "type": "helmet", "poison": 145, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 15, "aDef": 12, "eDef": 6, "lvl": 34, "agiReq": 35, "spd": 10, "id": 2463, "set": "Silverfish"}, {"name": "Skien Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 775, "lvl": 53, "sdPct": -12, "mdPct": 10, "str": 5, "spd": 5, "id": 2464, "set": "Skien's"}, {"name": "Skien Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "lvl": 55, "def": 5, "spd": 5, "sdRaw": -115, "mdRaw": 95, "id": 2465, "set": "Skien's"}, {"name": "Slime Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 715, "lvl": 51, "strReq": 15, "defReq": 35, "str": 7, "agi": -4, "def": 5, "spd": -6, "id": 2467, "set": "Slime"}, {"name": "Morph-Stardust", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3250, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 100, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "mr": 5, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spd": 15, "hprRaw": 200, "sdRaw": 140, "mdRaw": 135, "id": 2445, "set": "Morph"}, {"name": "Skien's Fatigues", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "lvl": 57, "strReq": 35, "defReq": 35, "sdPct": -20, "mdPct": 17, "str": 8, "def": 8, "sdRaw": -140, "mdRaw": 115, "id": 2466, "set": "Skien's"}, {"name": "Slime Plate", "tier": "Set", "type": "chestplate", "poison": 290, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 800, "eDef": 30, "lvl": 53, "strReq": 20, "defReq": 35, "spd": -6, "id": 2469, "set": "Slime"}, {"name": "Snail Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3350, "fDef": 75, "eDef": 55, "lvl": 94, "strReq": 55, "defReq": 70, "hprPct": 20, "def": 9, "spd": -7, "fDefPct": 10, "id": 2471, "set": "Snail"}, {"name": "Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 375, "fDef": 14, "wDef": 14, "aDef": 14, "tDef": 14, "eDef": 14, "lvl": 40, "strReq": 12, "dexReq": 12, "intReq": 12, "agiReq": 12, "defReq": 12, "fDefPct": 10, "wDefPct": 10, "aDefPct": 10, "tDefPct": 10, "eDefPct": 10, "id": 2460, "set": "Relic"}, {"name": "Snail Leggings", "tier": "Set", "type": "leggings", "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3575, "fDef": 90, "eDef": 65, "lvl": 95, "strReq": 60, "defReq": 80, "hprPct": 20, "def": 9, "spd": -7, "id": 2470, "set": "Snail"}, {"name": "Snail Mail", "tier": "Set", "type": "chestplate", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3950, "fDef": 100, "eDef": 75, "lvl": 97, "strReq": 65, "defReq": 90, "hprPct": 20, "agi": -10, "fDefPct": 9, "eDefPct": 9, "id": 2473, "set": "Snail"}, {"name": "Snail Helm", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": 60, "eDef": 45, "lvl": 93, "strReq": 50, "defReq": 60, "def": 9, "spd": -7, "hprRaw": 170, "eDefPct": 10, "id": 2468, "set": "Snail"}, {"name": "Snow Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 405, "aDef": 15, "lvl": 42, "agiReq": 15, "hprPct": -15, "ref": 10, "aDefPct": 10, "id": 2480, "set": "Snow"}, {"name": "Snow Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 380, "wDef": 15, "lvl": 41, "intReq": 15, "hprPct": -15, "mr": 5, "wDefPct": 10, "id": 2472, "set": "Snow"}, {"name": "Spore Cap", "tier": "Set", "type": "helmet", "poison": 18, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 55, "lvl": 13, "str": 4, "id": 2475, "set": "Spore"}, {"name": "Snow Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 425, "wDef": 20, "aDef": 20, "lvl": 43, "intReq": 20, "agiReq": 20, "hprPct": -15, "ref": 10, "wDamPct": 8, "aDamPct": 8, "id": 2474, "set": "Snow"}, {"name": "Spore Shortsword", "tier": "Set", "type": "dagger", "poison": 36, "category": "weapon", "drop": "NORMAL", "nDam": "11-15", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 15, "expd": 10, "id": 2477, "set": "Spore"}, {"name": "Snow Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 450, "wDef": 25, "aDef": 25, "lvl": 44, "intReq": 25, "agiReq": 25, "hprPct": -15, "mr": 5, "wDefPct": 8, "aDefPct": 8, "id": 2476, "set": "Snow"}, {"name": "Synchro Core", "tier": "Set", "category": "accessory", "drop": "NORMAL", "lvl": 87, "xpb": 10, "type": "bracelet", "id": 3604, "set": "Synch Core"}, {"name": "Thunder Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 135, "tDef": 3, "lvl": 25, "dexReq": 15, "dex": 4, "tDamPct": 10, "tDefPct": 4, "id": 2482, "set": "Thunder Relic"}, {"name": "Staff of the Dark Vexations", "tier": "Set", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "4-9", "wDam": "6-7", "aDam": "0-0", "tDam": "1-13", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "dexReq": 5, "intReq": 5, "defReq": 5, "mdPct": -10, "dex": 4, "int": 4, "def": 4, "id": 2479, "set": "Vexing"}, {"name": "Thunder Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 260, "tDef": 9, "lvl": 35, "dexReq": 27, "dex": 7, "tDamPct": 14, "tDefPct": 8, "id": 2481, "set": "Thunder Relic"}, {"name": "Thunder Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 190, "tDef": 6, "lvl": 30, "dexReq": 21, "dex": 5, "tDamPct": 12, "tDefPct": 6, "id": 2483, "set": "Thunder Relic"}, {"name": "Thunder Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 335, "tDef": 12, "lvl": 40, "dexReq": 42, "dex": 8, "tDamPct": 16, "tDefPct": 10, "id": 2485, "set": "Thunder Relic"}, {"name": "Time Ring", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 80, "hprPct": 10, "type": "ring", "fixID": true, "id": 2488, "set": "Clock"}, {"name": "Tribal Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "lvl": 18, "lb": 8, "mdRaw": 20, "fixID": true, "id": 2491, "set": "Tribal"}, {"name": "Tribal Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "lvl": 18, "lb": 5, "agi": 3, "fixID": true, "id": 2484, "set": "Tribal"}, {"name": "Tribal Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "lvl": 18, "mdPct": 10, "lb": 5, "fixID": true, "id": 2490, "set": "Tribal"}, {"name": "Tribal Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 70, "lvl": 18, "lb": 7, "agi": 2, "fixID": true, "id": 2487, "set": "Tribal"}, {"name": "Ultramarine Belt", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 950, "wDef": 40, "tDef": -40, "lvl": 63, "intReq": 90, "mr": 5, "lb": 8, "int": 7, "wDefPct": 8, "id": 2486, "set": "Ultramarine"}, {"name": "Ultramarine Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 880, "wDef": 80, "tDef": -20, "lvl": 61, "intReq": 80, "sdPct": 7, "lb": 7, "wDefPct": 8, "id": 2489, "set": "Ultramarine"}, {"name": "Veekhat's Horns", "tier": "Set", "type": "helmet", "quest": "Cowfusion", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "eDef": 150, "lvl": 89, "mdRaw": 180, "eDamPct": 20, "id": 2492, "set": "Veekhat's"}, {"name": "Ultramarine Cape", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1000, "tDef": -70, "lvl": 65, "intReq": 100, "mr": 10, "mdPct": -14, "lb": 9, "wDefPct": 8, "id": 2495, "set": "Ultramarine"}, {"name": "Ultramarine Crown", "tier": "Set", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 800, "wDef": 140, "lvl": 59, "intReq": 70, "lb": 6, "int": 7, "wDefPct": 8, "id": 2493, "set": "Ultramarine"}, {"name": "Villager Mail", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 140, "lvl": 26, "xpb": 5, "lb": 10, "id": 2498, "set": "Villager"}, {"name": "Veekhat's Udders", "tier": "Set", "type": "chestplate", "quest": "Cowfusion", "sprint": 18, "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "aDef": 150, "lvl": 89, "ms": 5, "aDamPct": 18, "id": 2494, "set": "Veekhat's"}, {"name": "Visceral Chest", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 1545, "fDef": -25, "wDef": -25, "aDef": -25, "tDef": -25, "eDef": -25, "lvl": 71, "mdPct": 15, "hprRaw": 50, "mdRaw": 100, "id": 2497, "set": "Visceral"}, {"name": "Visceral Skullcap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1400, "lvl": 68, "mdPct": 13, "ls": 80, "hprRaw": 39, "id": 2496, "set": "Visceral"}, {"name": "Villager Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "lvl": 24, "xpb": 10, "lb": 5, "id": 2500, "set": "Villager"}, {"name": "Visceral Toe", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1445, "lvl": 69, "mdPct": 10, "ls": 60, "mdRaw": 75, "id": 2503, "set": "Visceral"}, {"name": "Water Relic Boots", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 130, "wDef": 6, "lvl": 25, "intReq": 15, "int": 4, "wDamPct": 4, "wDefPct": 10, "id": 2501, "set": "Water Relic"}, {"name": "Water Relic Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 245, "wDef": 18, "lvl": 35, "intReq": 27, "int": 7, "wDamPct": 8, "wDefPct": 14, "id": 2505, "set": "Water Relic"}, {"name": "Watch Bracelet", "tier": "Set", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 86, "lb": 6, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2502, "set": "Clock"}, {"name": "Water Relic Helmet", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 185, "wDef": 12, "lvl": 30, "intReq": 21, "int": 5, "wDamPct": 6, "wDefPct": 12, "id": 2504, "set": "Water Relic"}, {"name": "Water Relic Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "restrict": "Untradable", "hp": 320, "wDef": 24, "lvl": 40, "intReq": 42, "int": 8, "wDamPct": 10, "wDefPct": 16, "id": 2506, "set": "Water Relic"}, {"name": "Reciprocator", "tier": "Rare", "type": "relik", "thorns": 40, "category": "weapon", "slots": 1, "drop": "never", "nDam": "240-300", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 44, "ref": 40, "agi": 10, "def": -10, "spd": -10, "wDamPct": 15, "fixID": true, "spRaw1": -5, "id": 2509}, {"name": "Ablution", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 30, "intReq": 12, "mr": 5, "int": 6, "wDamPct": 10, "tDamPct": -10, "wDefPct": 10, "tDefPct": -10, "fixID": true, "id": 2507}, {"name": "Ciel", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "28-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-75", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 50, "ms": 5, "xpb": 10, "dex": 5, "tDamPct": 22, "tDefPct": 8, "fixID": true, "id": 2508}, {"name": "Ahms' Remains", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 4, "drop": "never", "hp": 2550, "aDef": -120, "eDef": 90, "lvl": 97, "strReq": 65, "sdPct": 15, "mdPct": 12, "ms": 10, "str": 8, "sdRaw": 205, "eDamPct": 10, "aDefPct": -15, "fixID": true, "id": 2512}, {"name": "Earth Drift", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "70-101", "tDam": "0-0", "eDam": "32-50", "atkSpd": "VERY_FAST", "lvl": 95, "strReq": 50, "agiReq": 30, "mdPct": 12, "str": 4, "agi": 8, "spd": 12, "sdRaw": -45, "mdRaw": 50, "eDamPct": 20, "fixID": true, "id": 2511}, {"name": "Highrise", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "120-142", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "agiReq": 50, "ms": 5, "hpBonus": -1200, "aDamPct": 20, "fDefPct": -20, "fixID": true, "jh": 2, "id": 2513}, {"name": "Fallbreakers", "tier": "Rare", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 3600, "fDef": 120, "wDef": 110, "aDef": 80, "tDef": 100, "eDef": 90, "lvl": 95, "defReq": 40, "ref": 15, "def": 10, "hprRaw": 195, "fDefPct": 10, "wDefPct": 15, "aDefPct": 30, "tDefPct": 20, "eDefPct": 25, "fixID": true, "id": 2519}, {"name": "Island Sniper", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "425-845", "fDam": "0-0", "wDam": "0-0", "aDam": "400-425", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 96, "agiReq": 55, "mdPct": 15, "ms": 5, "dex": 7, "hpBonus": -1750, "tDamPct": 10, "fixID": true, "id": 2514}, {"name": "Restorator", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-60", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 96, "defReq": 55, "hprPct": 40, "str": 7, "def": 4, "hpBonus": 2500, "hprRaw": 230, "wDefPct": 20, "eDefPct": 15, "fixID": true, "id": 2515}, {"name": "Shard of Sky", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-160", "fDam": "0-0", "wDam": "0-0", "aDam": "60-80", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "agiReq": 55, "dex": 6, "agi": 10, "spd": 16, "aDamPct": 16, "aDefPct": 8, "fixID": true, "id": 2521}, {"name": "Stormcloud", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-60", "fDam": "0-0", "wDam": "145-170", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "intReq": 55, "mr": 10, "mdPct": -30, "int": 10, "fDefPct": -15, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "fixID": true, "id": 2520}, {"name": "Skyfloat", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 4, "drop": "never", "hp": 2750, "fDef": 50, "wDef": -150, "aDef": 150, "eDef": -50, "lvl": 94, "agiReq": 50, "mr": 10, "agi": 8, "def": 12, "spd": 15, "hprRaw": 230, "fixID": true, "jh": 1, "id": 2518}, {"name": "Vagabond's Disgrace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "200-225", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "300-340", "eDam": "300-340", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 65, "dexReq": 70, "mdPct": 30, "eSteal": 5, "wDamPct": -50, "tDamPct": 20, "eDamPct": 20, "wDefPct": -50, "fixID": true, "spPct4": 35, "id": 2522}, {"name": "Stalactite", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2875, "wDef": -70, "aDef": -100, "tDef": 140, "eDef": 140, "lvl": 96, "strReq": 60, "dexReq": 50, "ls": 285, "lb": 10, "tDamPct": 14, "eDamPct": 14, "aDefPct": -12, "fixID": true, "spPct1": -14, "spPct3": -14, "spPct4": 35, "id": 2516}, {"name": "Visceral Legs", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "lvl": 70, "ls": 110, "hprRaw": 65, "mdRaw": 60, "id": 2499, "set": "Visceral"}, {"name": "Clawctus", "tier": "Unique", "type": "dagger", "thorns": 8, "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-26", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 31, "dex": 3, "mdRaw": 25, "eDamPct": 7, "fixID": true, "id": 2523}, {"name": "Drought Savior", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-24", "fDam": "0-0", "wDam": "14-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 33, "intReq": 15, "hprPct": 5, "mr": 5, "hpBonus": 35, "hprRaw": 12, "fixID": true, "id": 2525}, {"name": "Crocodile", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 220, "wDef": 10, "lvl": 34, "intReq": 5, "int": 2, "spd": -6, "sdRaw": 30, "fixID": true, "id": 2524}, {"name": "Hood of the Resistance", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 175, "aDef": -8, "tDef": 5, "eDef": 5, "lvl": 32, "strReq": 15, "lb": 4, "str": 4, "eSteal": 3, "fixID": true, "id": 2526}, {"name": "Drywind", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-14", "fDam": "0-0", "wDam": "0-0", "aDam": "16-26", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 27, "agiReq": 15, "sdPct": 6, "ref": 5, "agi": 2, "spd": 5, "fixID": true, "id": 2530}, {"name": "Venom", "tier": "Unique", "type": "bow", "poison": 160, "thorns": 5, "category": "weapon", "slots": 1, "drop": "never", "nDam": "28-40", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "hprPct": -12, "def": 3, "hprRaw": 14, "fixID": true, "id": 2529}, {"name": "Spider Silk Carduroys", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 185, "lvl": 29, "hprPct": 10, "ls": 13, "agi": 3, "fixID": true, "id": 2532}, {"name": "Boundary", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "untradable", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "45-70", "atkSpd": "SLOW", "lvl": 26, "strReq": 15, "sdPct": -10, "str": 8, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2528}, {"name": "Vagabond", "tier": "Rare", "type": "chestplate", "poison": 90, "category": "armor", "slots": 1, "drop": "never", "hp": 160, "tDef": 10, "eDef": -12, "lvl": 33, "dexReq": 20, "agiReq": 10, "xpb": 7, "dex": 2, "agi": 2, "spd": 6, "fixID": true, "id": 2527}, {"name": "Horseshoe", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 44, "agiReq": 15, "agi": 2, "spd": 9, "mdRaw": 16, "type": "ring", "fixID": true, "id": 2535}, {"name": "Bountiful", "tier": "Unique", "type": "wand", "poison": -20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "4-8", "atkSpd": "NORMAL", "lvl": 19, "xpb": 10, "lb": 15, "hprRaw": 5, "fixID": true, "id": 2534}, {"name": "Savannah Wind", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "4-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 19, "agiReq": 8, "xpb": 5, "ref": 8, "agi": 4, "spd": 8, "hpBonus": -40, "fixID": true, "id": 2531}, {"name": "Pursuit", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "11-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-7", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "agiReq": 5, "ls": 7, "dex": 4, "spd": 12, "aDamPct": 8, "fixID": true, "id": 2536}, {"name": "Acevro", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "105-150", "fDam": "0-0", "wDam": "0-0", "aDam": "85-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "agiReq": 30, "mr": 5, "def": -10, "spd": 15, "wDamPct": 40, "aDamPct": 20, "fixID": true, "id": 2541}, {"name": "Smithy", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": -15, "eDef": 10, "lvl": 47, "fDamPct": 6, "eDamPct": 6, "fDefPct": 7, "eDefPct": 7, "type": "ring", "fixID": true, "id": 2543}, {"name": "Stainless Steel", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 20, "wDef": 20, "aDef": 20, "tDef": 20, "eDef": 20, "lvl": 48, "defReq": 30, "ref": 8, "type": "bracelet", "fixID": true, "id": 2538}, {"name": "Ascension", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-30", "fDam": "0-0", "wDam": "0-0", "aDam": "60-60", "tDam": "60-60", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "dexReq": 25, "agiReq": 25, "ms": 5, "str": -4, "dex": 8, "agi": 8, "def": -4, "spd": 12, "wDamPct": -15, "fixID": true, "id": 2540}, {"name": "Calor", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1875, "fDef": 100, "lvl": 74, "defReq": 45, "hprPct": 15, "def": 7, "hprRaw": 70, "fDamPct": 10, "fDefPct": 10, "wDefPct": -20, "fixID": true, "id": 2546}, {"name": "Golem Gauntlet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 45, "defReq": 20, "str": 1, "def": 5, "spd": -6, "type": "bracelet", "fixID": true, "id": 2533}, {"name": "Charger", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 850, "aDef": 35, "tDef": 35, "lvl": 72, "dexReq": 15, "agiReq": 15, "sdPct": 8, "mdPct": 8, "dex": 3, "agi": 3, "spd": 16, "aDamPct": 12, "tDamPct": 12, "fixID": true, "id": 2542}, {"name": "Cinfras Souvenir T-Shirt", "tier": "Normal", "type": "chestplate", "category": "armor", "drop": "NEVER", "hp": 10, "lvl": 1, "id": 3631}, {"name": "Cold Snap", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1450, "wDef": 50, "aDef": 50, "lvl": 71, "intReq": 10, "agiReq": 15, "ref": 15, "int": 3, "agi": 3, "fDamPct": -15, "wDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2544}, {"name": "Courser", "tier": "Unique", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 70, "dexReq": 15, "dex": 5, "spd": 5, "tDamPct": 25, "fixID": true, "id": 2545}, {"name": "Crying Heart", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 25, "ls": -145, "dex": 10, "tDamPct": 10, "eDamPct": 15, "fixID": true, "id": 2549}, {"name": "Diabloviento", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "90-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 72, "agiReq": 25, "spd": 15, "fDamPct": 25, "aDamPct": 15, "fixID": true, "id": 2547}, {"name": "Blade of Instinct", "tier": "Rare", "type": "spear", "thorns": 20, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 20, "defReq": 10, "ref": 20, "def": 2, "hpBonus": 30, "fixID": true, "id": 2537}, {"name": "Forge's Shock", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "95-105", "wDam": "0-0", "aDam": "0-0", "tDam": "100-125", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 71, "dexReq": 28, "defReq": 28, "xpb": 15, "spd": -15, "mdRaw": 130, "fDamPct": 20, "fDefPct": 20, "fixID": true, "id": 2550}, {"name": "Enerxia", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "45-70", "eDam": "0-0", "atkSpd": "FAST", "lvl": 72, "dexReq": 20, "mdPct": 10, "ms": 5, "dex": 5, "tDamPct": 20, "eDamPct": -15, "fixID": true, "id": 2548}, {"name": "Howler", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1025, "aDef": 60, "lvl": 70, "agiReq": 20, "sdPct": 15, "agi": 5, "mdRaw": 100, "aDamPct": 15, "fixID": true, "id": 2559}, {"name": "Heart Piercer", "tier": "Unique", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-150", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "sdRaw": -50, "mdRaw": 85, "fixID": true, "id": 2552}, {"name": "Ivoire", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "5-10", "fDam": "0-0", "wDam": "0-0", "aDam": "55-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 15, "int": 5, "hpBonus": 200, "wDamPct": 40, "fixID": true, "id": 2554}, {"name": "Pewter Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 70, "lvl": 46, "defReq": 10, "def": 3, "type": "ring", "fixID": true, "id": 2539}, {"name": "Letum", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1050, "tDef": 65, "lvl": 72, "dexReq": 35, "sdPct": 15, "mdPct": 15, "dex": 7, "def": -10, "expd": 10, "tDamPct": 25, "eDefPct": -15, "fixID": true, "id": 2556}, {"name": "Magic Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1350, "wDef": 90, "lvl": 73, "intReq": 35, "sdPct": 12, "mdPct": -15, "int": 5, "sdRaw": 30, "wDamPct": 20, "fixID": true, "id": 2553}, {"name": "Regar", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-125", "fDam": "0-0", "wDam": "25-44", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 73, "intReq": 25, "sdPct": 15, "sdRaw": 65, "mdRaw": -91, "wDamPct": 30, "fixID": true, "id": 2557}, {"name": "Miotal", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "144-240", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "72-120", "atkSpd": "SLOW", "lvl": 74, "strReq": 25, "def": 5, "hpBonus": 300, "fDamPct": 25, "fDefPct": 10, "eDefPct": 10, "fixID": true, "id": 2555}, {"name": "Rocher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-250", "atkSpd": "VERY_SLOW", "lvl": 70, "strReq": 30, "mdPct": 15, "str": 10, "spd": -10, "eDefPct": 15, "fixID": true, "id": 2560}, {"name": "Silencer", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 1700, "fDef": 90, "lvl": 70, "defReq": 20, "def": 5, "hprRaw": 75, "sdRaw": -100, "fDefPct": 15, "fixID": true, "id": 2562}, {"name": "Router", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 1750, "fDef": 50, "eDef": 50, "lvl": 72, "strReq": 15, "defReq": 15, "str": 3, "agi": -5, "def": 3, "spd": -12, "fDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2558}, {"name": "Searing Soles", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 1450, "fDef": 65, "lvl": 71, "defReq": 25, "hprPct": 20, "def": 5, "expd": 5, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2563}, {"name": "Stone Crunch", "tier": "Rare", "type": "relik", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-113", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "145-175", "atkSpd": "NORMAL", "lvl": 74, "strReq": 40, "ms": -5, "mdRaw": 160, "eDamPct": 10, "wDefPct": -20, "fixID": true, "id": 2564}, {"name": "Sleek", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "19-28", "fDam": "0-0", "wDam": "0-0", "aDam": "45-63", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 71, "agiReq": 25, "lb": 5, "ref": 15, "agi": 10, "spd": 15, "fixID": true, "id": 2561}, {"name": "Solum", "tier": "Rare", "type": "leggings", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 1700, "eDef": 110, "lvl": 73, "strReq": 40, "str": 7, "eDamPct": 15, "fDefPct": 10, "aDefPct": -10, "tDefPct": 10, "eDefPct": 15, "fixID": true, "id": 2566}, {"name": "Vis", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "wDef": 75, "lvl": 71, "intReq": 30, "mr": 10, "int": 7, "wDamPct": 10, "tDefPct": -10, "fixID": true, "id": 2569}, {"name": "Torch", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 73, "defReq": 30, "def": 5, "hpBonus": 400, "fDamPct": 70, "wDamPct": -60, "fixID": true, "id": 2565}, {"name": "Tragedy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "40-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 25, "mr": -5, "ms": -5, "str": -10, "hpBonus": -100, "wDamPct": 50, "fixID": true, "id": 2567}, {"name": "Composite Shooter", "displayName": "Pressure Blaster", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-140", "fDam": "0-0", "wDam": "100-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 50, "mr": 10, "int": 12, "sdRaw": 150, "fixID": true, "id": 2568}, {"name": "Carbon Weave", "tier": "Unique", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "fDef": 70, "aDef": -120, "eDef": 70, "lvl": 86, "strReq": 35, "defReq": 35, "mdPct": 10, "str": 8, "def": 8, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2570}, {"name": "Heavy Aegis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 1500, "eDef": 75, "lvl": 73, "strReq": 35, "sdPct": -12, "mdPct": 15, "str": 5, "eDamPct": 20, "eDefPct": 10, "fixID": true, "id": 2551}, {"name": "Corkian War Pick", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "115-140", "tDam": "115-140", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "dexReq": 35, "agiReq": 35, "mdPct": 10, "str": 8, "spd": 10, "mdRaw": 150, "aDamPct": 10, "tDamPct": 10, "fDefPct": -20, "wDefPct": -20, "fixID": true, "id": 2572}, {"name": "Genetor", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "65-125", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "dexReq": 50, "ms": 5, "ref": 12, "dex": 5, "sdRaw": 145, "tDefPct": 10, "fixID": true, "id": 2575}, {"name": "Gear Grinder", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "55-150", "fDam": "25-75", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "defReq": 40, "mr": 5, "sdPct": 8, "mdPct": 12, "xpb": 8, "expd": 20, "fixID": true, "id": 2574}, {"name": "Cranial Panel", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 2150, "fDef": 60, "wDef": 60, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 85, "intReq": 30, "defReq": 30, "mr": 10, "sdPct": -15, "mdPct": -25, "int": 14, "def": 14, "hprRaw": 100, "fDefPct": 10, "wDefPct": 10, "fixID": true, "id": 2573}, {"name": "Corkian Jet Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 2225, "wDef": 60, "tDef": 60, "lvl": 86, "agi": 5, "spd": 20, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "fixID": true, "jh": 2, "id": 2571}, {"name": "Info Visor", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1600, "wDef": 115, "eDef": -100, "lvl": 85, "dexReq": 30, "intReq": 40, "sdPct": 5, "xpb": 15, "int": 20, "sdRaw": 65, "fixID": true, "id": 2577}, {"name": "Latency", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2250, "aDef": -180, "tDef": 120, "eDef": 30, "lvl": 87, "strReq": 50, "dexReq": 50, "sdPct": 12, "mdPct": 12, "ms": 10, "str": 5, "dex": 5, "spd": -15, "tDamPct": 18, "eDamPct": 18, "fixID": true, "id": 2580}, {"name": "Hydrocharger", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "32-40", "fDam": "0-0", "wDam": "24-48", "aDam": "0-0", "tDam": "24-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 85, "dexReq": 30, "intReq": 30, "sdPct": 30, "mdPct": -30, "dex": 5, "int": 5, "aDefPct": -40, "fixID": true, "id": 2576}, {"name": "Metal Body Suit", "tier": "Unique", "type": "chestplate", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2575, "fDef": 80, "wDef": -80, "tDef": 80, "eDef": -80, "lvl": 88, "dexReq": 40, "defReq": 40, "ls": 165, "ref": 15, "dex": 4, "int": -21, "agi": 6, "def": 4, "spd": 10, "fixID": true, "spPct1": -17, "id": 2579}, {"name": "Siliquartz Blend", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2300, "lvl": 87, "sdPct": 20, "xpb": 5, "sdRaw": 130, "fixID": true, "id": 2583}, {"name": "Skyline Cries", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "57-63", "fDam": "110-130", "wDam": "110-130", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "intReq": 40, "defReq": 25, "int": 5, "def": 10, "spd": -10, "hpBonus": 2750, "fixID": true, "spRaw2": 15, "id": 2578}, {"name": "Shortout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-350", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "5-50", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 86, "dexReq": 40, "ls": -145, "ref": 14, "expd": 22, "tDamPct": 26, "wDefPct": -12, "fixID": true, "id": 2581}, {"name": "Solar Sword", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "160-250", "fDam": "80-130", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 87, "defReq": 50, "hprPct": 20, "ls": 260, "def": 7, "hpBonus": 1600, "fDefPct": 30, "eDefPct": -10, "fixID": true, "id": 2585}, {"name": "The Airway", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "63-69", "fDam": "0-0", "wDam": "0-0", "aDam": "56-66", "tDam": "41-81", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "dexReq": 35, "agiReq": 30, "dex": 8, "spd": 10, "aDamPct": 12, "tDamPct": 12, "eDefPct": -30, "fixID": true, "jh": 1, "id": 2582}, {"name": "Windmill", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "agiReq": 40, "ref": 30, "agi": 5, "spd": 7, "aDamPct": 30, "aDefPct": 20, "fixID": true, "id": 2587}, {"name": "Thermals", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-105", "fDam": "98-102", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 45, "spd": 10, "hprRaw": 160, "aDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw2": -10, "id": 2586}, {"name": "Candy Cane", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "18-26", "fDam": "13-20", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 10, "defReq": 15, "hprPct": 25, "mdPct": -5, "ls": 90, "agi": 6, "spd": 12, "hprRaw": 15, "wDefPct": -8, "fixID": true, "id": 2589}, {"name": "Black Ice", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-95", "fDam": "0-0", "wDam": "22-35", "aDam": "0-0", "tDam": "18-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 75, "dexReq": 20, "intReq": 20, "mr": 5, "sdPct": 12, "mdPct": -20, "dex": 5, "int": 5, "sdRaw": 75, "eDamPct": -20, "fixID": true, "id": 2588}, {"name": "The Modulator", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 5, "drop": "never", "hp": 2500, "lvl": 88, "strReq": 25, "dexReq": 25, "intReq": 25, "agiReq": 25, "defReq": 25, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "spd": 15, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2584}, {"name": "Cornucopia", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "190-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "hprPct": 30, "mr": 5, "sdPct": -10, "mdPct": -10, "xpb": 10, "lb": 10, "hprRaw": 80, "fixID": true, "id": 2593}, {"name": "Evergreen", "tier": "Rare", "type": "dagger", "thorns": 30, "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "130-170", "atkSpd": "NORMAL", "lvl": 85, "strReq": 35, "intReq": 45, "sdPct": 14, "mdPct": 10, "str": 5, "int": 5, "fDamPct": -18, "wDamPct": 25, "aDefPct": -30, "fixID": true, "id": 2591}, {"name": "Douglas Fir", "tier": "Rare", "type": "leggings", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 1950, "eDef": 100, "lvl": 75, "strReq": 35, "hprPct": 20, "str": 5, "def": 7, "mdRaw": 205, "aDefPct": -10, "eDefPct": 15, "fixID": true, "id": 2595}, {"name": "Charity", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "hprPct": 12, "lb": 12, "spRegen": 15, "type": "ring", "fixID": true, "id": 2590}, {"name": "Fellowship", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 65, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 10, "type": "bracelet", "fixID": true, "id": 2592}, {"name": "Frankincense", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 200, "lvl": 55, "sdPct": -5, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2597}, {"name": "Firewood", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "95-155", "fDam": "55-85", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 65, "strReq": 25, "sdPct": -6, "mdPct": 12, "str": 5, "expd": 15, "eDamPct": 15, "wDefPct": -10, "fixID": true, "id": 2594}, {"name": "Gift of the Magi", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 4, "drop": "never", "nDam": "130-145", "fDam": "30-35", "wDam": "0-0", "aDam": "30-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 60, "defReq": 60, "mr": 5, "agi": 15, "def": 15, "hpBonus": 2500, "hprRaw": 135, "tDamPct": -50, "eDamPct": -50, "wDefPct": 30, "fixID": true, "id": 2599}, {"name": "Frost", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 20, "lvl": 70, "intReq": 25, "spd": -6, "sdRaw": 30, "wDamPct": 7, "aDamPct": 5, "type": "ring", "fixID": true, "id": 2596}, {"name": "Halation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "90-125", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "dexReq": 45, "sdPct": 10, "xpb": 15, "ref": 33, "dex": 6, "aDamPct": 15, "tDefPct": 10, "fixID": true, "id": 2598}, {"name": "Holly", "tier": "Rare", "type": "wand", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "12-24", "fDam": "0-0", "wDam": "11-18", "aDam": "0-0", "tDam": "0-0", "eDam": "17-28", "atkSpd": "NORMAL", "lvl": 45, "strReq": 10, "intReq": 5, "hprPct": 15, "mr": 5, "sdPct": 10, "mdPct": 5, "wDefPct": 15, "fixID": true, "id": 2602}, {"name": "Icicle", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "77-92", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "intReq": 40, "ms": 5, "ref": 15, "int": 7, "sdRaw": 100, "wDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2601}, {"name": "Hillich", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "64-80", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "mr": 5, "xpb": 20, "spRegen": 25, "hprRaw": 30, "fixID": true, "id": 2600}, {"name": "Joyous", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 55, "xpb": 33, "lb": 10, "spRegen": 10, "fixID": true, "id": 2605}, {"name": "Mistletoe", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 120, "wDef": 20, "eDef": 20, "lvl": 50, "strReq": 10, "intReq": 10, "wDamPct": 5, "eDamPct": 5, "wDefPct": 6, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2606}, {"name": "Myrrh", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -100, "wDef": 10, "lvl": 65, "intReq": 50, "mr": 5, "sdPct": 4, "type": "ring", "fixID": true, "id": 2604}, {"name": "Nativitate", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "xpb": 10, "lb": 33, "eSteal": 5, "fixID": true, "id": 2603}, {"name": "Polar Star", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "107-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "dexReq": 45, "sdPct": 10, "mdPct": 10, "xpb": 10, "dex": 10, "spd": 10, "sdRaw": 100, "eDamPct": -10, "fixID": true, "id": 2609}, {"name": "Reindeer Paws", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 800, "fDef": -40, "lvl": 60, "strReq": 15, "agiReq": 15, "mdPct": 12, "str": 4, "agi": 4, "spd": 16, "aDamPct": 8, "eDamPct": 8, "fixID": true, "id": 2607}, {"name": "Roasted Chestnut", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 60, "defReq": 25, "hprRaw": 50, "type": "necklace", "fixID": true, "id": 2610}, {"name": "Blue Ornament", "tier": "Set", "category": "accessory", "drop": "never", "wDef": 25, "lvl": 45, "xpb": 6, "wDamPct": 6, "type": "ring", "fixID": true, "id": 2611, "set": "Wynnterfest 2016"}, {"name": "North Pole", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-50", "fDam": "17-25", "wDam": "0-0", "aDam": "17-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "agiReq": 20, "defReq": 20, "lb": 15, "agi": 7, "def": 7, "spd": 10, "fDefPct": 20, "aDefPct": 20, "fixID": true, "id": 2608}, {"name": "Elf Cap", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "fDef": 10, "aDef": 40, "lvl": 50, "agiReq": 35, "lb": 9, "agi": 5, "spd": 8, "fixID": true, "id": 2612, "set": "Elf"}, {"name": "Elf Robe", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 775, "fDef": 40, "aDef": 10, "lvl": 50, "defReq": 35, "lb": 8, "def": 5, "hprRaw": 35, "fixID": true, "id": 2613, "set": "Elf"}, {"name": "Elf Pants", "tier": "Set", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 730, "fDef": 30, "aDef": 20, "lvl": 50, "agiReq": 10, "defReq": 25, "lb": 9, "spd": 6, "hprRaw": 30, "fixID": true, "id": 2614, "set": "Elf"}, {"name": "Elf Shoes", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 685, "fDef": 20, "aDef": 30, "lvl": 50, "agiReq": 25, "defReq": 10, "hprPct": 15, "lb": 9, "spd": 6, "fixID": true, "id": 2617, "set": "Elf"}, {"name": "Green Ornament", "tier": "Set", "category": "accessory", "drop": "never", "eDef": 25, "lvl": 55, "xpb": 6, "eDamPct": 6, "type": "necklace", "fixID": true, "id": 2615, "set": "Wynnterfest 2016"}, {"name": "Saint's Leggings", "tier": "Set", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 1650, "wDef": 30, "aDef": 40, "lvl": 70, "intReq": 60, "agiReq": 65, "xpb": 15, "int": 5, "spd": 15, "aDamPct": 15, "fixID": true, "id": 2620, "set": "Saint's"}, {"name": "Red Ornament", "tier": "Set", "category": "accessory", "drop": "never", "fDef": 25, "lvl": 50, "xpb": 6, "fDamPct": 6, "type": "bracelet", "fixID": true, "id": 2616, "set": "Wynnterfest 2016"}, {"name": "Saint's Shawl", "tier": "Set", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "wDef": 60, "lvl": 70, "intReq": 60, "xpb": 10, "ref": 15, "int": 8, "fixID": true, "id": 2619, "set": "Saint's"}, {"name": "Saint's Sandals", "tier": "Set", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1575, "aDef": 60, "lvl": 70, "agiReq": 60, "xpb": 10, "agi": 8, "spd": 15, "fixID": true, "id": 2618, "set": "Saint's"}, {"name": "Saint's Tunic", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 1800, "wDef": 40, "aDef": 30, "lvl": 70, "intReq": 65, "agiReq": 60, "xpb": 15, "ref": 15, "agi": 5, "wDamPct": 15, "fixID": true, "id": 2622, "set": "Saint's"}, {"name": "Sheet Ice", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "15-80", "fDam": "0-0", "wDam": "35-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 85, "intReq": 50, "sdPct": 15, "mdPct": -15, "ref": 25, "int": 7, "sdRaw": 100, "fDamPct": -15, "fixID": true, "id": 2623}, {"name": "Yellow Ornament", "tier": "Set", "category": "accessory", "drop": "never", "tDef": 25, "lvl": 50, "xpb": 6, "tDamPct": 6, "type": "ring", "fixID": true, "id": 2621, "set": "Wynnterfest 2016"}, {"name": "Sleigh Bell", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "30-70", "fDam": "0-0", "wDam": "0-0", "aDam": "25-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 45, "agiReq": 45, "agi": 15, "spd": 15, "aDamPct": 15, "aDefPct": 15, "fixID": true, "id": 2627}, {"name": "Silent Night", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1050-1225", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "dexReq": 65, "ls": 250, "spd": -8, "tDamPct": 15, "tDefPct": 10, "fixID": true, "spRaw3": -15, "id": 2624}, {"name": "Snow Shovel", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "100-140", "fDam": "0-0", "wDam": "220-300", "aDam": "160-220", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 75, "intReq": 30, "agiReq": 30, "sdPct": 25, "ms": 5, "int": 10, "spd": -10, "wDamPct": 10, "aDamPct": 15, "fDefPct": -10, "fixID": true, "id": 2626}, {"name": "Sleet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-65", "fDam": "0-0", "wDam": "100-290", "aDam": "0-0", "tDam": "0-390", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 85, "dexReq": 35, "intReq": 35, "sdPct": 25, "ms": 5, "spd": -10, "hprRaw": -150, "sdRaw": 130, "fDamPct": -35, "wDamPct": 15, "aDamPct": -35, "tDamPct": 15, "eDamPct": -35, "fixID": true, "id": 2625}, {"name": "Snowdrift", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "95-135", "fDam": "0-0", "wDam": "155-195", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "intReq": 30, "mr": 5, "sdPct": 20, "int": 8, "spd": -8, "wDamPct": 10, "wDefPct": 20, "fixID": true, "id": 2630}, {"name": "Snowflake", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 20, "aDef": 20, "lvl": 75, "intReq": 50, "mr": 5, "ms": 5, "hprRaw": -55, "type": "necklace", "fixID": true, "id": 2629}, {"name": "Thaw", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "45-60", "fDam": "20-30", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 75, "intReq": 25, "defReq": 25, "mr": 5, "sdPct": 12, "ref": 15, "int": 7, "def": 4, "expd": 20, "fDefPct": -12, "fixID": true, "id": 2631}, {"name": "Spearmint", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "60-110", "fDam": "0-0", "wDam": "0-0", "aDam": "50-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 95, "agiReq": 35, "sdPct": 8, "mdPct": 8, "agi": 10, "spd": 20, "aDamPct": 10, "aDefPct": 10, "fixID": true, "id": 2628}, {"name": "Splinter", "tier": "Rare", "type": "dagger", "thorns": 15, "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-20", "atkSpd": "FAST", "lvl": 45, "xpb": 15, "expd": 15, "spRegen": 15, "mdRaw": 59, "fixID": true, "id": 2632}, {"name": "The Hearth", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "175-225", "fDam": "125-165", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "defReq": 50, "hprPct": 25, "sdPct": -15, "ls": 580, "def": 5, "spRegen": 10, "hprRaw": 180, "wDamPct": -12, "fixID": true, "id": 2633}, {"name": "Warming Heart", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3000, "fDef": 140, "wDef": -250, "aDef": 110, "lvl": 90, "agiReq": 40, "defReq": 50, "hprPct": 25, "sdPct": 17, "ls": 255, "agi": 5, "def": 5, "fDefPct": 25, "fixID": true, "id": 2635}, {"name": "Wooly Cap", "tier": "Rare", "type": "helmet", "thorns": 5, "category": "armor", "slots": 2, "drop": "never", "hp": 575, "wDef": 40, "aDef": 30, "lvl": 45, "def": 10, "wDefPct": 15, "aDefPct": 20, "fixID": true, "id": 2637}, {"name": "Wishing Star", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-70", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "strReq": 50, "dexReq": 35, "ms": 5, "lb": 30, "dex": 5, "int": -7, "mdRaw": 70, "eDamPct": 30, "fixID": true, "id": 2636}, {"name": "White Craftmas", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "44-48", "fDam": "0-0", "wDam": "125-140", "aDam": "0-0", "tDam": "0-0", "eDam": "125-140", "atkSpd": "SLOW", "lvl": 80, "strReq": 30, "intReq": 30, "lb": 15, "spd": -10, "wDamPct": 10, "eDamPct": 10, "wDefPct": 15, "aDefPct": 30, "eDefPct": 15, "fixID": true, "id": 2634}, {"name": "Poinsettia", "tier": "Rare", "type": "relik", "poison": 1000, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "60-75", "aDam": "0-0", "tDam": "0-0", "eDam": "60-75", "atkSpd": "FAST", "lvl": 65, "strReq": 30, "intReq": 30, "ms": -5, "str": 5, "wDefPct": 25, "eDefPct": 25, "fixID": true, "id": 2640}, {"name": "Yuletide", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-40", "atkSpd": "SLOW", "lvl": 55, "defReq": 20, "mdPct": 15, "str": 6, "hpBonus": 150, "fDamPct": 15, "wDamPct": -5, "wDefPct": -10, "fixID": true, "id": 2639}, {"name": "Fuunyet", "tier": "Rare", "type": "spear", "quest": "Troubled Tribesmen", "poison": 1150, "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-225", "fDam": "80-100", "wDam": "0-0", "aDam": "0-0", "tDam": "80-100", "eDam": "80-100", "atkSpd": "VERY_SLOW", "lvl": 75, "strReq": 30, "dexReq": 30, "defReq": 30, "ls": 240, "xpb": 15, "str": 6, "dex": 6, "def": 6, "expd": 20, "fixID": true, "id": 2641}, {"name": "Kal Hei", "tier": "Rare", "type": "wand", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-40", "fDam": "0-0", "wDam": "20-30", "aDam": "20-30", "tDam": "0-0", "eDam": "20-30", "atkSpd": "FAST", "lvl": 75, "strReq": 30, "intReq": 30, "agiReq": 30, "mdPct": 30, "ms": 10, "xpb": 15, "str": 6, "int": 6, "agi": 6, "spd": 15, "fixID": true, "id": 2644}, {"name": "Hembwal", "tier": "Rare", "type": "chestplate", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": 150, "wDef": -100, "aDef": -100, "tDef": 150, "eDef": 150, "lvl": 76, "strReq": 50, "dexReq": 50, "defReq": 50, "ms": 15, "int": -20, "agi": -20, "fDamPct": 15, "tDamPct": 15, "eDamPct": 15, "fDefPct": 15, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2645}, {"name": "Olit Vaniek", "tier": "Rare", "type": "bow", "quest": "Troubled Tribesmen", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "140-175", "fDam": "70-85", "wDam": "0-0", "aDam": "70-85", "tDam": "0-0", "eDam": "70-85", "atkSpd": "SLOW", "lvl": 75, "strReq": 30, "agiReq": 30, "defReq": 30, "xpb": 15, "str": 6, "agi": 6, "def": 6, "expd": 30, "hpBonus": 1000, "fixID": true, "id": 2647}, {"name": "Vei Haon", "tier": "Rare", "type": "boots", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2000, "fDef": 175, "wDef": -75, "aDef": 175, "tDef": -75, "eDef": 175, "lvl": 74, "strReq": 50, "agiReq": 50, "defReq": 50, "hprPct": 25, "dex": -20, "int": -20, "fDamPct": 15, "aDamPct": 15, "eDamPct": 15, "fDefPct": 40, "aDefPct": 40, "eDefPct": 40, "fixID": true, "id": 2649}, {"name": "Zawah Jed", "tier": "Rare", "type": "dagger", "quest": "Troubled Tribesmen", "category": "weapon", "slots": 3, "drop": "never", "nDam": "36-50", "fDam": "20-25", "wDam": "20-25", "aDam": "20-25", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 75, "intReq": 30, "agiReq": 30, "defReq": 30, "mr": 15, "xpb": 15, "ref": 15, "int": 6, "agi": 6, "def": 6, "hprRaw": 115, "fixID": true, "id": 2646}, {"name": "Fruma Imported Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 28, "aDef": 3, "lvl": 9, "hprPct": 6, "spd": 4, "hprRaw": 2, "fixID": true, "id": 2650}, {"name": "Armored Culottes", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "never", "hp": 28, "fDef": 3, "lvl": 8, "def": 4, "spd": -4, "fixID": true, "id": 2652}, {"name": "Black Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-7", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "mdPct": 5, "dex": 3, "fixID": true, "id": 2653}, {"name": "Gavel Imported Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 12, "sdPct": 5, "int": 2, "wDamPct": 3, "fixID": true, "id": 2651}, {"name": "Guard Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "2-6", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 11, "hpBonus": 15, "hprRaw": 3, "fixID": true, "id": 2654}, {"name": "Merchant Sandals", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 18, "lvl": 7, "lb": 7, "spd": 3, "fixID": true, "id": 2658}, {"name": "Jeweled Vestments", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 18, "fDef": 2, "wDef": 2, "aDef": 2, "tDef": 2, "eDef": 2, "lvl": 6, "xpb": 3, "lb": 8, "fixID": true, "id": 2655}, {"name": "Mail of the Berserker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 34, "wDef": -3, "lvl": 12, "mdPct": 5, "mdRaw": 13, "fixID": true, "id": 2657}, {"name": "Messenger Cap", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "never", "hp": 24, "lvl": 8, "lb": 5, "agi": 3, "spd": 6, "fixID": true, "id": 2656}, {"name": "Almuj Turban", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 60, "tDef": 4, "eDef": -4, "lvl": 14, "lb": 5, "dex": 3, "mdRaw": 10, "tDamPct": 8, "eDefPct": -8, "fixID": true, "id": 2648}, {"name": "Nemract Waders", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "wDef": 6, "tDef": -3, "lvl": 16, "sdPct": 5, "lb": 5, "int": 3, "wDamPct": 6, "tDefPct": -6, "fixID": true, "id": 2659}, {"name": "Slush Rush", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "40-68", "fDam": "0-0", "wDam": "74-86", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 75, "intReq": 40, "mr": -5, "agi": 5, "spd": 20, "sdRaw": 95, "wDefPct": 20, "aDefPct": 15, "fixID": true, "id": 2643}, {"name": "Pike of Fury", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 12, "dex": 1, "spd": 6, "mdRaw": 8, "fixID": true, "id": 2661}, {"name": "Nesaak Snowshoes", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 65, "fDef": -4, "aDef": 5, "lvl": 14, "xpb": 5, "agi": 3, "spd": 7, "aDamPct": 7, "fDefPct": -7, "fixID": true, "id": 2660}, {"name": "Puncturing Dirk", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdRaw": 6, "mdRaw": 5, "fixID": true, "id": 2664}, {"name": "Refined Longbow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 9, "xpb": 4, "dex": 2, "fixID": true, "id": 2663}, {"name": "Ragni Fatigues", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 76, "aDef": -4, "eDef": 5, "lvl": 15, "mdPct": 6, "xpb": 5, "str": 3, "eDamPct": 8, "aDefPct": -7, "fixID": true, "id": 2662}, {"name": "Reinforced Composite Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "60-78", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 11, "def": 3, "spd": -4, "hpBonus": 25, "fixID": true, "id": 2665}, {"name": "Scout Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "xpb": 4, "agi": 3, "spd": 6, "fixID": true, "id": 2666}, {"name": "Spiritual Siphoner", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-18", "fDam": "0-0", "wDam": "3-6", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "mr": 5, "xpb": 8, "spRegen": 10, "fixID": true, "id": 2670}, {"name": "Staff of Wisdom", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 10, "hprPct": 8, "xpb": 6, "fixID": true, "id": 2667}, {"name": "Tromsian Survival Knife", "tier": "Rare", "type": "dagger", "thorns": 9, "category": "weapon", "slots": 1, "drop": "never", "nDam": "21-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "3-6", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 6, "str": 4, "fixID": true, "id": 2672}, {"name": "The Magician", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "2-5", "fDam": "0-0", "wDam": "7-10", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 11, "mr": 5, "mdPct": -6, "int": 3, "wDamPct": 6, "fixID": true, "id": 2668}, {"name": "Windcatcher Totem", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "10-11", "fDam": "0-0", "wDam": "0-0", "aDam": "4-5", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 8, "lb": 6, "spd": 10, "fixID": true, "id": 2674}, {"name": "Ashes", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 800, "wDef": -50, "aDef": -50, "lvl": 94, "defReq": 65, "hpBonus": 200, "wDefPct": -10, "aDefPct": -10, "type": "necklace", "fixID": true, "id": 2673}, {"name": "Cinders", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 675, "fDef": 50, "wDef": -70, "lvl": 93, "defReq": 55, "expd": 5, "fDamPct": 9, "wDefPct": -7, "type": "bracelet", "fixID": true, "id": 2675}, {"name": "War Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 8, "sdPct": 3, "mdPct": 5, "str": 2, "hpBonus": -10, "fixID": true, "id": 2671}, {"name": "Pride", "tier": "Rare", "category": "accessory", "drop": "never", "eDef": 20, "lvl": 93, "strReq": 50, "mdPct": 8, "xpb": 5, "str": 5, "type": "bracelet", "fixID": true, "id": 2679}, {"name": "Evapar", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": -30, "wDef": 20, "aDef": 30, "lvl": 94, "agiReq": 60, "int": 3, "spd": 7, "wDamPct": 8, "aDamPct": 8, "type": "ring", "fixID": true, "id": 2698}, {"name": "Iron Will", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 95, "defReq": 75, "hprPct": 15, "sdPct": -5, "def": 4, "hprRaw": 50, "type": "ring", "fixID": true, "id": 2676}, {"name": "The Naturalist", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "20-24", "aDam": "0-0", "tDam": "0-0", "eDam": "24-28", "atkSpd": "SLOW", "lvl": 12, "sdPct": 7, "mdPct": 7, "int": 4, "hprRaw": 8, "fixID": true, "id": 2669}, {"name": "Tungsten", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 92, "dexReq": 40, "dex": 2, "mdRaw": 16, "tDamPct": 8, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 2677}, {"name": "Sparks", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 500, "fDef": 30, "wDef": -20, "lvl": 92, "defReq": 40, "fDamPct": 7, "wDamPct": -7, "type": "ring", "fixID": true, "id": 2678}, {"name": "Dujgon Warrior Hammer", "tier": "Legendary", "type": "spear", "quest": "Ice Nations", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "46-67", "atkSpd": "VERY_FAST", "lvl": 43, "strReq": 15, "dexReq": 5, "str": 6, "dex": 2, "hpBonus": -130, "eDamPct": 8, "fixID": true, "id": 2681}, {"name": "Greysmith", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "drop": "never", "hp": 400, "fDef": -60, "lvl": 43, "strReq": 10, "str": 3, "dex": 4, "tDamPct": 30, "eDamPct": 10, "fixID": true, "id": 2684}, {"name": "Dujgon Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "aDef": 20, "tDef": 10, "lvl": 41, "hprPct": 10, "mdPct": 10, "agi": 8, "eSteal": 10, "aDamPct": 10, "tDamPct": 10, "aDefPct": 20, "tDefPct": 20, "fixID": true, "id": 2680}, {"name": "Rusher", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "aDef": 10, "tDef": 10, "lvl": 40, "agiReq": 20, "agi": 5, "spd": 20, "aDamPct": 15, "tDamPct": 15, "fixID": true, "id": 2683}, {"name": "Antivenom", "tier": "Unique", "poison": -200, "category": "accessory", "drop": "never", "hp": 150, "lvl": 67, "hprRaw": 25, "type": "ring", "fixID": true, "id": 2685}, {"name": "Viking Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-29", "fDam": "0-0", "wDam": "0-0", "aDam": "29-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 45, "agiReq": 20, "sdPct": -10, "mdPct": 20, "hpBonus": -255, "aDamPct": 15, "eDamPct": 30, "fixID": true, "id": 2682}, {"name": "Cattail", "tier": "Unique", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 10, "lvl": 70, "strReq": 15, "intReq": 10, "sdPct": 5, "mdPct": 5, "wDamPct": 5, "eDamPct": 5, "type": "bracelet", "fixID": true, "id": 2686}, {"name": "Boomslang", "tier": "Rare", "poison": 300, "category": "accessory", "drop": "never", "lvl": 71, "hprPct": -10, "str": 3, "hprRaw": -30, "type": "necklace", "fixID": true, "id": 2688}, {"name": "Glimmer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 67, "xpb": 8, "lb": 8, "tDamPct": 7, "type": "ring", "fixID": true, "id": 2690}, {"name": "Creepvine", "tier": "Unique", "poison": 220, "category": "accessory", "drop": "never", "fDef": -15, "lvl": 69, "strReq": 25, "str": 3, "spd": -8, "eDamPct": 8, "type": "ring", "fixID": true, "id": 2687}, {"name": "Purity", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 69, "xpb": 10, "lb": 5, "spRegen": 15, "type": "necklace", "fixID": true, "id": 2694}, {"name": "Affluence", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 92, "lb": 12, "eSteal": 8, "type": "necklace", "fixID": true, "id": 2691}, {"name": "Diamond Cuff", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 525, "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 88, "defReq": 40, "lb": 5, "type": "bracelet", "fixID": true, "id": 2692}, {"name": "Growth", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 68, "strReq": 30, "xpb": 4, "str": 4, "dex": 1, "int": 1, "agi": 1, "def": 1, "eDefPct": 6, "type": "bracelet", "fixID": true, "id": 2689}, {"name": "Emerald Pendant", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 89, "lb": 20, "type": "necklace", "fixID": true, "id": 2695}, {"name": "Jewelled Broach", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 90, "fDefPct": 6, "wDefPct": 6, "aDefPct": 6, "tDefPct": 6, "eDefPct": 6, "type": "necklace", "fixID": true, "id": 2693}, {"name": "Silversplint", "tier": "Rare", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 89, "agiReq": 35, "lb": 5, "ref": 11, "aDamPct": 8, "aDefPct": 5, "type": "bracelet", "fixID": true, "id": 2696}, {"name": "Foehn Wind", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-68", "fDam": "56-72", "wDam": "0-0", "aDam": "52-76", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 41, "agiReq": 14, "defReq": 14, "xpb": 14, "lb": 14, "spRegen": 14, "fDamPct": 14, "aDamPct": 14, "fDefPct": 14, "wDefPct": -28, "aDefPct": 14, "fixID": true, "id": 2700}, {"name": "Decay Burner", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "114-194", "fDam": "469-686", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 62, "defReq": 25, "sdPct": 10, "ms": 5, "expd": 15, "fDamPct": 10, "wDefPct": -12, "fixID": true, "id": 2702}, {"name": "Value", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 91, "xpb": 10, "lb": 15, "type": "bracelet", "fixID": true, "id": 2699}, {"name": "Barkgraft", "tier": "Unique", "type": "relik", "poison": 400, "thorns": 25, "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-85", "fDam": "0-0", "wDam": "0-0", "aDam": "160-180", "tDam": "0-0", "eDam": "160-180", "atkSpd": "VERY_SLOW", "lvl": 62, "strReq": 25, "agiReq": 25, "str": 5, "agi": 5, "spd": -15, "mdRaw": 145, "fDefPct": -50, "fixID": true, "id": 2697}, {"name": "Grave Digger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-90", "atkSpd": "SLOW", "lvl": 61, "strReq": 25, "ls": 145, "lb": 8, "str": 4, "eSteal": 2, "wDamPct": -7, "eDefPct": 5, "fixID": true, "id": 2705}, {"name": "Stringhollow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "60-120", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 64, "agiReq": 20, "ref": 8, "agi": 4, "spd": 12, "hpBonus": -100, "sdRaw": 60, "aDefPct": 8, "fixID": true, "id": 2708}, {"name": "Kerasot Spreader", "tier": "Unique", "type": "spear", "poison": 1000, "category": "weapon", "slots": 1, "drop": "never", "nDam": "30-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 60, "int": -4, "expd": 6, "spd": 6, "fixID": true, "id": 2704}, {"name": "Lookout", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 790, "aDef": 30, "eDef": 30, "lvl": 59, "agiReq": 25, "mdPct": -5, "xpb": 10, "agi": 6, "spd": 12, "aDamPct": 6, "fixID": true, "id": 2701}, {"name": "Searchlight", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "39-56", "fDam": "21-32", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "defReq": 20, "sdPct": 10, "ref": 8, "dex": 3, "def": 4, "tDamPct": 12, "fixID": true, "id": 2709}, {"name": "The Silent", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 900, "fDef": 40, "wDef": 40, "tDef": -60, "lvl": 62, "intReq": 25, "mr": 5, "sdPct": 12, "mdPct": -8, "xpb": 12, "spd": -8, "sdRaw": 40, "fixID": true, "id": 2707}, {"name": "Vampire Blocker", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "drop": "never", "hp": 1100, "eDef": -25, "lvl": 64, "defReq": 20, "ls": 105, "ref": 5, "def": 4, "fixID": true, "id": 2706}, {"name": "Lycanthropy", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-44", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "44-107", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 35, "int": -6, "hprRaw": -188, "mdRaw": 65, "tDamPct": 24, "wDefPct": -18, "aDefPct": -18, "fixID": true, "id": 2703}, {"name": "Wolf Tagger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "205-235", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 61, "dexReq": 10, "sdPct": 6, "mdPct": 8, "xpb": 10, "dex": 4, "fixID": true, "id": 2785}, {"name": "Wildfire", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 65, "wDef": -60, "lvl": 60, "defReq": 35, "sdPct": 8, "mdPct": 12, "expd": 7, "sdRaw": 70, "fDamPct": 15, "wDamPct": -10, "fixID": true, "id": 2710}, {"name": "Crystal-Blend Pendant", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 34, "mr": 5, "sdPct": -5, "sdRaw": -15, "type": "necklace", "fixID": true, "id": 2716}, {"name": "Werepelt", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 975, "fDef": -30, "lvl": 61, "sdPct": -18, "mdPct": 15, "spd": 6, "sdRaw": -80, "mdRaw": 105, "fixID": true, "id": 2711}, {"name": "Blood-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "poison": 60, "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "type": "necklace", "fixID": true, "id": 2726}, {"name": "Emerald-Tinted Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 31, "xpb": 4, "lb": 8, "type": "necklace", "fixID": true, "id": 2714}, {"name": "Plain Glass Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 30, "lvl": 31, "xpb": 7, "type": "necklace", "fixID": true, "id": 2713}, {"name": "Marrow-Tinted Necklace", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "ls": 10, "type": "necklace", "fixID": true, "id": 2712}, {"name": "Scarab-Shelled Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2715}, {"name": "Sting-Glass Necklace", "tier": "Rare", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": -60, "lvl": 37, "sdPct": 5, "mdPct": 5, "sdRaw": 15, "mdRaw": 16, "type": "necklace", "fixID": true, "id": 2718}, {"name": "Goblin Arm Bracer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 75, "lvl": 43, "mdPct": 4, "lb": 9, "def": 4, "type": "bracelet", "fixID": true, "id": 2719}, {"name": "Webbed Glass Charm", "tier": "Unique", "quest": "Green Gloop", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 32, "spd": 10, "type": "necklace", "fixID": true, "id": 2720}, {"name": "Goblin Cloak", "tier": "Set", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 470, "aDef": -20, "lvl": 45, "strReq": 30, "dexReq": 30, "ls": 33, "ms": 5, "lb": 15, "fixID": true, "id": 2725, "set": "Goblin"}, {"name": "Goblin Hex Focus", "tier": "Rare", "poison": 65, "category": "accessory", "drop": "never", "hp": -70, "lvl": 42, "sdPct": 6, "fDamPct": 3, "wDamPct": 3, "aDamPct": 3, "tDamPct": 3, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2717}, {"name": "Goblin Hood", "tier": "Set", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 380, "aDef": -10, "lvl": 41, "strReq": 25, "dexReq": 10, "sdPct": -7, "ls": 27, "lb": 10, "spd": 8, "fixID": true, "id": 2721, "set": "Goblin"}, {"name": "Goblin Luck Charm", "tier": "Rare", "category": "accessory", "drop": "never", "lvl": 43, "lb": 12, "spRegen": 7, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2722}, {"name": "Goblin-Silver Ring", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 30, "fDef": 6, "wDef": 6, "aDef": 6, "tDef": 6, "eDef": 6, "lvl": 40, "xpb": 4, "lb": 8, "type": "ring", "fixID": true, "id": 2723}, {"name": "Short Cutter", "tier": "Rare", "type": "dagger", "poison": 215, "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-39", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 42, "dexReq": 20, "ls": 46, "xpb": 8, "lb": 15, "dex": 5, "spd": 12, "mdRaw": 33, "fixID": true, "id": 2727}, {"name": "Goblin Runners", "tier": "Set", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 420, "lvl": 43, "strReq": 10, "dexReq": 25, "mdPct": -7, "ms": 5, "lb": 10, "spd": 12, "fixID": true, "id": 2724, "set": "Goblin"}, {"name": "Silver Short Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "strReq": 20, "mdPct": 8, "xpb": 8, "lb": 15, "str": 4, "eSteal": 3, "fixID": true, "id": 2740}, {"name": "Quartz Driller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-35", "eDam": "15-20", "atkSpd": "NORMAL", "lvl": 39, "dexReq": 10, "xpb": 6, "lb": 6, "str": 3, "dex": 3, "mdRaw": 46, "fixID": true, "id": 2728}, {"name": "Hue", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "17-20", "fDam": "17-20", "wDam": "17-20", "aDam": "17-20", "tDam": "17-20", "eDam": "17-20", "atkSpd": "SLOW", "lvl": 39, "strReq": 9, "dexReq": 9, "intReq": 9, "agiReq": 9, "defReq": 9, "lb": 12, "fDefPct": 12, "wDefPct": 12, "aDefPct": 12, "tDefPct": 12, "eDefPct": 12, "fixID": true, "id": 2731}, {"name": "Hotline", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "36-42", "fDam": "36-42", "wDam": "0-0", "aDam": "0-0", "tDam": "36-42", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "dexReq": 15, "defReq": 15, "ls": 34, "xpb": 8, "dex": 7, "def": 7, "spd": 8, "hprRaw": -17, "fixID": true, "id": 2729}, {"name": "Orc Slasher", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "11-28", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 44, "hprPct": 10, "mdPct": 5, "spd": 3, "fixID": true, "id": 2730}, {"name": "Deark", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "wDef": -30, "lvl": 76, "dexReq": 50, "dex": 2, "spRegen": -10, "mdRaw": 43, "tDamPct": 8, "tDefPct": 6, "type": "ring", "fixID": true, "id": 2732}, {"name": "Diminished", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 73, "sdPct": 7, "mdPct": 7, "ms": 5, "xpb": -8, "str": -2, "dex": -2, "int": -2, "agi": -2, "def": -2, "spd": 8, "hpBonus": 300, "type": "ring", "fixID": true, "id": 2734}, {"name": "Fanatic", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "lvl": 72, "sdPct": 8, "int": -5, "sdRaw": 40, "type": "bracelet", "fixID": true, "id": 2736}, {"name": "Scum", "tier": "Unique", "quest": "Eye of the Storm", "poison": 250, "category": "accessory", "drop": "never", "wDef": 20, "lvl": 74, "intReq": 30, "wDamPct": 7, "type": "ring", "fixID": true, "id": 2737}, {"name": "Famine", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "eDef": -20, "lvl": 75, "agiReq": 40, "ls": 50, "str": -3, "spd": 12, "hprRaw": -20, "type": "ring", "fixID": true, "id": 2733}, {"name": "Destrortur", "tier": "Rare", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": -480, "fDef": -10, "wDef": -5, "aDef": -10, "eDef": -20, "lvl": 76, "dexReq": 50, "hprPct": -24, "dex": 4, "hprRaw": -48, "sdRaw": 45, "mdRaw": 29, "tDamPct": 16, "type": "bracelet", "fixID": true, "id": 2735}, {"name": "Recovery", "tier": "Unique", "quest": "Eye of the Storm", "category": "accessory", "drop": "never", "hp": 140, "lvl": 72, "hprPct": 8, "spd": -5, "hprRaw": 40, "type": "ring", "fixID": true, "id": 2739}, {"name": "Blessing", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "0-0", "wDam": "0-0", "aDam": "12-18", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 4, "spd": 6, "fDamPct": -10, "fixID": true, "id": 2738}, {"name": "Sacred", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 305, "wDef": 15, "aDef": 10, "lvl": 40, "intReq": 15, "agiReq": 10, "mr": 5, "xpb": 6, "agi": 3, "wDamPct": 5, "aDamPct": 5, "fixID": true, "id": 2744}, {"name": "Traitor", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-55", "fDam": "20-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "defReq": 10, "hprPct": 10, "agi": 2, "def": 3, "spd": 5, "fDamPct": -10, "aDamPct": 15, "fixID": true, "id": 2741}, {"name": "Black Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "category": "armor", "drop": "never", "hp": 100, "lvl": 18, "ls": 8, "lb": 10, "eSteal": 2, "tDamPct": 10, "fixID": true, "id": 2746}, {"name": "Stonebreaker", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-100", "atkSpd": "VERY_SLOW", "lvl": 46, "strReq": 25, "sdPct": -5, "lb": 5, "str": 1, "wDamPct": -15, "fixID": true, "id": 2743}, {"name": "Bush Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzc5NWVkZWViNmI3ZWQ0MWMyNjhjZWZlYWZiZTk2MGI3YzQ5NTUwZGFlYjYzMWI1NjE1NmJmNWZlYjk4NDcifX19", "thorns": 8, "category": "armor", "drop": "never", "hp": 55, "fDef": -10, "eDef": 10, "lvl": 16, "str": 4, "spd": 8, "fixID": true, "id": 2745}, {"name": "Metal Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmJhODQ1OTE0NWQ4M2ZmYzQ0YWQ1OGMzMjYwZTc0Y2E1YTBmNjM0YzdlZWI1OWExYWQzMjM0ODQ5YzkzM2MifX19", "category": "armor", "slots": 1, "drop": "never", "hp": 80, "lvl": 16, "def": 7, "fixID": true, "id": 2747}, {"name": "Ice Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTZhYWI1OGZhMDFmY2U5YWY0NjllZDc0N2FlZDgxMWQ3YmExOGM0NzZmNWE3ZjkwODhlMTI5YzMxYjQ1ZjMifX19", "category": "armor", "drop": "never", "hp": 60, "fDef": -8, "aDef": 12, "lvl": 17, "ms": 5, "ref": 12, "mdRaw": 20, "aDamPct": 10, "fixID": true, "id": 2748}, {"name": "Water Mask", "tier": "Rare", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWM3ZWNiZmQ2ZDMzZTg3M2ExY2Y5YTkyZjU3ZjE0NjE1MmI1MmQ5ZDczMTE2OTQ2MDI2NzExMTFhMzAyZiJ9fX0=", "category": "armor", "drop": "never", "hp": -25, "wDef": 10, "lvl": 17, "mr": 5, "sdPct": 10, "int": 5, "wDamPct": 10, "fixID": true, "id": 2750}, {"name": "Mud Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWVhNmY5MzJiNDVmZGYzYjY5M2Q5ZTQ0YmQwNWJjYTM2NGViNWI5YWZmNDk3MjI2ZmRiNTJhYmIyNDM2NDIyIn19fQ==", "poison": 15, "category": "armor", "drop": "never", "hp": 65, "wDef": 5, "aDef": -10, "eDef": 5, "lvl": 16, "sdPct": 6, "mdPct": 6, "spd": -8, "fixID": true, "id": 2749}, {"name": "Shiny Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjVkN2JlZDhkZjcxNGNlYTA2M2U0NTdiYTVlODc5MzExNDFkZTI5M2RkMWQ5YjkxNDZiMGY1YWIzODM4NjYifX19", "category": "armor", "drop": "never", "hp": 50, "lvl": 15, "xpb": 15, "spRegen": 5, "sdRaw": 10, "fixID": true, "id": 2751}, {"name": "Solid Quartz Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 360, "lvl": 43, "defReq": 20, "hprPct": 10, "def": 5, "hprRaw": 20, "fixID": true, "id": 2742}, {"name": "Rock Mask", "tier": "Unique", "type": "helmet", "quest": "Creeper Infiltration", "skin": "eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDU0ZDljNDg4YzNmYmRlNTQ1NGUzODYxOWY5Y2M1YjViYThjNmMwMTg2ZjhhYTFkYTYwOTAwZmNiYzNlYTYifX19", "category": "armor", "drop": "never", "hp": 60, "eDef": 5, "lvl": 15, "sdPct": -5, "mdPct": 10, "str": 3, "eDamPct": 5, "fixID": true, "id": 2752}, {"name": "Cracheur", "tier": "Unique", "type": "bow", "thorns": 4, "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-14", "fDam": "0-0", "wDam": "12-22", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 25, "intReq": 14, "sdPct": 6, "int": 2, "aDamPct": 4, "fixID": true, "id": 2753}, {"name": "Arcanic", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 70, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 21, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "fixID": true, "id": 2756}, {"name": "Fisher's Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 82, "wDef": 4, "lvl": 22, "hprPct": 8, "xpb": 4, "lb": 8, "dex": 2, "fixID": true, "id": 2755}, {"name": "Foundation", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 90, "eDef": 3, "lvl": 20, "mdPct": 5, "def": 2, "eDamPct": 6, "fixID": true, "id": 2754}, {"name": "Frog", "tier": "Unique", "type": "bow", "poison": 45, "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-18", "fDam": "0-0", "wDam": "4-10", "aDam": "0-0", "tDam": "0-0", "eDam": "6-12", "atkSpd": "NORMAL", "lvl": 19, "strReq": 12, "intReq": 8, "sdPct": -5, "mdPct": -5, "agi": 3, "fixID": true, "id": 2758}, {"name": "Memorial", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 100, "lvl": 19, "intReq": 5, "ms": 5, "spRegen": 10, "fixID": true, "id": 2759}, {"name": "Remembrance", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "never", "nDam": "20-23", "fDam": "0-0", "wDam": "0-0", "aDam": "13-16", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 21, "agiReq": 8, "ref": 8, "spRegen": 10, "aDefPct": 10, "fixID": true, "spPct1": -17, "id": 2763}, {"name": "Shajone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 85, "lvl": 18, "hprRaw": 5, "sdRaw": 5, "mdRaw": 7, "fixID": true, "id": 2757}, {"name": "White Ghost", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "15-24", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "agiReq": 15, "ms": 5, "agi": 4, "spd": 5, "fixID": true, "id": 2765}, {"name": "Swamp Treads", "tier": "Unique", "type": "boots", "poison": 35, "thorns": 7, "category": "armor", "slots": 1, "drop": "never", "hp": 105, "lvl": 23, "spd": -3, "eSteal": 2, "fixID": true, "id": 2762}, {"name": "The Fallen", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "4-10", "fDam": "12-16", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 23, "xpb": 6, "def": 3, "hpBonus": 50, "fixID": true, "id": 2761}, {"name": "Bob's Sacrifice", "tier": "Unique", "type": "boots", "thorns": 10, "category": "armor", "slots": 1, "drop": "never", "hp": 290, "tDef": -25, "lvl": 45, "strReq": 10, "mdPct": 23, "str": 3, "spd": -6, "mdRaw": -13, "fixID": true, "id": 2764}, {"name": "Celsius", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "11-17", "fDam": "0-0", "wDam": "20-28", "aDam": "18-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 42, "intReq": 20, "agiReq": 15, "ref": 8, "spd": -4, "fDamPct": -20, "wDamPct": 10, "aDamPct": 10, "fixID": true, "id": 2767}, {"name": "Current", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-30", "eDam": "0-0", "atkSpd": "FAST", "lvl": 43, "xpb": 6, "spd": 5, "sdRaw": 35, "wDamPct": 10, "fixID": true, "id": 2766}, {"name": "Nilrem's Curse", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 310, "wDef": 10, "tDef": 15, "lvl": 40, "dexReq": 15, "xpb": 6, "hprRaw": -15, "sdRaw": 35, "mdRaw": 39, "fixID": true, "id": 2770}, {"name": "Frozen Earth", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "34-63", "fDam": "0-0", "wDam": "46-69", "aDam": "0-0", "tDam": "0-0", "eDam": "137-194", "atkSpd": "SUPER_SLOW", "lvl": 40, "strReq": 25, "intReq": 5, "mr": 5, "str": 5, "int": 2, "spd": -7, "aDamPct": 12, "fixID": true, "id": 2769}, {"name": "Homemade Fur Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 375, "fDef": -30, "aDef": 30, "lvl": 44, "agiReq": 15, "hprPct": 15, "agi": 2, "spd": 5, "aDamPct": 7, "aDefPct": 6, "fixID": true, "id": 2768}, {"name": "Summer", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "27-38", "fDam": "30-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 39, "defReq": 10, "hpBonus": 200, "fDamPct": 8, "eDamPct": 8, "fDefPct": 6, "fixID": true, "id": 2771}, {"name": "Seedling", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "xpb": 4, "str": 2, "type": "necklace", "fixID": true, "id": 2772}, {"name": "Woljawh", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 425, "lvl": 37, "hprPct": 10, "ls": 26, "hprRaw": 20, "fixID": true, "id": 2773}, {"name": "Frankenstein", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "2-12", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "dexReq": 5, "hprPct": -5, "str": 3, "tDamPct": 7, "eDamPct": 7, "fixID": true, "id": 2760}, {"name": "Flaming War Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-46", "fDam": "50-68", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 45, "defReq": 5, "def": 5, "hpBonus": 350, "fDamPct": 15, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2776}, {"name": "Tree Bracelet", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 5, "hprPct": 6, "type": "bracelet", "fixID": true, "id": 2777}, {"name": "Vine", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 4, "mdPct": 5, "type": "ring", "fixID": true, "id": 2774}, {"name": "Nodguj Warrior Chestplate", "tier": "Legendary", "type": "chestplate", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 625, "fDef": 20, "eDef": 10, "lvl": 41, "hprPct": 25, "mdPct": 5, "def": 8, "eSteal": 10, "fDamPct": 10, "eDamPct": 10, "fDefPct": 20, "eDefPct": 20, "fixID": true, "id": 2775}, {"name": "Shield", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 250, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 40, "defReq": 20, "def": 15, "hprRaw": 20, "fixID": true, "id": 2778}, {"name": "Nodguj Warrior Sword", "tier": "Legendary", "type": "dagger", "quest": "Ice Nations", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-45", "fDam": "0-0", "wDam": "45-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 43, "intReq": 10, "mr": 5, "sdPct": 15, "int": 5, "hpBonus": -200, "wDamPct": 20, "fixID": true, "id": 2779}, {"name": "Strategist", "tier": "Rare", "type": "helmet", "quest": "Ice Nations", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "lvl": 43, "intReq": 15, "mr": -15, "sdPct": 25, "int": 4, "sdRaw": 40, "wDamPct": 30, "fixID": true, "id": 2781}, {"name": "Chasseur", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-150", "fDam": "0-0", "wDam": "0-0", "aDam": "30-60", "tDam": "0-0", "eDam": "120-190", "atkSpd": "VERY_SLOW", "lvl": 53, "strReq": 20, "agiReq": 20, "sdPct": -10, "str": 3, "agi": 2, "spd": 6, "aDamPct": 7, "fixID": true, "id": 2780}, {"name": "Longtail Boots", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 600, "lvl": 51, "hprPct": 20, "spd": 14, "fixID": true, "id": 2784}, {"name": "Rotten Swamp", "tier": "Unique", "type": "wand", "poison": 600, "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "30-50", "atkSpd": "SLOW", "lvl": 54, "strReq": 28, "hprPct": -16, "sdPct": 5, "wDamPct": 10, "fixID": true, "id": 2782}, {"name": "Stagnant", "tier": "Rare", "type": "helmet", "poison": 230, "category": "armor", "slots": 2, "drop": "never", "hp": 370, "wDef": 40, "lvl": 49, "intReq": 15, "hprPct": -15, "wDamPct": 10, "eDamPct": 7, "fixID": true, "id": 2786}, {"name": "Waxed Overalls", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 675, "fDef": -45, "wDef": 45, "lvl": 54, "ref": 6, "agi": 4, "spd": 4, "wDefPct": 20, "fixID": true, "id": 2801}, {"name": "Vine Machete", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "40-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "agiReq": 20, "mdPct": 12, "spd": 8, "fDamPct": 12, "eDefPct": 10, "fixID": true, "id": 2783}, {"name": "Captain's Razor", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "slots": 2, "drop": "never", "nDam": "33-50", "fDam": "0-0", "wDam": "6-77", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 61, "dexReq": 5, "dex": 7, "mdRaw": 47, "wDamPct": 16, "tDamPct": 10, "fixID": true, "id": 2787}, {"name": "Opium", "tier": "Rare", "type": "helmet", "poison": 405, "category": "armor", "slots": 2, "drop": "never", "hp": 1350, "lvl": 63, "xpb": 10, "spd": -10, "fDamPct": 10, "fixID": true, "id": 2788}, {"name": "Pirate Luck", "tier": "Legendary", "type": "boots", "quest": "Beneath The Depths", "category": "armor", "slots": 2, "drop": "never", "hp": 320, "wDef": 60, "lvl": 60, "xpb": 7, "lb": 32, "eSteal": 12, "fixID": true, "id": 2789}, {"name": "Battle Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 20, "lvl": 7, "hprPct": 7, "str": 3, "fixID": true, "id": 2791}, {"name": "Rusty Sword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "50-65", "fDam": "0-0", "wDam": "60-70", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 61, "intReq": 10, "mdPct": 15, "str": 3, "eDamPct": 15, "fixID": true, "id": 2790}, {"name": "Plains Runner", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 8, "lvl": 1, "agi": 2, "fixID": true, "id": 2792}, {"name": "Corkuff", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 87, "intReq": 15, "agiReq": 15, "int": 3, "spd": 6, "wDamPct": 6, "aDamPct": 8, "type": "bracelet", "fixID": true, "id": 2795}, {"name": "Coolant", "tier": "Rare", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 86, "wDamPct": 5, "fDefPct": 8, "wDefPct": 6, "type": "ring", "fixID": true, "id": 2796}, {"name": "Solidified Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "never", "hp": 14, "lvl": 4, "xpb": 5, "def": 2, "fixID": true, "id": 2794}, {"name": "Microchip", "tier": "Unique", "category": "accessory", "drop": "never", "tDef": -40, "lvl": 85, "dexReq": 35, "dex": 1, "mdRaw": 17, "tDamPct": 8, "type": "ring", "fixID": true, "id": 2799}, {"name": "Doodad", "tier": "Rare", "thorns": 4, "category": "accessory", "drop": "never", "lvl": 87, "xpb": 4, "lb": 4, "ref": 4, "expd": 4, "spd": 4, "spRegen": 4, "eSteal": 4, "type": "necklace", "fixID": true, "id": 2793}, {"name": "Ashen Helm", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 2700, "fDef": 70, "aDef": -120, "tDef": 50, "lvl": 92, "dexReq": 40, "defReq": 45, "sdPct": 14, "ms": 10, "ref": -10, "agi": 5, "def": 5, "expd": 12, "fDamPct": 14, "aDamPct": 22, "tDamPct": 14, "fixID": true, "id": 2797}, {"name": "Wristviewer", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 86, "sdPct": 4, "xpb": 9, "fDamPct": 4, "wDamPct": 4, "aDamPct": 4, "tDamPct": 4, "eDamPct": 4, "type": "bracelet", "fixID": true, "id": 2800}, {"name": "Quicksilver", "tier": "Rare", "poison": 375, "category": "accessory", "drop": "never", "hp": -600, "aDef": 20, "lvl": 88, "agiReq": 30, "agi": 2, "spd": 10, "type": "necklace", "fixID": true, "id": 2798}, {"name": "Bane of War", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "90-130", "fDam": "0-0", "wDam": "30-45", "aDam": "20-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "intReq": 40, "agiReq": 35, "mr": 5, "sdPct": 20, "mdPct": -15, "int": 5, "agi": 5, "spRegen": 10, "mdRaw": -75, "fixID": true, "id": 2802}, {"name": "Comrade", "tier": "Rare", "type": "bow", "thorns": 25, "category": "weapon", "slots": 3, "drop": "never", "nDam": "125-215", "fDam": "60-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 91, "defReq": 50, "sdPct": -12, "def": 7, "hpBonus": 2250, "hprRaw": 180, "fDefPct": 20, "eDefPct": -15, "fixID": true, "id": 2807}, {"name": "Diamond Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "56-97", "fDam": "0-0", "wDam": "53-74", "aDam": "53-74", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "intReq": 35, "agiReq": 35, "hprPct": 20, "mr": 5, "ref": 12, "spd": 12, "fDamPct": -10, "wDefPct": 12, "aDefPct": 12, "fixID": true, "id": 2804}, {"name": "Darkiron Aegis", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 3275, "fDef": 150, "wDef": -80, "lvl": 90, "defReq": 65, "hprPct": 15, "dex": 10, "def": 5, "spd": -10, "atkTier": -4, "hprRaw": 160, "mdRaw": 850, "fDefPct": 40, "fixID": true, "id": 2803}, {"name": "Eradian Full Helm", "tier": "Unique", "type": "helmet", "thorns": 15, "category": "armor", "slots": 3, "drop": "never", "hp": 2500, "fDef": 80, "wDef": 80, "tDef": -60, "eDef": -60, "lvl": 90, "defReq": 50, "hprPct": 15, "sdPct": 20, "mdPct": 20, "ref": 10, "def": 8, "fDamPct": 5, "fixID": true, "id": 2808}, {"name": "Icejewel", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-95", "fDam": "0-0", "wDam": "35-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 94, "intReq": 55, "ref": 27, "int": 8, "spd": -8, "wDamPct": 20, "wDefPct": 25, "aDefPct": -20, "fixID": true, "id": 2809}, {"name": "Fulminate Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "90-120", "fDam": "80-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 80, "defReq": 50, "mdPct": 12, "def": 6, "expd": 25, "hpBonus": 1000, "fDamPct": 15, "eDefPct": -15, "fixID": true, "id": 2805}, {"name": "Low World Greaves", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 2350, "wDef": 80, "aDef": -80, "eDef": 120, "lvl": 90, "strReq": 30, "intReq": 30, "sdPct": 18, "mdPct": 18, "eSteal": 6, "wDamPct": 12, "eDamPct": 12, "wDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2806}, {"name": "Magma Flinger", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-345", "fDam": "0-445", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 92, "strReq": 40, "defReq": 25, "mdPct": 14, "def": 6, "sdRaw": -95, "mdRaw": 280, "fDamPct": 10, "eDamPct": 30, "wDefPct": -25, "fixID": true, "id": 2812}, {"name": "Mercurial Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2625, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 92, "strReq": 10, "dexReq": 10, "intReq": 10, "agiReq": 10, "defReq": 10, "sdPct": 10, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "fixID": true, "id": 2811}, {"name": "Ramhoof", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2675, "fDef": -90, "lvl": 93, "strReq": 30, "agiReq": 25, "mdPct": 7, "ls": 190, "def": 7, "spd": 15, "mdRaw": 180, "fixID": true, "id": 2816}, {"name": "Mountain's Song", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "510-550", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "510-550", "atkSpd": "SUPER_SLOW", "lvl": 90, "strReq": 40, "defReq": 40, "mdPct": 15, "expd": 25, "hpBonus": 1000, "fixID": true, "spPct1": 35, "spPct4": -21, "id": 2810}, {"name": "Odin", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "21-51", "fDam": "0-0", "wDam": "0-0", "aDam": "40-88", "tDam": "40-88", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "dexReq": 35, "agiReq": 35, "sdPct": 8, "mdPct": 10, "dex": 6, "agi": 4, "aDamPct": 12, "tDamPct": 8, "eDamPct": -30, "fixID": true, "id": 2813}, {"name": "Rodoroc's Guard", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 3500, "fDef": 100, "aDef": 100, "lvl": 94, "agiReq": 35, "defReq": 35, "sdPct": -10, "mdPct": -8, "str": 10, "agi": 10, "def": 10, "spd": 10, "mdRaw": 195, "fDefPct": 10, "aDefPct": 10, "fixID": true, "id": 2818}, {"name": "Ornamental Plate", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "never", "hp": 2250, "wDef": 100, "lvl": 91, "intReq": 50, "mr": 10, "sdPct": 12, "xpb": 15, "int": 5, "sdRaw": 190, "fixID": true, "id": 2814}, {"name": "Siege Ram", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-185", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "65-110", "atkSpd": "SLOW", "lvl": 90, "strReq": 40, "sdPct": -15, "mdPct": 20, "lb": 10, "str": 6, "fixID": true, "id": 2815}, {"name": "Stricken Bolt", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "325-1015", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 92, "dexReq": 35, "ms": 5, "mdRaw": 810, "tDamPct": 25, "wDefPct": -10, "fixID": true, "id": 2822}, {"name": "Vulcamail Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2450, "fDef": 100, "tDef": -100, "eDef": 100, "lvl": 89, "strReq": 40, "defReq": 35, "hprPct": 20, "ls": 220, "ms": 10, "def": 6, "spd": -7, "hpBonus": 600, "wDefPct": 15, "aDefPct": 15, "fixID": true, "id": 2819}, {"name": "Broken Sandust", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 37, "dexReq": 15, "dex": 2, "spd": 1, "tDamPct": 1, "type": "ring", "fixID": true, "id": 2823}, {"name": "Sekaisin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "0-100", "fDam": "0-100", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "dexReq": 40, "defReq": 25, "hprPct": -20, "ls": 260, "dex": 10, "hpBonus": -1100, "tDamPct": 60, "fixID": true, "id": 2817}, {"name": "Enhanced Copper Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "never", "hp": 285, "fDef": -15, "tDef": -18, "lvl": 35, "dexReq": 15, "defReq": 5, "sdPct": 3, "ref": 2, "fDamPct": 4, "tDamPct": 8, "fixID": true, "id": 2824}, {"name": "Chipped Glitz", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 34, "sdPct": -2, "lb": 4, "type": "ring", "fixID": true, "id": 2820}, {"name": "Enhanced Coalwalkers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 230, "fDef": 15, "wDef": -25, "eDef": 5, "lvl": 31, "strReq": 5, "defReq": 10, "str": 1, "def": 1, "expd": 3, "spd": -7, "hpBonus": 20, "fixID": true, "id": 2825}, {"name": "Enhanced DuskShield", "displayName": "Enhanced Duskshield", "tier": "Unique", "type": "leggings", "thorns": 3, "category": "armor", "slots": 2, "drop": "never", "hp": 460, "wDef": 10, "tDef": 10, "lvl": 42, "dexReq": 10, "intReq": 10, "sdPct": -8, "ref": 3, "fDamPct": -12, "eDamPct": -12, "fixID": true, "id": 2826}, {"name": "Cracked Stonehall", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 35, "strReq": 15, "str": 1, "spd": -4, "eDamPct": 3, "type": "ring", "fixID": true, "id": 2830}, {"name": "Enhanced Pickpockets", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 275, "lvl": 36, "dexReq": 15, "agiReq": 10, "lb": 8, "dex": 3, "agi": 2, "def": -7, "eSteal": 5, "fixID": true, "id": 2827}, {"name": "Upgraded Archpriest", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "15-25", "fDam": "0-0", "wDam": "13-14", "aDam": "12-17", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 37, "intReq": 18, "agiReq": 18, "mr": 5, "ref": 2, "int": -1, "agi": 2, "mdRaw": -26, "tDamPct": -14, "tDefPct": 4, "fixID": true, "id": 2828}, {"name": "Upgraded Radiance", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "38-56", "fDam": "17-22", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "intReq": 15, "defReq": 15, "hprPct": 4, "mr": 5, "spRegen": -5, "fixID": true, "id": 2829}, {"name": "Upgraded Dark Needle", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "7-16", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "dexReq": 10, "sdPct": -8, "mdPct": 4, "eDefPct": -10, "fixID": true, "id": 2831}, {"name": "Upgraded Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "39-52", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 4, "expd": 3, "spd": -12, "aDamPct": -9, "eDamPct": 5, "fixID": true, "id": 2834}, {"name": "Upgraded Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "24-36", "fDam": "0-0", "wDam": "0-0", "aDam": "13-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 3, "agi": 1, "spd": 3, "aDamPct": 2, "fixID": true, "id": 2837}, {"name": "Backstaff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "never", "nDam": "14-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "6-10", "atkSpd": "NORMAL", "lvl": 25, "str": 3, "hpBonus": 60, "mdRaw": 16, "eDefPct": 10, "fixID": true, "id": 2835}, {"name": "Used Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 4, "eDef": 4, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 2, "spd": 3, "aDamPct": 2, "eDamPct": 2, "type": "bracelet", "fixID": true, "id": 2832}, {"name": "Diving Boots II", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 750, "wDef": 65, "tDef": -50, "lvl": 55, "spd": 10, "wDefPct": 15, "id": 2833}, {"name": "Eel Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "never", "nDam": "9-13", "fDam": "0-0", "wDam": "6-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 24, "intReq": 10, "xpb": 6, "spd": 5, "sdRaw": 24, "fixID": true, "id": 2841}, {"name": "Diving Boots III", "tier": "Rare", "type": "boots", "category": "armor", "drop": "never", "hp": 1350, "wDef": 90, "tDef": -75, "lvl": 70, "spd": 15, "wDefPct": 20, "id": 2836}, {"name": "Diving Boots I", "tier": "Unique", "type": "boots", "category": "armor", "drop": "never", "hp": 300, "wDef": 30, "tDef": -30, "lvl": 40, "spd": 5, "wDefPct": 10, "id": 2843}, {"name": "Fishing Hook", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "never", "nDam": "12-16", "fDam": "0-0", "wDam": "8-14", "aDam": "0-0", "tDam": "2-6", "eDam": "0-0", "atkSpd": "FAST", "lvl": 26, "dexReq": 5, "intReq": 5, "xpb": 5, "spd": 6, "tDamPct": 6, "fixID": true, "id": 2840}, {"name": "Harpoon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "74-84", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 23, "sdPct": 8, "mdPct": 4, "dex": 3, "spd": -5, "tDefPct": -7, "fixID": true, "id": 2838}, {"name": "Mage-Crafted Staff", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "10-20", "fDam": "12-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 25, "intReq": 10, "defReq": 5, "hprPct": 12, "mdPct": -20, "ref": 5, "int": 4, "wDamPct": 15, "fixID": true, "id": 2839}, {"name": "Sea Legs", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "never", "hp": 180, "wDef": 8, "tDef": -6, "lvl": 28, "intReq": 20, "mr": 5, "mdPct": -8, "int": 3, "wDamPct": 8, "fixID": true, "id": 2846}, {"name": "Portable Buoys", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "hp": 130, "wDef": 7, "lvl": 25, "ref": 9, "spd": 4, "wDefPct": 12, "fixID": true, "id": 2845}, {"name": "Seafarer's Coat", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 150, "wDef": 7, "aDef": 5, "lvl": 26, "sdPct": 4, "lb": 6, "fixID": true, "id": 2848}, {"name": "Selchar's Famous Breeches", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "never", "hp": 125, "lvl": 25, "sdPct": 5, "mdPct": 7, "xpb": 7, "lb": 5, "fixID": true, "id": 2842}, {"name": "The Saltwater Rune", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "80-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-50", "atkSpd": "VERY_SLOW", "lvl": 24, "strReq": 8, "intReq": 12, "sdPct": -12, "wDamPct": 20, "wDefPct": 15, "eDefPct": 15, "fixID": true, "spRaw3": -10, "id": 2847}, {"name": "The Crow's Nest", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 135, "tDef": 5, "eDef": -3, "lvl": 27, "dexReq": 12, "xpb": 4, "dex": 5, "tDamPct": 7, "fixID": true, "id": 2844}, {"name": "Advancement", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 255, "lvl": 29, "ms": 10, "xpb": 10, "spRegen": 5, "fixID": true, "id": 3564}, {"name": "Tricorne", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 115, "lvl": 24, "lb": 7, "agi": 1, "spd": 7, "hprRaw": 5, "fixID": true, "id": 2850}, {"name": "Tearing Seam", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "20-26", "fDam": "17-23", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "23-29", "atkSpd": "FAST", "lvl": 43, "strReq": 16, "defReq": 16, "ls": 33, "xpb": 7, "dex": -7, "int": -7, "agi": -7, "hpBonus": 150, "mdRaw": 43, "fixID": true, "id": 2851}, {"name": "Dilation", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 31, "xpb": 15, "fDamPct": 20, "wDamPct": 20, "aDamPct": 20, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 3633}, {"name": "Diminution", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 320, "lvl": 33, "lb": 15, "str": 4, "dex": 4, "int": 4, "agi": 4, "def": 4, "fixID": true, "id": 3565}, {"name": "Hourslip", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "aDef": 12, "lvl": 32, "lb": 15, "spd": 30, "fixID": true, "id": 3567}, {"name": "Intuition", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "sdRaw": 12, "type": "bracelet", "fixID": true, "id": 3566}, {"name": "Longevity", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "hprRaw": 15, "type": "necklace", "fixID": true, "id": 3568}, {"name": "Practice", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 30, "mdRaw": 16, "type": "bracelet", "fixID": true, "id": 3570}, {"name": "Reversion", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 295, "fDef": 10, "lvl": 31, "ls": 32, "lb": 10, "eSteal": 5, "fixID": true, "id": 3572}, {"name": "Secondsaver", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 270, "lvl": 30, "mdPct": -25, "xpb": 15, "atkTier": 1, "fixID": true, "id": 3573}, {"name": "Seal Breaker", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 335, "lvl": 34, "sdPct": 25, "xpb": 15, "fixID": true, "id": 3569}, {"name": "Slainte", "tier": "Rare", "category": "accessory", "drop": "never", "restrict": "Untradable", "hp": 100, "lvl": 30, "xpb": 5, "lb": 5, "spRegen": 10, "type": "necklace", "fixID": true, "id": 3571}, {"name": "Tempo Totem", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "86-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3632}, {"name": "Tempo Tanto", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "56-66", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3574}, {"name": "Tempo Ticker", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "40-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3634}, {"name": "Tempo Trebuchet", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "115-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3590}, {"name": "Tempo Trident", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "restrict": "Untradable", "nDam": "70-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 35, "mr": 10, "ls": 30, "ms": 5, "xpb": 20, "lb": 20, "hprRaw": 15, "fixID": true, "id": 3639}, {"name": "Timelocked Breath", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "agi": 3, "aDamPct": 5, "type": "ring", "fixID": true, "id": 3635}, {"name": "Timelocked Coal", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "def": 3, "fDamPct": 5, "type": "ring", "fixID": true, "id": 3636}, {"name": "Timelocked Dew", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "int": 3, "wDamPct": 5, "type": "ring", "fixID": true, "id": 3638}, {"name": "Timelocked Spark", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "dex": 3, "tDamPct": 5, "type": "ring", "fixID": true, "id": 3637}, {"name": "Brass Leg Plates", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": -120, "tDef": 75, "eDef": 75, "lvl": 81, "strReq": 20, "dexReq": 20, "ls": 160, "str": 9, "dex": 9, "tDamPct": 15, "eDamPct": 15, "fixID": true, "id": 2849}, {"name": "Trouble Tamer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 315, "eDef": 12, "lvl": 32, "mdPct": 35, "lb": 15, "fixID": true, "id": 3641}, {"name": "Brass Choker", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": -350, "lvl": 81, "strReq": 10, "dexReq": 40, "mdPct": 4, "str": 1, "dex": 2, "tDamPct": 9, "type": "necklace", "fixID": true, "id": 2852}, {"name": "Crook's March", "tier": "Rare", "type": "relik", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "120-140", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "130-170", "eDam": "140-160", "atkSpd": "SLOW", "lvl": 82, "strReq": 45, "dexReq": 50, "mr": -10, "ls": 250, "ms": 10, "hpBonus": -900, "eSteal": 10, "tDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2858}, {"name": "Double-Edge", "tier": "Rare", "type": "spear", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-130", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-130", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 50, "hprPct": -30, "mdPct": 13, "ls": -215, "ms": 5, "dex": 7, "hpBonus": -1000, "sdRaw": 165, "fDamPct": -15, "eDefPct": -10, "fixID": true, "id": 2853}, {"name": "Dragulj Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "never", "hp": 1875, "lvl": 80, "xpb": 15, "lb": 15, "fDamPct": 18, "wDamPct": 18, "aDamPct": 18, "tDamPct": 18, "eDamPct": 18, "fDefPct": 18, "wDefPct": 18, "aDefPct": 18, "tDefPct": 18, "eDefPct": 18, "fixID": true, "id": 2854}, {"name": "Dragon Horned Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "never", "hp": 1850, "fDef": 160, "wDef": -60, "eDef": -60, "lvl": 80, "defReq": 45, "ref": 15, "def": 4, "sdRaw": 160, "mdRaw": 205, "fDamPct": 10, "fDefPct": -10, "fixID": true, "id": 2855}, {"name": "Dragonspit", "tier": "Rare", "type": "bow", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "90-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "defReq": 45, "ls": 335, "def": 4, "expd": 7, "hpBonus": 1200, "fDamPct": 10, "fixID": true, "id": 2879}, {"name": "Earthlink", "tier": "Rare", "type": "boots", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "lvl": 81, "strReq": 55, "xpb": 10, "str": 5, "spd": -5, "aDamPct": -5, "tDamPct": -5, "eDamPct": 35, "fixID": true, "id": 2857}, {"name": "Ehoole Drakeskin", "tier": "Rare", "type": "leggings", "quest": "From The Bottom", "category": "armor", "slots": 3, "drop": "never", "hp": 1750, "fDef": -140, "wDef": 90, "aDef": 80, "lvl": 82, "intReq": 30, "agiReq": 45, "mr": 10, "sdPct": 8, "mdPct": -16, "ref": 12, "spd": 16, "sdRaw": 210, "fDamPct": -16, "aDamPct": 12, "fixID": true, "id": 2856}, {"name": "Fire Pearl", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 500, "fDef": 50, "wDef": -40, "lvl": 81, "defReq": 50, "expd": 6, "fDamPct": 6, "wDamPct": -10, "fDefPct": 4, "type": "necklace", "fixID": true, "id": 2860}, {"name": "Flexing Chain", "tier": "Unique", "category": "accessory", "drop": "never", "aDef": 25, "lvl": 80, "agiReq": 40, "str": -2, "agi": 3, "spd": 6, "aDamPct": 4, "aDefPct": 6, "type": "bracelet", "fixID": true, "id": 2859}, {"name": "Formation", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 300, "aDef": -25, "eDef": 40, "lvl": 81, "strReq": 45, "defReq": 5, "spd": -4, "eDamPct": 7, "tDefPct": 4, "type": "bracelet", "fixID": true, "id": 2862}, {"name": "Forge Stoker", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-15", "fDam": "35-40", "wDam": "0-0", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 80, "agiReq": 35, "defReq": 25, "ls": 180, "agi": 4, "spd": 8, "hprRaw": -55, "aDamPct": 20, "fDefPct": 16, "wDefPct": -12, "fixID": true, "id": 2861}, {"name": "Ironbody", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "drop": "never", "hp": 2950, "fDef": 110, "wDef": 40, "aDef": 50, "tDef": 60, "eDef": 120, "lvl": 82, "strReq": 35, "defReq": 35, "hprPct": 16, "mdPct": 16, "def": 9, "spd": -10, "aDamPct": -30, "fDefPct": 10, "eDefPct": 12, "fixID": true, "id": 2865}, {"name": "Metal Breaker", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "never", "nDam": "300-320", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "270-360", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 40, "mdPct": 10, "str": 6, "def": -4, "expd": 25, "spd": -7, "fixID": true, "id": 2863}, {"name": "Jewel Cutter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-170", "fDam": "0-0", "wDam": "0-0", "aDam": "54-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "agiReq": 40, "lb": 20, "agi": 7, "spd": 10, "eSteal": 4, "mdRaw": 130, "fDefPct": 15, "wDefPct": -12, "aDefPct": 20, "fixID": true, "id": 2864}, {"name": "Mining Fever", "tier": "Rare", "type": "helmet", "quest": "From The Bottom", "category": "armor", "slots": 2, "drop": "never", "hp": 1850, "eDef": 60, "lvl": 81, "xpb": 5, "lb": 35, "eSteal": 7, "eDamPct": 15, "fixID": true, "id": 2868}, {"name": "Mithril Mantle", "tier": "Unique", "type": "chestplate", "thorns": 20, "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 81, "ls": 175, "ms": 10, "lb": 15, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "fixID": true, "id": 2867}, {"name": "Ring of Power", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "mdPct": 8, "str": 2, "dex": 2, "type": "ring", "fixID": true, "id": 2870}, {"name": "Rask", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "aDef": 30, "lvl": 81, "agiReq": 50, "agi": 5, "spd": 12, "fDefPct": -5, "type": "ring", "fixID": true, "id": 2869}, {"name": "Plate Shock", "tier": "Rare", "type": "wand", "quest": "From The Bottom", "category": "weapon", "slots": 3, "drop": "never", "nDam": "150-245", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "dexReq": 45, "sdPct": 10, "mdPct": 10, "ref": 20, "dex": 4, "hprRaw": -75, "tDamPct": 18, "wDefPct": -10, "fixID": true, "id": 2866}, {"name": "Timelocked Stone", "tier": "Unique", "category": "accessory", "drop": "never", "restrict": "Untradable", "lvl": 28, "xpb": 5, "str": 3, "eDamPct": 5, "type": "ring", "fixID": true, "id": 3640}, {"name": "Rough Diamond", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "strReq": 20, "intReq": 20, "sdPct": 6, "mdPct": 5, "xpb": 7, "str": 2, "aDamPct": -6, "type": "necklace", "fixID": true, "id": 2871}, {"name": "Thanos Legionnaire Greaves", "tier": "Set", "type": "boots", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 75, "lvl": 82, "defReq": 50, "xpb": 10, "lb": 10, "def": 10, "hprRaw": 150, "fDamPct": 20, "wDamPct": -20, "fDefPct": 20, "wDefPct": -20, "fixID": true, "id": 2905, "set": "Thanos Legionnaire"}, {"name": "Thanos Legionnaire Leggings", "tier": "Set", "type": "leggings", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 1900, "aDef": 75, "lvl": 82, "agiReq": 50, "xpb": 15, "lb": 5, "agi": 10, "spd": 15, "aDamPct": 20, "tDamPct": -20, "aDefPct": 20, "fixID": true, "id": 2875, "set": "Thanos Legionnaire"}, {"name": "Ring of Wisdom", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "sdPct": 7, "xpb": 10, "int": 3, "type": "ring", "fixID": true, "id": 2872}, {"name": "Thanos Legionnaire Plate", "tier": "Set", "type": "chestplate", "quest": "The Belly of the Beast", "category": "armor", "slots": 3, "drop": "never", "hp": 2400, "fDef": 125, "wDef": -90, "aDef": 125, "tDef": -90, "eDef": 125, "lvl": 83, "strReq": 40, "agiReq": 40, "defReq": 40, "str": 10, "agi": 10, "def": 10, "mdRaw": 225, "fDamPct": 20, "aDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2873, "set": "Thanos Legionnaire"}, {"name": "Steady Grip", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "lvl": 81, "dexReq": 25, "intReq": 25, "mdPct": -10, "dex": 3, "int": 3, "sdRaw": 45, "eDamPct": -8, "type": "bracelet", "fixID": true, "id": 2878}, {"name": "Shale Edge", "tier": "Rare", "type": "dagger", "quest": "From The Bottom", "category": "weapon", "slots": 2, "drop": "never", "nDam": "45-75", "fDam": "0-0", "wDam": "40-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 82, "intReq": 25, "sdPct": 8, "ms": 5, "str": 4, "sdRaw": 90, "aDamPct": -16, "eDamPct": 15, "aDefPct": -13, "fixID": true, "id": 2877}, {"name": "Silver Bay", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-160", "fDam": "0-0", "wDam": "48-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "intReq": 40, "mr": 5, "lb": 10, "hpBonus": 1000, "wDamPct": 25, "wDefPct": 20, "fixID": true, "id": 2880}, {"name": "Tankard Basher", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-110", "atkSpd": "FAST", "lvl": 81, "strReq": 25, "agiReq": 35, "mdPct": 12, "str": 8, "dex": -8, "agi": 8, "spd": 12, "aDamPct": 20, "fixID": true, "id": 2882}, {"name": "Sterling Silver", "tier": "Unique", "category": "accessory", "drop": "never", "lvl": 80, "dexReq": 15, "agiReq": 25, "lb": 7, "spd": 5, "sdRaw": 25, "mdRaw": 18, "eDamPct": -7, "type": "necklace", "fixID": true, "id": 2884}, {"name": "Sterk", "tier": "Rare", "quest": "From The Bottom", "category": "accessory", "drop": "never", "hp": 250, "fDef": 25, "wDef": -10, "eDef": 10, "lvl": 81, "strReq": 10, "defReq": 40, "def": 3, "fDefPct": 7, "aDefPct": 6, "eDefPct": 8, "type": "ring", "fixID": true, "id": 2876}, {"name": "Thanos Legionnaire Helm", "tier": "Set", "type": "helmet", "quest": "The Belly of the Beast", "category": "armor", "slots": 2, "drop": "never", "hp": 2125, "eDef": 75, "lvl": 82, "strReq": 50, "mdPct": 10, "xpb": 5, "lb": 15, "str": 10, "eDamPct": 20, "tDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2874, "set": "Thanos Legionnaire"}, {"name": "Thanos Banner", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "eDef": 60, "lvl": 82, "strReq": 50, "lb": 10, "str": 6, "eDamPct": 10, "wDefPct": -10, "eDefPct": 10, "type": "bracelet", "fixID": true, "id": 2883}, {"name": "Thanos Crest", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "aDef": 60, "lvl": 82, "agiReq": 50, "xpb": 10, "agi": 6, "aDamPct": 10, "aDefPct": 10, "tDefPct": -10, "type": "necklace", "fixID": true, "id": 2886}, {"name": "Thanos Ironstaff", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-75", "fDam": "40-55", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-55", "atkSpd": "NORMAL", "lvl": 82, "strReq": 40, "defReq": 40, "hprPct": 20, "mdPct": 20, "dex": -10, "int": -10, "def": 10, "hpBonus": 1075, "fDefPct": 30, "eDefPct": 30, "fixID": true, "id": 2898}, {"name": "Thanos Brand", "tier": "Legendary", "quest": "The Belly Of The Beast", "category": "accessory", "drop": "never", "hp": 650, "fDef": 30, "lvl": 82, "defReq": 50, "xpb": 5, "lb": 5, "def": 5, "fDamPct": 5, "fDefPct": 5, "wDefPct": -5, "tDefPct": -5, "type": "ring", "fixID": true, "id": 2881}, {"name": "Thanos Stonesinger", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "120-126", "fDam": "57-66", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-63", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "defReq": 40, "dex": -8, "expd": 20, "mdRaw": 160, "fDamPct": 15, "eDamPct": 15, "fDefPct": 20, "wDefPct": -20, "eDefPct": 20, "fixID": true, "id": 2889}, {"name": "Thanos Warhammer", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "110-200", "fDam": "50-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-95", "atkSpd": "SLOW", "lvl": 82, "strReq": 40, "defReq": 40, "sdPct": -10, "mdPct": 20, "str": 10, "expd": 20, "spd": -10, "fDamPct": 15, "eDamPct": 15, "eDefPct": 25, "fixID": true, "id": 2887}, {"name": "Thanos Siege Bow", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "150-280", "fDam": "70-130", "wDam": "0-0", "aDam": "55-145", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 82, "agiReq": 40, "defReq": 40, "mr": -5, "def": 10, "expd": 20, "spd": -15, "hpBonus": 750, "hprRaw": 160, "fDamPct": 15, "aDamPct": 15, "fixID": true, "id": 2885}, {"name": "Thanos Warsword", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "80-140", "fDam": "0-0", "wDam": "0-0", "aDam": "40-80", "tDam": "0-0", "eDam": "50-70", "atkSpd": "FAST", "lvl": 82, "strReq": 40, "agiReq": 40, "mdPct": 20, "str": 8, "int": -8, "agi": 8, "spd": 15, "sdRaw": -90, "mdRaw": 170, "aDamPct": 12, "eDamPct": 12, "fixID": true, "id": 2890}, {"name": "Tight Clamp", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 450, "fDef": 30, "lvl": 80, "defReq": 40, "dex": -2, "def": 3, "type": "bracelet", "fixID": true, "id": 2888}, {"name": "Canyon Strider", "tier": "Unique", "type": "boots", "sprint": 15, "category": "armor", "slots": 2, "drop": "never", "hp": 2200, "fDef": -70, "aDef": 70, "eDef": 70, "lvl": 84, "strReq": 15, "agiReq": 25, "agi": 6, "spd": 15, "aDamPct": 10, "eDamPct": 10, "aDefPct": 12, "eDefPct": 12, "fixID": true, "sprintReg": 15, "id": 2892}, {"name": "Fir Needle", "tier": "Unique", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 3, "drop": "never", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "50-80", "atkSpd": "SUPER_FAST", "lvl": 83, "strReq": 25, "agiReq": 35, "str": 8, "sdRaw": 134, "aDamPct": 19, "tDefPct": -15, "fixID": true, "id": 2894}, {"name": "Coal Duster", "tier": "Rare", "type": "chestplate", "poison": 3500, "category": "armor", "slots": 3, "drop": "never", "hp": 2575, "fDef": -65, "tDef": 90, "lvl": 83, "dexReq": 40, "defReq": 45, "sdPct": -15, "mdPct": -35, "dex": 7, "def": 8, "expd": 10, "atkTier": -17, "fDamPct": 25, "tDamPct": 20, "fDefPct": -25, "fixID": true, "id": 2893}, {"name": "Filter Mask", "tier": "Rare", "type": "helmet", "poison": -375, "category": "armor", "slots": 3, "drop": "never", "hp": 2750, "aDef": 120, "eDef": 120, "lvl": 85, "spd": 10, "aDamPct": 10, "eDamPct": 10, "aDefPct": 15, "eDefPct": 20, "fixID": true, "sprintReg": 20, "id": 2891}, {"name": "Pine Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "180-255", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "60-85", "atkSpd": "NORMAL", "lvl": 85, "strReq": 40, "mdPct": 10, "xpb": 10, "str": 5, "eDefPct": 15, "fixID": true, "id": 2896}, {"name": "Shine Lamp", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "240-250", "wDam": "230-260", "aDam": "225-265", "tDam": "220-270", "eDam": "235-255", "atkSpd": "SUPER_SLOW", "lvl": 83, "strReq": 18, "dexReq": 18, "intReq": 18, "agiReq": 18, "defReq": 18, "mr": 5, "sdPct": -25, "fixID": true, "spPct1": -17, "spPct2": -17, "spPct3": -17, "spPct4": -17, "id": 2900}, {"name": "Plated Mining Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2500, "lvl": 83, "defReq": 20, "hprPct": 25, "lb": 10, "def": 10, "hprRaw": 60, "fixID": true, "id": 2897}, {"name": "Wood Hammer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "65-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "20-50", "atkSpd": "FAST", "lvl": 84, "strReq": 15, "mdPct": 10, "xpb": 10, "str": 5, "fDefPct": -5, "fixID": true, "id": 2902}, {"name": "Firestarter", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "130-216", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 86, "defReq": 40, "expd": 5, "hprRaw": 70, "fDamPct": 20, "wDamPct": -10, "fixID": true, "id": 2895}, {"name": "Windwhistle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "14-42", "fDam": "0-0", "wDam": "60-73", "aDam": "51-82", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 35, "agiReq": 35, "mr": 5, "sdPct": 10, "agi": 8, "def": -8, "spd": 20, "wDamPct": 15, "fDefPct": -20, "fixID": true, "id": 2899}, {"name": "Surefooter", "tier": "Unique", "type": "boots", "thorns": 7, "category": "armor", "slots": 3, "drop": "never", "hp": 1900, "aDef": -100, "eDef": 100, "lvl": 86, "strReq": 55, "ms": 10, "str": 8, "spd": -8, "mdRaw": 250, "eDamPct": 15, "fixID": true, "id": 2901}, {"name": "Wooly Long Johns", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "never", "hp": 2525, "wDef": 190, "aDef": 190, "lvl": 87, "sdPct": -5, "mdPct": -5, "xpb": 14, "hprRaw": 190, "wDefPct": 14, "aDefPct": 14, "fixID": true, "id": 2904}, {"name": "Battalion", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 640, "lvl": 50, "def": 5, "spd": 8, "fDamPct": 5, "wDamPct": -10, "aDamPct": -10, "fixID": true, "id": 2903}, {"name": "Battle Staff", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "25-30", "fDam": "15-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "sdPct": 4, "mdPct": 6, "expd": 5, "eDamPct": 5, "fixID": true, "id": 2907}, {"name": "Defender", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "100-110", "fDam": "65-95", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 50, "defReq": 30, "sdPct": -6, "def": 3, "hpBonus": 400, "fixID": true, "id": 2906}, {"name": "Dual", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "never", "nDam": "22-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "28-39", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "dexReq": 15, "agi": 5, "spd": 5, "aDamPct": 10, "tDamPct": 5, "fixID": true, "id": 2908}, {"name": "Dinosaur", "tier": "Unique", "type": "leggings", "thorns": 5, "category": "armor", "slots": 1, "drop": "never", "hp": 650, "aDef": -50, "eDef": 40, "lvl": 51, "mdPct": 6, "str": 3, "int": -5, "fixID": true, "id": 2909}, {"name": "Hurricane", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -100, "aDef": 100, "eDef": -40, "lvl": 55, "strReq": 10, "agiReq": 25, "str": 2, "agi": 4, "spd": 10, "aDamPct": 10, "eDamPct": 6, "fixID": true, "id": 2913}, {"name": "Medecin", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "34-52", "fDam": "0-0", "wDam": "34-52", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "intReq": 25, "mr": 5, "sdPct": 10, "mdPct": -10, "ref": 5, "int": 2, "fixID": true, "id": 2910}, {"name": "Moonlight", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-50", "fDam": "0-0", "wDam": "25-35", "aDam": "25-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 16, "agiReq": 16, "mdPct": -15, "hprRaw": 25, "fDefPct": 15, "wDefPct": 25, "aDefPct": 25, "tDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2912}, {"name": "Wardrummer", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "never", "nDam": "155-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 52, "strReq": 16, "defReq": 16, "sdPct": -10, "mdPct": -10, "fDamPct": 20, "eDamPct": 20, "fixID": true, "id": 2914}, {"name": "Strikedown", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "never", "nDam": "112-120", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "60-90", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "dexReq": 20, "intReq": 20, "mdPct": 10, "dex": 5, "spd": -10, "hprRaw": -40, "sdRaw": 95, "fixID": true, "spPct3": -10, "id": 2915}, {"name": "The Judge", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "lvl": 52, "hprPct": 15, "sdPct": 15, "mdPct": 20, "ls": -80, "ms": -10, "xpb": 15, "lb": 15, "fixID": true, "id": 2911}, {"name": "Warlord", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "never", "nDam": "320-457", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 54, "strReq": 25, "str": 2, "dex": -3, "agi": -3, "def": 2, "spd": -4, "hpBonus": 450, "hprRaw": 40, "fixID": true, "id": 2916}, {"name": "Voidstone Arpes", "tier": "Rare", "type": "spear", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-219", "fDam": "0-0", "wDam": "0-0", "aDam": "219-219", "tDam": "0-0", "eDam": "219-219", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2920}, {"name": "Voidstone Esbald", "tier": "Rare", "type": "dagger", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "137-138", "fDam": "0-0", "wDam": "0-0", "aDam": "115-345", "tDam": "0-0", "eDam": "115-345", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2919}, {"name": "Voidstone Elrik", "tier": "Rare", "type": "relik", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "160-165", "fDam": "0-0", "wDam": "0-0", "aDam": "310-340", "tDam": "0-0", "eDam": "320-330", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2917}, {"name": "Voidstone Lensing", "tier": "Rare", "type": "bow", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "130-200", "fDam": "0-0", "wDam": "0-0", "aDam": "300-360", "tDam": "0-0", "eDam": "300-360", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2918}, {"name": "Voidstone Recteps", "tier": "Rare", "type": "wand", "quest": "One Thousand Meters Under", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "75-85", "fDam": "0-0", "wDam": "0-0", "aDam": "100-225", "tDam": "0-0", "eDam": "150-175", "atkSpd": "VERY_SLOW", "lvl": 95, "strReq": 40, "agiReq": 40, "hprPct": -20, "sdPct": 20, "ls": 305, "ms": 10, "str": 8, "agi": 8, "spd": 12, "hpBonus": -1250, "fixID": true, "id": 2922}, {"name": "Zhight Beaded Broach", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "lvl": 55, "dexReq": 30, "lb": 8, "hprRaw": 10, "sdRaw": 10, "mdRaw": 13, "type": "necklace", "fixID": true, "id": 2921}, {"name": "Zhight Coral Band", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 200, "wDef": 35, "lvl": 55, "intReq": 15, "defReq": 30, "sdPct": -6, "hprRaw": 15, "tDamPct": -8, "wDefPct": 10, "type": "bracelet", "fixID": true, "id": 2923}, {"name": "Zhight Powwow Bangle", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "fDef": 5, "wDef": 5, "aDef": 5, "tDef": 5, "eDef": 5, "lvl": 55, "strReq": 6, "dexReq": 6, "intReq": 6, "agiReq": 6, "defReq": 6, "xpb": 9, "lb": 9, "spRegen": 12, "eSteal": 5, "fDamPct": 7, "wDamPct": 7, "aDamPct": 7, "tDamPct": 7, "eDamPct": 7, "type": "bracelet", "fixID": true, "id": 2925}, {"name": "Zhight Shiny Ring", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": -65, "lvl": 55, "dexReq": 30, "xpb": 6, "tDamPct": 9, "type": "ring", "fixID": true, "id": 2924}, {"name": "Zhight Souvenir Coin", "tier": "Unique", "quest": "Zhight Island", "category": "accessory", "drop": "never", "hp": 100, "lvl": 55, "xpb": 5, "lb": 10, "eSteal": 1, "type": "ring", "fixID": true, "id": 2926}, {"name": "Saffron Arch", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "35-52", "fDam": "14-30", "wDam": "0-0", "aDam": "0-0", "tDam": "10-34", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 34, "dexReq": 8, "defReq": 8, "hprPct": 7, "sdPct": 6, "mdPct": -14, "ls": 33, "hpBonus": 160, "wDamPct": -7, "id": 2928}, {"name": "Sagittarius", "tier": "Legendary", "type": "leggings", "thorns": 18, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "aDef": 140, "eDef": -200, "lvl": 94, "agiReq": 80, "hprPct": -25, "ref": 18, "agi": 13, "spd": 18, "sdRaw": 175, "mdRaw": 230, "aDamPct": 25, "id": 2929}, {"name": "Zhight Weird Magic Necklace", "tier": "Rare", "quest": "Zhight Island", "category": "accessory", "drop": "never", "wDef": 5, "eDef": 5, "lvl": 55, "strReq": 25, "intReq": 20, "sdPct": 7, "str": 2, "spRegen": 7, "wDamPct": 7, "type": "necklace", "fixID": true, "id": 2930}, {"name": "Salamander", "tier": "Unique", "type": "wand", "poison": 130, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-19", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 33, "agiReq": 5, "ls": 20, "spd": 10, "aDamPct": 6, "tDamPct": 6, "eDefPct": -8, "id": 2934}, {"name": "Salience", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 300, "fDef": 20, "wDef": 15, "lvl": 38, "intReq": 10, "defReq": 10, "hprPct": 12, "sdPct": -6, "mdPct": -10, "hprRaw": 10, "fDefPct": 9, "wDefPct": 9, "id": 2931}, {"name": "Sage", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "54-76", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 47, "mr": 10, "xpb": 32, "lb": 10, "aDamPct": 15, "id": 2927}, {"name": "Salmon", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-44", "fDam": "0-0", "wDam": "33-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "intReq": 5, "mr": 5, "sdPct": 7, "spd": 4, "wDamPct": 4, "aDamPct": 5, "id": 2933}, {"name": "Saint's Scar", "tier": "Unique", "type": "dagger", "poison": 85, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "19-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-15", "atkSpd": "NORMAL", "lvl": 24, "strReq": 10, "sdPct": -5, "mdPct": 5, "fDefPct": -10, "id": 2932}, {"name": "Speedyboy", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "never", "restrict": "Untradable", "hp": 105, "lvl": 20, "mdPct": 15, "str": 7, "spd": 200, "eDamPct": 10, "id": 3548}, {"name": "Saltest Spear", "tier": "Normal", "type": "spear", "category": "weapon", "drop": "never", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 1, "id": 3549}, {"name": "Salvation", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "24-24", "fDam": "27-27", "wDam": "27-27", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 35, "defReq": 35, "hprPct": 20, "ref": 15, "def": 5, "hpBonus": 1250, "tDamPct": -50, "fDefPct": 12, "wDefPct": 12, "id": 2937}, {"name": "SandStorm Walker", "displayName": "Sandstorm Walker", "tier": "Unique", "type": "boots", "thorns": 3, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 435, "aDef": -30, "tDef": 20, "lvl": 44, "strReq": 5, "xpb": 10, "lb": 10, "str": 4, "dex": 4, "eDamPct": 7, "id": 2938}, {"name": "Sandscar", "tier": "Unique", "type": "spear", "poison": 365, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-42", "fDam": "0-0", "wDam": "0-0", "aDam": "10-18", "tDam": "0-0", "eDam": "16-28", "atkSpd": "NORMAL", "lvl": 51, "str": 5, "agi": 5, "wDamPct": -10, "eDamPct": 7, "wDefPct": -5, "aDefPct": 7, "id": 2943}, {"name": "Sandust", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "dexReq": 15, "dex": 4, "spd": 5, "tDamPct": 6, "type": "ring", "id": 2941}, {"name": "Sandstorm", "tier": "Rare", "type": "spear", "poison": 50, "thorns": 7, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-29", "fDam": "0-0", "wDam": "0-0", "aDam": "20-39", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 34, "agiReq": 20, "agi": 5, "spd": 15, "atkTier": 1, "eDefPct": -35, "id": 2939}, {"name": "Sano's Wisdom", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 565, "wDef": 35, "aDef": 15, "lvl": 51, "intReq": 15, "agiReq": 10, "mr": 10, "spRegen": 10, "hprRaw": 25, "fDamPct": -15, "tDamPct": -20, "eDamPct": -15, "wDefPct": 25, "aDefPct": 15, "id": 2942}, {"name": "Sandstone Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 270, "wDef": -15, "aDef": 8, "eDef": 8, "lvl": 37, "xpb": 8, "aDamPct": 8, "eDamPct": 8, "id": 2940}, {"name": "Sans", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "180-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 85, "hprPct": 20, "sdPct": 20, "mdPct": 20, "id": 2944}, {"name": "Sapling", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "96-170", "aDam": "0-0", "tDam": "0-0", "eDam": "126-140", "atkSpd": "SLOW", "lvl": 75, "strReq": 35, "intReq": 35, "hprPct": 15, "mr": 10, "sdPct": -10, "mdPct": -10, "spd": -20, "hprRaw": 85, "wDefPct": 12, "eDefPct": 12, "id": 2946}, {"name": "Sano's Care", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "fDef": 200, "wDef": 200, "aDef": 75, "tDef": 75, "eDef": 75, "lvl": 90, "intReq": 45, "defReq": 55, "hprPct": 40, "mr": 10, "mdPct": -20, "xpb": 15, "int": 5, "def": 10, "hprRaw": 215, "fDefPct": 15, "wDefPct": 15, "id": 2948}, {"name": "Sapphire", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "wDef": -80, "eDef": -80, "lvl": 97, "strReq": 40, "intReq": 40, "ms": 10, "ref": 18, "str": 5, "int": 5, "eSteal": 10, "sdRaw": 140, "mdRaw": 180, "fDefPct": -35, "id": 2949}, {"name": "Sargasso", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 10, "wDef": 3, "lvl": 2, "sdPct": 6, "xpb": 4, "id": 2947}, {"name": "Saundersi Signet", "tier": "Legendary", "poison": 758, "category": "accessory", "drop": "lootchest", "hp": -125, "aDef": -30, "lvl": 87, "strReq": 40, "dexReq": 55, "mdPct": -7, "str": 3, "expd": 15, "type": "ring", "id": 2967}, {"name": "Sawdust", "tier": "Legendary", "type": "chestplate", "thorns": 30, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 700, "fDef": -40, "aDef": 45, "eDef": 30, "lvl": 49, "agi": 10, "spd": 9, "mdRaw": 80, "aDamPct": 13, "eDefPct": 18, "id": 2951}, {"name": "Sapphire Shard", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "23-28", "fDam": "0-0", "wDam": "58-67", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 63, "intReq": 20, "sdPct": 21, "ms": 5, "xpb": 14, "ref": 11, "int": 8, "fDamPct": -15, "tDefPct": -8, "id": 2945}, {"name": "Sarnfic's Lost Treasure", "tier": "Rare", "category": "accessory", "drop": "lootchest", "tDef": -15, "lvl": 63, "intReq": 25, "lb": 9, "eSteal": 3, "wDamPct": 7, "type": "ring", "id": 2954}, {"name": "Scalding Scimitar", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-230", "fDam": "60-200", "wDam": "60-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 72, "intReq": 30, "defReq": 30, "hprPct": -30, "sdPct": 7, "hprRaw": -100, "fDamPct": 25, "wDamPct": 25, "tDefPct": -30, "eDefPct": -30, "id": 2952}, {"name": "Sayleros' Brother's Misfortune", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 22, "str": 4, "dex": -2, "agi": -2, "def": 4, "type": "bracelet", "id": 2953}, {"name": "Scalpel", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-30", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "dexReq": 15, "ls": 32, "hprRaw": 16, "id": 2958}, {"name": "Scarab", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 6, "lvl": 2, "def": 4, "id": 2955}, {"name": "Scale of Sieryu", "displayName": "Scale of Seiryu", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1500, "aDef": 50, "lvl": 78, "agiReq": 100, "mr": 20, "sdPct": -150, "mdPct": -50, "spd": 40, "atkTier": 1, "id": 2957}, {"name": "Scorcher", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "34-40", "fDam": "50-60", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "defReq": 30, "def": 7, "expd": 10, "fDamPct": 10, "fDefPct": 20, "id": 2959}, {"name": "Schist", "tier": "Rare", "poison": 120, "category": "accessory", "drop": "lootchest", "hp": -125, "eDef": -60, "lvl": 84, "strReq": 65, "str": 13, "eDamPct": -7, "type": "necklace", "id": 3583}, {"name": "Scorpio", "tier": "Legendary", "type": "boots", "poison": 1800, "thorns": 24, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "fDef": 80, "wDef": -200, "eDef": 160, "lvl": 90, "strReq": 65, "dexReq": 15, "defReq": 15, "str": 25, "expd": 40, "hprRaw": 125, "eDamPct": -140, "id": 2961}, {"name": "Saltine", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-45", "fDam": "0-0", "wDam": "0-0", "aDam": "60-70", "tDam": "40-90", "eDam": "0-0", "atkSpd": "FAST", "lvl": 78, "dexReq": 40, "agiReq": 40, "dex": 5, "agi": 5, "spd": 8, "hpBonus": -400, "aDamPct": 16, "tDamPct": 16, "eDefPct": -16, "id": 2936}, {"name": "Sanare", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "80-100", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 69, "intReq": 35, "hprPct": 25, "sdPct": 15, "mdPct": -30, "int": 10, "wDamPct": 27, "id": 2935}, {"name": "Screech", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1675, "lvl": 80, "sdPct": 15, "mdPct": 15, "ls": 150, "spRegen": -3, "fDamPct": 11, "aDamPct": 11, "tDamPct": 11, "wDefPct": -12, "eDefPct": -12, "id": 2963}, {"name": "Scorpion", "tier": "Legendary", "type": "dagger", "poison": 450, "thorns": 25, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ms": 10, "lb": 15, "fDefPct": -5, "wDefPct": -5, "aDefPct": -10, "tDefPct": -5, "id": 2960}, {"name": "Saving Grace", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "70-80", "wDam": "45-55", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 51, "intReq": 20, "defReq": 20, "mr": 5, "sdPct": 10, "mdPct": -25, "wDamPct": 20, "fDefPct": 10, "id": 2950}, {"name": "Scroll of Nythiar", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-22", "wDam": "15-18", "aDam": "9-24", "tDam": "6-27", "eDam": "12-21", "atkSpd": "FAST", "lvl": 66, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hprPct": 23, "mr": 10, "sdPct": 35, "mdPct": -70, "xpb": 15, "hprRaw": 42, "id": 2965}, {"name": "Scylla Shell", "tier": "Unique", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 400, "wDef": 15, "aDef": -40, "eDef": 15, "lvl": 45, "strReq": 20, "intReq": 20, "mr": 5, "mdPct": 8, "spd": -12, "wDamPct": 5, "eDamPct": 5, "id": 2962}, {"name": "Sculptor", "tier": "Unique", "type": "spear", "thorns": 10, "category": "weapon", "slots": 5, "drop": "NORMAL", "nDam": "170-190", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "strReq": 35, "intReq": 35, "mdPct": 20, "ref": 10, "mdRaw": 150, "wDamPct": 15, "eDamPct": 15, "id": 2964}, {"name": "Seagazer", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2175, "wDef": 100, "lvl": 84, "intReq": 60, "mr": 10, "xpb": 15, "int": 8, "fDamPct": 22, "wDamPct": 22, "aDamPct": 22, "tDamPct": 22, "eDamPct": 22, "wDefPct": 10, "id": 2966}, {"name": "Sealing Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 330, "lvl": 76, "lb": 5, "spRegen": 5, "type": "necklace", "id": 2971}, {"name": "Scythe", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "80-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-165", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "strReq": 40, "dexReq": 30, "hprPct": -23, "mdPct": 25, "ms": 10, "str": 13, "dex": 9, "int": -10, "spRegen": -15, "tDamPct": 10, "eDamPct": 15, "wDefPct": -25, "id": 2969}, {"name": "Searing Knife", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-110", "fDam": "45-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 72, "defReq": 30, "hprPct": 18, "sdPct": 9, "expd": 6, "wDamPct": -5, "id": 2968}, {"name": "Seipodon", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "wDef": 140, "tDef": -90, "lvl": 98, "intReq": 75, "mr": 10, "sdPct": 10, "ref": 15, "int": 14, "fDamPct": -25, "wDamPct": 10, "fDefPct": 10, "wDefPct": 10, "id": 2970}, {"name": "Scarlet Veil", "tier": "Fabled", "type": "helmet", "majorIds": ["EXPLOSIVE_IMPACT"], "category": "armor", "drop": "NORMAL", "hp": 1000, "fDef": -30, "wDef": -30, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 52, "mdPct": 25, "spd": 8, "atkTier": 1, "mdRaw": 65, "fDefPct": -100, "wDefPct": -100, "aDefPct": -100, "tDefPct": -100, "eDefPct": -100, "id": 3587}, {"name": "Seeker", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "lb": 6, "eSteal": 1, "type": "ring", "id": 2975}, {"name": "Seismosoul", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 65, "aDef": -130, "eDef": 65, "lvl": 92, "strReq": 45, "intReq": 45, "ms": 5, "xpb": 11, "str": 7, "int": 7, "atkTier": 1, "spRegen": 25, "wDamPct": 19, "eDamPct": 19, "fDefPct": -40, "tDefPct": -40, "id": 2976}, {"name": "Seismic Chaps", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 32, "strReq": 15, "mdPct": 10, "str": 7, "spd": -5, "mdRaw": 59, "aDamPct": -10, "eDamPct": 15, "aDefPct": -15, "id": 2974}, {"name": "Sempiternel", "displayName": "Sempiternal", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2700, "fDef": 170, "aDef": 130, "lvl": 88, "agiReq": 55, "defReq": 55, "hprPct": 25, "mr": 10, "atkTier": -1, "hpBonus": 900, "hprRaw": 185, "wDefPct": 16, "tDefPct": 18, "eDefPct": 24, "id": 2978}, {"name": "Spinal Tap", "displayName": "September", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2350, "fDef": 70, "wDef": -105, "aDef": 70, "tDef": -105, "eDef": 70, "lvl": 88, "agiReq": 35, "defReq": 35, "hprPct": -21, "ls": 215, "str": 10, "spd": 21, "mdRaw": 170, "fDamPct": 21, "aDamPct": 21, "eDamPct": 21, "id": 3106}, {"name": "Semreh", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 975, "fDef": -60, "aDef": 70, "lvl": 64, "agiReq": 30, "lb": 10, "ref": 6, "agi": 9, "spd": 11, "aDamPct": 11, "id": 2977}, {"name": "Sequoia", "tier": "Unique", "type": "wand", "poison": 3130, "thorns": 20, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "9-17", "atkSpd": "VERY_SLOW", "lvl": 100, "strReq": 50, "sdPct": -20, "str": 20, "spd": -30, "hpBonus": 1300, "wDamPct": 20, "wDefPct": 15, "eDefPct": 20, "id": 2980}, {"name": "Sequencer", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2345, "lvl": 83, "hprPct": 25, "sdPct": 15, "mdPct": 10, "str": 3, "dex": 3, "int": 3, "agi": 3, "def": 3, "hprRaw": 100, "sdRaw": 125, "mdRaw": 165, "id": 2979}, {"name": "Seraph", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-45", "fDam": "0-0", "wDam": "0-0", "aDam": "32-36", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 52, "intReq": 5, "agiReq": 20, "mr": 5, "mdPct": -10, "spRegen": 4, "wDefPct": 10, "aDefPct": 15, "tDefPct": -12, "id": 2983}, {"name": "Sessanta", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 60, "lvl": 60, "defReq": 10, "hpBonus": 90, "type": "ring", "id": 2984}, {"name": "Shade of Night", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "41-100", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 78, "agiReq": 50, "sdPct": 15, "mdPct": -15, "spd": 15, "wDamPct": 13, "tDamPct": 13, "fDefPct": -26, "aDefPct": 20, "eDefPct": -26, "id": 2986}, {"name": "Sextant", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "aDef": -70, "eDef": 60, "lvl": 62, "strReq": 40, "mdPct": 9, "str": 7, "aDamPct": -15, "eDamPct": 9, "eDefPct": 9, "id": 2982}, {"name": "Seven-League Boots", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "drop": "NORMAL", "hp": 450, "aDef": 30, "eDef": -60, "lvl": 44, "agiReq": 50, "xpb": 15, "agi": 18, "spd": 27, "id": 2981}, {"name": "Shadow Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "4-15", "fDam": "0-0", "wDam": "0-0", "aDam": "1-8", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "mdPct": -8, "ls": 5, "agi": 5, "sdRaw": 8, "id": 2985}, {"name": "Shadow Flame", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "53-55", "fDam": "50-58", "wDam": "0-0", "aDam": "0-0", "tDam": "47-61", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 82, "dexReq": 30, "defReq": 30, "ms": 5, "agi": -10, "hpBonus": -800, "sdRaw": 125, "fDamPct": 17, "wDamPct": -25, "tDamPct": 17, "eDefPct": -20, "id": 2991}, {"name": "Secret", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 1, "xpb": 5, "spRegen": 5, "type": "bracelet", "id": 2972}, {"name": "Shaggy Boots", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3000, "tDef": 150, "eDef": -150, "lvl": 97, "dexReq": 60, "ls": 300, "ref": 10, "dex": 10, "atkTier": -10, "hpBonus": -800, "mdRaw": 1300, "tDamPct": 23, "id": 2987}, {"name": "Shajaea", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "65-115", "fDam": "100-175", "wDam": "100-175", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 97, "intReq": 45, "defReq": 45, "hprPct": 27, "mr": 10, "sdPct": -16, "mdPct": -16, "int": 5, "def": 5, "hpBonus": 2000, "fDefPct": 15, "wDefPct": 15, "id": 2989}, {"name": "Sharp", "tier": "Unique", "thorns": 3, "category": "accessory", "drop": "lootchest", "lvl": 58, "mdPct": -6, "dex": 4, "mdRaw": 26, "type": "ring", "id": 2993}, {"name": "Shark Tooth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 3, "mdPct": 5, "mdRaw": 1, "type": "necklace", "id": 2988}, {"name": "Sharp Heels", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 130, "eDef": -5, "lvl": 29, "dexReq": 15, "mdPct": 7, "dex": 5, "mdRaw": 29, "id": 2990}, {"name": "Sharp Terror", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-31", "fDam": "0-0", "wDam": "31-39", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 42, "intReq": 20, "sdPct": 10, "ms": 10, "int": 7, "tDamPct": -10, "tDefPct": -10, "id": 2994}, {"name": "Sharpened Harpoon", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "105-205", "fDam": "0-0", "wDam": "150-200", "aDam": "0-0", "tDam": "50-300", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 97, "dexReq": 35, "intReq": 35, "sdPct": 20, "mdPct": 15, "lb": 11, "dex": 9, "int": 9, "spd": -19, "hpBonus": -1050, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "id": 2992}, {"name": "Sharpened Stylus", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "15-19", "fDam": "0-0", "wDam": "15-19", "aDam": "0-0", "tDam": "15-19", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 17, "intReq": 17, "sdPct": 14, "mdPct": 14, "hpBonus": -170, "wDamPct": 14, "tDamPct": 14, "id": 2998}, {"name": "Sharpshooter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-43", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "mdPct": 4, "xpb": 4, "dex": 5, "id": 2995}, {"name": "Shawl of Gaea", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3700, "fDef": 125, "aDef": -150, "eDef": 125, "lvl": 95, "strReq": 75, "defReq": 60, "str": 9, "def": 13, "expd": 30, "spd": -10, "mdRaw": 300, "fDamPct": 27, "eDamPct": 20, "wDefPct": -30, "id": 2996}, {"name": "Shatterglass", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": -20, "wDef": -20, "aDef": -20, "tDef": -20, "eDef": -20, "lvl": 91, "strReq": 50, "mdPct": 11, "str": 7, "def": -5, "expd": 11, "hpBonus": -500, "aDamPct": 5, "eDamPct": 5, "type": "necklace", "id": 2999}, {"name": "Shell of Genbu", "tier": "Rare", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2500, "fDef": 75, "wDef": 75, "tDef": -90, "eDef": -60, "lvl": 82, "intReq": 45, "defReq": 40, "sdPct": 23, "ls": -160, "def": 8, "spd": -10, "fDamPct": 10, "wDamPct": 10, "id": 2997}, {"name": "Shimmersight", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2700, "lvl": 93, "mr": 5, "xpb": -10, "lb": -30, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "fDefPct": 10, "wDefPct": 12, "aDefPct": 10, "tDefPct": 12, "eDefPct": 10, "id": 3002}, {"name": "Shellcarve", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-48", "fDam": "0-0", "wDam": "100-120", "aDam": "0-0", "tDam": "0-0", "eDam": "100-120", "atkSpd": "FAST", "lvl": 93, "strReq": 42, "intReq": 42, "mr": 5, "ms": 5, "dex": -9, "agi": -9, "def": -9, "hprRaw": -280, "wDamPct": 28, "eDamPct": 28, "spRaw1": -5, "spRaw4": -5, "id": 3003}, {"name": "Shin Guards", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 9, "lvl": 3, "spd": 3, "id": 3001}, {"name": "Shield Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-120", "fDam": "0-0", "wDam": "75-125", "aDam": "0-0", "tDam": "0-0", "eDam": "85-115", "atkSpd": "SLOW", "lvl": 95, "strReq": 35, "intReq": 35, "ms": 5, "xpb": 8, "expd": 20, "sdRaw": 110, "mdRaw": 160, "aDamPct": -20, "tDamPct": -20, "id": 3000}, {"name": "Sheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "intReq": 25, "defReq": 25, "sdPct": 10, "mdPct": -30, "int": 4, "def": 4, "fDamPct": 10, "wDamPct": 10, "fDefPct": 15, "wDefPct": 15, "id": 3009}, {"name": "Shine Suffocator", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "36-42", "fDam": "0-0", "wDam": "26-32", "aDam": "0-0", "tDam": "26-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 52, "dexReq": 25, "intReq": 35, "sdPct": 20, "ms": 15, "dex": 10, "hprRaw": -40, "spPct1": 210, "spPct3": -56, "spRaw4": 10, "id": 3051}, {"name": "Shiny Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 120, "lvl": 56, "xpb": 4, "lb": 8, "type": "necklace", "id": 3011}, {"name": "Shinespark", "tier": "Legendary", "type": "helmet", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 575, "wDef": -20, "eDef": -30, "lvl": 47, "dexReq": 30, "defReq": 20, "mr": 5, "ref": 10, "expd": 20, "sdRaw": 60, "fDamPct": 16, "tDamPct": 15, "eDamPct": -50, "id": 3004}, {"name": "Shining Cloak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 12, "lvl": 4, "sdPct": 4, "xpb": 4, "id": 3006}, {"name": "Shining Stave", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-54", "fDam": "0-0", "wDam": "0-0", "aDam": "16-48", "tDam": "16-48", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "dexReq": 30, "mr": 5, "sdPct": 16, "mdPct": -12, "ref": 14, "int": 4, "id": 3005}, {"name": "Shock", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 6, "dex": 3, "type": "ring", "id": 3007}, {"name": "Shockmosis", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "100-108", "fDam": "0-0", "wDam": "40-45", "aDam": "0-0", "tDam": "40-45", "eDam": "0-0", "atkSpd": "FAST", "lvl": 81, "dexReq": 25, "intReq": 25, "sdPct": 5, "mdPct": 5, "ms": 5, "sdRaw": 90, "mdRaw": 115, "id": 3008}, {"name": "Shockwave", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1925, "fDef": -130, "aDef": 90, "tDef": 90, "lvl": 84, "dexReq": 50, "agiReq": 50, "hprPct": -12, "sdPct": 13, "ms": 10, "dex": 5, "agi": 5, "aDamPct": 8, "tDamPct": 8, "id": 3015}, {"name": "Shokku", "tier": "Unique", "type": "spear", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-75", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-100", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 40, "xpb": 10, "dex": 7, "spd": 10, "tDefPct": 5, "id": 3013}, {"name": "Short Circuit", "tier": "Rare", "type": "chestplate", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "tDef": -60, "lvl": 71, "dexReq": 50, "intReq": 15, "sdPct": 14, "ls": -120, "ms": 5, "wDamPct": 7, "tDamPct": 17, "wDefPct": -7, "id": 3010}, {"name": "Sightlines", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 600, "fDef": -60, "aDef": 50, "lvl": 54, "strReq": 15, "agiReq": 35, "xpb": 7, "str": 7, "agi": 3, "spd": 10, "mdRaw": 85, "eDamPct": 7, "fDefPct": -10, "id": 3018}, {"name": "Sight of the Druid", "tier": "Unique", "type": "bow", "poison": 805, "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "155-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "90-120", "atkSpd": "SLOW", "lvl": 78, "strReq": 35, "intReq": 15, "mr": 5, "tDamPct": -15, "fDefPct": -15, "wDefPct": 10, "eDefPct": 10, "id": 3016}, {"name": "Sigil of Existence", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-42", "fDam": "0-0", "wDam": "40-50", "aDam": "30-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "intReq": 40, "agiReq": 40, "int": 16, "agi": 10, "hpBonus": 2050, "spRegen": 77, "fDefPct": 12, "wDefPct": 31, "aDefPct": 31, "tDefPct": -15, "eDefPct": 15, "id": 3017}, {"name": "Sigil of Resistance", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "83-89", "fDam": "84-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "84-90", "atkSpd": "NORMAL", "lvl": 97, "strReq": 40, "defReq": 40, "hprPct": 95, "str": 8, "def": 12, "hpBonus": 3000, "fDefPct": 31, "wDefPct": -15, "aDefPct": 12, "tDefPct": 15, "eDefPct": 31, "id": 3019}, {"name": "Sickle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-30", "fDam": "0-0", "wDam": "0-0", "aDam": "5-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 28, "agiReq": 15, "xpb": 5, "lb": 5, "agi": 7, "spd": 15, "eDefPct": -10, "id": 3014}, {"name": "Shrok", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 385, "tDef": 30, "eDef": -25, "lvl": 46, "dexReq": 20, "mdPct": 4, "dex": 8, "mdRaw": 53, "tDamPct": 15, "tDefPct": 12, "id": 3012}, {"name": "Signal Flare", "tier": "Legendary", "type": "boots", "majorIds": ["TAUNT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3200, "fDef": 100, "wDef": -50, "aDef": 100, "eDef": -100, "lvl": 85, "agiReq": 45, "defReq": 45, "ls": 235, "str": 10, "spd": 15, "mdRaw": 190, "fDamPct": 15, "aDamPct": 15, "wDefPct": -35, "id": 3020}, {"name": "Silhouette", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-27", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 22, "agiReq": 8, "ref": 10, "agi": 8, "spRegen": 5, "aDefPct": 12, "id": 3023}, {"name": "Silver", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-80", "fDam": "0-0", "wDam": "0-0", "aDam": "79-114", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 96, "intReq": 50, "agiReq": 35, "mr": 5, "sdPct": 10, "int": 9, "spd": 14, "fDamPct": -20, "wDamPct": 20, "aDefPct": 23, "id": 3025}, {"name": "Silkweb Mail", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 90, "eDef": 120, "lvl": 95, "strReq": 50, "agiReq": 20, "ls": 240, "ms": 10, "str": 9, "spd": -9, "atkTier": -1, "aDamPct": 30, "eDamPct": 20, "fDefPct": -15, "id": 3022}, {"name": "Silver Bell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "0-0", "wDam": "75-100", "aDam": "60-115", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "intReq": 25, "agiReq": 25, "mr": 5, "mdPct": -15, "xpb": 15, "agi": 7, "spd": 10, "spRegen": 10, "wDefPct": 20, "aDefPct": 20, "id": 3026}, {"name": "Silver Sound", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "375-380", "wDam": "0-0", "aDam": "375-380", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 99, "agiReq": 40, "defReq": 40, "mr": -5, "int": -20, "agi": 10, "def": 10, "fDamPct": 29, "wDamPct": -42, "aDamPct": 29, "spRaw3": -10, "id": 3028}, {"name": "Silkworm", "tier": "Rare", "type": "boots", "poison": 260, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "fDef": -50, "aDef": 30, "lvl": 71, "agiReq": 38, "hprPct": 25, "agi": 9, "def": -10, "spd": 10, "aDamPct": 10, "id": 3024}, {"name": "Silicosis", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "fDef": -100, "aDef": 45, "eDef": 55, "lvl": 63, "strReq": 40, "agiReq": 30, "str": 7, "agi": 5, "def": -3, "fDamPct": -30, "aDamPct": 13, "eDamPct": 15, "id": 3041}, {"name": "Simple Coin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 10, "lvl": 18, "lb": 5, "type": "necklace", "id": 3030}, {"name": "Simplicity", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": 4, "wDef": 4, "aDef": 4, "tDef": 4, "eDef": 4, "lvl": 21, "spRegen": 1, "type": "ring", "id": 3029}, {"name": "Sinkhole", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "550-575", "atkSpd": "VERY_SLOW", "lvl": 61, "strReq": 30, "ls": 118, "agi": -5, "expd": 25, "hpBonus": -600, "mdRaw": 305, "aDefPct": -10, "id": 3033}, {"name": "Sinister", "tier": "Rare", "poison": 350, "category": "accessory", "drop": "lootchest", "wDef": -55, "tDef": 20, "lvl": 82, "dexReq": 25, "defReq": 15, "ls": 80, "ms": 5, "wDamPct": -8, "aDefPct": -13, "type": "bracelet", "id": 3031}, {"name": "Siwel's Guilt", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 74, "intReq": 40, "hprPct": 6, "xpb": 5, "lb": -5, "hpBonus": 370, "spRegen": -30, "hprRaw": 28, "type": "bracelet", "id": 3034}, {"name": "Sitis", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-105", "fDam": "0-0", "wDam": "75-180", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 99, "intReq": 65, "mr": -10, "sdPct": 20, "ls": 300, "ms": 10, "spd": -15, "hprRaw": -185, "wDamPct": 30, "id": 3032}, {"name": "Skaxis", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "40-100", "atkSpd": "FAST", "lvl": 62, "strReq": 40, "dexReq": 50, "xpb": 10, "dex": 100, "agi": -77, "spd": -12, "hpBonus": -500, "id": 3035}, {"name": "Skeleton Bones", "tier": "Rare", "type": "chestplate", "poison": 82, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 210, "lvl": 31, "hprPct": -8, "ls": 18, "agi": 5, "id": 3038}, {"name": "Skeleton's Bone", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 14, "hprPct": 8, "int": 4, "hpBonus": 5, "id": 3037}, {"name": "Silver Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "22-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 20, "xpb": 7, "lb": 13, "id": 3027}, {"name": "Skeleton Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "fDef": -15, "aDef": 20, "lvl": 36, "agiReq": 10, "agi": 5, "spd": 6, "aDamPct": 7, "fDefPct": -5, "id": 3039}, {"name": "Skien's Madness", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "10-155", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 56, "dexReq": 30, "mdPct": 13, "str": 7, "dex": 13, "spd": 7, "atkTier": 7, "spRegen": -10, "mdRaw": 105, "spRaw2": 10, "id": 3040}, {"name": "Skien's Paranoia", "tier": "Rare", "type": "dagger", "thorns": 40, "category": "weapon", "drop": "NORMAL", "nDam": "65-85", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 60, "ls": 140, "ms": -5, "ref": 25, "int": -5, "hpBonus": 475, "hprRaw": 60, "id": 3042}, {"name": "Skin Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 16, "lvl": 7, "xpb": 5, "id": 3043}, {"name": "Skin Piercer", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-55", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 18, "dexReq": 5, "mdPct": 7, "dex": 9, "tDamPct": 10, "id": 3044}, {"name": "Sky Chef's Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 4, "drop": "never", "hp": 3200, "lvl": 96, "xpb": 15, "lb": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "id": 3046}, {"name": "Sky Reflector", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1100, "fDef": -60, "wDef": 15, "aDef": 70, "lvl": 65, "xpb": 5, "ref": 10, "wDamPct": 10, "aDefPct": 5, "id": 3048}, {"name": "Skyspiral", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "31-31", "fDam": "0-0", "wDam": "0-0", "aDam": "57-63", "tDam": "38-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 20, "agiReq": 25, "dex": 5, "def": -5, "spd": 20, "hpBonus": -320, "sdRaw": 60, "mdRaw": 59, "id": 3047}, {"name": "Sky Glaze", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-25", "fDam": "0-0", "wDam": "20-30", "aDam": "15-35", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 30, "intReq": 10, "agiReq": 10, "sdPct": 12, "lb": 12, "dex": -10, "spd": 5, "tDamPct": -10, "id": 3045}, {"name": "Skyfall", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-55", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 59, "agiReq": 38, "xpb": 6, "spd": 18, "fDamPct": -12, "wDamPct": -12, "aDamPct": 24, "tDamPct": -12, "eDamPct": -12, "id": 3049}, {"name": "Slap", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 15, "agi": 3, "mdRaw": 5, "type": "bracelet", "id": 3050}, {"name": "Sizzling Shawl", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3050, "fDef": 60, "wDef": 80, "tDef": -180, "lvl": 98, "intReq": 45, "defReq": 55, "hprPct": -35, "sdPct": 23, "expd": 25, "hprRaw": -150, "sdRaw": 152, "fDamPct": 20, "wDamPct": 20, "tDefPct": -30, "id": 3036}, {"name": "Slash and Burn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-35", "fDam": "25-30", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "strReq": 20, "defReq": 20, "xpb": 8, "str": 7, "expd": 12, "eDamPct": 15, "fDefPct": -12, "id": 3055}, {"name": "Slate Bow", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "10-18", "fDam": "10-18", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "10-18", "atkSpd": "NORMAL", "lvl": 19, "strReq": 10, "defReq": 10, "hprPct": 9, "def": 7, "expd": 6, "hpBonus": 30, "eDefPct": -10, "id": 3053}, {"name": "Sleeping Beast", "tier": "Unique", "type": "bow", "poison": 1730, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "145-200", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-200", "eDam": "95-155", "atkSpd": "SLOW", "lvl": 95, "strReq": 40, "dexReq": 40, "sdPct": 12, "mdPct": 12, "ms": 5, "dex": 9, "spd": -15, "fDefPct": -30, "id": 3054}, {"name": "Sledge", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "25-37", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 9, "str": 7, "spd": -10, "mdRaw": 20, "id": 3056}, {"name": "Skywatcher", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1950, "fDef": -100, "wDef": 50, "aDef": 100, "lvl": 84, "intReq": 20, "agiReq": 35, "hprPct": -25, "mr": 5, "xpb": 12, "ref": 12, "int": 5, "agi": 7, "spd": 12, "spRegen": 12, "sdRaw": 150, "id": 3052}, {"name": "Slippery Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 30, "fDef": -4, "aDef": 4, "lvl": 11, "dex": -2, "agi": 3, "spd": 5, "id": 3060}, {"name": "Slicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 1, "mdPct": 3, "str": 1, "id": 3058}, {"name": "Slipstream", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1800, "aDef": 50, "lvl": 79, "agiReq": 60, "sdPct": -15, "mdPct": 10, "lb": 20, "agi": 7, "expd": -30, "spd": 15, "aDamPct": 8, "id": 3059}, {"name": "Sloth", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "40-58", "fDam": "17-25", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 19, "hprPct": 12, "def": 5, "spd": -15, "hprRaw": 7, "id": 3062}, {"name": "Slime-blend Leggings", "displayName": "Slime-Blend Leggings", "tier": "Rare", "type": "leggings", "poison": 17, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 7, "tDef": -10, "lvl": 15, "wDamPct": 7, "eDamPct": 7, "id": 3057}, {"name": "Smack Jacket", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2200, "wDef": -100, "lvl": 89, "strReq": 55, "dexReq": 55, "hprPct": -30, "sdPct": -30, "mdPct": 8, "ls": 170, "str": 10, "dex": 10, "expd": 20, "atkTier": 1, "id": 3061}, {"name": "Sliver", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 87, "dexReq": 25, "dex": 4, "def": -3, "mdRaw": 49, "type": "ring", "id": 3063}, {"name": "Slumber", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "130-210", "fDam": "0-0", "wDam": "115-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 88, "intReq": 40, "mr": 10, "sdPct": -15, "mdPct": -15, "spRegen": 3, "hprRaw": 70, "wDefPct": 10, "id": 3064}, {"name": "Smoldering Apron", "tier": "Rare", "type": "chestplate", "quest": "Recipe For Disaster", "category": "armor", "slots": 2, "drop": "never", "hp": 2550, "fDef": 80, "wDef": -180, "lvl": 96, "sdPct": 30, "mdPct": 30, "expd": 25, "spd": 20, "hprRaw": -100, "fDamPct": 6, "wDamPct": -30, "id": 3067}, {"name": "Snakeroot Bow", "tier": "Legendary", "type": "bow", "poison": 435, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "110-140", "fDam": "50-85", "wDam": "0-0", "aDam": "0-0", "tDam": "50-85", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 34, "dexReq": 20, "defReq": 20, "sdPct": 10, "dex": 8, "spd": -15, "hpBonus": -200, "fDamPct": 12, "tDamPct": 12, "id": 3065}, {"name": "Snapdragon", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "25-50", "fDam": "35-65", "wDam": "0-0", "aDam": "0-0", "tDam": "35-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "dexReq": 25, "defReq": 35, "ls": 140, "expd": 15, "hprRaw": 60, "eDamPct": -10, "wDefPct": -15, "id": 3066}, {"name": "Sneaky Caster", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-30", "fDam": "0-0", "wDam": "0-0", "aDam": "4-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "agiReq": 15, "mdPct": -12, "lb": 5, "spd": 10, "eSteal": 5, "id": 3068}, {"name": "Snowslicer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "23-32", "fDam": "0-0", "wDam": "18-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "intReq": 15, "mr": 5, "ref": 8, "wDamPct": 8, "fDefPct": -8, "id": 3070}, {"name": "Snow Dust", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": -20, "aDef": 25, "tDef": 25, "eDef": -20, "lvl": 52, "dex": 4, "agi": 4, "spd": 10, "tDamPct": 5, "aDefPct": 5, "id": 3069}, {"name": "Soaked Tunic", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "wDef": 4, "tDef": -6, "lvl": 13, "wDamPct": 10, "fDefPct": 7, "id": 3072}, {"name": "Soft Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 10, "aDef": 3, "tDef": -1, "lvl": 4, "agi": 1, "id": 3075}, {"name": "Soarfae", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2650, "fDef": -125, "aDef": 150, "lvl": 97, "agiReq": 65, "ref": 17, "agi": 20, "spd": 30, "atkTier": 1, "aDamPct": 30, "aDefPct": 10, "id": 3071}, {"name": "Sokoto", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 15, "lvl": 4, "agi": 3, "spd": 8, "aDamPct": 4, "id": 3073}, {"name": "Solitude", "tier": "Unique", "type": "bow", "quest": "The Lost", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "85-120", "fDam": "0-0", "wDam": "0-0", "aDam": "75-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 84, "agiReq": 40, "sdPct": 9, "mdPct": -8, "xpb": 8, "spd": 14, "wDamPct": 7, "id": 3077}, {"name": "Solar Pillar", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-46", "fDam": "27-33", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 35, "defReq": 35, "sdPct": 10, "xpb": 12, "def": 7, "hpBonus": 600, "wDamPct": 25, "eDamPct": -120, "tDefPct": -25, "id": 3076}, {"name": "Solar Flare", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1000, "wDef": -70, "tDef": 70, "lvl": 65, "dexReq": 30, "defReq": 30, "mdPct": 5, "expd": 10, "fDamPct": 8, "tDamPct": 8, "wDefPct": -10, "id": 3074}, {"name": "Solstice", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-65", "fDam": "20-25", "wDam": "25-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 25, "hprPct": 14, "def": 7, "hpBonus": 240, "aDamPct": -14, "tDamPct": -14, "eDamPct": -14, "id": 3080}, {"name": "Soldier", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 160, "lvl": 78, "str": 4, "def": 4, "type": "ring", "id": 3078}, {"name": "Someone Else's Knife", "tier": "Rare", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "32-40", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 19, "hprPct": -8, "xpb": 10, "spRegen": -5, "mdRaw": 23, "id": 3079}, {"name": "Soul Wreath", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1100, "wDef": 50, "eDef": 50, "lvl": 64, "strReq": 30, "intReq": 35, "mr": 5, "int": 4, "spd": -10, "spRegen": 10, "hprRaw": 60, "id": 3085}, {"name": "Souffle", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "105-130", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 58, "agiReq": 28, "agi": 9, "spd": 10, "mdRaw": 80, "tDamPct": 15, "id": 3082}, {"name": "Sonicboom", "tier": "Legendary", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "417-531", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 36, "agiReq": 25, "sdPct": 30, "ms": 5, "agi": 12, "spd": 25, "aDamPct": 15, "spPct3": 35, "id": 3086}, {"name": "Soul", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-30", "fDam": "0-0", "wDam": "0-0", "aDam": "10-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "sdPct": 5, "mdPct": 4, "agi": 3, "aDamPct": 6, "fDefPct": -20, "id": 3083}, {"name": "Sorcerer's Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "10-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "17-23", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 46, "dexReq": 20, "intReq": 10, "sdPct": 14, "mdPct": -9, "ref": 6, "sdRaw": 50, "id": 3081}, {"name": "Sound of Silence", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "aDef": 10, "lvl": 23, "agiReq": 12, "xpb": 15, "spd": 10, "mdRaw": 20, "aDamPct": 15, "id": 3084}, {"name": "Soul Signal", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "wDef": 90, "tDef": 125, "eDef": -170, "lvl": 92, "dexReq": 50, "intReq": 50, "mdPct": -15, "ref": 25, "dex": 10, "int": 10, "spRegen": 25, "sdRaw": 222, "eDamPct": -80, "id": 3088}, {"name": "Soundgarden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "82-86", "tDam": "0-0", "eDam": "87-99", "atkSpd": "FAST", "lvl": 72, "strReq": 20, "agiReq": 25, "ls": -140, "ref": 25, "sdRaw": 110, "wDamPct": -25, "aDamPct": 14, "eDamPct": 14, "spRaw1": -5, "id": 3087}, {"name": "Soundwave", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "514-1143", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 59, "dexReq": 70, "sdPct": -40, "mdPct": 18, "dex": 8, "tDamPct": 12, "id": 3091}, {"name": "Sow Thistle", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 450, "aDef": -40, "eDef": 30, "lvl": 44, "strReq": 30, "hprPct": -15, "mdPct": 10, "spd": -12, "mdRaw": 80, "eDamPct": 15, "id": 3092}, {"name": "Spark of Courage", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-20", "fDam": "0-35", "wDam": "0-0", "aDam": "35-60", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 86, "agiReq": 35, "defReq": 35, "hprPct": 15, "sdPct": -12, "mdPct": -12, "ref": 8, "hpBonus": 900, "hprRaw": 130, "wDamPct": -20, "id": 3089}, {"name": "Sowilo", "tier": "Unique", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": 575, "fDef": 45, "wDef": -55, "tDef": 45, "eDef": -55, "lvl": 87, "dexReq": 20, "defReq": 20, "mdPct": 6, "ref": 5, "expd": 6, "type": "necklace", "id": 3090}, {"name": "Sparkles", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-65", "eDam": "0-0", "atkSpd": "FAST", "lvl": 48, "dexReq": 22, "xpb": 12, "ref": 10, "aDefPct": -10, "tDefPct": 10, "id": 3098}, {"name": "Speaker", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2300, "fDef": -100, "aDef": 100, "lvl": 87, "intReq": 40, "mr": 10, "xpb": 25, "ref": 10, "int": 7, "spRegen": 7, "id": 3100}, {"name": "Sparkling Tones", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "27-33", "fDam": "0-0", "wDam": "75-81", "aDam": "75-81", "tDam": "3-3", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 88, "intReq": 44, "agiReq": 44, "mr": 5, "xpb": 15, "dex": -25, "spd": 15, "eSteal": 5, "sdRaw": 143, "wDefPct": 20, "aDefPct": 20, "id": 3093}, {"name": "Sparklock", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-9", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "mr": 5, "int": 3, "tDamPct": 5, "id": 3095}, {"name": "Spear of Prosperity", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "24-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "xpb": 5, "lb": 15, "eSteal": 5, "id": 3097}, {"name": "Spear of Sin", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-125", "fDam": "105-175", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 89, "dexReq": 35, "defReq": 25, "ls": 290, "dex": 5, "def": 16, "spRegen": -13, "fDamPct": 15, "wDamPct": -50, "tDamPct": 15, "id": 3096}, {"name": "Spear of Vix", "tier": "Unique", "type": "spear", "thorns": 8, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-28", "fDam": "0-0", "wDam": "0-0", "aDam": "22-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "dexReq": 5, "agiReq": 25, "sdPct": 8, "xpb": 8, "spd": 8, "fDamPct": -8, "aDamPct": 8, "fDefPct": -8, "aDefPct": 8, "id": 3099}, {"name": "Sphyken", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "75-145", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "dexReq": 50, "ms": 10, "int": 7, "hpBonus": -250, "sdRaw": 40, "wDamPct": 15, "aDamPct": -20, "tDefPct": 15, "id": 3101}, {"name": "Spectral Slingshot", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "25-75", "wDam": "25-75", "aDam": "25-75", "tDam": "25-75", "eDam": "25-75", "atkSpd": "FAST", "lvl": 67, "strReq": 22, "dexReq": 22, "intReq": 22, "agiReq": 22, "defReq": 22, "xpb": 10, "id": 3102}, {"name": "Sparkling Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3750, "fDef": 50, "wDef": -50, "aDef": 100, "tDef": 100, "eDef": -50, "lvl": 99, "dexReq": 50, "agiReq": 50, "ls": 220, "ref": 17, "int": -30, "def": 8, "hprRaw": 150, "spPct1": -7, "spPct2": -14, "spPct3": -10, "id": 3094}, {"name": "Spectre", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1600, "fDef": -50, "eDef": -50, "lvl": 65, "agiReq": 35, "sdPct": 25, "mdPct": -35, "ms": 10, "agi": 9, "hpBonus": -250, "spRegen": -10, "aDamPct": 19, "tDamPct": 19, "eDamPct": -19, "aDefPct": 10, "id": 3105}, {"name": "Spectrum", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 3300, "fDef": 50, "wDef": 50, "aDef": 50, "tDef": 50, "eDef": 50, "lvl": 97, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "fDamPct": 23, "wDamPct": 23, "aDamPct": 23, "tDamPct": 23, "eDamPct": 23, "id": 3104}, {"name": "Spicy", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-20", "fDam": "12-14", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 18, "defReq": 8, "def": 4, "mdRaw": 18, "fDamPct": 9, "id": 3103}, {"name": "Spike", "tier": "Rare", "type": "dagger", "poison": 320, "thorns": 25, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "75-93", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "24-40", "atkSpd": "NORMAL", "lvl": 50, "strReq": 20, "sdPct": 5, "mdPct": 10, "spd": -5, "aDamPct": -20, "eDamPct": 20, "id": 3107}, {"name": "Spiked Cleats", "tier": "Unique", "type": "boots", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 48, "lvl": 13, "spd": -3, "mdRaw": 12, "id": 3140}, {"name": "Spirit", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "27-54", "fDam": "0-0", "wDam": "0-0", "aDam": "43-66", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 40, "agiReq": 15, "ms": 5, "agi": 10, "def": -8, "spRegen": 4, "aDamPct": 10, "fDefPct": -10, "id": 3112}, {"name": "Spine", "tier": "Unique", "type": "wand", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-22", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-32", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "dexReq": 30, "mdPct": 5, "expd": 10, "aDefPct": -10, "id": 3111}, {"name": "Spiked Helmet", "tier": "Rare", "type": "helmet", "thorns": 40, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1950, "aDef": -70, "eDef": 95, "lvl": 74, "strReq": 25, "defReq": 35, "mdPct": 18, "def": 7, "spd": -8, "fDefPct": 18, "id": 3108}, {"name": "Spiritdancer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3600, "fDef": 100, "wDef": 100, "aDef": 100, "tDef": -100, "eDef": -100, "lvl": 94, "intReq": 65, "defReq": 65, "mr": 5, "sdPct": 21, "agi": 10, "spd": 15, "fDamPct": 8, "wDamPct": 8, "aDamPct": 15, "tDamPct": -15, "eDamPct": -15, "id": 3615}, {"name": "Spiritshock", "tier": "Legendary", "type": "bow", "poison": 1200, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-70", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "270-270", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 55, "ls": 375, "ms": 10, "dex": 13, "spRegen": -50, "sdRaw": 135, "eDefPct": -28, "id": 3110}, {"name": "Spleen Splitter", "tier": "Unique", "type": "relik", "poison": 3600, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "5-5", "atkSpd": "SLOW", "lvl": 96, "strReq": 50, "mr": -10, "ls": 280, "ms": 5, "str": 10, "spd": 10, "hprRaw": -210, "id": 3109}, {"name": "Spontaneous", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 71, "agiReq": 20, "defReq": 20, "ms": -5, "expd": 12, "spd": 8, "hpBonus": -330, "type": "bracelet", "id": 3113}, {"name": "Sprinter", "tier": "Unique", "type": "leggings", "sprint": 7, "category": "armor", "drop": "NORMAL", "hp": 30, "aDef": 3, "lvl": 12, "spd": 11, "id": 3115}, {"name": "Sprint Belt", "tier": "Rare", "type": "leggings", "sprint": 18, "category": "armor", "drop": "NORMAL", "lvl": 33, "agiReq": 33, "agi": 8, "spd": 18, "aDamPct": 18, "sprintReg": 18, "id": 3114}, {"name": "Spruce Wood Relik", "tier": "Normal", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3119}, {"name": "Spruce Wood Bow", "tier": "Normal", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-32", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3117}, {"name": "Sprintguard", "tier": "Rare", "type": "leggings", "sprint": 11, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2950, "fDef": 60, "aDef": 60, "tDef": -150, "lvl": 82, "agiReq": 45, "defReq": 45, "sdPct": 10, "mdPct": -10, "int": -20, "agi": 7, "def": 7, "spd": 23, "wDamPct": -10, "spPct1": -14, "spPct2": -7, "sprintReg": 11, "id": 3116}, {"name": "Spruce Wood Shears", "displayName": "Spruce Wood Dagger", "tier": "Normal", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 13, "id": 3118}, {"name": "Spruce Wood Spear", "tier": "Normal", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-19", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "id": 3120}, {"name": "Spruce Wood Stick", "displayName": "Spruce Wood Wand", "tier": "Normal", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-10", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "id": 3121}, {"name": "Spyrr", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-8", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "str": 3, "dex": 3, "id": 3122}, {"name": "Squall's Breath", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "0-0", "aDam": "55-95", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 89, "dexReq": 50, "agiReq": 40, "sdPct": 10, "agi": 9, "spd": 25, "hpBonus": -1000, "tDamPct": 20, "eDefPct": -11, "id": 3123}, {"name": "Squid Anklet", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 40, "tDef": -60, "lvl": 83, "intReq": 45, "mr": 5, "fDamPct": -6, "wDamPct": 6, "type": "bracelet", "id": 3124}, {"name": "Squid Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-90", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 56, "intReq": 25, "mr": 5, "ms": 5, "xpb": 10, "int": 7, "eSteal": 1, "fDamPct": -10, "fDefPct": 10, "wDefPct": 10, "tDefPct": -30, "id": 3125}, {"name": "Sreggad", "tier": "Rare", "type": "dagger", "thorns": 333, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 85, "ls": 354, "ref": 333, "agi": 20, "def": 20, "hpBonus": 2500, "hprRaw": 173, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "id": 3129}, {"name": "Squidword's Clarinet", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "3-6", "aDam": "2-9", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 17, "int": 4, "agi": 4, "spd": 5, "fDamPct": -10, "wDamPct": 8, "wDefPct": 7, "id": 3126}, {"name": "Staff of Regrowth", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-60", "fDam": "0-0", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "40-60", "atkSpd": "SLOW", "lvl": 71, "strReq": 20, "intReq": 20, "mr": 10, "mdPct": -25, "wDefPct": 10, "eDefPct": 10, "id": 3131}, {"name": "Staccato", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": -60, "tDef": 40, "eDef": 20, "lvl": 96, "strReq": 45, "dexReq": 45, "mr": -5, "ms": 10, "dex": 5, "mdRaw": 29, "type": "necklace", "id": 3128}, {"name": "StabSand", "displayName": "Stabsand", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-190", "fDam": "0-0", "wDam": "0-0", "aDam": "15-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 32, "ls": 38, "dex": 8, "expd": 30, "aDamPct": 12, "id": 3127}, {"name": "Stad Aer", "tier": "Unique", "type": "helmet", "thorns": 11, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1925, "fDef": -100, "eDef": 100, "lvl": 85, "strReq": 40, "agiReq": 40, "mdPct": 7, "ms": 10, "ref": 11, "str": 8, "mdRaw": 185, "aDamPct": 11, "aDefPct": 11, "id": 3130}, {"name": "Starburst", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "0-0", "aDam": "35-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "agiReq": 55, "ms": 10, "hprRaw": -150, "sdRaw": 160, "fDamPct": 10, "aDamPct": 20, "tDamPct": 10, "id": 3132}, {"name": "Stalagmites", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "wDef": -130, "aDef": -130, "tDef": 100, "eDef": 100, "lvl": 67, "strReq": 20, "dexReq": 20, "ms": 5, "xpb": 10, "str": 7, "dex": 7, "tDamPct": 25, "eDamPct": 25, "tDefPct": 20, "eDefPct": 20, "id": 3135}, {"name": "Stamina", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 120, "aDef": 5, "lvl": 24, "def": 4, "spd": 6, "hprRaw": 5, "id": 3136}, {"name": "Standoff", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "lvl": 33, "defReq": 25, "def": 5, "spd": -28, "hpBonus": 200, "id": 3134}, {"name": "Starched Pants", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 16, "lvl": 5, "def": 4, "id": 3133}, {"name": "Starglass", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3125, "fDef": -100, "wDef": 60, "aDef": 140, "tDef": -40, "lvl": 95, "intReq": 40, "agiReq": 40, "sdPct": 30, "mdPct": -15, "ref": 20, "int": 7, "def": 7, "spRegen": 15, "fDamPct": 15, "wDamPct": 5, "aDefPct": 5, "id": 2517}, {"name": "Stasis", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "150-150", "atkSpd": "VERY_SLOW", "lvl": 68, "strReq": 30, "mdPct": 10, "str": 7, "spd": -10, "eDamPct": 10, "aDefPct": -10, "eDefPct": 10, "id": 3137}, {"name": "Static Flood", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "42-51", "aDam": "0-0", "tDam": "7-42", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "dexReq": 35, "intReq": 30, "hprPct": -15, "sdPct": 5, "mdPct": -16, "ms": 10, "wDamPct": 10, "tDamPct": 13, "id": 3138}, {"name": "Static Wand", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-33", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-66", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 60, "dexReq": 30, "sdPct": 8, "mdPct": 5, "spd": 8, "tDamPct": 8, "tDefPct": 10, "id": 3139}, {"name": "Steam Vent", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-128", "fDam": "48-85", "wDam": "0-0", "aDam": "37-99", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 69, "agiReq": 20, "defReq": 20, "ls": 225, "agi": 7, "def": 7, "spd": 9, "wDefPct": -12, "eDefPct": -12, "id": 3143}, {"name": "Stave of Tribute", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "xpb": 7, "lb": 15, "id": 3141}, {"name": "Statue", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 7500, "fDef": 60, "wDef": 60, "aDef": 60, "tDef": 60, "eDef": 60, "lvl": 88, "spd": -200, "hpBonus": 3850, "id": 3142}, {"name": "Steamjet Walkers", "tier": "Legendary", "type": "boots", "majorIds": ["LIGHTWEIGHT"], "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "tDef": -80, "lvl": 86, "dexReq": 30, "intReq": 30, "agiReq": 40, "sdPct": 24, "agi": 15, "spd": 21, "wDamPct": 21, "aDamPct": 24, "tDamPct": 21, "id": 3147}, {"name": "StealSkull", "displayName": "Stealskull", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 960, "lvl": 68, "ls": 110, "ms": 5, "eSteal": 5, "id": 3144}, {"name": "Steel Bracer", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 125, "fDef": 12, "wDef": -10, "lvl": 45, "defReq": 15, "ref": 7, "def": 5, "spd": -3, "type": "bracelet", "id": 3148}, {"name": "Steel Buster", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "36-45", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "15-19", "atkSpd": "SLOW", "lvl": 34, "strReq": 15, "defReq": 5, "mdPct": 9, "expd": 5, "spd": -10, "aDamPct": -7, "eDamPct": 6, "id": 3145}, {"name": "Steel Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 415, "lvl": 46, "hprPct": 15, "mdPct": 6, "xpb": 10, "spd": -5, "id": 3150}, {"name": "Steel Wool", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2300, "fDef": 80, "wDef": -120, "aDef": 80, "tDef": 80, "eDef": -120, "lvl": 90, "dexReq": 35, "defReq": 35, "sdPct": 15, "ls": 200, "dex": 8, "int": -22, "wDefPct": -15, "eDefPct": -15, "spPct1": -7, "spPct2": -7, "spPct3": -7, "spPct4": -7, "id": 3151}, {"name": "Steel Toed Boots", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 80, "fDef": 2, "eDef": 2, "lvl": 19, "def": 4, "hpBonus": 10, "id": 3152}, {"name": "Steel Sabre", "tier": "Unique", "type": "dagger", "poison": 150, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "42-58", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "18-22", "atkSpd": "SLOW", "lvl": 35, "sdPct": 7, "mdPct": 4, "str": 5, "fDamPct": -15, "fDefPct": -15, "id": 3146}, {"name": "Stick of Brilliance", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-18", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 26, "intReq": 10, "mr": 5, "sdPct": 10, "ms": 5, "xpb": 7, "int": 4, "id": 3154}, {"name": "Stingray", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-80", "aDam": "0-0", "tDam": "20-110", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 46, "dexReq": 27, "intReq": 27, "sdPct": 10, "ms": 5, "dex": 5, "int": 8, "tDamPct": 10, "eDamPct": -14, "eDefPct": -14, "id": 3156}, {"name": "Stone Cutter", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "7-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 11, "eSteal": 2, "eDamPct": 6, "id": 3153}, {"name": "Stellar", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "fDef": 25, "wDef": 25, "aDef": 25, "tDef": 25, "eDef": 25, "lvl": 95, "strReq": 45, "dexReq": 45, "intReq": 45, "agiReq": 45, "defReq": 45, "sdPct": 13, "mdPct": 13, "ms": 5, "spd": 10, "hpBonus": 577, "type": "necklace", "id": 3149}, {"name": "Stonehall", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 35, "strReq": 15, "str": 5, "spd": -3, "eDamPct": 8, "type": "ring", "id": 3159}, {"name": "StoneWall", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1000, "fDef": -10, "wDef": -10, "aDef": -50, "tDef": -10, "eDef": 150, "lvl": 60, "strReq": 30, "mdPct": 5, "xpb": 10, "str": 8, "def": 5, "aDamPct": -40, "id": 3155}, {"name": "Storm Brewer", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2550, "wDef": -150, "tDef": 50, "lvl": 86, "dexReq": 65, "mr": -15, "mdPct": 15, "ms": 15, "dex": 12, "sdRaw": 160, "mdRaw": 190, "wDamPct": -20, "tDamPct": 15, "id": 3160}, {"name": "Storm Surge", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "50-330", "aDam": "0-0", "tDam": "1-420", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 93, "dexReq": 35, "intReq": 35, "hprPct": -20, "ms": 10, "atkTier": -1, "hpBonus": -900, "sdRaw": 146, "wDamPct": 18, "tDamPct": 18, "aDefPct": -30, "eDefPct": -71, "id": 3157}, {"name": "Storm Caller", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "70-115", "fDam": "0-0", "wDam": "0-0", "aDam": "55-70", "tDam": "50-85", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 30, "agiReq": 30, "sdPct": 12, "def": -8, "spd": 8, "aDamPct": 12, "tDamPct": 12, "wDefPct": -24, "eDefPct": -24, "id": 3158}, {"name": "Stormdrain", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "220-225", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 88, "intReq": 55, "mr": 20, "sdPct": -15, "mdPct": -30, "int": 15, "wDamPct": 55, "wDefPct": -20, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3161}, {"name": "Stranglevine", "tier": "Unique", "type": "bow", "poison": 810, "thorns": 7, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-125", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "75-120", "atkSpd": "SLOW", "lvl": 63, "hprPct": -20, "ls": 175, "fDefPct": -10, "id": 3163}, {"name": "Stratosphere", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": -60, "wDef": 120, "aDef": -60, "tDef": 120, "eDef": -120, "lvl": 98, "dexReq": 65, "intReq": 65, "mr": 10, "sdPct": 25, "wDamPct": 10, "tDamPct": 10, "fDefPct": -15, "aDefPct": -15, "eDefPct": -15, "jh": 3, "id": 3591}, {"name": "Stormflash", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "1-23", "aDam": "0-0", "tDam": "1-23", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 39, "dexReq": 15, "intReq": 15, "hprPct": -9, "sdPct": 8, "xpb": 8, "dex": 5, "int": 5, "eDefPct": -10, "id": 3165}, {"name": "Straw Helmet", "tier": "Unique", "type": "helmet", "thorns": 6, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 95, "fDef": -5, "wDef": -5, "lvl": 20, "xpb": 5, "spd": 6, "id": 3167}, {"name": "Stormstrike", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 3, "agi": 4, "id": 3162}, {"name": "Streak", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 175, "tDef": 10, "eDef": -10, "lvl": 30, "dexReq": 10, "ref": 3, "dex": 5, "spd": 10, "hpBonus": -30, "tDamPct": 10, "eDefPct": -15, "id": 3166}, {"name": "Stress", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "22-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 14, "xpb": 30, "lb": 10, "spd": 5, "hpBonus": -18, "spRegen": -10, "hprRaw": -7, "id": 3169}, {"name": "Striker", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-10", "fDam": "0-0", "wDam": "0-0", "aDam": "4-7", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 9, "sdPct": 5, "agi": 3, "def": -2, "hpBonus": -9, "mdRaw": 8, "id": 3168}, {"name": "Stringendo", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "16-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 10, "agi": 4, "spd": 12, "id": 3175}, {"name": "Struggle", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2500, "tDef": 180, "eDef": -150, "lvl": 90, "dexReq": 50, "mdPct": 20, "ms": 10, "dex": 10, "expd": 30, "atkTier": -6, "mdRaw": 775, "wDamPct": -23, "tDamPct": 31, "id": 3170}, {"name": "Sturdy", "tier": "Unique", "type": "boots", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 1800, "fDef": 40, "eDef": 40, "lvl": 79, "strReq": 40, "defReq": 40, "sdPct": -8, "xpb": 9, "def": 7, "hpBonus": 600, "eDefPct": 13, "id": 3171}, {"name": "Strobelight", "tier": "Fabled", "majorIds": ["TAUNT"], "category": "accessory", "drop": "lootchest", "hp": 350, "lvl": 54, "classReq": "Warrior", "defReq": 30, "ref": 15, "def": 7, "spd": -7, "type": "necklace", "id": 3172}, {"name": "Sublime", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1350, "fDef": 60, "aDef": 60, "lvl": 64, "agiReq": 50, "defReq": 50, "sdPct": -15, "mdPct": -15, "agi": 7, "def": 7, "spd": 8, "hpBonus": 200, "fDefPct": 10, "aDefPct": 10, "id": 3178}, {"name": "Stylist's Scissors", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "28-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "18-54", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 36, "dexReq": 15, "xpb": 12, "lb": 10, "atkTier": 1, "eSteal": 5, "eDamPct": -5, "id": 3173}, {"name": "Sublimator", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1250, "fDef": 70, "wDef": -90, "eDef": 70, "lvl": 66, "strReq": 30, "defReq": 30, "mdPct": 14, "def": 5, "spd": -8, "fDamPct": 16, "eDamPct": 16, "wDefPct": -18, "id": 3174}, {"name": "Subsumere", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "60-80", "fDam": "0-0", "wDam": "30-50", "aDam": "0-0", "tDam": "20-55", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 76, "dexReq": 15, "intReq": 20, "sdPct": -10, "ls": 160, "ms": 10, "id": 3177}, {"name": "Stratus", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -350, "lvl": 93, "intReq": 60, "agiReq": 30, "ms": 5, "agi": 8, "spd": 11, "type": "ring", "id": 3164}, {"name": "Succulent Sneakers", "tier": "Unique", "type": "boots", "thorns": 14, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 835, "wDef": 30, "eDef": 40, "lvl": 60, "strReq": 30, "intReq": 20, "hprPct": 20, "sdPct": -8, "wDefPct": 9, "aDefPct": -11, "eDefPct": 9, "id": 3176}, {"name": "Jewelled Sinew", "displayName": "Subtle Calamity", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-135", "tDam": "0-0", "eDam": "80-135", "atkSpd": "VERY_FAST", "lvl": 90, "strReq": 35, "agiReq": 30, "mr": -5, "sdPct": 15, "ms": 5, "int": 10, "agi": 10, "fDefPct": -12, "tDefPct": -12, "id": 3179}, {"name": "Suchimu", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "fDef": 40, "wDef": 40, "lvl": 53, "intReq": 30, "defReq": 20, "hprPct": 15, "mr": 5, "sdPct": -8, "mdPct": -8, "int": 4, "def": 4, "hprRaw": 35, "tDamPct": -30, "id": 3180}, {"name": "Sulphurous Sling", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-30", "fDam": "6-15", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 45, "dexReq": 25, "defReq": 10, "sdPct": 14, "mdPct": -20, "expd": 12, "tDamPct": 14, "wDefPct": -12, "id": 3181}, {"name": "Sunray", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2900, "fDef": 90, "tDef": 90, "lvl": 96, "dexReq": 20, "defReq": 20, "hprPct": 18, "ms": 5, "ref": 15, "dex": 5, "def": 5, "sdRaw": 160, "wDefPct": -10, "aDefPct": -10, "id": 3183}, {"name": "Sunbreeze", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-10", "fDam": "8-12", "wDam": "0-0", "aDam": "8-12", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 15, "agi": 5, "def": 5, "spd": 5, "hpBonus": 270, "wDefPct": -6, "id": 3184}, {"name": "Sunblock", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 124, "fDef": 10, "wDef": -7, "lvl": 24, "defReq": 5, "hprPct": 14, "ref": 6, "fDefPct": 5, "id": 3182}, {"name": "Sunsetter", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "26-37", "fDam": "0-0", "wDam": "24-29", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 15, "agiReq": 5, "mr": 5, "xpb": 8, "ref": 5, "def": -3, "fDamPct": -15, "aDamPct": 10, "fDefPct": 5, "tDefPct": -5, "id": 3185}, {"name": "Sunrise", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "30-35", "wDam": "0-0", "aDam": "45-75", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 63, "agiReq": 30, "defReq": 30, "hprPct": 18, "mr": 5, "xpb": 10, "lb": 10, "ref": 20, "id": 3186}, {"name": "Sunshade", "tier": "Rare", "type": "helmet", "thorns": -10, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 345, "fDef": 15, "wDef": -15, "lvl": 37, "ref": 15, "fDamPct": -5, "fDefPct": 8, "tDefPct": 8, "id": 3187}, {"name": "Sunshower", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2125, "fDef": 60, "wDef": 60, "aDef": 90, "eDef": -125, "lvl": 83, "intReq": 40, "defReq": 40, "mr": 5, "xpb": 13, "agi": 8, "hprRaw": 100, "fDamPct": 13, "wDamPct": 13, "fDefPct": 13, "wDefPct": 13, "eDefPct": -20, "id": 3189}, {"name": "Sunshine Shortsword", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "13-21", "fDam": "13-21", "wDam": "0-0", "aDam": "0-0", "tDam": "13-21", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 46, "dexReq": 20, "defReq": 20, "dex": 5, "def": 5, "hpBonus": 125, "id": 3188}, {"name": "Sunstruck", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "200-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "defReq": 30, "spRegen": 20, "hprRaw": 80, "sdRaw": -63, "mdRaw": -109, "fDamPct": 15, "id": 3191}, {"name": "Supernova", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "11-30", "wDam": "11-30", "aDam": "11-30", "tDam": "11-30", "eDam": "11-30", "atkSpd": "SUPER_FAST", "lvl": 92, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "expd": 19, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12, "fDefPct": -12, "wDefPct": -12, "aDefPct": -12, "tDefPct": -12, "eDefPct": -12, "id": 3190}, {"name": "Suppression", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -300, "lvl": 76, "hprPct": 4, "mr": 10, "ls": -145, "ms": -20, "type": "ring", "id": 3192}, {"name": "Svalinn", "tier": "Rare", "type": "helmet", "thorns": 8, "category": "armor", "drop": "NORMAL", "hp": 1450, "fDef": 150, "wDef": 50, "lvl": 66, "intReq": 15, "defReq": 30, "hprPct": 30, "mr": 5, "ref": 15, "agi": -5, "def": 12, "spd": -28, "eDefPct": -25, "id": 3193}, {"name": "Swift", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 4, "xpb": 3, "spd": 5, "mdRaw": 1, "type": "necklace", "id": 3194}, {"name": "Swamp Clay", "tier": "Unique", "type": "helmet", "poison": 350, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1500, "wDef": 65, "aDef": -70, "tDef": -70, "eDef": 65, "lvl": 78, "strReq": 35, "intReq": 30, "mr": 5, "sdPct": 6, "mdPct": 6, "spd": -7, "tDamPct": -12, "id": 3210}, {"name": "Switch Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 5, "sdPct": 5, "dex": 3, "id": 3197}, {"name": "Sweden", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "21-28", "fDam": "0-0", "wDam": "0-0", "aDam": "21-28", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 28, "agiReq": 14, "ref": 14, "agi": 7, "spd": 14, "jh": 1, "id": 3195}, {"name": "Sylar", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "27-63", "fDam": "0-0", "wDam": "0-0", "aDam": "9-27", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 33, "agiReq": 15, "agi": 5, "spd": 11, "sdRaw": 25, "aDefPct": 10, "id": 3199}, {"name": "Synthesizer", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "99-241", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "99-202", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 89, "dexReq": 30, "intReq": 35, "xpb": 12, "dex": 8, "sdRaw": 100, "wDamPct": 25, "eDamPct": -23, "eDefPct": -16, "id": 3202}, {"name": "Synergy", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1000, "lvl": 59, "xpb": 6, "lb": 6, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "id": 3201}, {"name": "Syringe", "tier": "Unique", "type": "spear", "poison": -245, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "25-40", "fDam": "0-0", "wDam": "20-30", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "intReq": 15, "defReq": 15, "ls": 41, "hpBonus": 190, "hprRaw": 19, "fDamPct": 13, "id": 3200}, {"name": "Agile Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 15, "lvl": 62, "agi": 3, "spd": 9, "aDamPct": 6, "type": "ring", "fixID": true, "id": 3203}, {"name": "Dark Band", "tier": "Rare", "quest": "Lost in the Jungle", "thorns": 8, "category": "accessory", "drop": "never", "tDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "dexReq": 10, "tDamPct": 6, "eDamPct": 6, "aDefPct": -8, "type": "bracelet", "fixID": true, "id": 3205}, {"name": "Barbaric Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "aDef": 25, "eDef": 25, "lvl": 63, "strReq": 10, "agiReq": 10, "mdPct": 8, "aDamPct": 6, "eDamPct": 6, "fDefPct": -8, "type": "necklace", "fixID": true, "id": 3204}, {"name": "Chaotic Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 25, "tDef": 25, "lvl": 63, "dexReq": 10, "intReq": 10, "sdRaw": 30, "wDamPct": 6, "tDamPct": 6, "eDefPct": -8, "type": "necklace", "fixID": true, "id": 3206}, {"name": "Droughted Amulet", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "aDef": 25, "lvl": 63, "agiReq": 10, "defReq": 10, "expd": 8, "fDamPct": 6, "aDamPct": 6, "wDefPct": -8, "type": "necklace", "fixID": true, "id": 3209}, {"name": "Energy Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "tDef": 15, "lvl": 62, "dex": 3, "mdRaw": 29, "tDamPct": 6, "type": "ring", "fixID": true, "id": 3208}, {"name": "Force Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "eDef": 15, "lvl": 62, "mdPct": 6, "str": 3, "eDamPct": 6, "type": "ring", "fixID": true, "id": 3212}, {"name": "Mask of Courage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3NzYyMzIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzNhYTdlYzgyNGQ4NWViOWZjNzhlZmM5NjY4OWI4YTlmZTgyODgzOGJiMTZmZWU1MmZmOWNhYWFlODNjYzNhIn19fQ==", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1400, "fDef": 100, "lvl": 57, "defReq": 30, "hprPct": 20, "lb": 10, "def": 5, "hpBonus": 500, "fDamPct": 20, "fixID": true, "id": 3214}, {"name": "Magical Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "wDef": 15, "lvl": 62, "sdPct": 6, "int": 3, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3211}, {"name": "Mask of Fear", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU3MTAxODQsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmFiZWVhYjUxYzM2NDc1ZDA2ZjY4M2M5MWVhOGIzZTM4MmE5ZTcxZTg0NzEyOWNlY2RlODcxMWQ5N2JkYTYifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1000, "aDef": 80, "lvl": 57, "agiReq": 30, "lb": 10, "agi": 5, "spd": 15, "aDamPct": 20, "fixID": true, "id": 3215}, {"name": "Mask of Enlightement", "displayName": "Mask of Enlightenment", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU1NjgzMzAsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGI3NDgyNTdlZWU3NjhiNmQwM2I0ZWRhNTNjZmI1MmM1YWZmYmYxNmI3ZDhkOTNkNGQ2MWNlYjRjNmUyMTE0In19fQ==", "tier": "Legendary", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 750, "wDef": 60, "lvl": 57, "intReq": 30, "mr": 10, "sdPct": 10, "lb": 10, "int": 5, "wDamPct": 20, "fixID": true, "id": 3216}, {"name": "Guardian Loop", "tier": "Unique", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 15, "lvl": 62, "def": 3, "hpBonus": 230, "fDamPct": 6, "type": "ring", "fixID": true, "id": 3207}, {"name": "Synapse", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "aDef": -60, "eDef": -60, "lvl": 93, "strReq": 35, "agiReq": 35, "hprPct": -15, "ms": 5, "sdRaw": 120, "mdRaw": -120, "type": "bracelet", "id": 3198}, {"name": "Mask of Rage", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2MTgwMzUsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmFjYzg3MmEwZGQ3MjI3NDg5ZmRlZGJlYmMyZWE2MjE1OGVlZjdlNWRkOTZjYzg3Njk5OTc3YWI5MjBmYSJ9fX0=", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1050, "eDef": 40, "lvl": 57, "strReq": 30, "mdPct": 25, "lb": 10, "str": 5, "eDamPct": 20, "fixID": true, "id": 3219}, {"name": "Scalding Band", "tier": "Rare", "quest": "Lost in the Jungle", "category": "accessory", "drop": "never", "fDef": 25, "wDef": 25, "lvl": 63, "intReq": 10, "defReq": 10, "sdPct": 8, "fDamPct": 6, "wDamPct": 6, "tDefPct": -8, "type": "bracelet", "fixID": true, "id": 3217}, {"name": "Tachypsychia", "tier": "Fabled", "type": "relik", "majorIds": ["FURIOUS_EFFIGY"], "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "85-125", "eDam": "85-125", "atkSpd": "VERY_FAST", "lvl": 77, "strReq": 50, "dexReq": 50, "sdPct": 40, "spd": 20, "hprRaw": -245, "spRaw1": 5, "spRaw4": 5, "id": 3550}, {"name": "Tainted Step", "tier": "Unique", "type": "boots", "poison": 140, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 550, "fDef": -25, "wDef": -25, "aDef": -25, "lvl": 51, "strReq": 30, "mdPct": 12, "ls": 42, "spRegen": -5, "hprRaw": -15, "id": 3220}, {"name": "Tactical Kukri", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "56-72", "fDam": "34-40", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 61, "defReq": 35, "lb": 10, "hpBonus": 680, "eSteal": 5, "id": 3218}, {"name": "Mask of Hate", "tier": "Legendary", "skin": "eyJ0aW1lc3RhbXAiOjE0NjUwNzU2NzA3NjIsInByb2ZpbGVJZCI6IjY2ODYxMDY1YzMzYjQ4MGNhOWQ0MWJiODlkYjcxMDhjIiwicHJvZmlsZU5hbWUiOiJEYXJrbmVzc2ZhbGwiLCJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWMzMmRlZDVkNzY1N2RmMzExMTRkZmRkMzE5MjE5MzM3ZTU3NjQ2NWI3Nzk3ZGMwNmI1NjMyY2ViZDRjMzcifX19", "type": "helmet", "quest": "The Passage", "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 1100, "tDef": 20, "lvl": 57, "dexReq": 30, "lb": 10, "dex": 5, "mdRaw": 110, "tDamPct": 20, "fixID": true, "id": 3213}, {"name": "Tailwind", "tier": "Unique", "type": "leggings", "sprint": 16, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -150, "aDef": 150, "lvl": 91, "agiReq": 45, "sdPct": 19, "mdPct": 12, "ms": 10, "agi": 8, "spd": 18, "aDamPct": 20, "eDamPct": -15, "aDefPct": 8, "eDefPct": -25, "id": 3221}, {"name": "Takeover", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1700, "fDef": 50, "wDef": -50, "tDef": 100, "eDef": -100, "lvl": 77, "dexReq": 45, "ls": 115, "dex": 5, "int": -4, "def": 4, "sdRaw": 75, "fDamPct": 9, "wDamPct": -12, "tDamPct": 6, "id": 3222}, {"name": "Talisman Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 70, "sdPct": 5, "xpb": 5, "hpBonus": 340, "type": "necklace", "id": 3224}, {"name": "Takan's Treachery", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -45, "lvl": 30, "ls": 8, "dex": 4, "eSteal": 3, "type": "bracelet", "id": 3223}, {"name": "Talcum", "tier": "Unique", "type": "helmet", "poison": 280, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1325, "aDef": -80, "eDef": 40, "lvl": 72, "strReq": 40, "mdPct": 8, "lb": 11, "str": 8, "eDamPct": 14, "wDefPct": -13, "aDefPct": -10, "id": 3227}, {"name": "Talaria", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 770, "fDef": -40, "lvl": 59, "agiReq": 70, "mdPct": -20, "lb": 20, "agi": 9, "spd": 23, "id": 3225}, {"name": "Tarnhelm", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 240, "wDef": -20, "eDef": 20, "lvl": 33, "mdPct": 10, "str": 9, "id": 3230}, {"name": "Tarnish", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 90, "wDef": 5, "aDef": -6, "lvl": 21, "intReq": 5, "ms": 5, "xpb": 8, "ref": -4, "wDamPct": 9, "aDefPct": -7, "id": 3226}, {"name": "Tarnkappe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "lvl": 59, "dexReq": 20, "agiReq": 40, "dex": 8, "agi": 10, "def": -15, "spd": 12, "mdRaw": 100, "aDamPct": 15, "tDamPct": 15, "id": 3229}, {"name": "Tarod's Search", "tier": "Rare", "category": "accessory", "drop": "lootchest", "wDef": 20, "aDef": 10, "lvl": 47, "intReq": 5, "agiReq": 5, "ref": 7, "spd": 7, "hpBonus": -40, "wDefPct": 6, "type": "bracelet", "id": 3228}, {"name": "Tashkil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "80-105", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 86, "defReq": 50, "hprPct": 15, "sdPct": -7, "mdPct": 20, "ms": -5, "def": 8, "spd": -6, "hprRaw": 150, "fDefPct": 20, "id": 3232}, {"name": "Taurus", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 4000, "fDef": -80, "eDef": 200, "lvl": 96, "strReq": 90, "mdPct": 50, "str": 15, "expd": 30, "atkTier": -20, "mdRaw": 1500, "id": 3234}, {"name": "Tarok's Parka", "displayName": "Tarod's Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 35, "fDef": -2, "wDef": 6, "lvl": 10, "mr": 5, "int": 4, "sdRaw": 5, "id": 3233}, {"name": "Tear of Pirate Cove", "tier": "Rare", "quest": "Redbeard^s Booty", "category": "accessory", "drop": "never", "wDef": 20, "lvl": 61, "intReq": 40, "mr": 5, "sdPct": 4, "ms": -10, "sdRaw": 20, "type": "bracelet", "id": 3237}, {"name": "Teal Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1300, "wDef": 50, "eDef": 30, "lvl": 71, "intReq": 25, "mr": 5, "xpb": 6, "str": 5, "eDamPct": 12, "wDefPct": 7, "id": 3231}, {"name": "Technicolor Phase", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "7-9", "fDam": "7-9", "wDam": "7-9", "aDam": "7-9", "tDam": "7-9", "eDam": "7-9", "atkSpd": "NORMAL", "lvl": 21, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 10, "str": 5, "dex": 5, "int": 5, "agi": 5, "def": 5, "spRegen": 10, "id": 3239}, {"name": "Tears", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 51, "intReq": 40, "sdPct": 3, "ls": -21, "ms": 5, "int": 3, "type": "ring", "id": 3236}, {"name": "Tectonics", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1130, "eDef": 40, "lvl": 65, "strReq": 50, "mdPct": 8, "str": 5, "spd": -12, "eDamPct": 10, "eDefPct": 12, "id": 3235}, {"name": "Tempest", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "5-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 64, "dexReq": 20, "agiReq": 20, "dex": 7, "agi": 7, "spd": 10, "mdRaw": 33, "fDamPct": -15, "fDefPct": -15, "id": 3238}, {"name": "Templar", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 15, "wDef": 15, "aDef": 15, "tDef": 15, "eDef": 15, "lvl": 50, "agiReq": 25, "defReq": 35, "sdPct": -15, "xpb": 4, "lb": 6, "spd": -15, "spRegen": 5, "eSteal": -5, "wDamPct": -10, "id": 3244}, {"name": "Tempered Boots", "tier": "Unique", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 1300, "lvl": 65, "defReq": 30, "def": 8, "fDamPct": 6, "fDefPct": 4, "wDefPct": 4, "aDefPct": 4, "tDefPct": 4, "eDefPct": 4, "id": 3240}, {"name": "Tenuto", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": 350, "fDef": 30, "wDef": -50, "tDef": 30, "lvl": 79, "dexReq": 40, "defReq": 40, "sdPct": 12, "dex": 4, "def": 4, "spd": -8, "atkTier": -6, "type": "necklace", "id": 3242}, {"name": "Tephra", "tier": "Unique", "type": "helmet", "thorns": 20, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1875, "fDef": 90, "wDef": -100, "eDef": 90, "lvl": 80, "strReq": 40, "defReq": 35, "hprPct": 18, "mdPct": 10, "str": 7, "def": 7, "expd": 15, "fDamPct": 18, "eDamPct": 18, "id": 3243}, {"name": "Tepid Plate", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 85, "fDef": 6, "wDef": -3, "lvl": 20, "defReq": 5, "def": 3, "hpBonus": 15, "fDamPct": 4, "wDamPct": -6, "id": 3246}, {"name": "Terraflux", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "wDef": -80, "eDef": 80, "lvl": 78, "strReq": 50, "mr": -5, "sdPct": -10, "mdPct": 13, "ls": 75, "str": 7, "int": -5, "wDamPct": -10, "eDamPct": 10, "id": 3248}, {"name": "Tesla", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": -1100, "wDef": 180, "tDef": 120, "lvl": 97, "dexReq": 80, "ls": 280, "ms": 15, "dex": 13, "sdRaw": 185, "tDamPct": 40, "eDamPct": -30, "aDefPct": -20, "id": 3247}, {"name": "Terra's Mold", "tier": "Legendary", "type": "chestplate", "poison": 1500, "thorns": 15, "sprint": -25, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3225, "wDef": 50, "aDef": -125, "eDef": 175, "lvl": 90, "strReq": 60, "hprPct": -20, "mdPct": 23, "ms": 5, "str": 10, "eDamPct": 31, "id": 3245}, {"name": "The Chapel", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 200, "fDef": 10, "wDef": 10, "aDef": 10, "tDef": 10, "eDef": 10, "lvl": 32, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "hprPct": 10, "xpb": 10, "spRegen": 15, "id": 3252}, {"name": "The Abacus", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-45", "fDam": "0-0", "wDam": "0-0", "aDam": "41-44", "tDam": "0-0", "eDam": "42-43", "atkSpd": "SLOW", "lvl": 45, "strReq": 35, "agiReq": 25, "mdPct": 7, "str": 7, "agi": 8, "aDamPct": 8, "eDamPct": 9, "fDefPct": -11, "wDefPct": -10, "id": 3250}, {"name": "Temporal Lantern", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "101-101", "wDam": "0-0", "aDam": "95-107", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 47, "agiReq": 22, "defReq": 22, "str": -3, "dex": -3, "int": -3, "agi": 8, "def": 8, "spd": -15, "hpBonus": 285, "hprRaw": 35, "wDamPct": 20, "id": 3241}, {"name": "The Dreamer", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-90", "fDam": "0-0", "wDam": "0-0", "aDam": "10-80", "tDam": "10-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 62, "dexReq": 30, "agiReq": 30, "sdPct": 13, "dex": 14, "agi": 14, "spRegen": 15, "eDamPct": -30, "fDefPct": -30, "id": 3255}, {"name": "The Archaeologist", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "aDef": -15, "eDef": 25, "lvl": 24, "strReq": 10, "xpb": 6, "lb": 6, "str": 4, "eDamPct": 7, "aDefPct": -8, "eDefPct": 10, "id": 3251}, {"name": "The Creationist", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "17-22", "aDam": "17-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 47, "intReq": 35, "agiReq": 35, "sdPct": 19, "mdPct": -14, "str": -4, "dex": -4, "int": 8, "agi": 8, "def": -4, "id": 3249}, {"name": "The Sinner", "tier": "Rare", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 1150, "fDef": 80, "wDef": -80, "aDef": -80, "tDef": 80, "lvl": 67, "dexReq": 25, "defReq": 25, "mdPct": 12, "dex": 5, "def": 5, "spRegen": -15, "hprRaw": -45, "fDamPct": 12, "tDamPct": 12, "id": 3256}, {"name": "The Medic", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-50", "fDam": "45-55", "wDam": "35-45", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 63, "intReq": 35, "defReq": 35, "hprPct": 20, "mr": 10, "sdPct": -15, "mdPct": -15, "hprRaw": 50, "wDamPct": 10, "id": 3253}, {"name": "The Banhammer", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "28-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "14-20", "atkSpd": "SLOW", "lvl": 28, "sdPct": -10, "mdPct": 10, "expd": 10, "id": 3254}, {"name": "The Berserk", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "38-48", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "8-22", "atkSpd": "SLOW", "lvl": 19, "strReq": 10, "sdPct": -10, "mdPct": 10, "str": 7, "dex": -5, "expd": 5, "aDamPct": -10, "eDamPct": 10, "aDefPct": -10, "id": 3258}, {"name": "The Berserker's Helm", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 310, "lvl": 34, "strReq": 25, "mdPct": 21, "ls": 26, "str": 9, "int": -3, "eSteal": 3, "hprRaw": -13, "id": 3257}, {"name": "The Brain Smasher", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "20-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "7-17", "atkSpd": "VERY_SLOW", "lvl": 20, "strReq": 5, "sdPct": -6, "mdPct": 4, "str": 4, "expd": 3, "aDefPct": -5, "id": 3260}, {"name": "The Brigand's Brogues", "tier": "Rare", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 145, "lvl": 25, "dexReq": 10, "agiReq": 5, "dex": 4, "spd": 14, "eSteal": 4, "tDamPct": 10, "id": 3259}, {"name": "The Elder Wand", "tier": "Unique", "type": "wand", "thorns": 5, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "24-46", "aDam": "0-0", "tDam": "0-0", "eDam": "40-48", "atkSpd": "SLOW", "lvl": 62, "strReq": 10, "intReq": 10, "def": -10, "mdRaw": 70, "fDamPct": -10, "eDamPct": 12, "fDefPct": -10, "id": 3263}, {"name": "The End", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "235-260", "tDam": "0-0", "eDam": "260-290", "atkSpd": "SLOW", "lvl": 100, "strReq": 55, "agiReq": 55, "mdPct": 35, "ls": 450, "agi": 10, "spd": 25, "sdRaw": -210, "mdRaw": 365, "wDefPct": -45, "id": 3265}, {"name": "The Eviscerator", "tier": "Rare", "type": "spear", "poison": 350, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-128", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 65, "strReq": 20, "dexReq": 20, "ls": 150, "str": 13, "dex": 7, "spd": 10, "id": 3267}, {"name": "The Divide", "tier": "Legendary", "type": "dagger", "thorns": 10, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "1-24", "wDam": "1-24", "aDam": "1-24", "tDam": "1-24", "eDam": "1-24", "atkSpd": "NORMAL", "lvl": 26, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "sdPct": 10, "ms": 5, "expd": 7, "spd": 8, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "id": 3262}, {"name": "The Ephemeral", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2125, "wDef": 100, "aDef": 100, "tDef": -130, "lvl": 87, "intReq": 45, "agiReq": 45, "mr": 10, "sdPct": 14, "mdPct": -15, "int": 7, "agi": 7, "aDamPct": 12, "tDefPct": -10, "id": 3264}, {"name": "The Euphoric Fedora", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 69, "lvl": 14, "ls": 5, "dex": 3, "spd": -4, "eSteal": 2, "id": 3266}, {"name": "The Exile", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "40-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "defReq": 50, "hprPct": 30, "mdPct": -5, "ls": 190, "str": -5, "def": 13, "spd": -5, "hpBonus": 1000, "fDefPct": 45, "id": 3269}, {"name": "The Forgery", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2350, "fDef": 100, "aDef": 30, "tDef": 30, "lvl": 74, "defReq": 30, "hprPct": 36, "lb": 19, "def": 9, "spd": -8, "eSteal": 5, "fDamPct": 11, "fDefPct": 35, "wDefPct": -20, "aDefPct": -5, "tDefPct": -5, "eDefPct": -20, "id": 3268}, {"name": "The Gambler", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -325, "lvl": 81, "ls": 80, "ms": 5, "lb": 7, "hpBonus": 325, "eSteal": 4, "fDefPct": -20, "wDefPct": -20, "aDefPct": -20, "tDefPct": -20, "eDefPct": -20, "type": "ring", "id": 3270}, {"name": "The Golem", "tier": "Rare", "type": "leggings", "thorns": 50, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 4300, "fDef": 200, "wDef": -150, "aDef": 150, "tDef": 100, "eDef": 100, "lvl": 97, "defReq": 100, "ls": 300, "ref": 30, "agi": 10, "def": 15, "spd": -25, "hprRaw": 200, "wDamPct": -20, "fDefPct": 30, "id": 3275}, {"name": "The King's Robe", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 11, "lvl": 3, "xpb": 8, "lb": 4, "id": 3274}, {"name": "The Jingling Jester", "tier": "Fabled", "type": "chestplate", "majorIds": ["GREED"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2325, "fDef": 1, "wDef": 1, "aDef": 1, "tDef": 1, "eDef": 1, "lvl": 69, "ls": 150, "xpb": 25, "lb": 25, "hprRaw": -101, "spPct2": -31, "spPct4": -10, "jh": 2, "id": 3621}, {"name": "The Head Ripper", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-15", "fDam": "0-0", "wDam": "0-0", "aDam": "15-25", "tDam": "0-0", "eDam": "10-15", "atkSpd": "SLOW", "lvl": 30, "strReq": 5, "agiReq": 5, "sdPct": 5, "mdPct": 5, "agi": 7, "spd": 5, "id": 3271}, {"name": "The Knight's Chestplate", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 440, "tDef": 15, "eDef": -20, "lvl": 43, "sdPct": 5, "xpb": 8, "str": 7, "dex": 7, "tDamPct": 15, "eDamPct": -30, "tDefPct": 10, "eDefPct": -10, "id": 3272}, {"name": "The Leech Spear", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "7-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 4, "ls": 2, "id": 3278}, {"name": "The Levee", "tier": "Legendary", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 800, "fDef": 40, "wDef": 40, "lvl": 46, "intReq": 15, "defReq": 30, "sdPct": -10, "mdPct": -15, "def": 9, "spd": -15, "fDamPct": 15, "wDamPct": 15, "fDefPct": 20, "wDefPct": 20, "id": 3276}, {"name": "The Master's Gi", "tier": "Rare", "type": "chestplate", "quest": "Enter the Dojo", "category": "armor", "slots": 2, "drop": "never", "hp": 2650, "lvl": 89, "hprPct": 20, "mr": 5, "xpb": 15, "spd": 12, "fDamPct": 26, "eDamPct": 26, "id": 3277}, {"name": "The Mark", "tier": "Unique", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 800, "wDef": -30, "lvl": 56, "dexReq": 35, "defReq": 35, "sdPct": 20, "lb": 10, "int": -5, "spRegen": -10, "wDamPct": -10, "fDefPct": 15, "tDefPct": 15, "id": 3273}, {"name": "The Meddler", "tier": "Rare", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 19, "intReq": 8, "ls": 4, "ref": 6, "hprRaw": -2, "sdRaw": 4, "mdRaw": -4, "type": "bracelet", "id": 3280}, {"name": "The Nautilus", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "52-70", "fDam": "0-0", "wDam": "28-36", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 48, "intReq": 25, "mr": 5, "lb": 10, "ref": 5, "spd": 5, "fDefPct": 10, "wDefPct": 5, "tDefPct": -10, "id": 3281}, {"name": "The Mind", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-24", "fDam": "0-0", "wDam": "16-26", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "intReq": 20, "sdPct": 16, "mdPct": -10, "xpb": 6, "int": 7, "id": 3279}, {"name": "The Old King's Crown", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 56, "fDef": 5, "wDef": -2, "lvl": 14, "def": 4, "fDefPct": 5, "id": 3284}, {"name": "The Out", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "12-16", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 5, "xpb": 6, "spd": 5, "hpBonus": 6, "id": 3285}, {"name": "The Oblivious", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 1450, "lvl": 62, "sdPct": 7, "mdPct": 11, "xpb": 25, "hpBonus": 550, "hprRaw": 35, "fDamPct": -40, "wDamPct": -40, "aDamPct": -40, "tDamPct": -40, "eDamPct": -40, "id": 3282}, {"name": "The Oppressors", "tier": "Rare", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2000, "lvl": 75, "defReq": 75, "dex": -3, "int": -3, "agi": -3, "def": 17, "spd": -15, "atkTier": -1, "hpBonus": 900, "id": 3283}, {"name": "The Parasite", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-175", "eDam": "70-125", "atkSpd": "SLOW", "lvl": 98, "strReq": 45, "dexReq": 45, "mr": -15, "ls": 430, "ms": 10, "expd": 25, "hpBonus": -1350, "hprRaw": -200, "tDamPct": 17, "eDamPct": 17, "fDefPct": -28, "id": 3287}, {"name": "The Rainmaker", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-152", "aDam": "0-0", "tDam": "0-152", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "dexReq": 40, "intReq": 40, "ls": -365, "ms": -10, "atkTier": 1, "sdRaw": 155, "mdRaw": 95, "tDamPct": 20, "eDamPct": 20, "id": 3290}, {"name": "The Queen's Tiara", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 19, "lvl": 5, "xpb": 4, "lb": 8, "id": 3286}, {"name": "The Prisoner", "tier": "Rare", "type": "leggings", "thorns": 10, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2100, "lvl": 79, "strReq": 55, "agi": -10, "def": 17, "spd": -40, "hpBonus": 1615, "id": 3288}, {"name": "The Rupturer", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": -100, "eDef": 80, "lvl": 81, "strReq": 60, "mdPct": 10, "str": 15, "expd": 25, "eDamPct": 25, "aDefPct": -10, "id": 3315}, {"name": "The Smoking Barrel", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "250-400", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 56, "defReq": 20, "str": 5, "dex": 5, "expd": 15, "spd": -10, "eDamPct": 10, "id": 3292}, {"name": "The Scarecrow's Arm", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "3-7", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 3, "mdPct": 3, "id": 3289}, {"name": "The Skin Tearer", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-14", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 13, "mdPct": 3, "str": 4, "dex": 4, "id": 3291}, {"name": "The Stokers", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3100, "lvl": 95, "defReq": 75, "mr": 5, "mdPct": -25, "def": 15, "hprRaw": 135, "mdRaw": 285, "fDamPct": 10, "fDefPct": 15, "id": 3296}, {"name": "The Specialist", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 97, "xpb": 20, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "fDamPct": 1176, "wDamPct": 1334, "aDamPct": 1176, "tDamPct": 889, "eDamPct": 1000, "id": 3293}, {"name": "The Thief", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 180, "lvl": 34, "mdPct": -4, "ls": 20, "ms": 5, "dex": 1, "spd": 4, "eSteal": 5, "id": 3295}, {"name": "The Vampire Blade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-28", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-40", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 44, "ls": 47, "spRegen": 5, "id": 3298}, {"name": "The Traveler", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "59-87", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 49, "mdPct": 10, "agi": 8, "spd": 23, "eSteal": 2, "aDamPct": 10, "id": 3294}, {"name": "The Wildwing", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-23", "fDam": "0-0", "wDam": "0-0", "aDam": "15-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 24, "agiReq": 5, "agi": 4, "spd": 5, "aDamPct": 5, "fDefPct": -10, "id": 3301}, {"name": "Thermosphere", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2150, "fDef": 70, "aDef": 70, "tDef": 100, "eDef": -110, "lvl": 81, "dexReq": 45, "ref": 19, "dex": 7, "agi": 5, "def": 5, "fDamPct": 9, "aDamPct": 9, "tDamPct": 15, "fDefPct": 15, "aDefPct": 15, "tDefPct": 9, "id": 3303}, {"name": "The Visionary's Vice", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "83-137", "aDam": "0-0", "tDam": "37-203", "eDam": "0-0", "atkSpd": "FAST", "lvl": 82, "dexReq": 40, "intReq": 40, "ms": 10, "str": -15, "def": -15, "sdRaw": 175, "wDamPct": 12, "tDamPct": 12, "fDefPct": -35, "eDefPct": -35, "id": 3300}, {"name": "Thief's Dagger", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-12", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 8, "eSteal": 5, "id": 3307}, {"name": "Therck's Irritation", "tier": "Rare", "thorns": 3, "category": "accessory", "drop": "lootchest", "hp": -5, "lvl": 9, "mdRaw": 7, "fDamPct": 5, "type": "bracelet", "id": 3299}, {"name": "The Wool Trimmer", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-15", "fDam": "0-0", "wDam": "6-11", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 20, "xpb": 4, "lb": 8, "id": 3297}, {"name": "Thinking Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 8, "lvl": 4, "mr": 5, "id": 3304}, {"name": "Thrice", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "33-113", "fDam": "0-0", "wDam": "33-113", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 87, "intReq": 55, "mr": 5, "sdPct": 10, "int": 12, "sdRaw": 87, "fDamPct": -17, "wDamPct": 17, "wDefPct": 17, "id": 3308}, {"name": "Threshold", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "58-74", "aDam": "0-0", "tDam": "55-77", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 47, "dexReq": 20, "intReq": 20, "mdPct": -55, "ms": 5, "hpBonus": -120, "sdRaw": 60, "mdRaw": 105, "id": 3306}, {"name": "Thousand Waves", "tier": "Rare", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "966-1143", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_SLOW", "lvl": 70, "intReq": 45, "hprPct": -45, "int": 15, "def": -8, "fDamPct": -30, "wDamPct": 20, "tDefPct": -25, "spPct3": -24, "id": 3309}, {"name": "Third Eye", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 2600, "lvl": 88, "intReq": 80, "mr": 15, "int": 15, "spRegen": 15, "fDefPct": 15, "wDefPct": 20, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3302}, {"name": "Throatcut", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "77-299", "fDam": "77-299", "wDam": "0-0", "aDam": "77-163", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 76, "agiReq": 40, "defReq": 40, "mdPct": 27, "ls": 145, "xpb": 10, "lb": 10, "dex": -10, "int": -10, "agi": 13, "def": 13, "expd": 10, "spd": -10, "id": 3305}, {"name": "Thrunda Ripsaw", "tier": "Legendary", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "100-385", "eDam": "0-0", "atkSpd": "FAST", "lvl": 93, "dexReq": 80, "hprPct": -33, "mdPct": 25, "ls": 335, "sdRaw": 155, "tDamPct": 15, "wDefPct": -20, "eDefPct": -30, "id": 3312}, {"name": "Thunder Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-100", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "35-100", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 50, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 85, "tDamPct": 20, "tDefPct": 10, "id": 3310}, {"name": "Thunder Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "20-90", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-90", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 65, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 70, "tDamPct": 20, "tDefPct": 10, "id": 3311}, {"name": "Thunder Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "10-55", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "10-55", "eDam": "0-0", "atkSpd": "FAST", "lvl": 55, "dexReq": 20, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 39, "tDamPct": 20, "tDefPct": 10, "id": 3316}, {"name": "Thundering Wind", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-85", "fDam": "0-0", "wDam": "0-0", "aDam": "30-160", "tDam": "30-160", "eDam": "0-0", "atkSpd": "FAST", "lvl": 91, "dexReq": 40, "agiReq": 40, "sdPct": 15, "mdPct": 15, "dex": 7, "agi": 7, "spd": 14, "tDamPct": 15, "eDamPct": -30, "fDefPct": -30, "id": 3321}, {"name": "Thunderbolt", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "11-23", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-101", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 42, "dexReq": 20, "sdPct": 12, "mdPct": 12, "xpb": 12, "agi": 8, "spd": 12, "tDamPct": 12, "eDamPct": -144, "eDefPct": -36, "id": 3314}, {"name": "Thunderbird", "tier": "Unique", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "80-125", "tDam": "90-170", "eDam": "0-0", "atkSpd": "FAST", "lvl": 96, "dexReq": 40, "agiReq": 30, "sdPct": 14, "ms": 5, "dex": 9, "agi": 7, "spd": 15, "atkTier": 1, "fDefPct": -20, "id": 3318}, {"name": "Tidebinder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "235-315", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "intReq": 65, "mr": 15, "mdPct": -25, "ref": 30, "int": 13, "fDefPct": 50, "wDefPct": 75, "tDefPct": -25, "id": 3325}, {"name": "Thunderlock", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "55-85", "fDam": "0-0", "wDam": "0-0", "aDam": "40-85", "tDam": "20-110", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 86, "dexReq": 40, "agiReq": 35, "sdPct": 9, "ref": 10, "dex": 4, "mdRaw": 110, "aDefPct": 10, "id": 3317}, {"name": "Thunderstruck", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-27", "fDam": "0-0", "wDam": "0-0", "aDam": "15-27", "tDam": "15-27", "eDam": "0-0", "atkSpd": "FAST", "lvl": 53, "dexReq": 15, "agiReq": 15, "dex": 5, "agi": 5, "spd": 5, "fDamPct": -20, "aDamPct": 10, "tDamPct": 10, "eDamPct": -20, "id": 3322}, {"name": "Timbre", "tier": "Unique", "type": "wand", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "7-7", "wDam": "7-7", "aDam": "7-7", "tDam": "7-7", "eDam": "7-7", "atkSpd": "SLOW", "lvl": 27, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 7, "lb": 7, "id": 3326}, {"name": "Time Rift", "tier": "Fabled", "type": "chestplate", "majorIds": ["SORCERY"], "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "wDef": -250, "lvl": 95, "intReq": 120, "mr": -15, "sdPct": 46, "ms": -20, "ref": 30, "atkTier": -1, "id": 3323}, {"name": "Timthriall", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "152-153", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "152-153", "atkSpd": "NORMAL", "lvl": 98, "strReq": 50, "mr": 10, "sdPct": 20, "mdPct": 20, "str": 15, "eDamPct": 10, "id": 3328}, {"name": "Tidebreaker", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "80-120", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "110-115", "atkSpd": "SLOW", "lvl": 55, "intReq": 30, "sdPct": 16, "mdPct": 8, "expd": 10, "wDamPct": 14, "tDefPct": -50, "id": 3324}, {"name": "Tiny", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 1, "lvl": 7, "sdPct": 2, "agi": 1, "spd": 2, "type": "necklace", "id": 3330}, {"name": "Tinderbox", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3200, "fDef": 110, "wDef": -110, "lvl": 93, "agiReq": 40, "defReq": 40, "ms": 5, "int": -30, "agi": 8, "expd": 25, "spd": 10, "fDamPct": 10, "wDamPct": -15, "spPct1": -10, "spPct3": -7, "spPct4": -10, "id": 3327}, {"name": "Tisaun's Honour", "tier": "Rare", "thorns": 8, "category": "accessory", "drop": "lootchest", "fDef": 20, "eDef": 15, "lvl": 88, "strReq": 35, "defReq": 35, "mdPct": 6, "ref": 8, "def": 7, "type": "ring", "id": 3329}, {"name": "Thundersnow", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 900, "wDef": 50, "tDef": 50, "eDef": -100, "lvl": 63, "dexReq": 25, "intReq": 40, "mr": 5, "sdPct": 14, "ls": -75, "dex": 4, "int": 3, "mdRaw": -91, "wDamPct": 5, "tDamPct": 11, "id": 3320}, {"name": "Tizatuko", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 125, "aDef": 7, "eDef": -4, "lvl": 21, "lb": 13, "agi": 5, "aDamPct": 8, "eDefPct": -6, "id": 3331}, {"name": "Tidal", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 50, "tDef": -30, "eDef": -30, "lvl": 92, "intReq": 40, "ms": 5, "int": 4, "wDamPct": 7, "eDamPct": -5, "type": "bracelet", "id": 3319}, {"name": "Tisaun's Proof", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-50", "fDam": "55-70", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-70", "atkSpd": "FAST", "lvl": 88, "strReq": 55, "defReq": 55, "sdPct": 15, "mdPct": 10, "str": 20, "dex": 20, "def": 20, "atkTier": 1, "id": 3335}, {"name": "Toes Tickler", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 20, "lvl": 8, "spd": 7, "id": 3332}, {"name": "Toaster", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "78-96", "fDam": "66-72", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 70, "defReq": 38, "sdPct": 11, "mdPct": 11, "fDefPct": 20, "id": 3333}, {"name": "Thunder Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "30-95", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 60, "dexReq": 25, "ms": 5, "xpb": 15, "lb": 15, "dex": 7, "mdRaw": 80, "tDamPct": 20, "tDefPct": 10, "id": 3313}, {"name": "Togak's Vision", "tier": "Rare", "category": "accessory", "drop": "lootchest", "fDef": -50, "aDef": 25, "eDef": 25, "lvl": 77, "strReq": 15, "agiReq": 15, "ref": 6, "str": 4, "spRegen": 4, "fDamPct": -10, "fDefPct": -10, "aDefPct": 5, "eDefPct": 5, "type": "bracelet", "id": 3337}, {"name": "Tormenter", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "8-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 6, "xpb": 5, "lb": 5, "id": 3336}, {"name": "Tonbo", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-60", "fDam": "0-0", "wDam": "0-0", "aDam": "35-90", "tDam": "0-0", "eDam": "35-90", "atkSpd": "NORMAL", "lvl": 58, "strReq": 15, "agiReq": 15, "sdPct": -19, "mdPct": 11, "str": 7, "agi": 7, "spd": 10, "aDamPct": 10, "aDefPct": -10, "id": 3334}, {"name": "Torrential Tide", "tier": "Legendary", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "1-85", "fDam": "0-0", "wDam": "1-255", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 85, "intReq": 55, "mdPct": -40, "int": 25, "expd": -40, "sdRaw": 300, "fDamPct": -150, "wDamPct": 25, "tDefPct": -30, "id": 3339}, {"name": "Touroto Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 2600, "fDef": 65, "wDef": 65, "aDef": 65, "tDef": 65, "eDef": 65, "lvl": 85, "mdPct": 60, "str": 7, "def": 7, "atkTier": -1, "hpBonus": 350, "id": 3341}, {"name": "Tosach", "tier": "Unique", "type": "helmet", "allowCraftsman": true, "category": "armor", "drop": "NORMAL", "hp": 2, "lvl": 1, "xpb": 2, "id": 3340}, {"name": "Toxin", "tier": "Rare", "type": "helmet", "poison": 500, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2000, "aDef": -80, "tDef": 60, "eDef": 60, "lvl": 79, "strReq": 40, "dexReq": 40, "hprPct": -10, "mdPct": 9, "hprRaw": -60, "tDamPct": 9, "eDamPct": 9, "aDefPct": -13, "id": 3367}, {"name": "Tower", "tier": "Rare", "type": "spear", "thorns": 10, "category": "weapon", "drop": "NORMAL", "nDam": "200-210", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "defReq": 45, "hprPct": 20, "def": 13, "spd": -15, "hpBonus": 1715, "fDefPct": 15, "wDefPct": 15, "aDefPct": 15, "tDefPct": 15, "eDefPct": 15, "id": 3342}, {"name": "Tourmaline Lyre", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-36", "fDam": "10-17", "wDam": "0-0", "aDam": "8-19", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 41, "agiReq": 15, "defReq": 20, "hprPct": 20, "xpb": 15, "lb": 10, "agi": 5, "def": 5, "spd": 10, "hprRaw": 20, "id": 3338}, {"name": "Toxotes", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "175-235", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 73, "strReq": 20, "intReq": 40, "mdPct": 10, "int": 7, "hpBonus": -600, "wDamPct": 10, "tDefPct": -15, "id": 3344}, {"name": "Trace", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 11, "xpb": 2, "lb": 2, "spRegen": 2, "hprRaw": 2, "sdRaw": 2, "mdRaw": 2, "type": "necklace", "id": 3343}, {"name": "Trauma", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1650, "aDef": 30, "tDef": 30, "lvl": 73, "dexReq": 45, "agiReq": 45, "dex": 5, "int": -10, "agi": 5, "mdRaw": 145, "aDamPct": 11, "tDamPct": 11, "id": 3348}, {"name": "Tracer", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "198-205", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 88, "agiReq": 55, "sdPct": -150, "mdPct": 15, "agi": 13, "spd": 15, "atkTier": 1, "hpBonus": -1500, "mdRaw": 160, "aDefPct": 10, "id": 3345}, {"name": "Travel Charm", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "xpb": 5, "hpBonus": 20, "type": "necklace", "id": 3346}, {"name": "Tremorstep", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 875, "aDef": -65, "eDef": 50, "lvl": 63, "strReq": 40, "mdPct": 12, "ls": -60, "str": 4, "agi": -3, "expd": 7, "spd": -12, "fDamPct": 5, "eDamPct": 15, "eDefPct": 11, "id": 3353}, {"name": "Tribulation", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "75-100", "wDam": "0-0", "aDam": "0-0", "tDam": "30-135", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 64, "dexReq": 30, "defReq": 30, "ls": 115, "expd": 15, "spd": -14, "spRegen": -15, "fDamPct": 12, "tDamPct": 12, "wDefPct": -20, "id": 3349}, {"name": "Tribal Flute", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-22", "fDam": "0-0", "wDam": "0-0", "aDam": "11-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "agiReq": 15, "sdPct": -15, "mdPct": 8, "str": 4, "agi": 4, "spd": 5, "eDamPct": 5, "fDefPct": -10, "id": 3347}, {"name": "Tribal Headdress", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "lvl": 35, "agiReq": 5, "sdPct": -5, "str": 5, "agi": 3, "spd": 5, "mdRaw": 46, "aDefPct": 5, "eDefPct": 5, "id": 3351}, {"name": "Trinket", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 37, "xpb": 6, "lb": 6, "eSteal": 2, "type": "bracelet", "id": 3352}, {"name": "Troms' Climbing Trousers", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 700, "fDef": -30, "aDef": 30, "lvl": 53, "agiReq": 30, "xpb": 7, "agi": 7, "def": -5, "spd": 10, "fDamPct": -10, "aDamPct": 5, "id": 3357}, {"name": "Troms' Pride", "tier": "Unique", "type": "spear", "thorns": 9, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "15-25", "aDam": "0-0", "tDam": "0-0", "eDam": "20-35", "atkSpd": "NORMAL", "lvl": 70, "ref": 9, "sdRaw": 70, "mdRaw": 90, "fDamPct": -7, "aDamPct": -7, "id": 3356}, {"name": "Triumph", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1900, "lvl": 75, "xpb": 10, "lb": 10, "str": 2, "dex": 2, "int": 2, "agi": 2, "def": 2, "spRegen": 2, "id": 3350}, {"name": "Tropics", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "323-395", "aDam": "0-0", "tDam": "0-0", "eDam": "323-395", "atkSpd": "VERY_SLOW", "lvl": 96, "strReq": 35, "intReq": 35, "sdPct": 8, "mdPct": 8, "ms": 5, "str": 7, "int": 7, "hpBonus": -1500, "fDefPct": -30, "id": 3355}, {"name": "Tsunami", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 100, "wDef": 15, "tDef": -15, "lvl": 24, "intReq": 30, "mr": 10, "wDamPct": 5, "tDamPct": -8, "tDefPct": -15, "id": 3354}, {"name": "Turbulence", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 490, "fDef": -40, "aDef": 40, "tDef": -50, "lvl": 53, "agiReq": 30, "mdPct": 13, "dex": -4, "mdRaw": 65, "aDamPct": 8, "id": 3359}, {"name": "Turnpike", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "13-15", "atkSpd": "VERY_SLOW", "lvl": 8, "lb": 8, "def": 4, "spd": -5, "mdRaw": 20, "id": 3361}, {"name": "Tundra Strike", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "140-140", "fDam": "0-0", "wDam": "325-625", "aDam": "0-0", "tDam": "0-0", "eDam": "325-625", "atkSpd": "SUPER_SLOW", "lvl": 87, "strReq": 40, "intReq": 40, "sdPct": 12, "ms": 10, "ref": 45, "str": 8, "spd": -11, "fDamPct": -20, "fDefPct": -30, "id": 3360}, {"name": "Tsunasweep", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-80", "fDam": "0-0", "wDam": "50-90", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "FAST", "lvl": 94, "dexReq": 40, "intReq": 40, "sdPct": 20, "mdPct": -16, "ms": 5, "dex": 8, "fDamPct": -20, "wDamPct": 18, "tDamPct": 18, "eDamPct": -14, "eDefPct": -20, "id": 3358}, {"name": "Turmoil", "tier": "Rare", "type": "spear", "poison": 610, "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "25-75", "eDam": "25-75", "atkSpd": "VERY_SLOW", "lvl": 54, "strReq": 30, "dexReq": 30, "sdPct": -8, "mdPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3362}, {"name": "Twilight", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1350, "aDef": 50, "tDef": 50, "lvl": 66, "dexReq": 50, "agiReq": 50, "dex": 5, "agi": 5, "sdRaw": 30, "mdRaw": 39, "aDamPct": 10, "tDamPct": 10, "aDefPct": 10, "tDefPct": 10, "id": 3370}, {"name": "Turquoise", "tier": "Unique", "type": "leggings", "thorns": 18, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3175, "wDef": 90, "eDef": 90, "lvl": 95, "strReq": 30, "intReq": 30, "sdPct": 10, "xpb": 10, "str": 5, "int": 5, "eSteal": 8, "mdRaw": 175, "aDamPct": -15, "id": 3365}, {"name": "Ultraviolet", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "6-14", "wDam": "4-16", "aDam": "2-18", "tDam": "0-20", "eDam": "8-12", "atkSpd": "FAST", "lvl": 27, "strReq": 7, "dexReq": 7, "intReq": 7, "agiReq": 7, "defReq": 7, "hprPct": -12, "spd": 7, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5, "id": 3368}, {"name": "Twin Daggers", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "16-27", "tDam": "16-27", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 49, "dexReq": 20, "agiReq": 20, "dex": 10, "spd": 12, "id": 3363}, {"name": "Twist Band", "tier": "Unique", "thorns": 6, "category": "accessory", "drop": "lootchest", "lvl": 49, "intReq": 10, "agiReq": 10, "ref": 6, "agi": 4, "sdRaw": 12, "type": "bracelet", "id": 3364}, {"name": "Undefined", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2750, "lvl": 94, "hprRaw": 135, "sdRaw": 135, "mdRaw": 175, "id": 3371}, {"name": "Umbral Mail", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2175, "fDef": -120, "wDef": 80, "tDef": 80, "lvl": 87, "dexReq": 40, "intReq": 40, "sdPct": 16, "ms": 10, "str": 7, "dex": 5, "int": 5, "fDamPct": -8, "wDamPct": 12, "tDamPct": 12, "fDefPct": -8, "wDefPct": 10, "tDefPct": 10, "id": 3366}, {"name": "Undertow", "tier": "Legendary", "type": "helmet", "category": "armor", "drop": "NORMAL", "hp": 150, "wDef": 10, "tDef": -20, "lvl": 22, "intReq": 10, "mr": 5, "sdPct": 12, "mdPct": -10, "int": 5, "spd": -8, "wDefPct": 8, "id": 3372}, {"name": "Unhalting Eagle", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "17-39", "fDam": "0-0", "wDam": "0-0", "aDam": "11-22", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 36, "strReq": 5, "agiReq": 10, "mdPct": 8, "str": 5, "spd": 15, "fDefPct": -15, "id": 3373}, {"name": "Undying", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-40", "fDam": "300-400", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "300-400", "atkSpd": "SUPER_SLOW", "lvl": 95, "strReq": 35, "defReq": 55, "hprPct": 25, "sdPct": -7, "mdPct": -7, "ls": 400, "def": 20, "spd": -15, "hpBonus": 2500, "hprRaw": 196, "wDefPct": 25, "id": 3381}, {"name": "Union", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 39, "strReq": 5, "dexReq": 5, "intReq": 5, "agiReq": 5, "defReq": 5, "xpb": 8, "str": 1, "dex": 1, "int": 1, "agi": 1, "def": 1, "type": "bracelet", "id": 3376}, {"name": "Unravel", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3000, "fDef": -110, "aDef": 70, "lvl": 92, "agiReq": 80, "mdPct": -50, "ms": 10, "ref": 18, "agi": 9, "sdRaw": 222, "aDamPct": 27, "id": 3377}, {"name": "Unholy Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "15-35", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "1-60", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 48, "dexReq": 20, "xpb": 5, "dex": 4, "agi": -3, "expd": 5, "spRegen": -10, "tDamPct": 10, "aDefPct": -25, "id": 3374}, {"name": "Unsheathed Glaive", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "75-90", "wDam": "75-90", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 84, "intReq": 30, "defReq": 30, "sdPct": -30, "mdPct": 10, "int": 8, "def": 8, "fDamPct": 15, "wDamPct": 15, "fDefPct": 10, "wDefPct": 10, "id": 3382}, {"name": "Updraft", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2825, "fDef": -70, "aDef": 80, "tDef": 120, "eDef": -110, "lvl": 96, "dexReq": 45, "ms": 5, "dex": 6, "agi": 6, "spd": 16, "aDamPct": 20, "tDamPct": 24, "fDefPct": -10, "jh": 1, "id": 3379}, {"name": "Unspeakable", "tier": "Legendary", "category": "accessory", "drop": "lootchest", "hp": -239, "lvl": 65, "strReq": 36, "dexReq": 47, "mr": -5, "ms": 10, "str": 4, "dex": 5, "sdRaw": -43, "mdRaw": -44, "type": "ring", "id": 3378}, {"name": "Umbrella Hat", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 200, "tDef": -20, "lvl": 34, "intReq": 25, "mr": 10, "sdPct": 5, "dex": -4, "wDefPct": 8, "tDefPct": -12, "id": 3369}, {"name": "Unrefined Leggings", "tier": "Unique", "type": "leggings", "category": "armor", "drop": "NORMAL", "hp": 500, "eDef": 30, "lvl": 50, "strReq": 25, "sdPct": -12, "mdPct": 5, "lb": 13, "spd": -12, "eDamPct": 20, "eDefPct": 20, "id": 3375}, {"name": "Upside Down Bowl", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 45, "aDef": -5, "eDef": 5, "lvl": 12, "lb": 5, "str": 3, "id": 3380}, {"name": "Urheus", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 200, "fDef": 8, "wDef": -12, "eDef": 10, "lvl": 32, "strReq": 10, "defReq": 5, "hprPct": 15, "str": 5, "def": 3, "mdRaw": 48, "aDamPct": -8, "id": 3383}, {"name": "Uranium Aegis", "tier": "Fabled", "type": "chestplate", "majorIds": ["PLAGUE"], "poison": 900, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2725, "wDef": -60, "tDef": 75, "lvl": 77, "strReq": 35, "dexReq": 45, "hprPct": -100, "expd": 50, "hpBonus": 1200, "spRaw3": 5, "id": 3386}, {"name": "Upside Down Bucket", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 350, "wDef": 25, "tDef": -15, "lvl": 42, "mdPct": -3, "ref": 8, "wDamPct": 16, "wDefPct": 9, "id": 3384}, {"name": "Vacancy", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2525, "lvl": 89, "agiReq": 50, "int": -24, "agi": 12, "spd": 15, "spPct1": -10, "spPct3": -7, "spPct4": -17, "id": 3385}, {"name": "Uriel", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 27, "agiReq": 5, "spd": 12, "type": "ring", "id": 3387}, {"name": "Vacarme", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1700, "tDef": 100, "eDef": -100, "lvl": 91, "dexReq": 70, "ms": 10, "dex": 7, "expd": 20, "hprRaw": -135, "sdRaw": 165, "tDamPct": 23, "tDefPct": -32, "id": 3586}, {"name": "Valix", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "9-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 18, "xpb": 8, "spd": 8, "id": 3388}, {"name": "Valkyrie", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-95", "tDam": "0-125", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 89, "dexReq": 35, "agiReq": 30, "hprPct": -8, "spd": 15, "sdRaw": -55, "mdRaw": 70, "id": 3392}, {"name": "Vacuum", "tier": "Unique", "type": "chestplate", "category": "armor", "drop": "NORMAL", "hp": 2475, "wDef": 60, "aDef": -130, "eDef": 70, "lvl": 93, "strReq": 45, "intReq": 55, "mr": 10, "spd": -12, "sdRaw": 155, "wDamPct": 15, "eDamPct": 15, "aDefPct": -30, "id": 3389}, {"name": "Valiant", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "10-13", "fDam": "0-0", "wDam": "0-0", "aDam": "12-16", "tDam": "0-0", "eDam": "18-21", "atkSpd": "SLOW", "lvl": 34, "strReq": 20, "agiReq": 10, "mdPct": 9, "xpb": 8, "str": 8, "spRegen": 6, "id": 3399}, {"name": "Valorheart", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "40-50", "wDam": "40-50", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 41, "intReq": 20, "defReq": 20, "def": 5, "spd": -10, "hpBonus": 250, "spRegen": 10, "fDefPct": 15, "wDefPct": 15, "id": 3390}, {"name": "Vandal's Touch", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "50-112", "fDam": "0-0", "wDam": "0-0", "aDam": "50-210", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "strReq": 20, "agiReq": 40, "mdPct": 12, "lb": 15, "str": 8, "eSteal": 5, "sdRaw": -60, "eDamPct": 16, "id": 3394}, {"name": "Vampire Touch", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "35-60", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "20-40", "eDam": "0-0", "atkSpd": "FAST", "lvl": 51, "dexReq": 12, "hprPct": 10, "mr": 5, "ls": 55, "id": 3395}, {"name": "Vanilla Spade", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "30-45", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "agiReq": 20, "mr": 5, "int": 10, "agi": 10, "spd": 10, "tDamPct": -5, "eDamPct": -5, "id": 3398}, {"name": "Vartija", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "9-13", "fDam": "2-6", "wDam": "0-0", "aDam": "2-6", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 33, "agiReq": 10, "defReq": 10, "sdPct": -7, "def": 9, "spd": 15, "hpBonus": 160, "id": 3396}, {"name": "Vampire Stick", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "32-38", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "hprPct": -10, "ls": 32, "spRegen": 5, "id": 3393}, {"name": "Vaward", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 3900, "lvl": 99, "hprPct": 15, "sdPct": 15, "mdPct": 15, "str": 6, "dex": 6, "int": 6, "agi": 6, "def": 6, "spRegen": 15, "id": 3397}, {"name": "Veantur", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-110", "fDam": "0-0", "wDam": "50-85", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 83, "intReq": 50, "sdPct": 12, "mdPct": 10, "ref": 7, "int": 7, "hpBonus": -1000, "fDamPct": -25, "wDamPct": 15, "id": 3400}, {"name": "Valhalla", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 3525, "fDef": 80, "aDef": 80, "eDef": 80, "lvl": 98, "strReq": 40, "agiReq": 40, "defReq": 40, "ls": 215, "str": 9, "agi": 9, "def": 9, "spd": 12, "spRegen": 12, "wDefPct": -25, "tDefPct": -25, "id": 3391}, {"name": "Vellalar", "tier": "Rare", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "11-15", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 13, "ms": 5, "str": 5, "fDamPct": -5, "id": 3401}, {"name": "Venison", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 735, "fDef": -75, "wDef": 45, "eDef": 60, "lvl": 54, "strReq": 20, "intReq": 15, "mr": 10, "mdPct": 19, "xpb": 15, "str": 7, "int": 7, "spRegen": 10, "fDefPct": -15, "tDefPct": -10, "id": 3406}, {"name": "Venomsoul", "tier": "Unique", "type": "chestplate", "poison": 525, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1600, "aDef": -90, "lvl": 75, "strReq": 30, "intReq": 20, "ms": 5, "spRegen": -10, "id": 3404}, {"name": "Veins", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "72-78", "wDam": "69-81", "aDam": "66-84", "tDam": "63-87", "eDam": "75-75", "atkSpd": "SLOW", "lvl": 89, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "hpBonus": 965, "hprRaw": 115, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "id": 3402}, {"name": "Ventus Tail", "tier": "Legendary", "type": "boots", "category": "armor", "drop": "NORMAL", "hp": 2150, "aDef": 120, "tDef": 120, "eDef": -250, "lvl": 80, "dexReq": 35, "agiReq": 35, "sdPct": 10, "ms": 10, "dex": 8, "agi": 8, "spd": 7, "eSteal": 7, "aDamPct": 27, "tDamPct": 27, "eDamPct": -45, "id": 3403}, {"name": "Verglas", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 82, "intReq": 35, "agiReq": 35, "sdPct": 6, "int": 5, "spd": -10, "hprRaw": -55, "aDamPct": 5, "type": "necklace", "id": 3408}, {"name": "Ventilator", "tier": "Unique", "type": "boots", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 100, "fDef": -6, "aDef": 6, "lvl": 25, "agiReq": 15, "spd": 12, "fDamPct": -8, "aDamPct": 6, "id": 3405}, {"name": "Verdigris Sabatons", "tier": "Unique", "type": "boots", "poison": 550, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 1900, "fDef": 70, "wDef": -60, "tDef": 40, "lvl": 76, "dexReq": 20, "defReq": 35, "mr": -5, "def": 5, "spd": -7, "sdRaw": 100, "wDamPct": -14, "aDamPct": -12, "tDefPct": 10, "id": 3407}, {"name": "Vesuvius", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "100-200", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "100-200", "atkSpd": "VERY_SLOW", "lvl": 86, "strReq": 30, "defReq": 30, "mdPct": 12, "str": 8, "expd": 33, "fDamPct": 15, "wDamPct": -10, "eDamPct": 15, "wDefPct": -20, "id": 3409}, {"name": "Verstand", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 130, "wDef": 10, "tDef": -8, "lvl": 28, "intReq": 15, "mr": 5, "sdPct": 6, "mdPct": -6, "str": -3, "int": 4, "id": 3410}, {"name": "Vile", "tier": "Rare", "type": "bow", "poison": 1100, "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "35-115", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "35-115", "atkSpd": "FAST", "lvl": 62, "ls": 120, "hpBonus": -250, "mdRaw": 130, "eDamPct": 15, "wDefPct": -20, "id": 3414}, {"name": "Vigor", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "30-90", "fDam": "170-200", "wDam": "170-200", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "intReq": 25, "defReq": 25, "hprPct": 40, "sdPct": -7, "mdPct": -16, "def": 5, "hpBonus": 500, "hprRaw": 25, "wDefPct": 7, "id": 3412}, {"name": "Vibrato", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "21-22", "fDam": "0-0", "wDam": "0-0", "aDam": "55-56", "tDam": "55-56", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 44, "dexReq": 16, "agiReq": 16, "ms": 5, "def": -12, "spd": 12, "spPct1": -23, "id": 3413}, {"name": "Vinecrawlers", "tier": "Rare", "type": "boots", "poison": 425, "thorns": 15, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1750, "aDef": -70, "eDef": 90, "lvl": 72, "strReq": 45, "str": 7, "def": 7, "spd": -8, "hprRaw": 60, "fDefPct": -25, "wDefPct": 15, "id": 3411}, {"name": "Viper", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "6-11", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "6-22", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 38, "dexReq": 22, "mdPct": 6, "ls": 26, "dex": 4, "spd": 4, "mdRaw": 13, "id": 3416}, {"name": "Virgo", "tier": "Legendary", "type": "boots", "thorns": 1, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 5, "lvl": 97, "strReq": 70, "dexReq": 70, "mdPct": -45, "ref": 1, "agi": -20, "def": -20, "expd": 65, "atkTier": 2, "tDamPct": 16, "eDamPct": 16, "id": 3417}, {"name": "Virtuoso", "tier": "Rare", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "wDef": 70, "aDef": 70, "lvl": 94, "intReq": 50, "agiReq": 50, "mr": 5, "sdPct": 20, "ms": -40, "spd": 20, "sdRaw": 196, "id": 3415}, {"name": "Vital", "tier": "Rare", "category": "accessory", "drop": "lootchest", "hp": -220, "lvl": 67, "hprPct": 10, "hprRaw": 40, "type": "ring", "id": 3421}, {"name": "Virtue", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "15-350", "fDam": "0-0", "wDam": "210-250", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 74, "intReq": 45, "sdPct": 9, "ms": 15, "ref": 9, "agi": -6, "spd": -12, "atkTier": -1, "id": 3419}, {"name": "Vitium", "tier": "Rare", "poison": 50, "category": "accessory", "drop": "lootchest", "hp": -20, "aDef": -5, "lvl": 32, "ls": 10, "expd": 6, "type": "necklace", "id": 3418}, {"name": "Vitriol", "tier": "Unique", "poison": 83, "category": "accessory", "drop": "lootchest", "hp": -60, "wDef": -5, "eDef": 10, "lvl": 39, "strReq": 15, "hprPct": -10, "ls": 12, "type": "bracelet", "id": 3420}, {"name": "Vivace", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "13-18", "fDam": "0-0", "wDam": "0-0", "aDam": "9-13", "tDam": "9-13", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 29, "dexReq": 10, "agiReq": 10, "sdPct": 11, "dex": 5, "agi": 5, "spd": 11, "eDefPct": 18, "id": 3422}, {"name": "Voidlight", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-90", "tDam": "0-180", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 88, "dexReq": 35, "agiReq": 35, "sdPct": 10, "mdPct": -40, "ms": 10, "ref": 15, "str": -10, "agi": 13, "sdRaw": 205, "eDefPct": -25, "id": 3423}, {"name": "Void Catalyst", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-515", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 59, "dexReq": 43, "dex": 25, "tDamPct": 45, "spRaw1": 5, "spRaw2": 5, "spRaw3": 5, "spRaw4": 5, "id": 3425}, {"name": "Volcano", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "135-220", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "155-200", "atkSpd": "SLOW", "lvl": 98, "strReq": 40, "defReq": 40, "str": 13, "def": 13, "expd": 20, "spd": -25, "fDamPct": 12, "eDamPct": 12, "fDefPct": 18, "eDefPct": 18, "id": 3424}, {"name": "Voidshard", "tier": "Rare", "thorns": 5, "category": "accessory", "drop": "lootchest", "hp": -120, "lvl": 70, "strReq": 25, "agiReq": 25, "sdPct": 7, "ls": 44, "spd": 7, "type": "ring", "id": 3427}, {"name": "Voodoo", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "2-17", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 2, "sdPct": 6, "id": 3430}, {"name": "Voleur", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 270, "lvl": 36, "dexReq": 10, "agiReq": 5, "mdPct": -7, "lb": 12, "dex": 3, "agi": 3, "spd": 4, "eSteal": 6, "id": 3428}, {"name": "Volmor's Flair", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 85, "xpb": 5, "lb": 13, "hpBonus": -750, "type": "bracelet", "id": 3426}, {"name": "Vorpal", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "61-72", "aDam": "0-0", "tDam": "0-132", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 69, "dexReq": 25, "intReq": 25, "hprPct": -25, "mr": -5, "dex": 17, "hpBonus": -500, "sdRaw": 120, "wDamPct": 15, "tDamPct": 15, "id": 3436}, {"name": "Blue Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3435, "set": "Blue Team"}, {"name": "Blue Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3431, "set": "Blue Team"}, {"name": "Red Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3434, "set": "Red Team"}, {"name": "Red Team Leggings", "tier": "Set", "type": "leggings", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3437, "set": "Red Team"}, {"name": "Red Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3443, "set": "Red Team"}, {"name": "Blitzen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": -140, "wDef": 10, "lvl": 75, "dexReq": 40, "ms": 5, "wDamPct": 6, "type": "ring", "fixID": true, "id": 3438}, {"name": "Comet", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 12, "aDef": 12, "eDef": 12, "lvl": 70, "strReq": 20, "agiReq": 10, "defReq": 10, "mr": -5, "sdPct": -6, "mdPct": 8, "expd": 12, "mdRaw": 26, "type": "bracelet", "fixID": true, "id": 3441}, {"name": "Charcoal", "tier": "Rare", "type": "boots", "thorns": 10, "category": "armor", "slots": 2, "drop": "never", "hp": 3425, "fDef": 120, "aDef": 120, "lvl": 95, "strReq": 20, "defReq": 60, "ls": 285, "ref": 20, "str": 6, "def": 6, "hprRaw": 195, "fDamPct": 10, "aDefPct": 15, "eDefPct": 25, "fixID": true, "id": 3439}, {"name": "Conifer", "tier": "Rare", "type": "dagger", "thorns": 20, "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "42-58", "wDam": "0-0", "aDam": "44-56", "tDam": "0-0", "eDam": "36-64", "atkSpd": "SLOW", "lvl": 50, "strReq": 10, "agiReq": 10, "defReq": 10, "hprPct": 20, "spd": -10, "hpBonus": 250, "hprRaw": 30, "fixID": true, "id": 3442}, {"name": "Vortex", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1250, "aDef": 60, "tDef": 60, "eDef": -120, "lvl": 71, "dexReq": 35, "agiReq": 55, "ms": 10, "dex": 5, "agi": 8, "spd": 16, "sdRaw": 100, "mdRaw": 80, "id": 3432}, {"name": "Cupid", "tier": "Rare", "category": "accessory", "drop": "never", "wDef": 10, "eDef": 5, "lvl": 50, "strReq": 20, "intReq": 45, "hprPct": 10, "mr": 5, "sdPct": -10, "hprRaw": 12, "mdRaw": -19, "type": "bracelet", "fixID": true, "id": 3440}, {"name": "Dancer", "tier": "Unique", "category": "accessory", "drop": "never", "hp": -180, "lvl": 80, "agiReq": 50, "spd": 9, "hprRaw": -35, "aDamPct": 12, "type": "necklace", "fixID": true, "id": 3444}, {"name": "Dasher", "tier": "Unique", "category": "accessory", "drop": "never", "hp": 320, "fDef": -25, "lvl": 85, "strReq": 30, "agiReq": 40, "mdPct": 9, "str": 4, "spd": 9, "type": "ring", "fixID": true, "id": 3445}, {"name": "Donner", "tier": "Unique", "category": "accessory", "drop": "never", "fDef": 15, "wDef": -25, "tDef": 15, "lvl": 65, "dexReq": 30, "dex": 5, "fDamPct": 9, "type": "ring", "fixID": true, "id": 3447}, {"name": "Dragster", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 750, "fDef": -50, "aDef": 40, "lvl": 60, "agiReq": 45, "agi": 3, "def": -6, "spd": 20, "mdRaw": 100, "aDamPct": 5, "fDefPct": -10, "aDefPct": 5, "fixID": true, "id": 3446}, {"name": "Frostburn", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "never", "nDam": "40-40", "fDam": "30-90", "wDam": "40-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "intReq": 30, "defReq": 35, "mr": -5, "sdPct": 12, "hprRaw": -85, "fDamPct": 24, "wDamPct": 18, "fixID": true, "id": 3450}, {"name": "Ice Skates", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "never", "hp": 1200, "fDef": -160, "wDef": 80, "aDef": 55, "lvl": 75, "agiReq": 55, "mr": 5, "int": 4, "spd": 18, "fDamPct": -26, "wDamPct": 14, "aDamPct": 8, "fixID": true, "id": 3454}, {"name": "Garland", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2275, "tDef": -160, "eDef": 90, "lvl": 90, "strReq": 45, "intReq": 40, "sdPct": 22, "sdRaw": 225, "aDefPct": -14, "tDefPct": -14, "fixID": true, "id": 3448}, {"name": "Prancer", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 130, "fDef": 10, "tDef": 5, "eDef": 15, "lvl": 55, "strReq": 30, "str": 2, "def": 2, "eDamPct": 7, "type": "ring", "fixID": true, "id": 3449}, {"name": "Krampus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "0-0", "fDam": "70-110", "wDam": "0-0", "aDam": "0-0", "tDam": "30-120", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 80, "dexReq": 30, "defReq": 30, "mr": -5, "mdPct": 25, "ls": 180, "def": 8, "eSteal": 3, "hprRaw": -90, "tDamPct": 20, "wDefPct": -22, "fixID": true, "id": 3453}, {"name": "Scrooge", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "never", "nDam": "35-95", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "225-365", "eDam": "225-365", "atkSpd": "VERY_SLOW", "lvl": 80, "strReq": 35, "dexReq": 35, "ls": 325, "ms": 10, "lb": 33, "spd": -20, "spRegen": -25, "eSteal": 10, "hprRaw": -150, "fixID": true, "id": 3451}, {"name": "Ski Mask", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 2, "drop": "never", "hp": 2300, "wDef": 60, "aDef": 60, "tDef": -120, "lvl": 90, "intReq": 60, "agiReq": 45, "mr": 15, "mdPct": -12, "wDamPct": 25, "aDamPct": 25, "fixID": true, "id": 3456}, {"name": "Sealskin Parka", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1400, "wDef": 90, "aDef": 90, "tDef": -70, "lvl": 65, "intReq": 20, "agiReq": 20, "mr": 5, "xpb": 8, "ref": 12, "int": 6, "agi": 3, "spd": 12, "tDamPct": -40, "wDefPct": 16, "aDefPct": 16, "fixID": true, "id": 3452}, {"name": "Sleigher", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "35-35", "fDam": "0-0", "wDam": "0-0", "aDam": "30-30", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 50, "strReq": 10, "agiReq": 20, "sdPct": -15, "mdPct": 12, "str": 8, "agi": 2, "spd": 12, "mdRaw": 46, "eDamPct": 20, "fDefPct": -20, "fixID": true, "id": 3457}, {"name": "Snowstorm", "tier": "Rare", "type": "bow", "category": "weapon", "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-37", "aDam": "0-37", "tDam": "0-37", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 50, "dexReq": 20, "intReq": 20, "agiReq": 20, "sdPct": 8, "ms": 10, "xpb": 12, "str": -5, "spd": 12, "sdRaw": 50, "fDefPct": -36, "fixID": true, "id": 3455}, {"name": "Toy Maker", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "never", "hp": 1775, "aDef": 90, "tDef": 90, "eDef": -160, "lvl": 85, "dexReq": 35, "agiReq": 35, "mdPct": -25, "dex": 7, "agi": 7, "atkTier": 1, "mdRaw": 230, "aDamPct": 5, "tDamPct": 5, "fixID": true, "id": 3458}, {"name": "Wynnter Scarf", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 1, "drop": "never", "hp": 425, "fDef": 40, "wDef": -70, "aDef": 40, "lvl": 40, "agiReq": 20, "defReq": 20, "hprPct": 20, "agi": 3, "def": 3, "hprRaw": 20, "fDefPct": 25, "aDefPct": 25, "fixID": true, "id": 3463}, {"name": "Zenith", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "20-30", "tDam": "20-80", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "dexReq": 35, "agiReq": 25, "mdPct": 15, "ls": -190, "ms": 5, "agi": 7, "expd": 60, "atkTier": 2, "tDamPct": 10, "aDefPct": 12, "eDefPct": -15, "fixID": true, "id": 3459}, {"name": "Wipe", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "never", "nDam": "13-21", "fDam": "0-0", "wDam": "0-0", "aDam": "26-37", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 50, "agiReq": 50, "mdPct": 15, "ms": 10, "agi": 15, "spd": 28, "hprRaw": -250, "aDamPct": 22, "fixID": true, "id": 3461}, {"name": "Vixen", "tier": "Rare", "category": "accessory", "drop": "never", "hp": 300, "fDef": 20, "lvl": 60, "defReq": 70, "hprRaw": 25, "aDefPct": 7, "tDefPct": 4, "eDefPct": 5, "type": "necklace", "fixID": true, "id": 3460}, {"name": "Red Team Helmet", "tier": "Set", "type": "helmet", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3466, "set": "Red Team"}, {"name": "Waking Nightmare", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "30-38", "fDam": "0-0", "wDam": "0-0", "aDam": "140-180", "tDam": "0-0", "eDam": "140-180", "atkSpd": "SLOW", "lvl": 79, "strReq": 27, "agiReq": 27, "mdPct": 12, "str": 8, "hpBonus": -1085, "wDamPct": -40, "aDamPct": 18, "eDamPct": 18, "fDefPct": -25, "spRaw1": -5, "id": 3462}, {"name": "The Lethe", "displayName": "Waking Vigil", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "30-65", "tDam": "0-0", "eDam": "30-65", "atkSpd": "FAST", "lvl": 98, "strReq": 40, "agiReq": 40, "sdPct": -50, "mdPct": 31, "xpb": -25, "spd": 12, "spRegen": -15, "mdRaw": 100, "fDamPct": 31, "id": 3464}, {"name": "War Pike", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "160-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 74, "sdPct": -10, "mdPct": 10, "str": 7, "def": 7, "spd": -10, "hpBonus": 775, "id": 3469}, {"name": "Walking Stick", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "14-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 20, "agiReq": 5, "xpb": 4, "agi": 4, "spd": 10, "id": 3465}, {"name": "Wastelands", "tier": "Unique", "poison": 90, "category": "accessory", "drop": "lootchest", "lvl": 44, "strReq": 20, "mdPct": 5, "str": 3, "spd": -3, "type": "ring", "id": 3467}, {"name": "Wasp", "tier": "Rare", "poison": 155, "category": "accessory", "drop": "lootchest", "lvl": 50, "dexReq": 20, "hprRaw": -12, "tDamPct": 6, "type": "ring", "id": 3470}, {"name": "Water Relic Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-80", "fDam": "0-0", "wDam": "70-80", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 50, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3471}, {"name": "Water Relic Daggers", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 3, "drop": "never", "nDam": "55-65", "fDam": "0-0", "wDam": "55-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 65, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3474}, {"name": "Water Relic Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 3, "drop": "never", "nDam": "70-75", "fDam": "0-0", "wDam": "70-75", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 60, "intReq": 25, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3475}, {"name": "Water Relic Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 3, "drop": "never", "nDam": "30-35", "fDam": "0-0", "wDam": "30-35", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 55, "intReq": 20, "mr": 5, "sdPct": 20, "xpb": 15, "lb": 15, "int": 7, "wDamPct": 10, "wDefPct": 20, "id": 3472}, {"name": "Waterspout", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "45-95", "fDam": "0-0", "wDam": "105-125", "aDam": "0-0", "tDam": "45-185", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 95, "dexReq": 35, "intReq": 35, "sdPct": 6, "mdPct": -9, "ms": 5, "wDefPct": 22, "tDefPct": 22, "id": 3473}, {"name": "Warmth", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 10, "def": 3, "type": "ring", "id": 3468}, {"name": "Wavedash", "tier": "Unique", "type": "boots", "sprint": -10, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2250, "wDef": 90, "aDef": 90, "lvl": 89, "intReq": 25, "agiReq": 20, "mr": 10, "sdPct": 12, "agi": 8, "spd": 18, "wDamPct": 12, "aDamPct": 8, "sprintReg": 18, "id": 3476}, {"name": "Wavelength", "tier": "Legendary", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1400, "fDef": 40, "wDef": 40, "aDef": 40, "tDef": 40, "eDef": 40, "lvl": 67, "strReq": 14, "dexReq": 14, "intReq": 14, "agiReq": 14, "defReq": 14, "sdPct": 13, "mdPct": 13, "ms": -5, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "tDamPct": 10, "eDamPct": 10, "id": 3477}, {"name": "Waves Raiser", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "44-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 35, "intReq": 35, "sdPct": 12, "mdPct": 12, "wDamPct": 12, "wDefPct": 12, "id": 3478}, {"name": "Way Back Home", "tier": "Unique", "type": "boots", "thorns": 15, "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1600, "fDef": -100, "aDef": 100, "tDef": -100, "eDef": 100, "lvl": 75, "strReq": 20, "agiReq": 20, "agi": 7, "spd": 12, "spRegen": 7, "id": 3479}, {"name": "Weather Warning", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "25-25", "aDam": "0-0", "tDam": "0-50", "eDam": "0-0", "atkSpd": "FAST", "lvl": 35, "dexReq": 15, "intReq": 15, "sdPct": 10, "wDamPct": 10, "tDamPct": 10, "fDefPct": -13, "aDefPct": -13, "eDefPct": -13, "id": 3480}, {"name": "Wayfinder", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "75-100", "fDam": "0-0", "wDam": "35-50", "aDam": "32-40", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 74, "intReq": 15, "agiReq": 20, "ms": 5, "lb": 10, "int": 4, "agi": 4, "spd": 8, "id": 3482}, {"name": "Wedding Ring", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 2, "lvl": 5, "hpBonus": 6, "type": "ring", "id": 3481}, {"name": "All for One", "displayName": "Weatherwalkers", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2900, "fDef": -90, "wDef": -90, "aDef": -90, "tDef": -100, "eDef": -90, "lvl": 92, "dexReq": 70, "mr": -5, "sdPct": 31, "dex": 8, "spd": 15, "tDamPct": 10, "wDefPct": -20, "tDefPct": -15, "id": 3625}, {"name": "Whimsy", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "1-35", "fDam": "0-0", "wDam": "0-0", "aDam": "45-55", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 93, "intReq": 40, "agiReq": 30, "sdPct": -3, "mdPct": -5, "xpb": 25, "int": 13, "spd": 20, "eSteal": 2, "wDamPct": 22, "id": 3484}, {"name": "Whirlpool", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "10-60", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "intReq": 30, "sdRaw": 60, "wDamPct": 9, "tDefPct": -19, "id": 3483}, {"name": "Whistling Helmet", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 430, "fDef": -30, "aDef": 20, "lvl": 47, "agiReq": 30, "mdPct": 8, "agi": 4, "spd": 7, "aDamPct": 7, "eDefPct": -10, "id": 3488}, {"name": "Whisper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "20-30", "fDam": "0-0", "wDam": "0-0", "aDam": "12-20", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 38, "agiReq": 20, "hprPct": 10, "agi": 4, "spd": 6, "aDamPct": 6, "id": 3485}, {"name": "White-hot Leggings", "displayName": "White-Hot Leggings", "tier": "Unique", "type": "leggings", "thorns": 8, "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2250, "fDef": 170, "wDef": -100, "tDef": 100, "eDef": 30, "lvl": 88, "defReq": 55, "sdPct": 8, "spd": 8, "hpBonus": -220, "sdRaw": 140, "mdRaw": 180, "fDamPct": 12, "id": 3487}, {"name": "White", "tier": "Rare", "category": "accessory", "drop": "lootchest", "aDef": 5, "lvl": 30, "aDamPct": 7, "aDefPct": 7, "type": "ring", "id": 3486}, {"name": "Whitecap", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "76-112", "fDam": "0-0", "wDam": "51-65", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 59, "intReq": 30, "sdPct": 16, "fDamPct": -15, "tDefPct": -15, "id": 3489}, {"name": "White Noise", "tier": "Unique", "type": "relik", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "74-110", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 55, "agiReq": 25, "mdPct": -15, "xpb": 15, "sdRaw": 66, "aDamPct": 14, "eDamPct": -30, "eDefPct": -18, "id": 3490}, {"name": "White Storm", "tier": "Unique", "type": "helmet", "poison": 130, "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 510, "fDef": -20, "aDef": 25, "lvl": 48, "agi": 7, "spd": 10, "eDamPct": 5, "id": 3493}, {"name": "Whitewater", "tier": "Unique", "type": "boots", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 900, "wDef": 70, "tDef": -80, "lvl": 64, "intReq": 35, "mr": 5, "sdPct": 11, "mdPct": 8, "fDamPct": -20, "wDamPct": 13, "id": 3494}, {"name": "Blue Team Chestplate", "tier": "Set", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 50, "lvl": 20, "id": 3433, "set": "Blue Team"}, {"name": "Blue Team Boots", "tier": "Set", "type": "boots", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 25, "lvl": 20, "id": 3429, "set": "Blue Team"}, {"name": "Wicked", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 550, "wDef": -60, "lvl": 50, "dexReq": 20, "defReq": 20, "mr": -5, "sdPct": 15, "mdPct": 10, "expd": 8, "fDamPct": 10, "tDamPct": 10, "id": 3491}, {"name": "Whitestone", "tier": "Unique", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1200, "lvl": 73, "intReq": 25, "agiReq": 15, "hprPct": 20, "sdPct": 7, "mdPct": -15, "xpb": 10, "ref": 8, "spd": 6, "wDefPct": 7, "aDefPct": 6, "id": 3492}, {"name": "Wild Gauntlet", "tier": "Unique", "type": "dagger", "thorns": 13, "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "59-74", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "48-63", "atkSpd": "NORMAL", "lvl": 60, "strReq": 25, "sdPct": -7, "mdPct": 10, "spd": -5, "id": 3495}, {"name": "Willpower", "tier": "Unique", "category": "accessory", "drop": "lootchest", "fDef": -15, "wDef": -15, "aDef": -15, "tDef": -15, "eDef": -15, "lvl": 42, "intReq": 15, "hprPct": 8, "mr": 5, "type": "necklace", "id": 3496}, {"name": "Windchime", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "50-60", "fDam": "0-0", "wDam": "0-0", "aDam": "30-45", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 80, "agiReq": 35, "ms": 10, "xpb": 12, "aDamPct": 10, "id": 3497}, {"name": "Wind Mimic", "tier": "Rare", "type": "boots", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2425, "fDef": -120, "aDef": 200, "lvl": 94, "agiReq": 60, "ms": 10, "agi": 7, "spd": 20, "fDamPct": 20, "aDamPct": 20, "fDefPct": -20, "aDefPct": 10, "id": 3499}, {"name": "Wiggling Villager", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "5-50", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 31, "xpb": 11, "lb": 19, "id": 3500}, {"name": "Window Pane", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "27-33", "aDam": "0-0", "tDam": "27-33", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 37, "dexReq": 13, "intReq": 13, "sdPct": 14, "mdPct": -14, "str": -6, "dex": 4, "int": 4, "wDamPct": 9, "tDamPct": 9, "eDamPct": -10, "eDefPct": -10, "id": 3503}, {"name": "Windforce", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "33-51", "fDam": "0-0", "wDam": "0-0", "aDam": "31-57", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 57, "str": 7, "spd": 14, "eDamPct": 15, "aDefPct": 10, "eDefPct": -10, "id": 3501}, {"name": "Wind Murmurs", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "60-86", "fDam": "0-0", "wDam": "0-0", "aDam": "76-90", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 71, "agiReq": 35, "sdPct": -9, "mdPct": -18, "xpb": 15, "ref": 20, "agi": 12, "spd": 20, "id": 3498}, {"name": "Windowframe", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "11-13", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "27-33", "eDam": "27-33", "atkSpd": "NORMAL", "lvl": 34, "strReq": 12, "dexReq": 12, "sdPct": -14, "mdPct": 14, "str": 4, "dex": 4, "int": -6, "wDamPct": -10, "tDamPct": 9, "eDamPct": 9, "wDefPct": -10, "id": 3504}, {"name": "Gravesbane", "displayName": "Windshear", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2600, "fDef": -120, "aDef": 90, "tDef": 90, "eDef": -30, "lvl": 94, "dexReq": 40, "agiReq": 40, "mr": 5, "ms": 5, "spd": 16, "eSteal": 6, "sdRaw": 170, "mdRaw": 195, "fDefPct": -20, "sprintReg": 12, "id": 1229}, {"name": "Windy Torc", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 350, "aDef": 50, "eDef": -50, "lvl": 83, "agiReq": 30, "agi": 4, "spd": 7, "aDamPct": 7, "type": "necklace", "id": 3506}, {"name": "Wing Cap", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 850, "aDef": 50, "tDef": -70, "lvl": 61, "agiReq": 15, "lb": 4, "agi": 5, "spd": 20, "aDamPct": 5, "aDefPct": 8, "tDefPct": -7, "id": 3502}, {"name": "Winter's Essence", "tier": "Legendary", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 360, "fDef": -100, "wDef": 50, "aDef": 50, "lvl": 44, "intReq": 20, "agiReq": 20, "mr": 10, "sdPct": 20, "ls": 41, "int": 8, "agi": 8, "hprRaw": -50, "id": 3508}, {"name": "Winterspell", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-200", "fDam": "0-0", "wDam": "0-0", "aDam": "110-165", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 79, "sdPct": 4, "str": -3, "spd": 5, "wDamPct": 10, "fDefPct": -5, "id": 3507}, {"name": "Wintergreen", "tier": "Legendary", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "90-100", "fDam": "0-0", "wDam": "0-0", "aDam": "45-50", "tDam": "0-0", "eDam": "45-50", "atkSpd": "NORMAL", "lvl": 54, "strReq": 20, "agiReq": 25, "sdPct": 15, "spd": 20, "atkTier": 1, "hpBonus": -1000, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5, "id": 3505}, {"name": "Wirt's Leg", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "26-34", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 42, "lb": 23, "eSteal": 5, "id": 3509}, {"name": "WitherString", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "30-45", "fDam": "0-0", "wDam": "2-8", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 18, "mr": 5, "ms": 5, "id": 3511}, {"name": "Wolf Paw", "tier": "Unique", "category": "accessory", "drop": "lootchest", "aDef": 5, "eDef": 5, "lvl": 30, "strReq": 8, "agiReq": 8, "mdPct": 4, "spd": 4, "aDamPct": 4, "eDamPct": 4, "type": "bracelet", "id": 3513}, {"name": "Wolf Bow", "tier": "Unique", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "120-230", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 65, "hprPct": 30, "mr": 5, "id": 3510}, {"name": "Wolf Crest", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 90, "lvl": 46, "agiReq": 15, "str": 4, "agi": 4, "spd": 6, "type": "necklace", "id": 3512}, {"name": "Wormwood", "tier": "Unique", "type": "boots", "poison": 23, "category": "armor", "drop": "NORMAL", "hp": 70, "wDef": 6, "aDef": -6, "tDef": -6, "eDef": 6, "lvl": 17, "strReq": 5, "intReq": 5, "ls": 6, "hpBonus": -14, "id": 3514}, {"name": "Worry", "tier": "Rare", "category": "accessory", "drop": "lootchest", "lvl": 11, "ref": 5, "int": 3, "spRegen": 3, "type": "bracelet", "id": 3516}, {"name": "Worship", "tier": "Unique", "category": "accessory", "drop": "lootchest", "lvl": 84, "xpb": 7, "lb": 7, "hpBonus": 300, "spRegen": 7, "type": "ring", "id": 3518}, {"name": "Wybel Carved Relik", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "220-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3519}, {"name": "Wrath", "tier": "Legendary", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "55-85", "fDam": "55-90", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "55-90", "atkSpd": "SLOW", "lvl": 78, "strReq": 39, "defReq": 39, "mdPct": 13, "ls": 280, "lb": 13, "spRegen": -39, "mdRaw": 150, "wDamPct": -26, "aDamPct": -26, "tDamPct": -26, "id": 3515}, {"name": "Wybel Fluff Bow", "tier": "Rare", "type": "bow", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "300-355", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3521}, {"name": "Wybel Horn Spear", "tier": "Rare", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "190-250", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3520}, {"name": "Wybel Ivory Wand", "tier": "Rare", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "100-135", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3522}, {"name": "Wybel Tooth Dagger", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "140-170", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 90, "xpb": 30, "lb": 20, "hpBonus": -500, "spRegen": 10, "id": 3523}, {"name": "Xyloid", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1850, "wDef": 65, "tDef": -100, "eDef": 60, "lvl": 80, "strReq": 35, "intReq": 25, "mr": 5, "mdPct": 10, "spd": -10, "hprRaw": 90, "fDamPct": -15, "wDamPct": 8, "eDamPct": 12, "tDefPct": -20, "id": 3525}, {"name": "Xystus", "tier": "Unique", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "10-50", "fDam": "0-0", "wDam": "0-0", "aDam": "30-70", "tDam": "0-0", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 53, "agiReq": 30, "agi": 8, "spd": 8, "aDamPct": 10, "aDefPct": 12, "id": 3524}, {"name": "Yamato Spear", "tier": "Unique", "type": "spear", "category": "weapon", "drop": "NORMAL", "nDam": "120-180", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 87, "sdPct": 15, "mdPct": 15, "ms": 5, "xpb": 16, "dex": 13, "id": 3527}, {"name": "Yggdrasil", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "45-65", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "76-90", "atkSpd": "NORMAL", "lvl": 98, "strReq": 35, "intReq": 40, "mr": 5, "str": 9, "int": 5, "wDamPct": 20, "eDamPct": 8, "fDefPct": -15, "wDefPct": 10, "tDefPct": -10, "id": 3526}, {"name": "Yin", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": -30, "tDef": 30, "lvl": 92, "dexReq": 55, "sdPct": -8, "mdPct": 9, "dex": 4, "spRegen": -5, "sdRaw": -30, "mdRaw": 41, "type": "ring", "id": 3531}, {"name": "World Splitter", "tier": "Rare", "type": "dagger", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "40-80", "fDam": "160-160", "wDam": "0-0", "aDam": "0-0", "tDam": "0-400", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 64, "dexReq": 40, "defReq": 25, "mdPct": 10, "ls": 150, "spRegen": -33, "fDamPct": 12, "wDamPct": -143, "tDamPct": 12, "wDefPct": -20, "id": 3517}, {"name": "Yang", "tier": "Unique", "category": "accessory", "drop": "lootchest", "wDef": 30, "tDef": -30, "lvl": 92, "intReq": 55, "sdPct": 9, "mdPct": -8, "int": 4, "spRegen": 5, "sdRaw": 30, "mdRaw": -41, "type": "ring", "id": 3528}, {"name": "Yol", "tier": "Rare", "type": "relik", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "110-116", "fDam": "240-260", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SLOW", "lvl": 99, "defReq": 55, "hprPct": 30, "def": 15, "hpBonus": 2650, "hprRaw": 165, "fDefPct": 30, "wDefPct": 30, "aDefPct": 30, "tDefPct": 30, "eDefPct": 30, "id": 3532}, {"name": "Yahya's Nail Clipper", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "18-24", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-8", "atkSpd": "NORMAL", "lvl": 17, "hprPct": 6, "mr": 5, "mdPct": 7, "aDefPct": 5, "eDefPct": 5, "id": 3529}, {"name": "Yume", "tier": "Legendary", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 385, "fDef": -40, "aDef": 15, "lvl": 37, "agiReq": 25, "xpb": 12, "agi": 5, "spd": 12, "sdRaw": 50, "aDamPct": 12, "id": 3530}, {"name": "Yverlian Blade", "tier": "Unique", "type": "dagger", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "23-54", "wDam": "29-48", "aDam": "18-59", "tDam": "10-67", "eDam": "36-41", "atkSpd": "FAST", "lvl": 97, "strReq": 15, "dexReq": 15, "intReq": 15, "agiReq": 15, "defReq": 15, "ref": 25, "spRegen": 5, "hprRaw": 150, "fDefPct": 16, "wDefPct": 16, "aDefPct": 16, "tDefPct": 16, "eDefPct": 16, "id": 3536}, {"name": "Ylem", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 3, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-127", "wDam": "0-0", "aDam": "0-0", "tDam": "0-127", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 81, "dexReq": 30, "defReq": 35, "ls": 180, "hprRaw": -80, "sdRaw": 120, "fDamPct": 15, "tDamPct": 15, "wDefPct": -25, "eDefPct": -25, "id": 3533}, {"name": "Zephra Shredder", "tier": "Legendary", "type": "spear", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "62-260", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_FAST", "lvl": 93, "agiReq": 80, "mr": -5, "sdPct": 15, "ls": -175, "spd": 30, "mdRaw": 180, "aDamPct": 25, "fDefPct": -30, "id": 3534}, {"name": "Zeal", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 275, "lvl": 38, "defReq": 15, "hprPct": 8, "sdPct": -8, "mdPct": 5, "spd": 4, "hpBonus": 50, "fDamPct": 4, "id": 3537}, {"name": "Zephyr", "tier": "Unique", "type": "dagger", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-0", "wDam": "0-0", "aDam": "0-204", "tDam": "0-0", "eDam": "0-0", "atkSpd": "SUPER_FAST", "lvl": 79, "agiReq": 90, "sdPct": 11, "mdPct": 11, "agi": 10, "spd": 18, "atkTier": 1, "id": 3535}, {"name": "Zero", "tier": "Legendary", "type": "bow", "category": "weapon", "drop": "NORMAL", "nDam": "0-0", "fDam": "0-133", "wDam": "0-133", "aDam": "0-133", "tDam": "0-133", "eDam": "0-133", "atkSpd": "FAST", "lvl": 87, "strReq": 20, "dexReq": 20, "intReq": 20, "agiReq": 20, "defReq": 20, "mdPct": 18, "expd": 333, "hpBonus": -1250, "hprRaw": -125, "sdRaw": 210, "id": 3539}, {"name": "Zipper", "tier": "Unique", "type": "relik", "category": "weapon", "slots": 2, "drop": "NORMAL", "nDam": "5-20", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "50-70", "eDam": "0-0", "atkSpd": "NORMAL", "lvl": 38, "dexReq": 20, "xpb": 11, "lb": 11, "spd": 8, "tDamPct": 11, "tDefPct": 11, "eDefPct": -21, "id": 3544}, {"name": "Zombie Helm", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 75, "aDef": -4, "eDef": 4, "lvl": 18, "hprPct": 10, "xpb": 5, "str": 3, "hpBonus": 15, "id": 3538}, {"name": "Zjarr", "tier": "Unique", "category": "accessory", "drop": "lootchest", "hp": 20, "lvl": 25, "defReq": 10, "sdPct": -3, "def": 3, "hprRaw": 4, "type": "ring", "id": 3541}, {"name": "Zombified Pants", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 1, "drop": "NORMAL", "hp": 182, "fDef": -3, "aDef": -3, "tDef": -3, "lvl": 30, "hprPct": 14, "xpb": 5, "lb": 5, "hpBonus": 50, "id": 3540}, {"name": "default", "tier": "Normal", "type": "wand", "category": "weapon", "drop": "never", "nDam": "1-2", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "FAST", "lvl": 1, "int": 12, "id": 3543}, {"name": "Zombified Branch", "tier": "Unique", "type": "wand", "category": "weapon", "slots": 1, "drop": "NORMAL", "nDam": "126-150", "fDam": "0-0", "wDam": "0-0", "aDam": "0-0", "tDam": "0-0", "eDam": "0-0", "atkSpd": "VERY_SLOW", "lvl": 51, "ls": 55, "ms": 5, "spd": -12, "id": 3542}], "sets": {"Ornate Shadow": {"items": ["Ornate Shadow Cowl", "Ornate Shadow Garb", "Ornate Shadow Cover", "Ornate Shadow Cloud"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Grookwarts": {"items": ["Dragon's Eye Bracelet", "Draoi Fair", "Renda Langit"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Master Hive": {"items": ["Abyss-Imbued Leggings", "Boreal-Patterned Crown", "Anima-Infused Cuirass", "Chaos-Woven Greaves", "Elysium-Engraved Aegis", "Eden-Blessed Guards", "Gaea-Hewn Boots", "Hephaestus-Forged Sabatons", "Obsidian-Framed Helmet", "Twilight-Gilded Cloak", "Infused Hive Relik", "Infused Hive Wand", "Infused Hive Spear", "Infused Hive Dagger", "Infused Hive Bow", "Contrast", "Prowess", "Intensity"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Thunder Hive": {"items": ["Sparkling Visor", "Insulated Plate Mail", "Static-Charged Leggings", "Thunderous Step", "Bottled Thunderstorm", "Lightning Flash"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Air Hive": {"items": ["Pride of the Aerie", "Gale's Freedom", "Turbine Greaves", "Flashstep", "Breezehands", "Vortex Bracer"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Earth Hive": {"items": ["Ambertoise Shell", "Beetle Aegis", "Elder Oak Roots", "Humbark Moccasins", "Subur Clip", "Golemlus Core"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Water Hive": {"items": ["Whitecap Crown", "Stillwater Blue", "Trench Scourer", "Silt of the Seafloor", "Coral Ring", "Moon Pool Circlet"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Fire Hive": {"items": ["Sparkweaver", "Soulflare", "Cinderchain", "Mantlewalkers", "Clockwork", "Dupliblaze"], "bonuses": [{}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}, {"illegal": true}], "hidden": true}, "Synch Core": {"items": ["Overload Core", "Synchro Core", "Dodge Core", "Harden Core", "Hustle Core"], "bonuses": [{}, {"hprRaw": -20, "fDefPct": -8, "wDefPct": -8, "aDefPct": -8, "tDefPct": -8, "eDefPct": -8, "sprint": -8}, {"hprRaw": 150, "fDefPct": -40, "wDefPct": -40, "aDefPct": -40, "tDefPct": -40, "eDefPct": -40, "sprint": -35, "ws": 16, "hpBonus": 1150, "sdPct": 14, "mdPct": 14, "jh": 1, "mr": -5, "ms": -5}, {"hprRaw": 50, "fDefPct": 8, "wDefPct": 8, "aDefPct": 8, "tDefPct": 8, "eDefPct": 8, "sprint": 8, "ws": 8, "hpBonus": 666, "sdPct": 7, "mdPct": 7, "jh": 1}]}, "Black": {"items": ["Black Cap", "Black Boots", "Black Pants", "Black Tunic"], "bonuses": [{}, {"ms": 5, "dex": 2, "sdRaw": 15, "mdRaw": 5}, {"ms": 5, "dex": 6, "sdRaw": 35, "mdRaw": 10}, {"ms": 15, "dex": 20, "sdRaw": 65, "mdRaw": 70}]}, "Red Team": {"items": ["Red Team Boots", "Red Team Leggings", "Red Team Chestplate", "Red Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Tribal": {"items": ["Tribal Cap", "Tribal Boots", "Tribal Pants", "Tribal Tunic"], "bonuses": [{}, {"str": 2, "spd": 5}, {"str": 5, "agi": 2, "spd": 10}, {"sdPct": -15, "str": 10, "agi": 5, "spd": 15, "atkTier": 1}]}, "Champion": {"items": ["Champion Helmet", "Champion Boots", "Champion Leggings", "Champion Chestplate"], "bonuses": [{}, {}, {}, {"mr": 25, "sdPct": 75, "mdPct": 75, "ms": 25, "ls": 400, "hprRaw": 600}]}, "Outlaw": {"items": ["Outlaw Cap", "Outlaw Boots", "Outlaw Pants", "Outlaw Tunic"], "bonuses": [{}, {"ls": 11, "xpb": 5, "agi": 4, "eSteal": 2}, {"ls": 22, "xpb": 10, "agi": 8, "eSteal": 4}, {"ls": 45, "xpb": 25, "agi": 28, "eSteal": 8}]}, "Snail": {"items": ["Snail Helm", "Snail Boots", "Snail Leggings", "Snail Mail"], "bonuses": [{}, {"str": 7, "agi": -5, "thorns": 10, "spd": -5, "poison": 880, "hpBonus": 1100, "hprRaw": 125}, {"str": 14, "agi": -10, "thorns": 20, "spd": -10, "poison": 2650, "hpBonus": 2675, "hprRaw": 275}, {"str": 21, "agi": -15, "thorns": 40, "spd": -15, "poison": 5500, "hpBonus": 5500, "hprRaw": 575}]}, "Thanos Legionnaire": {"items": ["Thanos Legionnaire Helm", "Thanos Legionnaire Greaves", "Thanos Legionnaire Leggings", "Thanos Legionnaire Plate"], "bonuses": [{}, {"str": 2, "dex": -2, "int": -2, "agi": 2, "def": 2, "spd": 5, "hprRaw": 55, "mdRaw": 135}, {"str": 5, "dex": -5, "int": -5, "agi": 5, "def": 5, "spd": 10, "hprRaw": 210, "mdRaw": 270}, {"str": 15, "dex": -15, "int": -15, "agi": 15, "def": 15, "spd": 25, "atkTier": 1, "hprRaw": 525, "mdRaw": 540}]}, "Ghostly": {"items": ["Ghostly Cap", "Ghostly Boots", "Ghostly Pants", "Ghostly Tunic"], "bonuses": [{}, {"mr": -5, "ms": 10, "sdRaw": 40, "wDamPct": 5, "tDamPct": 5, "eDamPct": -34}, {"mr": -10, "ms": 20, "sdRaw": 115, "wDamPct": 10, "tDamPct": 10, "eDamPct": -67}, {"mr": -15, "ms": 30, "sdRaw": 230, "wDamPct": 32, "tDamPct": 32, "eDamPct": -100, "atkTier": -2}]}, "Adventurer's": {"items": ["Adventurer's Cap", "Adventurer's Boots", "Adventurer's Pants", "Adventurer's Tunic"], "bonuses": [{}, {"sdPct": 4, "mdPct": 4, "xpb": 10, "lb": 5, "spd": 2, "hpBonus": 15, "spRegen": 5}, {"sdPct": 12, "mdPct": 12, "xpb": 20, "lb": 10, "spd": 5, "hpBonus": 40, "spRegen": 15}, {"mr": 10, "sdPct": 25, "mdPct": 25, "xpb": 50, "lb": 30, "spd": 15, "hpBonus": 175, "spRegen": 50}]}, "Air Relic": {"items": ["Air Relic Helmet", "Air Relic Boots", "Air Relic Leggings", "Air Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "spd": 10, "hpBonus": 60}, {"xpb": 10, "lb": 25, "spd": 20, "hpBonus": 190}, {"xpb": 25, "lb": 50, "agi": 20, "spd": 60, "hpBonus": 400}]}, "Spider": {"items": ["Spinneret", "Abdomen", "Cephalothorax"], "bonuses": [{}, {"xpb": 10, "dex": 2, "agi": 2, "spd": 7, "poison": 35}, {"xpb": 25, "dex": 6, "agi": 6, "spd": 19, "poison": 130}]}, "Pigman": {"items": ["Pigman Helmet", "Pigman Battle Hammer"], "bonuses": [{}, {"str": 20, "eDamPct": 40}]}, "Kaerynn's": {"items": ["Kaerynn's Mind", "Kaerynn's Body"], "bonuses": [{}, {"mr": 10, "xpb": 40, "def": 25, "fDamPct": 20, "hprRaw": 180}]}, "Bandit's": {"items": ["Bandit's Locket", "Bandit's Bangle", "Bandit's Knuckle", "Bandit's Ring"], "bonuses": [{}, {"xpb": 3, "lb": 4, "eSteal": 1}, {"xpb": 7, "lb": 9, "eSteal": 3}, {"xpb": 12, "lb": 15, "eSteal": 6}]}, "Jester": {"items": ["Jester Necklace", "Jester Bracelet", "Jester Ring"], "bonuses": [{"xpb": 20, "lb": 20}, {"xpb": 45, "lb": 45, "spd": 5, "hpBonus": 240, "eSteal": 5}, {"xpb": 75, "lb": 75, "spd": 10, "hpBonus": 480, "eSteal": 15, "thorns": 12, "ref": 12}, {"xpb": 120, "lb": 120, "spd": 25, "hpBonus": 720, "eSteal": 20, "thorns": 30, "ref": 30}]}, "Builder's": {"items": ["Builder's Helmet", "Builder's Boots", "Builder's Trousers", "Builder's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Silverfish": {"items": ["Silverfish Helm", "Silverfish Boots"], "bonuses": [{"spd": 5}, {"agi": 10, "thorns": 20, "spd": 20, "poison": 290}]}, "Skien's": {"items": ["Skien Boots", "Skien Leggings", "Skien's Fatigues"], "bonuses": [{}, {"sdPct": -12, "mdPct": 12, "sdRaw": -50, "mdRaw": 60}, {"sdPct": -35, "mdPct": 35, "dex": 30, "spd": 11, "sdRaw": -150, "mdRaw": 180}]}, "Snow": {"items": ["Snow Helmet", "Snow Boots", "Snow Pants", "Snow Tunic"], "bonuses": [{}, {"hprPct": -10, "mr": 5, "sdPct": 6, "ref": 10, "thorns": 8}, {"hprPct": -20, "mr": 10, "sdPct": 14, "ref": 35, "thorns": 24}, {"hprPct": -30, "mr": 20, "sdPct": 30, "ref": 75, "thorns": 70}]}, "Veekhat's": {"items": ["Veekhat's Horns", "Veekhat's Udders"], "bonuses": [{}, {"mdPct": 30, "ms": 10, "spd": 25, "spPct2": -28}]}, "Morph": {"items": ["Morph-Stardust", "Morph-Ruby", "Morph-Amethyst", "Morph-Emerald", "Morph-Topaz", "Morph-Gold", "Morph-Iron", "Morph-Steel"], "bonuses": [{}, {"xpb": 5, "lb": 5}, {"mr": 5, "xpb": 10, "lb": 10, "spRaw2": -5, "hpBonus": 125}, {"mr": 5, "xpb": 15, "lb": 15, "spRaw2": -5, "hpBonus": 425}, {"mr": 10, "xpb": 35, "lb": 35, "hpBonus": 1325, "spRaw2": -5, "spRaw4": -5}, {"mr": 10, "xpb": 55, "lb": 55, "hpBonus": 2575, "spRaw2": -5, "spRaw4": -5}, {"mr": 15, "xpb": 80, "lb": 80, "hpBonus": 4450, "spRaw1": -5, "spRaw2": -5, "spRaw4": -5}, {"mr": 20, "xpb": 100, "lb": 100, "str": 15, "dex": 15, "int": 15, "agi": 15, "def": 15, "hpBonus": 8270, "spRaw1": -5, "spRaw2": -5, "spRaw3": -5, "spRaw4": -5}]}, "Black Catalyst": {"items": ["Black Catalyst"], "bonuses": [{"xpb": -5}, {"hpBonus": 325, "str": 0, "dex": 0, "int": 0, "def": 0, "agi": 0, "xpb": 25, "spRegen": 10, "sdPct": 8, "spPct1": -8, "spPct3": -8}]}, "Leaf": {"items": ["Leaf Cap", "Leaf Boots", "Leaf Pants", "Leaf Tunic"], "bonuses": [{}, {"hprPct": 5, "thorns": 7, "hpBonus": 10, "hprRaw": 1}, {"hprPct": 12, "thorns": 18, "hpBonus": 20, "hprRaw": 3}, {"hprPct": 25, "thorns": 35, "hpBonus": 60, "hprRaw": 7}]}, "Vexing": {"items": ["Mask of the Dark Vexations", "Staff of the Dark Vexations"], "bonuses": [{}, {"mr": 10, "sdPct": 15, "mdPct": -15, "sdRaw": 30, "spPct2": -35}]}, "Hallowynn 2016": {"items": ["Treat", "Trick"], "bonuses": [{}, {"xpb": 15, "spRegen": 10, "eSteal": 5}]}, "Spore": {"items": ["Spore Cap", "Spore Shortsword"], "bonuses": [{}, {"ls": 20, "expd": 20, "poison": 70}]}, "Horse": {"items": ["Horse Mask", "Horse Hoof"], "bonuses": [{}, {"mdPct": 11, "xpb": 25, "spd": 17, "aDamPct": 15, "eDamPct": 15, "sprint": 25, "sprintReg": 50}]}, "GM's": {"items": ["GM's Helmet", "GM's Boots", "GM's Trousers", "GM's Breastplate"], "bonuses": [{}, {"xpb": 5}, {"xpb": 10}, {"xpb": 15}]}, "Nether": {"items": ["Nether Cap", "Nether Boots", "Nether Pants", "Nether Tunic"], "bonuses": [{}, {"ls": 5, "expd": 2, "hprRaw": -1, "fDamPct": 2, "wDamPct": -10}, {"ls": 15, "expd": 10, "hprRaw": -2, "fDamPct": 8, "wDamPct": -25}, {"ls": 50, "def": 15, "expd": 60, "hprRaw": -20, "fDamPct": 42, "wDamPct": -45}]}, "Thunder Relic": {"items": ["Thunder Relic Helmet", "Thunder Relic Boots", "Thunder Relic Leggings", "Thunder Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 55, "mdRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 180, "mdRaw": 32}, {"xpb": 25, "lb": 50, "dex": 20, "hpBonus": 380, "mdRaw": 105}]}, "Visceral": {"items": ["Visceral Skullcap", "Visceral Toe", "Visceral Legs", "Visceral Chest"], "bonuses": [{}, {"hprPct": 30, "mdPct": 10, "ls": 45, "hpBonus": -1000, "hprRaw": 35, "mdRaw": 40}, {"hprPct": 100, "mdPct": 25, "ls": 90, "hpBonus": -2500, "hprRaw": 75, "mdRaw": 80}, {"hprPct": 350, "mdPct": 50, "ls": 180, "hpBonus": -4000, "hprRaw": 145, "mdRaw": 165}]}, "Bony": {"items": ["Bony Circlet", "Bony Bow"], "bonuses": [{}, {"agi": 8, "mdRaw": 45, "aDamPct": 15}]}, "Blue Team": {"items": ["Blue Team Boots", "Blue Team Leggings", "Blue Team Chestplate", "Blue Team Helmet"], "bonuses": [{}, {}, {}, {}]}, "Clock": {"items": ["Clock Helm", "Clock Amulet", "Watch Bracelet", "Clockwork Ring", "Time Ring", "Clock Boots", "Clock Leggings", "Clock Mail"], "bonuses": [{}, {"fDamPct": 15, "wDamPct": 6, "aDamPct": 5, "tDamPct": 18, "eDamPct": 8}, {"fDamPct": 14, "wDamPct": 12, "aDamPct": 13}, {"fDamPct": 13, "wDamPct": 18, "aDamPct": 20, "tDamPct": 18, "eDamPct": 14}, {"fDamPct": 12, "wDamPct": 24, "aDamPct": 28}, {"fDamPct": 11, "wDamPct": 24, "aDamPct": 24, "tDamPct": 18, "eDamPct": 22}, {"fDamPct": 10, "wDamPct": 24, "aDamPct": 19}, {"fDamPct": 9, "wDamPct": 24, "aDamPct": 14, "tDamPct": 18, "eDamPct": 34}]}, "Ultramarine": {"items": ["Ultramarine Crown", "Ultramarine Boots", "Ultramarine Belt", "Ultramarine Cape"], "bonuses": [{}, {"mr": 10, "mdPct": -24, "int": 5, "wDamPct": 10, "tDamPct": -8, "wDefPct": 16}, {"mr": 25, "mdPct": -54, "int": 15, "wDamPct": 20, "tDamPct": -18, "wDefPct": 36}, {"mr": 40, "mdPct": -90, "int": 25, "wDamPct": 40, "tDamPct": -30, "wDefPct": 56}]}, "Cosmic": {"items": ["Cosmic Visor", "Cosmic Walkers", "Cosmic Ward", "Cosmic Vest"], "bonuses": [{}, {"xpb": 25, "lb": 25, "fDefPct": 20, "wDefPct": 20, "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, "ms": 5}, {"xpb": 50, "lb": 50, "fDefPct": 50, "wDefPct": 50, "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, "ms": 10}, {"xpb": 75, "lb": 75, "fDefPct": 100, "wDefPct": 100, "aDefPct": 100, "tDefPct": 100, "eDefPct": 100, "sdPct": 40, "ms": 30}]}, "Saint's": {"items": ["Saint's Shawl", "Saint's Sandals", "Saint's Leggings", "Saint's Tunic"], "bonuses": [{}, {"mr": 5, "sdPct": -10, "mdPct": -15, "def": 7, "spRegen": 10, "wDamPct": 15, "aDamPct": 15}, {"mr": 15, "sdPct": -20, "mdPct": -40, "def": 15, "spRegen": 25, "wDamPct": 40, "aDamPct": 40}, {"mr": 30, "sdPct": -40, "mdPct": -85, "def": 40, "spRegen": 100, "wDamPct": 85, "aDamPct": 85}]}, "Beachside": {"items": ["Beachside Headwrap", "Beachside Conch"], "bonuses": [{}, {"lb": 20, "wDamPct": 35, "wDefPct": 25}]}, "Villager": {"items": ["Villager Pants", "Villager Mail"], "bonuses": [{}, {"xpb": 20, "lb": 60, "eSteal": 8}]}, "Goblin": {"items": ["Goblin Hood", "Goblin Runners", "Goblin Cloak"], "bonuses": [{"sdPct": -5, "mdPct": -5, "sdRaw": 27, "mdRaw": 25}, {"sdPct": -13, "mdPct": -13, "ls": 30, "sdRaw": 55, "mdRaw": 70}, {"sdPct": -33, "mdPct": -33, "ls": 90, "ms": 10, "sdRaw": 160, "mdRaw": 105, "atkTier": 1}]}, "Corrupted Nii": {"items": ["Corrupted Nii Mukluk", "Corrupted Nii Plate", "Corrupted Nii Shako"], "bonuses": [{}, {"int": 3, "def": 3, "hprRaw": 90}, {"mr": 25, "int": 20, "def": 20, "hpBonus": 1500, "hprRaw": 330, "fDefPct": 75, "wDefPct": 75}]}, "Water Relic": {"items": ["Water Relic Helmet", "Water Relic Boots", "Water Relic Leggings", "Water Relic Chestplate"], "bonuses": [{}, {"mr": 5, "xpb": 5, "lb": 10, "hpBonus": 55}, {"mr": 10, "xpb": 10, "lb": 25, "hpBonus": 170}, {"mr": 20, "xpb": 25, "lb": 50, "int": 20, "hpBonus": 360}]}, "Elf": {"items": ["Elf Cap", "Elf Shoes", "Elf Pants", "Elf Robe"], "bonuses": [{}, {"hprPct": 10, "lb": 8, "agi": 3, "def": 3, "spd": 8}, {"hprPct": 20, "lb": 20, "agi": 7, "def": 7, "spd": 16}, {"hprPct": 45, "lb": 35, "agi": 15, "def": 15, "spd": 25, "hprRaw": 50}]}, "Relic": {"items": ["Relic Helmet", "Relic Boots", "Relic Leggings", "Relic Chestplate"], "bonuses": [{}, {"xpb": 10, "lb": 10, "hpBonus": 65, "fDamPct": 5, "wDamPct": 5, "aDamPct": 5, "tDamPct": 5, "eDamPct": 5}, {"xpb": 25, "lb": 25, "hpBonus": 200, "fDamPct": 12, "wDamPct": 12, "aDamPct": 12, "tDamPct": 12, "eDamPct": 12}, {"xpb": 50, "lb": 50, "str": 8, "dex": 8, "int": 8, "agi": 8, "def": 8, "hpBonus": 425, "fDamPct": 25, "wDamPct": 25, "aDamPct": 25, "tDamPct": 25, "eDamPct": 25}]}, "Corrupted Uth": {"items": ["Corrupted Uth Sandals", "Corrupted Uth Belt", "Corrupted Uth Plume"], "bonuses": [{}, {"ls": 180, "agi": 3, "def": 3}, {"ls": 700, "ref": 80, "agi": 25, "def": 25, "thorns": 80, "fDefPct": 125, "aDefPct": 125}]}, "Fire Relic": {"items": ["Fire Relic Helmet", "Fire Relic Boots", "Fire Relic Leggings", "Fire Relic Chestplate"], "bonuses": [{}, {"xpb": 5, "lb": 10, "hpBonus": 90, "hprRaw": 12}, {"xpb": 10, "lb": 25, "hpBonus": 270, "hprRaw": 40}, {"xpb": 25, "lb": 50, "def": 20, "hpBonus": 570, "hprRaw": 100}]}, "Flashfire": {"items": ["Flashfire Gauntlet", "Flashfire Knuckle"], "bonuses": [{}, {"spd": 8, "atkTier": 1, "wDamPct": -15, "wDefPct": -15}, {"spd": 16, "atkTier": 1, "fDamPct": 12, "wDamPct": -15, "wDefPct": -15}]}, "Earth Relic": {"items": ["Earth Relic Helmet", "Earth Relic Boots", "Earth Relic Leggings", "Earth Relic Chestplate"], "bonuses": [{}, {"mdPct": 10, "xpb": 5, "lb": 10, "hpBonus": 65}, {"mdPct": 20, "xpb": 10, "lb": 25, "hpBonus": 200}, {"mdPct": 45, "xpb": 25, "lb": 50, "str": 20, "hpBonus": 425}]}, "Bear": {"items": ["Bear Mask", "Bear Head", "Bear Body"], "bonuses": [{}, {"mdPct": 14, "hpBonus": 75, "mdRaw": 25}]}, "Slime": {"items": ["Slime Boots", "Slime Plate"], "bonuses": [{}, {"hprPct": 35, "thorns": 15, "spd": -6, "poison": 300, "hpBonus": 600, "jh": 1}]}, "Wynnterfest 2016": {"items": ["Green Ornament", "Red Ornament", "Blue Ornament", "Yellow Ornament"], "bonuses": [{"sdPct": 3}, {"sdPct": 3, "mdPct": 3, "xpb": 6}, {"sdPct": 3, "mdPct": 3, "xpb": 12, "hpBonus": 120}, {"sdPct": 14, "mdPct": 14, "xpb": 24, "hpBonus": 480}]}}} \ No newline at end of file diff --git a/js/atree_constants.js b/js/atree_constants.js index 3431b35..b785968 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -2730,7 +2730,7 @@ const atrees = { { "type": "add_spell_prop", "base_spell": 0, - "target_part": "melee", + "target_part": "Melee", "multipliers": [ 5, 0, @@ -3590,7 +3590,7 @@ const atrees = { "effects": [{ "type": "add_spell_prop", "base_spell": 0, - "target_part": "melee", + "target_part": "Melee", "multipliers": [5, 0, 0, 0, 0, 0] }] }, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 987b9eb..e007896 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"DPS","parts":[{"name":"Single Shot","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Shot":8}},{"name":"DPS","type":"total","hits":{"Single Shot":2}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Call of the Hound","base_spell":8,"display":"DPS","parts":[{"name":"Single Hit","multipliers":[40,0,0,0,0,0]},{"name":"DPS","hits":{"Single Hit":4}}]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Shot","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"DPS","behavior":"modify","hits":{"Single Shot":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"DPS","parts":[{"name":"Single Shot","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Shot":8}},{"name":"DPS","type":"total","hits":{"Single Shot":2}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Call of the Hound","base_spell":8,"display":"DPS","parts":[{"name":"Single Hit","multipliers":[40,0,0,0,0,0]},{"name":"DPS","hits":{"Single Hit":4}}]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Shot","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"DPS","behavior":"modify","hits":{"Single Shot":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file diff --git a/js/builder_graph.js b/js/builder_graph.js index b38f467..eabaf3d 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -1070,7 +1070,7 @@ function builder_graph_init() { powder_special_input.update(); // Potion boost. - pre_scale_agg_node.link_to(boosts_node, 'potion-boost'); + stat_agg_node.link_to(boosts_node, 'potion-boost'); // Also do something similar for skill points diff --git a/js/load.js b/js/load.js index c204102..2a504cd 100644 --- a/js/load.js +++ b/js/load.js @@ -1,4 +1,4 @@ -const DB_VERSION = 100; +const DB_VERSION = 101; // @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA let db; From ae4b8d44e695782493bf3818cb275d256d35b0fc Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 20:20:16 -0700 Subject: [PATCH 29/34] Fix reachable check to use currently reachable set instead of atree selection state --- js/atree.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/atree.js b/js/atree.js index 639eca2..fc05ff5 100644 --- a/js/atree.js +++ b/js/atree.js @@ -310,7 +310,7 @@ function abil_can_activate(atree_node, atree_state, reachable, archetype_count, } let failed_deps = []; for (const dep_id of ability.dependencies) { - if (!atree_state.get(dep_id).active) { failed_deps.push(dep_id) } + if (!reachable.has(dep_id)) { failed_deps.push(dep_id) } } if (failed_deps.length > 0) { const dep_strings = failed_deps.map(i => '"' + atree_state.get(i).ability.display_name + '"'); @@ -318,7 +318,7 @@ function abil_can_activate(atree_node, atree_state, reachable, archetype_count, } let blocking_ids = []; for (const blocker_id of ability.blockers) { - if (atree_state.get(blocker_id).active) { blocking_ids.push(blocker_id); } + if (reachable.has(blocker_id)) { blocking_ids.push(blocker_id); } } if (blocking_ids.length > 0) { const blockers_strings = blocking_ids.map(i => '"' + atree_state.get(i).ability.display_name + '"'); From 8efe671faefc9dcca728a8a42fb52f344ef44c7a Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 21:22:28 -0700 Subject: [PATCH 30/34] Misc. atree fix psychokinesis cost 1->2 orphion's pulse better desc fluid healing not affected by conc --- js/atree_constants.js | 6 +++--- js/atree_constants_min.js | 2 +- js/builder_graph.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index b785968..f6570fa 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -6239,7 +6239,7 @@ const atrees = { { "type": "add_spell_prop", "base_spell": 1, - "target_part": "Heal Pulse", + "target_part": "Second and Third Pulses", "power": 0.15 }, { @@ -6249,7 +6249,7 @@ const atrees = { "target_part": "Total Heal", "hits": { "Heal": 1, - "Heal Pulse": 2 + "Second and Third Pulses": 2 } } ] @@ -6384,7 +6384,7 @@ const atrees = { "Meteor" ], "blockers": [], - "cost": 1, + "cost": 2, "display": { "row": 26, "col": 7, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index e007896..8b067f1 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"DPS","parts":[{"name":"Single Shot","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Shot":8}},{"name":"DPS","type":"total","hits":{"Single Shot":2}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Call of the Hound","base_spell":8,"display":"DPS","parts":[{"name":"Single Hit","multipliers":[40,0,0,0,0,0]},{"name":"DPS","hits":{"Single Hit":4}}]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Shot","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"DPS","behavior":"modify","hits":{"Single Shot":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Heal Pulse","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Heal Pulse":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"DPS","parts":[{"name":"Single Shot","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Shot":8}},{"name":"DPS","type":"total","hits":{"Single Shot":2}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Call of the Hound","base_spell":8,"display":"DPS","parts":[{"name":"Single Hit","multipliers":[40,0,0,0,0,0]},{"name":"DPS","hits":{"Single Hit":4}}]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Shot","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"DPS","behavior":"modify","hits":{"Single Shot":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Second and Third Pulses","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Second and Third Pulses":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file diff --git a/js/builder_graph.js b/js/builder_graph.js index eabaf3d..b2ed8cb 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -1066,7 +1066,7 @@ function builder_graph_init() { new PowderSpecialDisplayNode().link_to(powder_special_input, 'powder-specials') .link_to(stat_agg_node, 'stats').link_to(build_node, 'build'); pre_scale_agg_node.link_to(powder_special_calc, 'powder-boost'); - pre_scale_agg_node.link_to(armor_powder_node, 'armor-powder'); + stat_agg_node.link_to(armor_powder_node, 'armor-powder'); powder_special_input.update(); // Potion boost. From 085375e4ccded644570b50731e22ade5b8a60ad8 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 23:10:19 -0700 Subject: [PATCH 31/34] HOTFIX: patch custom parsing/saving renamed types -> all_types --- js/custom.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/js/custom.js b/js/custom.js index 8c712af..4a6e94c 100644 --- a/js/custom.js +++ b/js/custom.js @@ -65,7 +65,7 @@ function encodeCustom(custom, verbose) { if (typeof (val) === "string" && val !== "") { if ((damages.includes(id) && val === "0-0") || (!verbose && ["lore", "majorIds", "quest", "materials", "drop", "set"].includes(id))) { continue; } if (id === "type") { - hash += Base64.fromIntN(i, 2) + Base64.fromIntN(types.indexOf(val.substring(0, 1).toUpperCase() + val.slice(1)), 1); + hash += Base64.fromIntN(i, 2) + Base64.fromIntN(all_types.indexOf(val.substring(0, 1).toUpperCase() + val.slice(1)), 1); } else if (id === "tier") { hash += Base64.fromIntN(i, 2) + Base64.fromIntN(tiers.indexOf(val), 1); } else if (id === "atkSpd") { @@ -147,7 +147,7 @@ function getCustomFromHash(hash) { val = tiers[Base64.toInt(tag.charAt(2))]; len = -1; } else if (id === "type") { - val = types[Base64.toInt(tag.charAt(2))]; + val = all_types[Base64.toInt(tag.charAt(2))]; len = -1; } else if (id === "atkSpd") { val = attackSpeeds[Base64.toInt(tag.charAt(2))]; @@ -179,7 +179,8 @@ function getCustomFromHash(hash) { return new Custom(statMap); } } catch (error) { - //console.log(statMap); + console.log(error); + console.log(statMap); return undefined; } From bcc309c682de33b53522488d570be352ab677256 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sun, 24 Jul 2022 09:05:57 -0700 Subject: [PATCH 32/34] HOTFIX: move atree toggles into same thing that handles sliders so they update when they are toggled --- js/atree.js | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/js/atree.js b/js/atree.js index 639eca2..0b83444 100644 --- a/js/atree.js +++ b/js/atree.js @@ -739,6 +739,20 @@ const atree_scaling = new (class extends ComputeNode { for (const effect of abil.effects) { switch (effect.type) { + case 'raw_stat': + // TODO: toggles... + if (effect.toggle) { + const button = button_map.get(effect.toggle).button; + if (!button.classList.contains("toggleOn")) { continue; } + for (const bonus of effect.bonuses) { + const { type, name, abil = "", value } = bonus; + // TODO: prop + if (type === "stat") { + merge_stat(ret_effects, name, value); + } + } + } + continue; case 'stat_scaling': let total = 0; const {round = true, slider = false, scaling = [0]} = effect; @@ -789,7 +803,6 @@ const atree_stats = new (class extends ComputeNode { compute_func(input_map) { const atree_merged = input_map.get('atree-merged'); - const [slider_map, button_map] = input_map.get('atree-interactive'); let ret_effects = new Map(); for (const [abil_id, abil] of atree_merged.entries()) { @@ -798,11 +811,8 @@ const atree_stats = new (class extends ComputeNode { for (const effect of abil.effects) { switch (effect.type) { case 'raw_stat': - // TODO: toggles... - if (effect.toggle) { - const button = button_map.get(effect.toggle).button; - if (!button.classList.contains("toggleOn")) { continue; } - } + // toggles are handled in atree_scaling. + if (effect.toggle) { continue; } for (const bonus of effect.bonuses) { const { type, name, abil = "", value } = bonus; // TODO: prop @@ -816,7 +826,7 @@ const atree_stats = new (class extends ComputeNode { } return ret_effects; } -})().link_to(atree_merge, 'atree-merged').link_to(atree_make_interactives, 'atree-interactive'); +})().link_to(atree_merge, 'atree-merged'); /** * Construct compute nodes to link builder items and edit IDs to the appropriate display outputs. From 30035dc732195dcf280dee5ae594beac34eda2f6 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sun, 24 Jul 2022 09:05:57 -0700 Subject: [PATCH 33/34] HOTFIX: move atree toggles into same thing that handles sliders so they update when they are toggled --- js/atree.js | 24 +++++++++++++++++------- js/atree_constants.js | 30 +++++++++++++++++++----------- js/atree_constants_min.js | 2 +- 3 files changed, 37 insertions(+), 19 deletions(-) diff --git a/js/atree.js b/js/atree.js index 639eca2..0b83444 100644 --- a/js/atree.js +++ b/js/atree.js @@ -739,6 +739,20 @@ const atree_scaling = new (class extends ComputeNode { for (const effect of abil.effects) { switch (effect.type) { + case 'raw_stat': + // TODO: toggles... + if (effect.toggle) { + const button = button_map.get(effect.toggle).button; + if (!button.classList.contains("toggleOn")) { continue; } + for (const bonus of effect.bonuses) { + const { type, name, abil = "", value } = bonus; + // TODO: prop + if (type === "stat") { + merge_stat(ret_effects, name, value); + } + } + } + continue; case 'stat_scaling': let total = 0; const {round = true, slider = false, scaling = [0]} = effect; @@ -789,7 +803,6 @@ const atree_stats = new (class extends ComputeNode { compute_func(input_map) { const atree_merged = input_map.get('atree-merged'); - const [slider_map, button_map] = input_map.get('atree-interactive'); let ret_effects = new Map(); for (const [abil_id, abil] of atree_merged.entries()) { @@ -798,11 +811,8 @@ const atree_stats = new (class extends ComputeNode { for (const effect of abil.effects) { switch (effect.type) { case 'raw_stat': - // TODO: toggles... - if (effect.toggle) { - const button = button_map.get(effect.toggle).button; - if (!button.classList.contains("toggleOn")) { continue; } - } + // toggles are handled in atree_scaling. + if (effect.toggle) { continue; } for (const bonus of effect.bonuses) { const { type, name, abil = "", value } = bonus; // TODO: prop @@ -816,7 +826,7 @@ const atree_stats = new (class extends ComputeNode { } return ret_effects; } -})().link_to(atree_merge, 'atree-merged').link_to(atree_make_interactives, 'atree-interactive'); +})().link_to(atree_merge, 'atree-merged'); /** * Construct compute nodes to link builder items and edit IDs to the appropriate display outputs. diff --git a/js/atree_constants.js b/js/atree_constants.js index f6570fa..939ad25 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -7665,21 +7665,14 @@ const atrees = { "type": "replace_spell", "name": "Backstab", "base_spell": 3, - "display": "Total Damage", + "display": "Backstab Damage", "parts": [ { - "name": "Per Hit", + "name": "Backstab Damage", "type": "damage", "multipliers": [ 200, 50, 0, 0, 0, 0 ] - }, - { - "name": "Total Damage", - "type": "total", - "hits": { - "Per Hit": 1 - } } ] } @@ -9139,8 +9132,23 @@ const atrees = { "bonuses": [ { "type": "stat", - "name": "dmgMult.Satsujin", - "value": 300 + "name": "damMult.Satsujin:3.Backstab Damage", + "value": 200 + }, + { + "type": "stat", + "name": "damMult.Satsujin:3.Per Hit", + "value": 200 + }, + { + "type": "stat", + "name": "damMult.Satsujin:3.Fatality", + "value": 200 + }, + { + "type": "stat", + "name": "damMult.Satsujin:0.Melee", + "value": 200 } ] } diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 8b067f1..8f66739 100644 --- a/js/atree_constants_min.js +++ b/js/atree_constants_min.js @@ -1 +1 @@ -const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"DPS","parts":[{"name":"Single Shot","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Shot":8}},{"name":"DPS","type":"total","hits":{"Single Shot":2}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Call of the Hound","base_spell":8,"display":"DPS","parts":[{"name":"Single Hit","multipliers":[40,0,0,0,0,0]},{"name":"DPS","hits":{"Single Hit":4}}]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Shot","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"DPS","behavior":"modify","hits":{"Single Shot":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Second and Third Pulses","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Second and Third Pulses":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[200,50,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":1}}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"dmgMult.Satsujin","value":300}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file +const atrees={"Archer":[{"display_name":"Arrow Shield","desc":"Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)","parents":[60,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_archer"},"properties":{"charges":2,"duration":60,"aoe":5000},"effects":[{"type":"replace_spell","name":"Arrow Shield","cost":30,"base_spell":4,"display":"Total Damage","parts":[{"name":"Shield Damage","type":"damage","multipliers":[90,0,0,0,0,10]},{"name":"Total Damage","type":"total","hits":{"Shield Damage":2}}]}],"id":0},{"display_name":"Escape","desc":"Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_archer"},"properties":{"aoe":0,"range":0},"effects":[{"type":"replace_spell","name":"Escape","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Arrow Bomb","desc":"Throw a long-range arrow that explodes and deal high damage in a large area. (Self-damage for 25% of your DPS)","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_archer"},"properties":{"aoe":4.5,"range":26},"effects":[{"type":"replace_spell","name":"Arrow Bomb","cost":50,"base_spell":3,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Arrow Bomb","type":"damage","multipliers":[160,0,0,0,20,0]},{"name":"Total Damage","type":"total","hits":{"Arrow Bomb":1}}]}],"id":2},{"display_name":"Heart Shatter","desc":"If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Heart Shatter":1}}],"id":3},{"display_name":"Fire Creep","desc":"Arrow Bomb will leak a trail of fire for 6s, Damaging enemies that walk into it every 0.4s.","base_abil":2,"parents":[68,39,5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_1"},"properties":{"aoe":0.8,"duration":6},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[30,0,0,0,20,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Burn Damage","hits":{"Fire Creep":15}}],"id":4},{"display_name":"Bryophyte Roots","desc":"When you hit an enemy with Arrow Storm, create an area that slows them down and deals damage every 0.4s.","base_abil":7,"archetype":"Trapper","archetype_req":1,"parents":[4,35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":8,"icon":"node_1"},"properties":{"aoe":2,"duration":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Bryophyte Roots","cost":0,"multipliers":[40,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Roots Damage","hits":{"Bryophyte Roots":12}}],"id":5},{"display_name":"Nimble String","desc":"Arrow Storm throw out +6 arrows per stream and shoot twice as fast.","base_abil":7,"parents":[36,69],"dependencies":[7],"blockers":[68],"cost":2,"display":{"row":15,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-15,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","hits":{"Single Arrow":6}}],"id":6},{"display_name":"Arrow Storm","desc":"Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.","parents":[58,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_archer"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Arrow Storm","cost":40,"base_spell":1,"spell_type":"damage","display":"Total Damage","parts":[{"name":"Single Arrow","multipliers":[30,0,10,0,0,0]},{"name":"Single Stream","hits":{"Single Arrow":8}},{"name":"Total Damage","hits":{"Single Stream":1}}]}],"id":7},{"display_name":"Guardian Angels","desc":"Your protective arrows from Arrow Shield will become sentient bows, dealing damage up to 8 times each to nearby enemies. (Arrow Shield will no longer push nearby enemies)","archetype":"Boltslinger","archetype_req":3,"base_abil":0,"parents":[59,67],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":19,"col":1,"icon":"node_3"},"properties":{"range":4,"duration":60,"shots":8,"charges":2},"effects":[{"type":"replace_spell","name":"Guardian Angels","base_spell":4,"display":"DPS","parts":[{"name":"Single Shot","type":"damage","multipliers":[30,0,0,0,0,10]},{"name":"Single Bow","type":"total","hits":{"Single Shot":8}},{"name":"DPS","type":"total","hits":{"Single Shot":2}},{"name":"Total Damage","type":"total","hits":{"Single Bow":2}}]}],"id":8},{"display_name":"Windy Feet","desc":"When casting Escape, give speed to yourself and nearby allies.","base_abil":1,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":1,"icon":"node_1"},"properties":{"aoe":8,"duration":120},"effects":[],"id":9},{"display_name":"Basaltic Trap","desc":"When you hit the ground with Arrow Bomb, leave a Trap that damages enemies. (Max 2 Traps)","archetype":"Trapper","archetype_req":2,"parents":[5],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":8,"icon":"node_3"},"properties":{"aoe":7,"traps":2},"effects":[{"type":"replace_spell","name":"Basaltic Trap","base_spell":7,"display":"Trap Damage","parts":[{"name":"Trap Damage","type":"damage","multipliers":[140,30,0,0,30,0]}]}],"id":10},{"display_name":"Windstorm","desc":"Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.","base_abil":7,"parents":[8,33],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Arrow","multipliers":[-10,0,-2,0,0,2]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Stream","cost":0,"hits":{"Single Arrow":2}}],"id":11},{"display_name":"Grappling Hook","base_abil":1,"desc":"When casting Escape, throw a hook that pulls you when hitting a block. If you hit an enemy, pull them towards you instead. (Escape will not throw you backward anymore)","archetype":"Trapper","archetype_req":0,"parents":[61,40,33],"dependencies":[],"blockers":[20],"cost":2,"display":{"row":21,"col":5,"icon":"node_2"},"properties":{"range":26},"effects":[],"id":12},{"display_name":"Implosion","desc":"Arrow bomb will pull enemies towards you. If a trap is nearby, it will pull them towards it instead. Increase Heart Shatter's damage.","archetype":"Trapper","archetype_req":0,"base_abil":2,"parents":[12,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Heart Shatter","multipliers":[40,0,0,0,0,0]}],"id":13},{"display_name":"Twain's Arc","desc":"When you have 2+ Focus, holding shift will summon the Twain's Arc. Charge it up to shoot a destructive long-range beam. (Damage is dealt as Main Attack Damage)","archetype":"Sharpshooter","archetype_req":4,"parents":[62,64],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_2"},"properties":{"range":64,"focusReq":2},"effects":[{"type":"replace_spell","name":"Twain's Arc","base_spell":5,"scaling":"melee","use_atkspd":false,"display":"Single Shot","parts":[{"name":"Single Shot","type":"damage","multipliers":[200,0,0,0,0,0]}]}],"id":14},{"display_name":"Fierce Stomp","desc":"When using Escape, hold shift to quickly drop down and deal damage.","archetype":"Boltslinger","archetype_req":0,"base_abil":1,"parents":[42,64],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Fierce Stomp","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","cost":0,"hits":{"Fierce Stomp":1},"display":"Stomp Damage"}],"id":15},{"display_name":"Scorched Earth","desc":"Fire Creep become much stronger.","archetype":"Sharpshooter","archetype_req":0,"parents":[14],"dependencies":[4],"blockers":[],"cost":1,"display":{"row":26,"col":5,"icon":"node_1"},"properties":{"duration":2,"aoe":0.4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fire Creep","multipliers":[10,0,0,0,5,0]}],"id":16},{"display_name":"Leap","desc":"When you double tap jump, leap foward. (2s Cooldown)","archetype":"Boltslinger","archetype_req":5,"parents":[42,55],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":17},{"display_name":"Shocking Bomb","desc":"Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.","archetype":"Sharpshooter","archetype_req":5,"base_abil":2,"parents":[14,44,55],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_1"},"properties":{"gravity":0},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":3,"conversion":"Thunder"}],"id":18},{"display_name":"Mana Trap","desc":"Your Traps will give you 2.85 Mana per second when you stay close to them.","archetype":"Trapper","archetype_req":5,"base_abil":10,"parents":[43,44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":8,"icon":"node_3"},"properties":{"range":16,"manaRegen":2.85},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":10}],"id":19},{"display_name":"Escape Artist","desc":"When casting Escape, release 120 arrows towards the ground.","base_abil":1,"parents":[46,17],"dependencies":[],"blockers":[12],"cost":2,"display":{"row":31,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Per Arrow","multipliers":[20,0,10,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Max Damage (Escape Artist)","hits":{"Per Arrow":120},"display":"Max Damage (Escape Artist)"}],"id":20},{"display_name":"Initiator","desc":"If you do not damage an enemy for 5s or more, your next sucessful hit will deal +50% damage and add +1 Focus.","archetype":"Sharpshooter","archetype_req":5,"parents":[18,44,47],"dependencies":[61],"blockers":[],"cost":2,"display":{"row":31,"col":5,"icon":"node_2"},"properties":{},"effects":[],"id":21},{"display_name":"Call of the Hound","desc":"Arrow Shield summon a Hound that will attack and drag aggressive enemies towards your traps.","archetype":"Trapper","archetype_req":0,"base_abil":0,"parents":[21,47],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Call of the Hound","base_spell":8,"display":"DPS","parts":[{"name":"Single Hit","multipliers":[40,0,0,0,0,0]},{"name":"DPS","hits":{"Single Hit":4}}]}],"id":22},{"display_name":"Arrow Hurricane","desc":"Arrow Storm will shoot +2 stream of arrows.","archetype":"Boltslinger","archetype_req":8,"base_abil":7,"parents":[48,20],"dependencies":[],"blockers":[68],"cost":2,"display":{"row":33,"col":0,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Stream":2}}],"id":23},{"display_name":"Geyser Stomp","desc":"Fierce Stomp will create geysers, dealing more damage and vertical knockback.","base_abil":1,"parents":[56],"dependencies":[15],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Geyser Stomp","multipliers":[0,0,0,50,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Stomp Damage","hits":{"Geyser Stomp":1}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":15,"name":"aoe","value":1}]}],"id":24},{"display_name":"Crepuscular Ray","desc":"If you have 5 Focus, casting Arrow Storm will make you levitate and shoot 20 homing arrows per second until you run out of Focus. While in that state, you will lose 1 Focus per second.","archetype":"Sharpshooter","archetype_req":10,"parents":[49],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":37,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Crepuscular Ray","base_spell":6,"display":"DPS","parts":[{"name":"Single Arrow","multipliers":[20,0,0,5,0,0]},{"name":"DPS","hits":{"Single Arrow":20}},{"name":"Total Damage","hits":{"DPS":7}}]}],"id":25},{"display_name":"Grape Bomb","desc":"Arrow bomb will throw 3 additional smaller bombs when exploding.","base_abil":2,"parents":[51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_2"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Grape Bomb","multipliers":[30,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Grape Bomb":3}}],"id":26},{"display_name":"Tangled Traps","desc":"Your Traps will be connected by a rope that deals damage to enemies every 0.2s.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":38,"col":6,"icon":"node_1"},"properties":{"attackSpeed":0.2},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Line Damage Tick","multipliers":[20,0,0,0,0,20]},{"type":"add_spell_prop","base_spell":7,"target_part":"DPS","hits":{"Line Damage Tick":5}}],"id":27},{"display_name":"Snow Storm","desc":"Enemies near you will be slowed down.","parents":[24,63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":2,"icon":"node_2"},"properties":{"range":2.5,"slowness":0.3},"effects":[],"id":28},{"display_name":"All-Seeing Panoptes","desc":"Your bows from Guardian Angels become all-seeing, increasing their range, damage and letting them shoot up to +5 times each.","archetype":"Boltslinger","archetype_req":11,"base_abil":0,"parents":[28],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":40,"col":1,"icon":"node_3"},"properties":{"range":8,"shots":5},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Shot","multipliers":[0,0,0,0,10,0]},{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":5}}],"id":29},{"display_name":"Minefield","desc":"Allow you to place +6 Traps, but with reduced damage and range.","archetype":"Trapper","archetype_req":10,"base_abil":10,"parents":[26,53],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":40,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":7,"target_part":"Trap Damage","cost":0,"multipliers":[-80,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"aoe","value":-2},{"type":"prop","abil":10,"name":"traps","value":6}]}],"id":30},{"display_name":"Bow Proficiency I","desc":"Improve your Main Attack's damage and range when using a bow.","base_abil":999,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[5,0,0,0,0,0]}],"id":31},{"display_name":"Cheaper Arrow Bomb","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[31],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":32},{"display_name":"Cheaper Arrow Storm","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[12,11,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":21,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":33},{"display_name":"Cheaper Escape","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[7,0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":34},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Trapper","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":35},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7,39,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":36},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[34,36,39],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":37},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Boltslinger","archetype_req":0,"parents":[7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":38},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Sharpshooter","archetype_req":0,"parents":[36,0,34],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":39},{"display_name":"More Shields","desc":"Give +2 charges to Arrow Shield.","base_abil":0,"parents":[12,10],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":21,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Shield Damage":2,"Single Bow":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"DPS","behavior":"modify","hits":{"Single Shot":2}},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"charges","value":2}]}],"id":40},{"display_name":"Stormy Feet","desc":"Windy Feet will last longer and add more speed.","archetype":"Boltslinger","base_abil":1,"parents":[11],"dependencies":[9],"blockers":[],"cost":1,"display":{"row":23,"col":1,"icon":"node_0"},"properties":{"duration":60},"effects":[],"id":41},{"display_name":"Refined Gunpowder","desc":"Increase the damage of Arrow Bomb.","base_abil":2,"parents":[11,64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Bomb","multipliers":[50,0,0,0,0,0]}],"id":42},{"display_name":"More Traps","desc":"Increase the maximum amount of active Traps you can have by +2.","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[54],"dependencies":[10],"blockers":[],"cost":1,"display":{"row":26,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"traps","value":2}]}],"id":43},{"display_name":"Better Arrow Shield","desc":"Arrow Shield will gain additional area of effect, knockback and damage.","archetype":"Sharpshooter","archetype_req":0,"base_abil":0,"parents":[19,18,14],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":28,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Arrow Shield","behavior":"modify","multipliers":[40,0,0,0,0,0]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"behavior":"modify","name":"aoe","value":1}]}],"id":44},{"display_name":"Better Leap","desc":"Reduce leap's cooldown by 1s.","archetype":"Boltslinger","archetype_req":0,"base_abil":17,"parents":[17,55],"dependencies":[17],"blockers":[],"cost":1,"display":{"row":29,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":17,"name":"cooldown","value":-1}]}],"id":45},{"display_name":"Better Guardian Angels","desc":"Your Guardian Angels can shoot +4 arrows before disappearing.","archetype":"Boltslinger","archetype_req":0,"base_abil":0,"parents":[20,55],"dependencies":[8],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Single Bow","hits":{"Single Shot":4}}],"id":46},{"display_name":"Cheaper Arrow Storm (2)","desc":"Reduce the Mana cost of Arrow Storm.","base_abil":7,"parents":[21,19],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":47},{"display_name":"Precise Shot","desc":"+30% Critical Hit Damage","parents":[46,49,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":48},{"display_name":"Cheaper Arrow Shield","desc":"Reduce the Mana cost of Arrow Shield.","base_abil":0,"parents":[48,21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":49},{"display_name":"Rocket Jump","desc":"Arrow Bomb's self-damage will knockback you farther away.","base_abil":2,"parents":[47,21],"dependencies":[2],"blockers":[],"cost":1,"display":{"row":33,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Escape (2)","desc":"Reduce the Mana cost of Escape.","base_abil":1,"parents":[22,70],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":51},{"display_name":"Stronger Hook","desc":"Increase your Grappling Hook's range, speed and strength.","archetype":"Trapper","archetype_req":5,"base_abil":1,"parents":[51],"dependencies":[12],"blockers":[],"cost":1,"display":{"row":35,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":12,"name":"range","value":8}]}],"id":52},{"display_name":"Cheaper Arrow Bomb (2)","desc":"Reduce the Mana cost of Arrow Bomb.","base_abil":2,"parents":[63,30],"dependencies":[],"blockers":[],"cost":1,"display":{"row":40,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":53},{"display_name":"Bouncing Bomb","desc":"Arrow Bomb will bounce once when hitting a block or enemy","base_abil":2,"parents":[40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Homing Shots","desc":"Your Main Attack arrows will follow nearby enemies and not be affected by gravity","archetype":"Sharpshooter","archetype_req":2,"base_abil":999,"parents":[17,18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_2"},"properties":{},"effects":[],"id":55},{"display_name":"Shrapnel Bomb","desc":"Arrow Bomb's explosion will fling 15 shrapnel, dealing damage in a large area","archetype":"Boltslinger","archetype_req":8,"base_abil":2,"parents":[23,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Shrapnel Bomblet","multipliers":[40,0,0,0,20,0]}],"id":56},{"display_name":"Elusive","desc":"If you do not get hit for 8+ seconds, become immune to self-damage and remove Arrow Storm's recoil. (Dodging counts as not getting hit)","archetype":"Boltslinger","archetype_req":0,"parents":[24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":38,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"Double Shots","desc":"Double Main Attack arrows, but they deal -30% damage per arrow (harder to hit far enemies)","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[60],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-30,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":2},"display":"Total Damage"}],"id":58},{"display_name":"Triple Shots","desc":"Triple Main Attack arrows, but they deal -20% damage per arrow","archetype":"Boltslinger","archetype_req":0,"base_abil":999,"parents":[69,67],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Single Shot","multipliers":[-20,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"target_part":"Total Damage","hits":{"Single Shot":1},"display":"Total Damage"}],"id":59},{"display_name":"Power Shots","desc":"Main Attack arrows have increased speed and knockback","archetype":"Sharpshooter","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[58],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":60},{"display_name":"Focus","desc":"When hitting an aggressive mob 5+ blocks away, gain +1 Focus (Max 3). Resets if you miss once","archetype":"Sharpshooter","archetype_req":2,"parents":[68],"dependencies":[],"blockers":[],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","output":{"type":"stat","name":"damMult.Focus"},"scaling":[40],"slider_max":3}],"id":61},{"display_name":"More Focus","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[33,12],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":62},{"display_name":"More Focus (2)","desc":"Add +2 max Focus","archetype":"Sharpshooter","archetype_req":0,"base_abil":61,"parents":[25,28],"dependencies":[61],"blockers":[],"cost":1,"display":{"row":39,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Focus","slider_max":2,"output":{"type":"stat","name":"damMult.Focus"},"scaling":[-5]}],"id":63},{"display_name":"Traveler","desc":"For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)","parents":[42,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":25,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"spd"}],"output":{"type":"stat","name":"sdRaw"},"scaling":[1],"max":100}],"id":64},{"display_name":"Patient Hunter","desc":"Your Traps will deal +20% more damage for every second they are active (Max +80%)","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[40],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":8,"icon":"node_1"},"properties":{"max":80},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4,"output":{"type":"stat","name":"damMult.Basaltic:7.Trap Damage"},"slider_step":1,"scaling":[20]}],"id":65},{"display_name":"Stronger Patient Hunter","desc":"Add +80% Max Damage to Patient Hunter","archetype":"Trapper","archetype_req":0,"base_abil":10,"parents":[26],"dependencies":[65],"blockers":[],"cost":1,"display":{"row":38,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Trap Wait Time","slider_max":4},{"type":"raw_stat","bonuses":[{"type":"prop","abil":65,"name":"max","value":80}]}],"id":66},{"display_name":"Frenzy","desc":"Every time you hit an enemy, briefly gain +6% Walk Speed (Max 200%). Decay -40% of the bonus every second","archetype":"Boltslinger","archetype_req":0,"parents":[59,6],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","output":{"type":"stat","name":"spd"},"scaling":[6],"max":160}],"id":67},{"display_name":"Phantom Ray","desc":"Condense Arrow Storm into a single ray that damages enemies 10 times per second","base_abil":7,"parents":[37,4],"dependencies":[7],"blockers":[11,6,23],"cost":2,"display":{"row":16,"col":4,"icon":"node_2"},"properties":{"range":16},"effects":[{"type":"replace_spell","name":"Phantom Ray","base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Arrow","type":"damage","multipliers":[25,0,5,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Arrow":16}}]},{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":68},{"display_name":"Arrow Rain","desc":"When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies","base_abil":0,"parents":[6,38],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":15,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Per Arrow)","multipliers":[80,0,0,0,0,60]},{"type":"add_spell_prop","base_spell":4,"target_part":"Arrow Rain (Total)","hits":{"Arrow Rain (Per Arrow)":150}}],"id":69},{"display_name":"Decimator","desc":"Phantom Ray will increase its damage by 10% everytime you do not miss with it (Max 70%)","archetype":"Sharpshooter","archetype_req":0,"base_abil":7,"parents":[49,51],"dependencies":[68],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Phantom Ray hits","slider_max":7,"output":{"type":"stat","name":"damMult.Decimator:1.Single Arrow"},"scaling":[10]}],"id":70}],"Warrior":[{"display_name":"Bash","desc":"Violently bash the ground, dealing high damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_warrior"},"properties":{"aoe":4,"range":3},"effects":[{"type":"replace_spell","name":"Bash","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Single Hit","type":"damage","multipliers":[130,20,0,0,0,0]},{"name":"Total Damage","type":"total","hits":{"Single Hit":1}}]}],"id":0},{"display_name":"Spear Proficiency 1","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":1},{"display_name":"Cheaper Bash","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Bash","desc":"Bash will hit a second time at a farther range","parents":[1],"base_abil":0,"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{"range":3},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","cost":0,"hits":{"Single Hit":1}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","cost":0,"multipliers":[-50,0,0,0,0,0]}],"id":3},{"display_name":"Charge","desc":"Charge forward at high speed (hold shift to cancel)","parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_warrior"},"properties":{},"effects":[{"type":"replace_spell","name":"Charge","cost":25,"base_spell":2,"spell_type":"damage","scaling":"spell","display":"","parts":[]}],"id":4},{"display_name":"Heavy Impact","desc":"After using Charge, violently crash down into the ground and deal damage","base_abil":4,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":1,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Heavy Impact","cost":0,"multipliers":[100,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Heavy Impact":1}}],"id":5},{"display_name":"Vehement","desc":"For every 1% or 1 Raw Main Attack Damage you have from items, gain +2% Walk Speed (Max 20%)","archetype":"Fallen","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[7],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":{"type":"stat","name":"spd"},"scaling":[2,2],"max":20}],"id":6},{"display_name":"Tougher Skin","desc":"Harden your skin and become permanently +5% more resistant. For every 1% or 1 Raw Heath Regen you have from items, gain +10 Health (Max 100)","archetype":"Paladin","archetype_req":0,"parents":[4],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]},{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hprRaw"},{"type":"stat","name":"hprPct"}],"output":{"type":"stat","name":"hpBonus"},"scaling":[10,10],"max":100}],"id":7},{"display_name":"Uppercut","desc":"Rocket enemies in the air and deal massive damage","parents":[6,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_warrior"},"properties":{"aoe":3,"range":5},"effects":[{"type":"replace_spell","name":"Uppercut","cost":45,"base_spell":3,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"Uppercut","multipliers":[200,40,40,0,0,0]},{"name":"Total Damage","hits":{"Uppercut":1}}]}],"id":8},{"display_name":"Cheaper Charge","desc":"Reduce the Mana cost of Charge","base_abil":4,"parents":[8,10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":9},{"display_name":"War Scream","desc":"Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies","parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_warrior"},"properties":{"duration":30,"aoe":12,"defense_bonus":10},"effects":[{"type":"replace_spell","name":"War Scream","cost":35,"base_spell":4,"spell_type":"damage","scaling":"spell","display":"Total Damage","parts":[{"name":"War Scream","multipliers":[50,0,0,0,50,0]},{"name":"Total Damage","hits":{"War Scream":1}}]}],"id":10},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases base damage from all Earth attacks","archetype":"Fallen","archetype_req":0,"parents":[8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":11},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases base damage from all Thunder attacks","archetype":"Fallen","archetype_req":0,"parents":[8,14,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":12},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases base damage from all Water attacks","archetype":"Battle Monk","archetype_req":0,"parents":[9,12,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Battle Monk","archetype_req":0,"parents":[10,12,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Paladin","archetype_req":0,"parents":[10],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":15},{"display_name":"Quadruple Bash","desc":"Bash will hit 4 times at an even larger range","archetype":"Fallen","archetype_req":0,"base_abil":0,"parents":[11,17],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{"range":6},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Single Hit":2}},{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[-20,0,0,0,0,0]}],"id":16},{"display_name":"Fireworks","desc":"Mobs hit by Uppercut will explode mid-air and receive additional damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[12,16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fireworks","multipliers":[80,0,20,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fireworks":1}}],"id":17},{"display_name":"Half-Moon Swipe","desc":"Uppercut will deal a footsweep attack at a longer and wider angle. All elemental conversions become Water","archetype":"Battle Monk","archetype_req":1,"base_abil":8,"parents":[13],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{"range":4},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":-10,"multipliers":[-70,0,0,30,0,0]}],"id":18},{"display_name":"Flyby Jab","desc":"Damage enemies in your way when using Charge","base_abil":4,"parents":[14,20],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":6,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flyby Jab","multipliers":[20,0,0,0,0,40]},{"type":"add_spell_prop","base_spell":2,"target_part":"Contact Damage","display":"Contact Damage","hits":{"Flyby Jab":1}}],"id":19},{"display_name":"Flaming Uppercut","desc":"Uppercut will light mobs on fire, dealing damage every 0.6 seconds","archetype":"Paladin","archetype_req":0,"base_abil":8,"parents":[15,19],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":12,"col":8,"icon":"node_1"},"properties":{"duration":3,"tick":0.6},"effects":[{"type":"replace_spell","name":"Flaming Uppercut","base_spell":8,"display":"DPS","parts":[{"name":"Damage Tick","multipliers":[0,0,0,0,50,0]},{"name":"DPS","hits":{"Damage Tick":1.6666666666666667}},{"name":"Total Damage","hits":{"Damage Tick":5}}]}],"id":20},{"display_name":"Iron Lungs","desc":"War Scream deals more damage","archetype":"Paladin","archetype_req":0,"base_abil":10,"parents":[19,20],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"War Scream","cost":0,"multipliers":[30,0,0,0,0,30]}],"id":21},{"display_name":"Generalist","desc":"After casting 3 different spells in a row, your next spell will cost 5 mana","archetype":"Battle Monk","archetype_req":3,"parents":[23],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":2,"icon":"node_3"},"properties":{},"effects":[],"id":22},{"display_name":"Counter","desc":"When dodging a nearby enemy attack, get 30% chance to instantly attack back","archetype":"Battle Monk","archetype_req":0,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_1"},"properties":{"chance":30},"effects":[{"type":"replace_spell","name":"Counter","base_spell":5,"display":"Counter Damage","parts":[{"name":"Counter Damage","multipliers":[60,0,20,0,0,20]}]}],"id":23},{"display_name":"Mantle of the Bovemists","desc":"When casting War Scream, create a holy shield around you that reduces all incoming damage by 70% for 3 hits (20s cooldown)","archetype":"Paladin","archetype_req":3,"parents":[21],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"mantle_charge":3},"effects":[{"type":"raw_stat","toggle":"Activate Mantle","bonuses":[{"type":"stat","name":"defMult.Mantle","value":70}]}],"id":24},{"display_name":"Bak'al's Grasp","desc":"After casting War Scream, become Corrupted (15s Cooldown). You cannot heal while in that state. While Corrupted, every 2% of Health you lose will add +4 Raw Damage to your attacks (Max 120)","archetype":"Fallen","archetype_req":2,"parents":[16,17],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":16,"col":1,"icon":"node_3"},"properties":{"cooldown":15},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","slider_max":100,"slider_step":1,"output":{"type":"stat","name":"damRaw"},"max":120,"scaling":[2]}],"id":25},{"display_name":"Spear Proficiency 2","desc":"Improve your Main Attack's damage and range w/ spear","base_abil":999,"parents":[25,27],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":0,"icon":"node_0"},"properties":{"melee_range":1},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[5,0,0,0,0,0]}],"id":26},{"display_name":"Cheaper Uppercut","desc":"Reduce the Mana Cost of Uppercut","base_abil":8,"parents":[26,28,23],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":27},{"display_name":"Aerodynamics","desc":"During Charge, you can steer and change direction","archetype":"Battle Monk","archetype_req":0,"base_abil":4,"parents":[27,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":28},{"display_name":"Provoke","desc":"Mobs damaged by War Scream will target only you for at least 5s. Reduce the Mana cost of War Scream","base_abil":10,"parents":[28,24],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":29},{"display_name":"Precise Strikes","desc":"+30% Critical Hit Damage","parents":[27,26],"dependencies":[],"blockers":[],"cost":1,"display":{"row":18,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"critDamPct","value":30}]}],"id":30},{"display_name":"Air Shout","desc":"War Scream will fire a projectile that can go through walls and deal damage multiple times","base_abil":10,"parents":[28,29],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":18,"col":6,"icon":"node_1"},"properties":{"attackRate":2},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Air Shout","multipliers":[40,0,0,0,0,10]}],"id":31},{"display_name":"Enraged Blow","desc":"While Corriupted, every 1% of Health you lose will increase your damage by +3% (Max 300%)","archetype":"Fallen","archetype_req":0,"base_abil":25,"parents":[26],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":20,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider_name":"Corrupted","slider":true,"output":{"type":"stat","name":"damMult.Enraged"},"scaling":[3]}],"id":32},{"display_name":"Flying Kick","desc":"When using Charge, mobs hit will halt your momentum and get knocked back","archetype":"Battle Monk","archetype_req":1,"base_abil":4,"parents":[27,34],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick","multipliers":[150,0,0,20,0,30]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Flying Kick":1},"display":"Flying Kick Max Damage"}],"id":33},{"display_name":"Stronger Mantle","desc":"Add +2 additional charges to Mantle of the Bovemists","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[35,33],"dependencies":[24],"blockers":[],"cost":1,"display":{"row":20,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":24,"name":"mantle_charge","value":2}]}],"id":34},{"display_name":"Manachism","desc":"If you receive a hit that's less than 5% of your max HP, gain 10 Mana (1s Cooldown)","archetype":"Paladin","archetype_req":3,"parents":[34,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_2"},"properties":{"cooldown":1},"effects":[],"id":35},{"display_name":"Boiling Blood","desc":"Bash leaves a trail of boiling blood behind its first explosion, slowing down and damaging enemies above it every 0.4 seconds","base_abil":0,"parents":[32,37],"dependencies":[],"blockers":[],"cost":2,"display":{"row":22,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Boiling Blood","cost":0,"multipliers":[25,0,0,0,5,0]}],"id":36},{"display_name":"Ragnarokkr","desc":"War Scream become deafening, increasing its duration and giving damage bonus to players","archetype":"Fallen","archetype_req":0,"base_abil":10,"parents":[36,33],"dependencies":[10],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":10},{"type":"raw_stat","bonuses":[{"type":"prop","abil":10,"name":"duration","value":90}]}],"id":37},{"display_name":"Ambidextrous","desc":"Increase your chance to attack with Counter by +30%","base_abil":23,"parents":[33,34,39],"dependencies":[23],"blockers":[],"cost":1,"display":{"row":22,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":23,"name":"chance","value":30}]}],"id":38},{"display_name":"Burning Heart","desc":"For every 100 Health Bonus you have from item IDs, gain +2% Fire Damage (Max 100%)","archetype":"Paladin","archetype_req":0,"parents":[38,40],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"hpBonus"}],"output":{"type":"stat","name":"fDamPct"},"scaling":[0.02],"max":100}],"id":39},{"display_name":"Stronger Bash","desc":"Increase the damage of Bash","base_abil":0,"parents":[39,35],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Single Hit","multipliers":[30,0,0,0,0,0]}],"id":40},{"display_name":"Intoxicating Blood","desc":"After leaving Corrupted, gain 2% of the health lost back for each enemy killed while Corrupted","archetype":"Fallen","archetype_req":5,"base_abil":25,"parents":[37,36],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":23,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":41},{"display_name":"Comet","desc":"After being hit by Fireworks, enemies will crash into the ground and receive more damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[37],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":24,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Comet","cost":0,"multipliers":[80,20,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","cost":0,"hits":{"Comet":1}}],"id":42},{"display_name":"Collide","desc":"Mobs thrown into walls from Flying Kick will explode and receive additonal damage","archetype":"Battle Monk","archetype_req":4,"base_abil":4,"parents":[38,39],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":5,"icon":"node_1"},"properties":{"aoe":4},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Collide","cost":0,"multipliers":[150,0,0,0,50,0]},{"type":"add_spell_prop","base_spell":2,"target_part":"Flying Kick Max Damage","hits":{"Collide":1}}],"id":43},{"display_name":"Rejuvenating Skin","desc":"Regain back 30% of the damage you take as healing over 30s","archetype":"Paladin","archetype_req":5,"parents":[39,40],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":44},{"display_name":"Uncontainable Corruption","desc":"Reduce the cooldown of Bak'al's Grasp by -5s, and increase the raw damage gained for every 2% of health lost by +1","base_abil":25,"parents":[36,46],"dependencies":[25],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"stat","name":"damRaw"},"scaling":[0.5]},{"type":"raw_stat","bonuses":[{"type":"prop","abil":25,"name":"cooldown","value":-5}]}],"id":45},{"display_name":"Radiant Devotee","desc":"For every 4% Reflection you have from items, gain +1/5s Mana Regen (Max 10/5s)","archetype":"Battle Monk","archetype_req":1,"parents":[47,45],"dependencies":[],"blockers":[],"cost":1,"display":{"row":26,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","inputs":[{"type":"stat","name":"ref"}],"output":{"type":"stat","name":"mr"},"scaling":[0.25],"max":10}],"id":46},{"display_name":"Whirlwind Strike","desc":"Uppercut will create a strong gust of air, launching you upward with enemies (Hold shift to stay grounded)","archetype":"Battle Monk","archetype_req":5,"base_abil":8,"parents":[38,46],"dependencies":[8],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{"range":2},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","multipliers":[0,0,0,0,0,50]}],"id":47},{"display_name":"Mythril Skin","desc":"Gain +5% Base Resistance and become immune to knockback","archetype":"Paladin","archetype_req":6,"parents":[44],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"defMult.Base","value":5}]}],"id":48},{"display_name":"Armour Breaker","desc":"While Corrupted, losing 30% Health will make your next Uppercut destroy enemies' defense, rendering them weaker to damage","archetype":"Fallen","archetype_req":0,"base_abil":8,"parents":[45,46],"dependencies":[25],"blockers":[],"cost":2,"display":{"row":27,"col":1,"icon":"node_2"},"properties":{"duration":8},"effects":[{"type":"raw_stat","toggle":"Activate Armor Breaker","bonuses":[{"type":"stat","name":"damMult.ArmorBreaker","value":30}]}],"id":49},{"display_name":"Shield Strike","desc":"When your Mantle of the Bovemist loses all charges, deal damage around you for each Mantle individually lost","archetype":"Paladin","archetype_req":0,"base_abil":24,"parents":[48,51],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":6,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Shield Strike","base_spell":6,"display":"Damage per Shield","parts":[{"name":"Damage per Shield","multipliers":[60,0,20,0,0,0]}]}],"id":50},{"display_name":"Sparkling Hope","desc":"Everytime you heal 5% of your max health, deal damage to all nearby enemies","archetype":"Paladin","archetype_req":0,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_2"},"properties":{"aoe":6},"effects":[{"type":"replace_spell","name":"Sparkling Hope","base_spell":7,"display":"Damage Tick","parts":[{"name":"Damage Tick","multipliers":[10,0,5,0,0,0]}]}],"id":51},{"display_name":"Massive Bash","desc":"While Corrupted, every 3% Health you lose will add +1 AoE to Bash (Max 10)","archetype":"Fallen","archetype_req":8,"base_abil":25,"parents":[53,45],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Corrupted","output":{"type":"prop","abil":0,"name":"aoe"},"scaling":[0.3333333333333333],"max":10}],"id":52},{"display_name":"Tempest","desc":"War Scream will ripple the ground and deal damage 3 times in a large area","archetype":"Battle Monk","archetype_req":0,"base_abil":10,"parents":[52,54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{"aoe":16},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest","multipliers":[30,10,0,0,0,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Tempest Total Damage","hits":{"Tempest":3}},{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Tempest":3}}],"id":53},{"display_name":"Spirit of the Rabbit","desc":"Reduce the Mana cost of Charge and increase your Walk Speed by +20%","archetype":"Battle Monk","archetype_req":5,"base_abil":4,"parents":[53,47],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5},{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20}]}],"id":54},{"display_name":"Massacre","desc":"While Corrupted, if your effective attack speed is Slow or lower, hitting an enemy with your Main Attack will add +1% to your Corrupted bar","archetype":"Fallen","archetype_req":5,"base_abil":999,"parents":[53,52],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Axe Kick","desc":"Increase the damage of Uppercut, but also increase its mana cost","base_abil":8,"parents":[53,54],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":3,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Uppercut","cost":10,"multipliers":[100,0,0,0,0,0]}],"id":56},{"display_name":"Radiance","desc":"Bash will buff your allies' positive IDs. (15s Cooldown)","archetype":"Paladin","archetype_req":2,"base_abil":0,"parents":[54,58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":29,"col":5,"icon":"node_2"},"properties":{"cooldown":15},"effects":[],"id":57},{"display_name":"Cheaper Bash 2","desc":"Reduce the Mana cost of Bash","base_abil":0,"parents":[57,50,51],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":58},{"display_name":"Cheaper War Scream","desc":"Reduce the Mana cost of War Scream","base_abil":10,"parents":[52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Discombobulate","desc":"Every time you hit an enemy, briefly increase your elemental damage dealt to them by +3 (Additive, Max +80). This bonus decays -5 every second","archetype":"Battle Monk","archetype_req":11,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Hits dealt","slider_max":27,"output":[{"type":"stat","name":"eDamAddMin"},{"type":"stat","name":"eDamAddMax"},{"type":"stat","name":"tDamAddMin"},{"type":"stat","name":"tDamAddMax"},{"type":"stat","name":"wDamAddMin"},{"type":"stat","name":"wDamAddMax"},{"type":"stat","name":"fDamAddMin"},{"type":"stat","name":"fDamAddMax"},{"type":"stat","name":"aDamAddMin"},{"type":"stat","name":"aDamAddMax"}],"scaling":[3],"max":80}],"id":60},{"display_name":"Thunderclap","desc":"Bash will cast at the player's position and gain additional AoE.\n\n All elemental conversions become Thunder","archetype":"Battle Monk","archetype_req":8,"parents":[62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_1"},"properties":{},"effects":[{"type":"convert_spell_conv","target_part":"all","base_spell":1,"conversion":"Thunder"},{"type":"raw_stat","bonuses":[{"type":"prop","abil":0,"name":"aoe","value":3}]}],"id":61},{"display_name":"Cyclone","desc":"After casting War Scream, envelop yourself with a vortex that damages nearby enemies every 0.5s","archetype":"Battle Monk","archetype_req":0,"parents":[54],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":4,"icon":"node_1"},"properties":{"aoe":4,"duration":20},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone","multipliers":[10,0,0,0,5,10]},{"type":"add_spell_prop","base_spell":4,"target_part":"Cyclone Total Damage","hits":{"Cyclone":40}}],"id":62},{"display_name":"Second Chance","desc":"When you receive a fatal blow, survive and regain 30% of your Health (10m Cooldown)","archetype":"Paladin","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":63},{"display_name":"Blood Pact","desc":"If you do not have enough mana to cast a spell, spend health instead (0.6% health per mana)","archetype":"Fallen","archetype_req":10,"parents":[59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_3"},"properties":{"health_cost":0.6},"effects":[],"id":64},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,66],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":4,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Brink","bonuses":[{"type":"stat","name":"defMult.Brink","value":40}]}],"id":65},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,65],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":66},{"display_name":"Martyr","desc":"When you receive a fatal blow, all nearby allies become invincible","archetype":"Paladin","archetype_req":0,"parents":[63],"dependencies":[],"blockers":[],"cost":2,"display":{"row":35,"col":8,"icon":"node_1"},"properties":{"duration":3,"aoe":12},"effects":[],"id":67},{"display_name":"Haemorrhage","desc":"Reduce Blood Pact's health cost. (0.3% health per mana)","archetype":"Fallen","archetype_req":0,"base_abil":64,"parents":[64],"dependencies":[64],"blockers":[],"cost":2,"display":{"row":35,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":64,"name":"health_cost","value":-0.3}]}],"id":68}],"Mage":[{"display_name":"Meteor","desc":"Summon a slow but powerful meteor from the sky, dealing massive damage in a large area","parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_mage"},"properties":{"aoe":5,"range":18},"effects":[{"type":"replace_spell","name":"Meteor","cost":55,"base_spell":3,"display":"Total Damage","parts":[{"name":"Meteor Damage","multipliers":[300,100,0,0,0,0]},{"name":"Total Damage","hits":{"Meteor Damage":1}}]}],"id":0},{"display_name":"Teleport","desc":"Instantly teleport in the direction you're facing","parents":[4],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":4,"icon":"node_mage"},"properties":{"range":12},"effects":[{"type":"replace_spell","name":"Teleport","cost":25,"base_spell":2,"display":"","parts":[]}],"id":1},{"display_name":"Heal","desc":"Heal yourself and nearby allies in a large area around you. (When healing an ally, you cannot heal more than 30% of their max health)","parents":[14,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":2,"icon":"node_mage"},"properties":{"aoe":5},"effects":[{"type":"replace_spell","name":"Heal","cost":35,"base_spell":1,"display":"Heal","parts":[{"name":"Heal","power":0.1}]}],"id":2},{"display_name":"Ice Snake","desc":"Summon a fast-moving ice snake that reduces your enemies' speed and damage them.","parents":[13,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":6,"icon":"node_mage"},"properties":{"range":18,"effects":40,"duration":3},"effects":[{"type":"replace_spell","name":"Ice Snake","cost":35,"base_spell":4,"display":"Ice Snake Damage","parts":[{"name":"Ice Snake Damage","multipliers":[70,0,0,30,0,0]}]}],"id":3},{"display_name":"Shooting Star","desc":"Drastically increase the speed of your Meteor ability.","base_abil":3,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":4},{"display_name":"Wand Proficiency I","desc":"Improve your Main Attack's damage and range when using a wand.","base_abil":999,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":5},{"display_name":"Cheaper Meteor","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[5],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-10}],"id":6},{"display_name":"Earth Mastery","base_abil":998,"desc":"Increases your base damage from all Earth attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":7},{"display_name":"Thunder Mastery","base_abil":998,"desc":"Increases your base damage from all Thunder attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2,12],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":8},{"display_name":"Water Mastery","base_abil":998,"desc":"Increases your base damage from all Water attacks","archetype":"Light Bender","archetype_req":0,"parents":[12,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":11,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":9},{"display_name":"Air Mastery","base_abil":998,"desc":"Increases base damage from all Air attacks","archetype":"Riftwalker","archetype_req":0,"parents":[2],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":10},{"display_name":"Fire Mastery","base_abil":998,"desc":"Increases base damage from all Fire attacks","archetype":"Arcanist","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":10,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":11},{"display_name":"Cheaper Teleport","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[2,3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":8,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":12},{"display_name":"Wisdom","desc":"For every 2% or 2 Raw Spell Damage you have from items, gain +1/5s mana regen (Max 5/5s)","archetype":"Arcanist","archetype_req":0,"parents":[1],"dependencies":[],"blockers":[14],"cost":1,"display":{"row":6,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sdPct"},{"type":"stat","name":"sdRaw"}],"output":{"type":"stat","name":"mr"},"scaling":[0.5,0.5],"max":5}],"id":13},{"display_name":"Wand Proficiency II","desc":"Improve your Main Attack's damage and range when using a wand.","archetype":"Riftwalker","archetype_req":0,"base_abil":999,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":6,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"mdPct","value":5}]}],"id":14},{"display_name":"Wind Slash","desc":"When using Teleport, slash through the air and deal damage to enemies you pierce.","archetype":"Riftwalker","base_abil":1,"parents":[10,16],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":12,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Wind Slash","base_spell":2,"multipliers":[50,0,0,0,0,50]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":2,"display":"Total Damage","hits":{"Wind Slash":1}}],"id":15},{"display_name":"Thunderstorm","desc":"After casting Meteor, summon 3 lightning strikes and deal additional damage","base_abil":0,"parents":[15,8],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":12,"col":2,"icon":"node_1"},"properties":{"aoe":2},"effects":[{"type":"add_spell_prop","target_part":"Lightning Damage","base_spell":3,"multipliers":[30,0,15,0,0,0]},{"type":"add_spell_prop","target_part":"Total Damage","base_spell":3,"hits":{"Lightning Damage":3}}],"id":16},{"display_name":"Stronger Meteor","desc":"Increase the damage of Meteor.","base_abil":0,"archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[0],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Meteor Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Lightning Damage","behavior":"modify","multipliers":[30,90,0,0,0,0]}],"id":17},{"display_name":"Burning Sigil","desc":"Meteor will leave a sigil that damages enemies every 0.4s.","base_abil":0,"parents":[11,7],"dependencies":[],"blockers":[],"cost":2,"display":{"row":12,"col":7,"icon":"node_1"},"properties":{"aoe":7,"duration":8},"effects":[{"type":"replace_spell","name":"Burning Sigil","base_spell":6,"display":"DPS","parts":[{"name":"Tick Damage","multipliers":[15,0,0,0,25,0]},{"name":"DPS","hits":{"Tick Damage":2.5}},{"name":"Total Burn Damage","hits":{"Tick Damage":20}}]}],"id":18},{"display_name":"Sunshower","desc":"Heal emit a strong light, damaging nearby enemies.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[9],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":13,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Sunshower Damage","multipliers":[70,0,0,30,0,0]}],"id":19},{"display_name":"Windsweeper","desc":"Your Main Attack will add +1 Winded to enemies you hit. (Max 5, 0.5s cooldown) Ice Snake will deal additional damage to enemies for every Winded they have","archetype":"Riftwalker","archetype_req":3,"parents":[15,16],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":15,"col":1,"icon":"node_3"},"properties":{"max":5},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"nConvBase:4.Ice Snake Damage"},"scaling":[20],"slider_step":1,"slider_max":5},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":{"type":"stat","name":"wConvBase:4.Ice Snake Damage"},"scaling":[10]}],"id":20},{"display_name":"Ophanim","desc":"When casting Meteor, instead summon 2 orbs of light with 200 Health that will attack when you use your Main Attack. When they damage an enemy, they lose 20% of their Health. They can be healed back.","archetype":"Light Bender","archetype_req":2,"parents":[19],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":4,"icon":"node_3"},"properties":{"health":200},"effects":[{"type":"replace_spell","name":"Ophanim","base_spell":3,"display":"Per Melee (max)","parts":[{"name":"Per Orb","multipliers":[50,0,30,20,0,0]},{"name":"Per Melee (max)","hits":{"Per Orb":2}}]},{"type":"add_spell_prop","base_spell":3,"cost":30}],"id":21},{"display_name":"Arcane Transfer","desc":"Meteor and Ice Snake will add +5 Mana to a Mana Bank for every aggressive enemy you hit. Heal will now transfer the content of your Mana Bank into usable Mana instead of healing.","archetype":"Arcanist","archetype_req":2,"parents":[18],"dependencies":[],"blockers":[],"cost":2,"display":{"row":15,"col":7,"icon":"node_3"},"properties":{"bank":90},"effects":[{"type":"replace_spell","name":"Arcane Transfer","base_spell":1,"parts":[],"display":""}],"id":22},{"display_name":"Cheaper Heal","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[20,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":17,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":23},{"display_name":"Purification","desc":"Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)","base_abil":1,"parents":[21,23,25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":17,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":24},{"display_name":"Sentient Snake","desc":"Ice Snake will follow the direction you're facing, allowing you to control it.","base_abil":3,"parents":[22,24],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":17,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":25},{"display_name":"Eye Piercer","desc":"Teleport will blind enemies, confusing them for a short amount of time.","base_abil":1,"parents":[23],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":18,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":26},{"display_name":"Breathless","desc":"Meteor will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[23,24],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":18,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Lightning Damage"}],"scaling":[15]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[10]}],"id":27},{"display_name":"Larger Heal","desc":"Increase your Heal's range.","base_abil":1,"archetype":"Light Bender","archetype_req":0,"parents":[24,25],"dependencies":[2],"blockers":[22],"cost":1,"display":{"row":18,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":2,"name":"aoe","value":2}]}],"id":28},{"display_name":"Larger Mana Bank","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[25],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":18,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":22,"name":"bank","value":30}]}],"id":29},{"display_name":"Cheaper Ice Snake","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[26,32],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":30},{"display_name":"Cheaper Teleport II","desc":"Reduce the Mana cost of Teleport.","base_abil":1,"parents":[32,24],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":31},{"display_name":"Fortitude","desc":"After healing 120% of your max health within 10s, apply a damage bonus to each player you've healed. (15s Cooldown)","base_abil":2,"archetype":"Light Bender","archetype_req":0,"parents":[30,31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":2,"icon":"node_2"},"properties":{"duration":5},"effects":[],"id":32},{"display_name":"Pyrokinesis","desc":"When your Mana Bank reaches 30, your Main Attack will stop and explode when it hits an enemy. (Damage is dealt as Main Attack Damage)","base_abil":4,"archetype":"Arcanist","archetype_req":4,"parents":[25],"dependencies":[],"blockers":[],"cost":2,"display":{"row":20,"col":7,"icon":"node_2"},"properties":{},"__TODO":"replace_spell pyrokinesis damage","effects":[],"id":33},{"display_name":"Seance","desc":"For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)","archetype":"","archetype_req":0,"parents":[33,36],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"ls"}],"output":{"type":"stat","name":"sdPct"},"scaling":[0.2],"max":50}],"id":34},{"display_name":"Blink","desc":"Teleport will trigger 2 times in quick successions","base_abil":1,"archetype":"Riftwalker","archetype_req":0,"parents":[32,30],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":21,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":1,"name":"range","value":-4}]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Wind Slash":1,"Explosion Damage":1}}],"id":35},{"display_name":"Snake Nest","desc":"Ice Snake will summon 3 snakes.","base_abil":3,"parents":[34,31,40],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":22,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":36},{"display_name":"Arcane Restoration","desc":"Pyrokinesis will add +1 Mana every 1s to your Mana Bank when hitting an aggressive enemy.","base_abil":999,"archetype":"Arcanist","archetype_req":0,"parents":[34,36],"dependencies":[33],"blockers":[],"cost":2,"display":{"row":23,"col":6,"icon":"node_1"},"properties":{"duration":4},"effects":[],"id":37},{"display_name":"Fluid Healing","desc":"For every 1% Water Damage Bonus you have, buff Heal's healing power by +0.3%.","archetype":"Light Bender","archetype_req":0,"base_abil":2,"parents":[40,39],"dependencies":[],"blockers":[],"cost":2,"display":{"row":23,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"round":false,"inputs":[{"type":"stat","name":"wDamPct"}],"output":{"type":"stat","name":"healPct"},"scaling":[0.3]}],"id":38},{"display_name":"Transonic Warp","desc":"Teleport will deal additional damage to enemies for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[30],"dependencies":[3,20],"blockers":[],"cost":2,"display":{"row":23,"col":0,"icon":"node_2"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"nConvBase:2.Wind Slash"},{"type":"stat","name":"nConvBase:2.Explosion Damage"}],"scaling":[20]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[5]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"aConvBase:2.Wind Slash"},{"type":"stat","name":"aConvBase:2.Explosion Damage"}],"scaling":[5]}],"id":39},{"display_name":"Healthier Ophanim I","desc":"Increase the health of your orbs from Ophanim by +800 and reduce the damage they take when hitting an enemy by -5%.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[32,31],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":22,"col":3,"icon":"node_0"},"properties":{},"effects":[],"id":40},{"display_name":"Orphion's Pulse","desc":"Heal will trigger 2 more times, increasing the overall healing.","archetype":"Light Bender","base_abil":2,"parents":[40,36],"dependencies":[2],"blockers":[22],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{"aoe":5},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Second and Third Pulses","power":0.15},{"type":"add_spell_prop","base_spell":1,"display":"Total Heal","target_part":"Total Heal","hits":{"Heal":1,"Second and Third Pulses":2}}],"id":41},{"display_name":"Diffusion","desc":"If you kill an enemy with Winded on them, the leftover Winded will spread to nearby enemies.","archetype":"Riftwalker","archetype_req":6,"base_abil":20,"parents":[39,38],"dependencies":[20],"blockers":[],"cost":2,"display":{"row":25,"col":1,"icon":"node_3"},"properties":{"aoe":5},"effects":[],"id":42},{"display_name":"Lightweaver","desc":"After healing 50% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)","archetype":"Light Bender","archetype_req":7,"parents":[41],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lightweaver","base_spell":5,"display":"Orb Damage","parts":[{"name":"Single Orb","type":"damage","multipliers":[30,0,0,0,20,0]},{"name":"Orb Damage","type":"total","hits":{"Single Orb":3}}]}],"id":43},{"display_name":"Arcane Speed","desc":"After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)","base_abil":2,"parents":[43,45],"dependencies":[2],"blockers":[],"cost":2,"display":{"row":25,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":44},{"display_name":"Larger Mana Bank II","desc":"Increase your maximum Mana Bank by +30.","base_abil":1,"archetype":"Arcanist","archetype_req":0,"parents":[34,44],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":25,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":45},{"display_name":"Psychokinesis","desc":"Meteor will launch directly from you as a slow projectile.","base_abil":3,"archetype":"Arcanist","archetype_req":5,"parents":[45,44],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":26,"col":7,"icon":"node_1"},"properties":{"range":20},"effects":[],"id":46},{"display_name":"More Winded","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[42],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":26,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":47},{"display_name":"Cheaper Ice Snake II","desc":"Reduce the Mana cost of Ice Snake.","base_abil":3,"parents":[42,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":48},{"display_name":"Cheaper Meteor II","desc":"Reduce the Mana cost of Meteor.","base_abil":0,"parents":[52,43,44],"dependencies":[],"blockers":[],"cost":1,"display":{"row":27,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":49},{"display_name":"Chaos Explosion","desc":"When your Mana Bank reaches 120, casting Arcane Transfer will rapidly unleash the last 3 spells you've cast in order.","base_abil":22,"archetype":"Arcanist","archetype_req":8,"parents":[45],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":27,"col":8,"icon":"node_3"},"properties":{},"effects":[],"id":50},{"display_name":"Arcane Power","desc":"Meteor and Ice Snake will add +2 Mana to your Mana Bank for each aggressive mob you hit.","base_abil":22,"archetype":"Arcanist","archetype_req":0,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":29,"col":6,"icon":"node_0"},"properties":{},"effects":[],"id":51},{"display_name":"Explosive Entrance","desc":"Deal Damage in an area on the location you Teleport to.","base_abil":1,"parents":[48,49],"dependencies":[1],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_1"},"properties":{"aoe":3},"effects":[{"type":"add_spell_prop","target_part":"Explosion Damage","base_spell":2,"multipliers":[50,0,0,0,30,0]},{"type":"add_spell_prop","behavior":"modify","target_part":"Total Damage","base_spell":2,"hits":{"Explosion Damage":1}}],"id":52},{"display_name":"Gust","desc":"Ice Snake will add +1 Winded to enemies and deal more damage.","base_abil":3,"archetype":"Riftwalker","archetype_req":7,"parents":[48,52],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":2,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Ice Snake Damage","base_spell":4,"multipliers":[0,0,0,0,0,20]}],"id":53},{"display_name":"Time Dilation","desc":"When sprinting, create an area that increases the speed of all allies the longer they run in it. (Step out or stop running to cancel)","archetype":"Riftwalker","archetype_req":7,"parents":[48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":0,"icon":"node_2"},"properties":{},"effects":[],"id":54},{"display_name":"Better Ophanim","desc":"Increase your maximum orbs from Ophanim by +1.","archetype":"Light Bender","archetype_req":0,"base_abil":21,"parents":[52,49],"dependencies":[21],"blockers":[],"cost":1,"display":{"row":28,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":1}}],"id":55},{"display_name":"Arctic Snake","desc":"Ice Snake will freeze enemies completely for 2s.","base_abil":3,"parents":[50],"dependencies":[3],"blockers":[],"cost":2,"display":{"row":28,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":56},{"display_name":"Devitalize","desc":"Enemies will deal -2% damage for every Winded they have.","base_abil":20,"archetype":"Riftwalker","archetype_req":5,"parents":[58,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":57},{"display_name":"More Winded II","desc":"Incrase your maximum Winded by +5.","base_abil":20,"archetype":"Riftwalker","archetype_req":0,"parents":[54,59],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"prop","abil":20,"name":"max","value":5}]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","slider_max":5}],"id":58},{"display_name":"Dynamic Faith","desc":"For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)","parents":[58,61],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"sprint"}],"output":{"type":"stat","name":"tDamPct"},"scaling":[0.5],"max":100}],"id":59},{"display_name":"Divination","desc":"Increase your maximum orbs from Ophanim by +3 and reduce their damage.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[59,61],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":32,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Orb","multipliers":[-30,0,-10,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Per Melee (max)","hits":{"Per Orb":3}}],"id":60},{"display_name":"Healthier Ophanim II","desc":"Increase the health of your orbs from Ophanim by +3000.","base_abil":21,"archetype":"Light Bender","archetype_req":0,"parents":[55],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[],"id":61},{"display_name":"Sunflare","desc":"After healing 400% of your max health within 10s, your next Heal will make every nearby ally temporarily immune.","archetype":"Light Bender","archetype_req":12,"base_abil":2,"parents":[61],"dependencies":[],"blockers":[],"cost":2,"display":{"row":32,"col":5,"icon":"node_3"},"properties":{"aoe":12,"duration":5},"effects":[],"id":62},{"display_name":"Larger Mana Bank III","desc":"Increase your maximum Mana Bank by +30.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[56],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":31,"col":7,"icon":"node_0"},"properties":{},"effects":[],"id":63},{"display_name":"Arcane Overflow","desc":"Arcane Transfer will allow you to overflow your mana over its maximum limits.","archetype":"Arcanist","archetype_req":12,"base_abil":22,"parents":[63],"dependencies":[22],"blockers":[],"cost":2,"display":{"row":33,"col":7,"icon":"node_3"},"properties":{},"effects":[],"id":64},{"display_name":"Memory Recollection","desc":"Chaos Explosion will cast +2 spells.","archetype":"Arcanist","archetype_req":0,"base_abil":22,"parents":[64],"dependencies":[50],"blockers":[],"cost":1,"display":{"row":34,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":65},{"display_name":"Manastorm","desc":"If you have more than 100 Mana, casting a spell will give you +10 mana over 5s.","archetype":"Arcanist","archetype_req":1,"parents":[69,64,62],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":5,"icon":"node_1"},"properties":{},"effects":[],"id":66},{"display_name":"Better Lightweaver","desc":"Increase your Max Orbs by +2.","archetype":"Light Bender","archetype_req":0,"base_abil":43,"parents":[69,66],"dependencies":[43],"blockers":[],"cost":1,"display":{"row":35,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","target_part":"Orb Damage","base_spell":5,"hits":{"Single Orb":2}}],"id":67},{"display_name":"Timelock","desc":"Holding shift and casting Heal will absorb all Winded on nearby enemies and make you Timelocked. While Timelocked, your mana will not be depleted and you become immovable from outside forces. Enemies will recieve Winded damage from all absorbed stacks. (Max 30)","archetype":"Riftwalker","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":34,"col":0,"icon":"node_3"},"properties":{},"effects":[],"id":68},{"display_name":"Cheaper Heal II","desc":"Reduce the Mana cost of Heal.","base_abil":2,"parents":[68,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":34,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":69}],"Assassin":[{"display_name":"Spin Attack","desc":"Slash rapidly around you, damaging enemies in a large area.","archetype":"","archetype_req":0,"parents":[],"dependencies":[],"blockers":[],"cost":1,"display":{"row":0,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Spin Attack","cost":45,"base_spell":1,"spell_type":"damage","scaling":"spell","use_atkspd":true,"display":"Spin Attack","parts":[{"name":"Spin Attack","type":"damage","multipliers":[120,0,30,0,0,0]}]}],"id":0},{"display_name":"Dagger Proficiency I","desc":"Increase your speed by +5% and improve your Main Attackā€™s damage when using a dagger.","archetype":"","archetype_req":0,"parents":[0],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":5},{"type":"stat","name":"mdPct","value":5}]}],"id":1},{"display_name":"Cheaper Spin Attack","desc":"Reduce the Mana cost of Spin Attack.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":2,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-10}],"id":2},{"display_name":"Double Spin","desc":"Spin Attack will activate a second time with a larger area of effect.","archetype":"","archetype_req":0,"base_abil":0,"parents":[1],"dependencies":[],"blockers":[],"cost":1,"display":{"row":4,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Spin Attack":1},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 2% or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)","archetype":"Shadestepper","archetype_req":0,"parents":[5],"dependencies":[],"blockers":[6],"cost":1,"display":{"row":7,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"mdPct"},{"type":"stat","name":"mdRaw"}],"output":[{"type":"stat","name":"poison"}],"scaling":[2.5,2.5],"max":50}],"id":4},{"display_name":"Dash","desc":"Dash in the direction you're facing.","archetype":"","archetype_req":0,"parents":[3],"dependencies":[],"blockers":[],"cost":1,"display":{"row":7,"col":4,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Dash","cost":20,"base_spell":2,"display":"Total Damage","parts":[{"name":"None","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":5},{"display_name":"Double Slice","desc":"Your Main Attack will attack twice, but deal -40% damage per hit.","archetype":"Acrobat","archetype_req":0,"base_abil":999,"parents":[5],"dependencies":[],"blockers":[4],"cost":1,"display":{"row":7,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":0,"target_part":"Melee","multipliers":[-40,0,0,0,0,0]},{"type":"add_spell_prop","base_spell":0,"display":"Total Damage","target_part":"Total Damage","hits":{"Melee":2}}],"id":6},{"display_name":"Smoke Bomb","desc":"Throw a bomb that slouly emits smoke, damaging all enemies in it every 0.5s.","archetype":"","archetype_req":0,"parents":[4,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":2,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Smoke Bomb","cost":40,"base_spell":4,"display":"Total Damage","parts":[{"name":"Per Tick","type":"damage","multipliers":[25,5,0,0,0,5]},{"name":"Per Bomb","type":"total","hits":{"Per Tick":10}},{"name":"Total Damage","type":"total","hits":{"Per Bomb":1}}]}],"id":7},{"display_name":"Cheaper Dash","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[7,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":8},{"display_name":"Multihit","desc":"Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage","archetype":"","archetype_req":0,"parents":[6,8],"dependencies":[],"blockers":[],"cost":1,"display":{"row":9,"col":6,"icon":"node_assassin"},"properties":{},"effects":[{"type":"replace_spell","name":"Multihit","cost":45,"base_spell":3,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[25,0,0,10,0,0]},{"name":"Total Damage","type":"total","hits":{"Per Hit":8}}]}],"id":9},{"display_name":"Earth Mastery","desc":"Increases base damage from all Earth attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[7,11],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"eDamPct","value":20},{"type":"stat","name":"eDamAddMin","value":2},{"type":"stat","name":"eDamAddMax","value":4}]}],"id":10},{"display_name":"Thunder Mastery","desc":"Increases base damage from all Thunder attacks","archetype":"Shadestepper","archetype_req":0,"base_abil":998,"parents":[10,7],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"tDamPct","value":10},{"type":"stat","name":"tDamAddMin","value":1},{"type":"stat","name":"tDamAddMax","value":8}]}],"id":11},{"display_name":"Fire Mastery","desc":"Increases base damage from all Fire attacks","archetype":"Trickster","archetype_req":0,"base_abil":998,"parents":[8,13],"dependencies":[],"blockers":[],"cost":1,"display":{"row":14,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"fDamPct","value":15},{"type":"stat","name":"fDamAddMin","value":3},{"type":"stat","name":"fDamAddMax","value":5}]}],"id":12},{"display_name":"Water Mastery","desc":"Increases base damage from all Water attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[8,9,14],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"wDamPct","value":15},{"type":"stat","name":"wDamAddMin","value":2},{"type":"stat","name":"wDamAddMax","value":4}]}],"id":13},{"display_name":"Air Mastery","desc":"Increases base damage from all Air attacks","archetype":"Acrobat","archetype_req":0,"base_abil":998,"parents":[13,9],"dependencies":[],"blockers":[],"cost":1,"display":{"row":13,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"aDamPct","value":15},{"type":"stat","name":"aDamAddMin","value":3},{"type":"stat","name":"aDamAddMax","value":4}]}],"id":14},{"display_name":"Backstab","desc":"Multihit will deal a single devastating hit. If you strike the enemy from behind, deal double damage","archetype":"Shadestepper","archetype_req":2,"base_abil":9,"parents":[10,11],"dependencies":[9],"blockers":[44,16],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Backstab","base_spell":3,"display":"Backstab Damage","parts":[{"name":"Backstab Damage","type":"damage","multipliers":[200,50,0,0,0,0]}]}],"id":15},{"display_name":"Fatality","desc":"Multihit will deal an additional final slash","archetype":"","archetype_req":0,"base_abil":9,"parents":[13,14],"dependencies":[9],"blockers":[15],"cost":2,"display":{"row":15,"col":7,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Fatality","multipliers":[100,0,0,0,0,50]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Fatality":1}}],"id":16},{"display_name":"Vanish","desc":"Dash will vanish you into the shadows and make you invisible to enemies (5s Cooldown). You cannot heal or gain mana while in that state (Attack or get hit to cancel)","archetype":"","archetype_req":0,"base_abil":5,"parents":[15,18],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":16,"col":2,"icon":"node_2"},"properties":{"duration":5,"cooldown":5},"effects":[],"id":17},{"display_name":"Sticky Bomb","desc":"Smoke Bomb will stick to enemies and deal additional damage","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[17,12],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":16,"col":4,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[0,0,0,0,10,0]}],"id":18},{"display_name":"Righting Reflex","desc":"When you hold shift while airborne, slowly glide and become immune to fall damage (Max 5s)","archetype":"Acrobat","archetype_req":0,"parents":[16],"dependencies":[],"blockers":[],"cost":2,"display":{"row":16,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":19},{"display_name":"Surprise Strike","desc":"While using Vanish, your next attack will deal +60% more damage for a single hit only","archetype":"Shadestepper","archetype_req":3,"base_abil":5,"parents":[17],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":19,"col":2,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":60}]}],"id":20},{"display_name":"Mirror Image","desc":"After leaving Vanish, summon 3 Clones that will follow you and protect you. (20s Cooldown)","archetype":"Trickster","archetype_req":2,"base_abil":5,"parents":[18],"dependencies":[17],"blockers":[22],"cost":2,"display":{"row":19,"col":4,"icon":"node_3"},"properties":{"clone":3},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"defMult.Clone","value":80}]}],"id":21},{"display_name":"Lacerate","desc":"Spin Attack will lunge you forward, deal 3 strikes and lunge you forward again.","archetype":"Acrobat","archetype_req":2,"base_abil":0,"parents":[16],"dependencies":[],"blockers":[21],"cost":2,"display":{"row":19,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Lacerate","base_spell":1,"display":"Total Damage","parts":[{"name":"Per Hit","type":"damage","multipliers":[50,0,0,10,0,20]},{"name":"Total Damage","type":"total","hits":{"Per Hit":3}}]}],"id":22},{"display_name":"Silent Killer","desc":"After killing an enemy, reset Vanish's cooldown","archetype":"","archetype_req":0,"base_abil":5,"parents":[20],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":20,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":23},{"display_name":"Shenanigans","desc":"For every 2% Stealing you have from items, gain +1/3s Mana Steal (Max 8/3s)","archetype":"Trickster","archetype_req":0,"parents":[21],"dependencies":[],"blockers":[],"cost":1,"display":{"row":20,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":false,"inputs":[{"type":"stat","name":"eSteal"}],"output":[{"type":"stat","name":"ms"}],"scaling":[0.5],"max":8}],"id":24},{"display_name":"Wall of Smoke","desc":"Smoke Bomb will throw +2 bombs, damaging more often in a larger area","archetype":"","archetype_req":0,"base_abil":7,"parents":[22],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":20,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"target_part":"Total Damage","hits":{"Per Bomb":2}},{"type":"add_spell_prop","base_spell":4,"target_part":"Per Tick","multipliers":[-20,0,0,0,0,0]}],"id":25},{"display_name":"Better Smoke Bomb","desc":"Increase the range and area of effect of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[23,27],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":22,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":26},{"display_name":"Shadow Travel","desc":"Vanish will increase your speed by +100%","archetype":"Shadestepper","archetype_req":0,"base_abil":5,"parents":[26,23,28],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":22,"col":2,"icon":"node_1"},"properties":{},"effects":[],"id":27},{"display_name":"Cheaper Multihit","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[24,27,29],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":28},{"display_name":"Dagger Proficiency II","desc":"Increase your Main Attack's range and add +5 raw damage to all attacks","archetype":"","archetype_req":0,"base_abil":999,"parents":[28,25],"dependencies":[],"blockers":[],"cost":1,"display":{"row":22,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"damRaw","value":5}]}],"id":29},{"display_name":"Last Laugh","desc":"When losing a Clone, it will cast Spin Attack before dying","archetype":"Trickster","archetype_req":3,"base_abil":5,"parents":[27,28],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":23,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":30},{"display_name":"Cheaper Smoke Bomb","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[26,32],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":25,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":31},{"display_name":"Blazing Powder","desc":"Spin Attack will blind enemies and deal additional damage","archetype":"","archetype_req":0,"base_abil":0,"parents":[31,27,28],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":3,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","multipliers":[0,0,0,0,20,0]}],"id":32},{"display_name":"Weightless","desc":"When you hit an enemy while airborne, gain +0.5 Mana (1.25+ blocks off the ground to be airborne)","archetype":"Acrobat","archetype_req":4,"parents":[28,29],"dependencies":[],"blockers":[],"cost":2,"display":{"row":25,"col":7,"icon":"node_2"},"properties":{},"effects":[],"id":33},{"display_name":"Black Hole","desc":"Smoke Bomb will pull nearby enemies","archetype":"","archetype_req":0,"base_abil":7,"parents":[31,32],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":34},{"display_name":"Sandbagging","desc":"Anytime you get hit for less than 5% of your max hp, reduce your abilities cooldown by -2s. (1s Cooldown)","archetype":"Trickster","archetype_req":0,"parents":[32,36],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":35},{"display_name":"Hop","desc":"When you double tap jump, leap forward. (2s Cooldown)","archetype":"Acrobat","archetype_req":0,"parents":[35,33],"dependencies":[],"blockers":[],"cost":2,"display":{"row":26,"col":6,"icon":"node_1"},"properties":{"cooldown":2},"effects":[],"id":36},{"display_name":"Dancing Blade","desc":"Deal damage to mobs you Dash through","archetype":"","archetype_req":0,"base_abil":5,"parents":[33],"dependencies":[5],"blockers":[],"cost":2,"display":{"row":26,"col":8,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"target_part":"Dancing Blade","multipliers":[80,0,0,0,0,20],"display":"Dancing Blade"}],"id":37},{"display_name":"Violent Vortex","desc":"If you deal more damage than 2x of your max health in a single hit, deal 20% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":0,"parents":[31],"dependencies":[],"blockers":[],"cost":2,"display":{"row":27,"col":0,"icon":"node_1"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":38},{"display_name":"Delirious Gas","desc":"While inside Smoke Bomb, increase your damage by +40% and gain Lure for 20s","archetype":"Trickster","archetype_req":4,"base_abil":7,"parents":[35],"dependencies":[7],"blockers":[],"cost":2,"display":{"row":27,"col":3,"icon":"node_2"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Delirious Gas","bonuses":[{"type":"stat","name":"damMult.DeliriousGas","value":40}]}],"id":39},{"display_name":"Marked","desc":"Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown) Marked enemies will take +10% damage for each mark they have.","archetype":"Shadestepper","archetype_req":5,"parents":[38],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_step":1,"slider_max":5,"output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[10]}],"id":40},{"display_name":"Echo","desc":"Your Clones will mimic your spells and abilities. While they are active, deal -60% damage.","archetype":"Trickster","archetype_req":6,"base_abil":5,"parents":[35,42],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":28,"col":4,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":-60}]}],"id":41},{"display_name":"Shurikens","desc":"After using Dash, your next Main Attack will throw 3 shurikens","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[41,43],"dependencies":[],"blockers":[],"cost":2,"display":{"row":28,"col":6,"icon":"node_2"},"properties":{},"effects":[{"type":"replace_spell","name":"Shurikens","base_spell":6,"display":"Total Damage","parts":[{"name":"Per Shuriken","type":"damage","multipliers":[90,0,0,0,10,0]},{"name":"Total Damage","type":"total","hits":{"Per Shuriken":3}}]}],"id":42},{"display_name":"Far Reach","desc":"Increase the range of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[37,42],"dependencies":[],"blockers":[],"cost":1,"display":{"row":28,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":43},{"display_name":"Stronger Multihit","desc":"Increases Multihit's amount of hits by +3","archetype":"","archetype_req":0,"base_abil":9,"parents":[41,42],"dependencies":[],"blockers":[15],"cost":1,"display":{"row":29,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","hits":{"Per Hit":3}}],"id":44},{"display_name":"Psithurism","desc":"Increase your Walk Speed by +20% and your Jump Height by +1","archetype":"Acrobat","archetype_req":5,"parents":[42,43],"dependencies":[],"blockers":[],"cost":1,"display":{"row":29,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","bonuses":[{"type":"stat","name":"spd","value":20},{"type":"stat","name":"jh","value":1}]}],"id":45},{"display_name":"Ambush","desc":"Increase Surprise Strike's damage by +40%","archetype":"Shadestepper","archetype_req":4,"base_abil":5,"parents":[40],"dependencies":[20],"blockers":[],"cost":1,"display":{"row":31,"col":1,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Surprise Strike","bonuses":[{"type":"stat","name":"damMult.SurpriseStrike","value":40}]}],"id":46},{"display_name":"Cheaper Dash 2","desc":"Reduce the Mana cost of Dash","archetype":"","archetype_req":0,"base_abil":5,"parents":[41],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":2,"cost":-5}],"id":47},{"display_name":"Parry","desc":"After dodging damage, if you cast a spell within 1.5s, it will be free. (3s Cooldown)","archetype":"Acrobat","archetype_req":5,"parents":[49],"dependencies":[],"blockers":[],"cost":2,"display":{"row":31,"col":6,"icon":"node_2"},"properties":{},"effects":[],"id":48},{"display_name":"Cheaper Spin Attack 2","desc":"Reduce the Mana cost of Spin Attack","archetype":"","archetype_req":0,"base_abil":0,"parents":[43,48],"dependencies":[],"blockers":[],"cost":1,"display":{"row":31,"col":8,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"cost":-5}],"id":49},{"display_name":"Death Magnet","desc":"After leaving Vanish, pull all nearby Marked mobs towards you","archetype":"Shadestepper","archetype_req":5,"base_abil":5,"parents":[51,46],"dependencies":[17],"blockers":[],"cost":2,"display":{"row":33,"col":0,"icon":"node_1"},"properties":{},"effects":[],"id":50},{"display_name":"Cheaper Multihit 2","desc":"Reduce the Mana cost of Multihit","archetype":"","archetype_req":0,"base_abil":9,"parents":[50,46,52],"dependencies":[],"blockers":[],"cost":1,"display":{"row":33,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":51},{"display_name":"Hoodwink","desc":"When hitting enemies with Spin Attack, shorten the duration of your negative effects by 30% and transfer it onto enemies Lure can be transferred to the feeble minded. (Bosses and special enemies are immune)","archetype":"Trickster","archetype_req":1,"base_abil":0,"parents":[51,47,53],"dependencies":[0],"blockers":[],"cost":2,"display":{"row":33,"col":4,"icon":"node_1"},"properties":{},"effects":[],"id":52},{"display_name":"Choke Bomb","desc":"Smoke Bomb will slow down enemies while in the smoke","archetype":"Trickster","archetype_req":0,"base_abil":7,"parents":[52,54,48],"dependencies":[],"blockers":[],"cost":2,"display":{"row":33,"col":6,"icon":"node_1"},"properties":{},"effects":[],"id":53},{"display_name":"Wall Jump","desc":"Reduce Hop's cooldown by 1s. When you Hop into a wall, bounce backward. (Hold shift to cancel)","archetype":"Acrobat","archetype_req":5,"parents":[53,49],"dependencies":[36],"blockers":[],"cost":2,"display":{"row":33,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":54},{"display_name":"Fatal Spin","desc":"Spin Attack will add +1 Mark to all enemies it hits and gain additional area of effect","archetype":"Shadestepper","archetype_req":8,"base_abil":0,"parents":[50,51],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":34,"col":1,"icon":"node_1"},"properties":{},"effects":[],"id":55},{"display_name":"Stronger Lacerate","desc":"Lacerate will deal +1 slash","archetype":"Acrobat","archetype_req":0,"base_abil":0,"parents":[53,54],"dependencies":[22],"blockers":[],"cost":1,"display":{"row":34,"col":7,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","hits":{"Per Hit":1}}],"id":56},{"display_name":"Stronger Vortex","desc":"If you deal more damage than 3x of your max health in a single hit, deal 60% of the damage to other nearby enemies","archetype":"Shadestepper","archetype_req":4,"parents":[55],"dependencies":[38],"blockers":[],"cost":1,"display":{"row":35,"col":0,"icon":"node_0"},"properties":{},"effects":[{"type":"replace_spell","name":"Violent Vortex","base_spell":5,"display":"Total Damage","parts":[{"name":"Total Damage","type":"damage","multipliers":[0,0,0,0,0,0]}]}],"id":57},{"display_name":"Harvester","desc":"After killing an enemy, gain +5 Mana for each leftover Marks it had","archetype":"Shadestepper","archetype_req":0,"parents":[55,59],"dependencies":[40],"blockers":[],"cost":2,"display":{"row":37,"col":1,"icon":"node_2"},"properties":{},"effects":[],"id":58},{"display_name":"Cheaper Smoke Bomb 2","desc":"Reduce the Mana cost of Smoke Bomb","archetype":"","archetype_req":0,"base_abil":7,"parents":[58,52,60],"dependencies":[7],"blockers":[],"cost":1,"display":{"row":37,"col":4,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":4,"cost":-5}],"id":59},{"display_name":"Blade Fury","desc":"Multihit will be easier to aim and enemies hit will stay locked in front of you","archetype":"Acrobat","archetype_req":0,"base_abil":9,"parents":[56,59],"dependencies":[],"blockers":[],"cost":2,"display":{"row":37,"col":7,"icon":"node_1"},"properties":{},"effects":[],"id":60},{"display_name":"More Marks","desc":"Add +2 max Marks","archetype":"Shadestepper","archetype_req":0,"base_abil":40,"parents":[58,59],"dependencies":[40],"blockers":[],"cost":1,"display":{"row":38,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","slider_max":2}],"id":61},{"display_name":"Stronger Clones","desc":"Improve your damage while your Clones are active by +20%","archetype":"Trickster","archetype_req":7,"base_abil":5,"parents":[59,60],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":38,"col":5,"icon":"node_0"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Clones","bonuses":[{"type":"stat","name":"damMult.Echo","value":20}]}],"id":62},{"display_name":"Ricochets","desc":"When hitting an enemy with your Shurikens, they will bounce to the nearest enemy","archetype":"Acrobat","archetype_req":6,"base_abil":5,"parents":[60],"dependencies":[42],"blockers":[],"cost":2,"display":{"row":38,"col":8,"icon":"node_1"},"properties":{},"effects":[],"id":63},{"display_name":"Satsujin","desc":"If an enemy has 3 Marks and 70% of their health or more, your next Multihit or Main Attack will deal triple damage. (30s Cooldown, per enemy)","archetype":"Shadestepper","archetype_req":12,"parents":[58],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":1,"icon":"node_3"},"properties":{},"effects":[{"type":"raw_stat","toggle":"Activate Satsujin","bonuses":[{"type":"stat","name":"damMult.Satsujin:3.Backstab Damage","value":200},{"type":"stat","name":"damMult.Satsujin:3.Per Hit","value":200},{"type":"stat","name":"damMult.Satsujin:3.Fatality","value":200},{"type":"stat","name":"damMult.Satsujin:0.Melee","value":200}]}],"id":64},{"display_name":"Forbidden Art","desc":"Summon +3 additional Clones. (+20s Cooldown)","archetype":"Trickster","archetype_req":8,"base_abil":5,"parents":[59],"dependencies":[21],"blockers":[],"cost":2,"display":{"row":39,"col":4,"icon":"node_2"},"properties":{},"effects":[],"id":65},{"display_name":"Diversion","desc":"Anytime a Lured enemy gets killed, every nearby ally gets +40% health as extra overflowing health. (3s Cooldown). Decay -4% of the bonus every second.","archetype":"Trickster","archetype_req":11,"base_abil":7,"parents":[65],"dependencies":[39],"blockers":[],"cost":2,"display":{"row":40,"col":5,"icon":"node_3"},"properties":{},"effects":[],"id":66},{"display_name":"Jasmine Bloom","desc":"After spending 40 Mana, bloom an area under you that damages enemies below it every 0.4s After every bloom, reset the duration and increase the radius (Max 10 Blocks)","archetype":"Acrobat","archetype_req":12,"parents":[60],"dependencies":[],"blockers":[],"cost":2,"display":{"row":39,"col":7,"icon":"node_3"},"properties":{},"effects":[{"type":"replace_spell","name":"Jasmine Bloom","base_spell":7,"display":"Per Hit","parts":[{"name":"Per Hit","type":"damage","multipliers":[60,5,0,15,0,0]}]}],"id":67},{"display_name":"Better Ricochets","desc":"Add +1 Max Bounce to Ricochets","archetype":"Acrobat","archetype_req":0,"base_abil":5,"parents":[67],"dependencies":[63],"blockers":[],"cost":1,"display":{"row":40,"col":8,"icon":"node_0"},"properties":{},"effects":[],"id":68},{"display_name":"Devour","desc":"Harvester will give +5 Mana","archetype":"Shadestepper","archetype_req":0,"parents":[64],"dependencies":[58],"blockers":[],"cost":1,"display":{"row":41,"col":0,"icon":"node_0"},"properties":{},"effects":[],"id":69},{"display_name":"Better Marked","desc":"Increase Marked's damage bonus by +5%","archetype":"","archetype_req":0,"base_abil":40,"parents":[64],"dependencies":[],"blockers":[],"cost":1,"display":{"row":41,"col":2,"icon":"node_0"},"properties":{},"effects":[{"type":"stat_scaling","slider":true,"slider_name":"Marked","output":[{"type":"stat","name":"damMult.Marked"}],"scaling":[5]}],"id":70}]} \ No newline at end of file From 74b1d480faeffc839b90880504beab3f9fbf502b Mon Sep 17 00:00:00 2001 From: hppeng Date: Mon, 25 Jul 2022 08:58:41 -0700 Subject: [PATCH 34/34] Don't update the ability tree when NONE weapon is selected so u can delete weapon and switch to the same class weapon and keep tree --- js/atree.js | 1 - js/builder_graph.js | 1 + js/computation_graph.js | 11 ++++------- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/js/atree.js b/js/atree.js index 4a9d492..519349b 100644 --- a/js/atree.js +++ b/js/atree.js @@ -199,7 +199,6 @@ const atree_node = new (class extends ComputeNode { const atree_render = new (class extends ComputeNode { constructor() { super('builder-atree-render'); - this.fail_cb = true; this.UI_elem = document.getElementById("atree-ui"); this.list_elem = document.getElementById("atree-header"); } diff --git a/js/builder_graph.js b/js/builder_graph.js index b2ed8cb..0ae6fbd 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -429,6 +429,7 @@ class PlayerClassNode extends ValueCheckComputeNode { compute_func(input_map) { if (input_map.size !== 1) { throw "PlayerClassNode accepts exactly one input (build)"; } const [build] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element + if (build.weapon.statMap.has('NONE')) { return null; } return wep_to_class.get(build.weapon.statMap.get('type')); } } diff --git a/js/computation_graph.js b/js/computation_graph.js index d144e29..bd46036 100644 --- a/js/computation_graph.js +++ b/js/computation_graph.js @@ -135,7 +135,7 @@ class ComputeNode { } class ValueCheckComputeNode extends ComputeNode { - constructor(name) { super(name); } + constructor(name) { super(name); this.valid_val = null; } /** * Request update of this compute node. Pushes updates to children, @@ -154,14 +154,11 @@ class ValueCheckComputeNode extends ComputeNode { calc_inputs.set(this.input_translation.get(input.name), input.value); } let val = this.compute_func(calc_inputs); - if (val !== this.value) { - super.mark_dirty(2); - } - else { - console.log("soft update"); + if (val !== null) { + if (val !== this.valid_val) { super.mark_dirty(2); } // don't mark dirty if NULL (no update) + this.valid_val = val; } this.value = val; - this.dirty = 0; for (const child of this.children) { child.mark_input_clean(this.name, this.value);