From 3e146096272d865138cf0df7ef2a4f0760a7237f Mon Sep 17 00:00:00 2001 From: fin444 Date: Mon, 18 Jul 2022 15:45:12 -0700 Subject: [PATCH 01/82] basic color stuff --- css/wynnstyles.css | 21 +++++++++- js/atree.js | 100 +++++++++++++++++++++++++++++++-------------- 2 files changed, 89 insertions(+), 32 deletions(-) diff --git a/css/wynnstyles.css b/css/wynnstyles.css index 571e87c..db83240 100644 --- a/css/wynnstyles.css +++ b/css/wynnstyles.css @@ -181,4 +181,23 @@ Wynn-Related CSS .restrict { color: #ff8180; -} \ No newline at end of file +} + +/* Every text color in Minecraft */ + +.mc-black { color: #000000 !important; } +.mc-dark-blue { color: #0000AA !important; } +.mc-dark-green { color: #00AA00 !important; } +.mc-dark-aqua { color: #00AAAA !important; } +.mc-dark-red { color: #AA0000 !important; } +.mc-dark-purple { color: #AA00AA !important; } +.mc-gold { color: #FFAA00 !important; } +.mc-gray { color: #AAAAAA !important; } +.mc-dark-gray { color: #555555 !important; } +.mc-blue { color: #5555FF !important; } +.mc-green { color: #55FF55 !important; } +.mc-aqua { color: #55FFFF !important; } +.mc-red { color: #FF5555 !important; } +.mc-light-purple { color: #FF55FF !important; } +.mc-yellow { color: #FFFF55 !important; } +.mc-white { color: #FFFFFF !important; } \ No newline at end of file diff --git a/js/atree.js b/js/atree.js index 08622be..70d89e8 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1012,8 +1012,6 @@ function render_AT(UI_elem, list_elem, tree) { }); // add tooltip - // tooltips are being changed to generate on mouseover for fin444's future style updates - // this is being implemented before those updates since it helps with a hotfix hitbox.addEventListener('mouseover', function(e) { if (e.target !== this) { return; @@ -1043,41 +1041,81 @@ function render_AT(UI_elem, list_elem, tree) { }; function generateTooltip(UI_elem, node_elem, ability) { - let tooltip = document.createElement('div'); - tooltip.classList.add("rounded-bottom", "dark-4", "border", "p-0", "mx-2", "my-4", "dark-shadow"); + let container = make_elem("div", ["rounded-bottom", "dark-4", "border", "mx-2", "my-4", "dark-shadow", "text-start"], {"style": "position: absolute; z-index: 100;"}); + container.style.top = (node_elem.getBoundingClientRect().top + window.pageYOffset + 50) + "px"; + container.style.left = UI_elem.getBoundingClientRect().left + "px"; + container.style.width = UI_elem.getBoundingClientRect().width * 0.95 + "px"; - // tooltip text formatting + let title = make_elem("b", ["scaled-font", "mx-1"], {}); + title.innerHTML = ability.display_name; + switch(ability.display.icon) { + case "node_1": + title.classList.add("mc-gold"); + break; + case "node_2": + title.classList.add("mc-light-purple"); + break; + case "node_3": + title.classList.add("mc-red"); + break; + case "node_warrior": + case "node_archer": + case "node_mage": + case "node_assassin": + case "node_shaman": + title.classList.add("mc-green"); + break; + case "0": + // already white + break; + } + container.appendChild(title); - let tooltip_title = document.createElement('b'); - tooltip_title.classList.add("scaled-font"); - tooltip_title.innerHTML = ability.display_name; - tooltip.appendChild(tooltip_title); + container.innerHTML += "

"; - if ('archetype' in ability && ability.archetype !== "") { - let tooltip_archetype = document.createElement('p'); - tooltip_archetype.classList.add("scaled-font"); - tooltip_archetype.innerHTML = "(Archetype: " + ability.archetype+")"; - tooltip.appendChild(tooltip_archetype); + let description = make_elem("p", ["scaled-font-sm", "my-0", "mx-1", "text-wrap"], {}); + description.innerHTML = ability.desc; + container.appendChild(description); + + container.appendChild(document.createElement("br")); + + if ("archetype" in ability && ability.archetype !== "") { + let archetype = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); + archetype.innerHTML = ability.archetype + " Archetype"; + switch(ability.archetype) { + case "Riftwalker": + case "Paladin": + archetype.classList.add("mc-aqua"); + break; + case "Fallen": + archetype.classList.add("mc-red"); + break; + case "Boltslinger": + case "Battle Monk": + archetype.classList.add("mc-yellow"); + break; + case "Trapper": + archetype.classList.add("mc-dark-green"); + break; + case "Sharpshooter": + archetype.classList.add("mc-light-purple"); + break; + case "Arcanist": + archetype.classList.add("mc-dark-purple"); + break; + case "Light Bender": + // already white + break; + } + container.appendChild(archetype); + container.appendChild(document.createElement("br")); } - let tooltip_desc = document.createElement('p'); - tooltip_desc.classList.add("scaled-font-sm", "my-0", "mx-1", "text-wrap"); - tooltip_desc.textContent = ability.desc; - tooltip.appendChild(tooltip_desc); + // requirements + // TODO - let tooltip_cost = document.createElement('p'); - tooltip_cost.classList.add("scaled-font-sm", "my-0", "mx-1", "text-start"); - tooltip_cost.textContent = "Cost: " + ability.cost + " AP"; - tooltip.appendChild(tooltip_cost); - - tooltip.style.position = "absolute"; - tooltip.style.zIndex = "100"; - tooltip.style.top = (node_elem.getBoundingClientRect().top + window.pageYOffset + 50) + "px"; - tooltip.style.left = UI_elem.getBoundingClientRect().left + "px"; - tooltip.style.width = UI_elem.getBoundingClientRect().width * 0.95 + "px"; - - UI_elem.appendChild(tooltip); - return tooltip; + UI_elem.appendChild(container); + return container; } // resolve connector conflict, when they occupy the same cell. From 538202e7acc13b75f4d08b32f89d5d800028e90e Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 19 Jul 2022 00:33:05 -0700 Subject: [PATCH 02/82] Unify melee stats boxes remove poison stats box for now now melee stats box is correct with melee modifiers, and also neater in code --- builder/index.html | 2 +- builder/index_full.html | 50 ++-------- js/builder_graph.js | 56 +---------- js/display.js | 204 ++++++---------------------------------- 4 files changed, 38 insertions(+), 274 deletions(-) diff --git a/builder/index.html b/builder/index.html index 39391fe..a226881 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
melee
poison
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.

diff --git a/builder/index_full.html b/builder/index_full.html index 2f2b716..33f8073 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -5,17 +5,6 @@ - - WynnBuilder @@ -35,8 +24,6 @@ - -
+
+
+
Input a weapon to see abilities!
+
+
-
-
melee
- -
-
-
poison
-
-
-
-
Input a weapon to see abilities!
-
-
-
+
-
@@ -1198,20 +1177,6 @@
-
@@ -1278,10 +1243,8 @@
-
- @@ -1290,7 +1253,6 @@ - diff --git a/js/builder_graph.js b/js/builder_graph.js index 36b7c4c..724d027 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -656,59 +656,10 @@ class SpellDisplayNode extends ComputeNode { const i = this.spell_idx; let parent_elem = document.getElementById("spell"+i+"-info"); let overallparent_elem = document.getElementById("spell"+i+"-infoAvg"); - displaySpellDamage(parent_elem, overallparent_elem, stats, spell, i+1, damages); + displaySpellDamage(parent_elem, overallparent_elem, stats, spell, i, damages); } } -/* Get melee stats for build. - Returns an array in the order: -*/ -function getMeleeStats(stats, weapon) { - stats = new Map(stats); // Shallow copy - const weapon_stats = weapon.statMap; - const skillpoints = [ - stats.get('str'), - stats.get('dex'), - stats.get('int'), - stats.get('def'), - stats.get('agi') - ]; - if (weapon_stats.get("tier") === "Crafted") { - stats.set("damageBases", [weapon_stats.get("nDamBaseHigh"),weapon_stats.get("eDamBaseHigh"),weapon_stats.get("tDamBaseHigh"),weapon_stats.get("wDamBaseHigh"),weapon_stats.get("fDamBaseHigh"),weapon_stats.get("aDamBaseHigh")]); - } - let adjAtkSpd = attackSpeeds.indexOf(stats.get("atkSpd")) + stats.get("atkTier"); - if(adjAtkSpd > 6){ - adjAtkSpd = 6; - }else if(adjAtkSpd < 0){ - adjAtkSpd = 0; - } - - if (weapon_stats.get("type") === "relik") { - merge_stat(stats, 'damMult.ShamanMelee', 0.99); // CURSE YOU WYNNCRAFT - //One day we will create WynnWynn and no longer have shaman 99% melee injustice. - //In all seriousness 99% is because wynn uses 0.33 to estimate dividing the damage by 3 to split damage between 3 beams. - } - let results = calculateSpellDamage(stats, weapon_stats, [100, 0, 0, 0, 0, 0], false, true); - - let dex = skillpoints[1]; - - let totalDamNorm = results[0]; - let totalDamCrit = results[1]; - totalDamNorm.push(1-skillPointsToPercentage(dex)); - totalDamCrit.push(skillPointsToPercentage(dex)); - let damages_results = results[2]; - - let singleHitTotal = ((totalDamNorm[0]+totalDamNorm[1])*(totalDamNorm[2]) - +(totalDamCrit[0]+totalDamCrit[1])*(totalDamCrit[2]))/2; - - //Now do math - let normDPS = (totalDamNorm[0]+totalDamNorm[1])/2 * baseDamageMultiplier[adjAtkSpd]; - let critDPS = (totalDamCrit[0]+totalDamCrit[1])/2 * baseDamageMultiplier[adjAtkSpd]; - let avgDPS = (normDPS * (1 - skillPointsToPercentage(dex))) + (critDPS * (skillPointsToPercentage(dex))); - //[[n n n n] [e e e e] [t t t t] [w w w w] [f f f f] [a a a a] [lowtotal hightotal normalChance] [critlowtotal crithightotal critChance] normalDPS critCPS averageDPS adjAttackSpeed, singleHit] - return damages_results.concat([totalDamNorm,totalDamCrit,normDPS,critDPS,avgDPS,adjAtkSpd, singleHitTotal]).concat(results[3]); -} - /** * Display build stats. * @@ -723,13 +674,10 @@ class BuildDisplayNode extends ComputeNode { displayBuildStats('overall-stats', build, build_all_display_commands, stats); displayBuildStats("offensive-stats", build, build_offensive_display_commands, stats); displaySetBonuses("set-info", build); - let meleeStats = getMeleeStats(stats, build.weapon); // TODO: move weapon out? - displayMeleeDamage(document.getElementById("build-melee-stats"), document.getElementById("build-melee-statsAvg"), meleeStats); - displayDefenseStats(document.getElementById("defensive-stats"), stats); - displayPoisonDamage(document.getElementById("build-poison-stats"), build); + //displayPoisonDamage(document.getElementById("build-poison-stats"), build); displayEquipOrder(document.getElementById("build-order"), build.equip_order); } } diff --git a/js/display.js b/js/display.js index 8a2926a..9244057 100644 --- a/js/display.js +++ b/js/display.js @@ -1022,152 +1022,6 @@ function displayEquipOrder(parent_elem, buildOrder){ } } -function displayMeleeDamage(parent_elem, overallparent_elem, meleeStats) { - let attackSpeeds = ["Super Slow", "Very Slow", "Slow", "Normal", "Fast", "Very Fast", "Super Fast"]; - //let damagePrefixes = ["Neutral Damage: ","Earth Damage: ","Thunder Damage: ","Water Damage: ","Fire Damage: ","Air Damage: "]; - parent_elem.textContent = ""; - overallparent_elem.textContent = ""; - const stats = meleeStats.slice(); - - for (let i = 0; i < 6; ++i) { - for (let j in stats[i]) { - stats[i][j] = stats[i][j].toFixed(2); - } - } - for (let i = 6; i < 8; ++i) { - for (let j = 0; j < 2; j++) { - stats[i][j] = stats[i][j].toFixed(2); - } - } - for (let i = 8; i < 11; ++i) { - stats[i] = stats[i].toFixed(2); - } - - //title - let title_elem = document.createElement("p"); - title_elem.classList.add("title"); - title_elem.textContent = "Melee Stats"; - parent_elem.append(title_elem); - parent_elem.append(document.createElement("br")); - - //overall title - let title_elemavg = document.createElement("b"); - title_elemavg.textContent = "Melee Stats"; - overallparent_elem.append(title_elemavg); - - //average DPS - let averageDamage = document.createElement("p"); - averageDamage.classList.add("left"); - averageDamage.textContent = "Average DPS: " + stats[10]; - parent_elem.append(averageDamage); - - //overall average DPS - let overallaverageDamage = document.createElement("p"); - let overallaverageDamageFirst = document.createElement("span"); - overallaverageDamageFirst.textContent = "Average DPS: " - - let overallaverageDamageSecond = document.createElement("span"); - overallaverageDamageSecond.classList.add("Damage"); - overallaverageDamageSecond.textContent = stats[10]; - overallaverageDamage.appendChild(overallaverageDamageFirst); - overallaverageDamage.appendChild(overallaverageDamageSecond); - - overallparent_elem.append(overallaverageDamage); - //overallparent_elem.append(document.createElement("br")); - - //attack speed - let atkSpd = document.createElement("p"); - atkSpd.classList.add("left"); - atkSpd.textContent = "Attack Speed: " + attackSpeeds[stats[11]]; - parent_elem.append(atkSpd); - parent_elem.append(document.createElement("br")); - - //overall attack speed - let overallatkSpd = document.createElement("p"); - let overallatkSpdFirst = document.createElement("span"); - overallatkSpdFirst.textContent = "Attack Speed: "; - let overallatkSpdSecond = document.createElement("span"); - overallatkSpdSecond.classList.add("Damage"); - overallatkSpdSecond.textContent = attackSpeeds[stats[11]]; - overallatkSpd.appendChild(overallatkSpdFirst); - overallatkSpd.appendChild(overallatkSpdSecond); - overallparent_elem.append(overallatkSpd); - - //Non-Crit: n->elem, total dmg, DPS - let nonCritStats = document.createElement("p"); - nonCritStats.classList.add("left"); - nonCritStats.textContent = "Non-Crit Stats: "; - nonCritStats.append(document.createElement("br")); - for (let i = 0; i < 6; i++) { - if (stats[i][1] != 0) { - let dmg = document.createElement("p"); - dmg.textContent = stats[i][0] + " \u2013 " + stats[i][1]; - dmg.classList.add(damageClasses[i]); - dmg.classList.add("itemp"); - nonCritStats.append(dmg); - } - } - - let normalDamage = document.createElement("p"); - normalDamage.textContent = "Total: " + stats[6][0] + " \u2013 " + stats[6][1]; - nonCritStats.append(normalDamage); - - let normalDPS = document.createElement("p"); - normalDPS.textContent = "Normal DPS: " + stats[8]; - nonCritStats.append(normalDPS); - - //overall average DPS - let singleHitDamage = document.createElement("p"); - let singleHitDamageFirst = document.createElement("span"); - singleHitDamageFirst.textContent = "Single Hit Average: "; - let singleHitDamageSecond = document.createElement("span"); - singleHitDamageSecond.classList.add("Damage"); - singleHitDamageSecond.textContent = stats[12].toFixed(2); - singleHitDamage.appendChild(singleHitDamageFirst); - singleHitDamage.appendChild(singleHitDamageSecond); - overallparent_elem.append(singleHitDamage); - - let normalChance = document.createElement("p"); - normalChance.textContent = "Non-Crit Chance: " + (stats[6][2]*100).toFixed(2) + "%"; - normalChance.append(document.createElement("br")); - normalChance.append(document.createElement("br")); - nonCritStats.append(normalChance); - - parent_elem.append(nonCritStats); - parent_elem.append(document.createElement("br")); - - //Crit: n->elem, total dmg, DPS - let critStats = document.createElement("p"); - critStats.classList.add("left"); - critStats.textContent = "Crit Stats: "; - critStats.append(document.createElement("br")); - for (let i = 0; i < 6; i++){ - if(stats[i][3] != 0) { - dmg = document.createElement("p"); - dmg.textContent = stats[i][2] + " \u2013 " + stats[i][3]; - dmg.classList.add(damageClasses[i]); - dmg.classList.add("itemp"); - critStats.append(dmg); - } - } - let critDamage = document.createElement("p"); - critDamage.textContent = "Total: " + stats[7][0] + " \u2013 " + stats[7][1]; - critStats.append(critDamage); - - let critDPS = document.createElement("p"); - critDPS.textContent = "Crit DPS: " + stats[9]; - critStats.append(critDPS); - - let critChance = document.createElement("p"); - critChance.textContent = "Crit Chance: " + (stats[7][2]*100).toFixed(2) + "%"; - critChance.append(document.createElement("br")); - critChance.append(document.createElement("br")); - critStats.append(critChance); - - parent_elem.append(critStats); - addClickableArrow(overallparent_elem, parent_elem); -} - function displayDefenseStats(parent_elem, statMap, insertSummary){ let defenseStats = getDefenseStats(statMap); insertSummary = (typeof insertSummary !== 'undefined') ? insertSummary : false; @@ -1533,31 +1387,23 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell // TODO: move cost calc out parent_elem.textContent = ""; - let title_elem = document.createElement("p"); + let title_elem = make_elem("p"); overallparent_elem.textContent = ""; let title_elemavg = document.createElement("b"); if ('cost' in spell) { - let first = document.createElement("span"); - first.textContent = spell.name + " ("; + let first = make_elem("span", [], { textContent: spell.name + " (" }); title_elem.appendChild(first.cloneNode(true)); //cloneNode is needed here. title_elemavg.appendChild(first); - let second = document.createElement("span"); - second.textContent = getSpellCost(stats, spell); - second.classList.add("Mana"); - + let second = make_elem("span", ["Mana"], { textContent: getSpellCost(stats, spell) }); title_elem.appendChild(second.cloneNode(true)); title_elemavg.appendChild(second); - - let third = document.createElement("span"); - third.textContent = ")";// [Base: " + getBaseSpellCost(stats, spellIdx, spell.cost) + " ]"; - title_elem.appendChild(third); - let third_summary = document.createElement("span"); - third_summary.textContent = ")"; - title_elemavg.appendChild(third_summary); + let third = make_elem("span", [], { textContent: ")" });// " + getBaseSpellCost(stats, spellIdx, spell.cost) + " ]"; + title_elem.appendChild(third.cloneNode(true)); + title_elemavg.appendChild(third); } else { title_elem.textContent = spell.name; @@ -1574,30 +1420,26 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell let critChance = skillPointsToPercentage(stats.get('dex')); - let part_divavg = document.createElement("p"); + let part_divavg = make_elem("p"); overallparent_elem.append(part_divavg); function _summary(text, val, fmt) { - let overallaverageLabel = document.createElement("p"); - let first = document.createElement("span"); - let second = document.createElement("span"); - first.textContent = text; - second.textContent = val.toFixed(2); + if (typeof(val) === 'number') { val = val.toFixed(2); } + let overallaverageLabel = make_elem("p"); + let first = make_elem("span", [], { textContent: text }); + let second = make_elem("span", [fmt], { textContent: val }); overallaverageLabel.appendChild(first); overallaverageLabel.appendChild(second); - second.classList.add(fmt); part_divavg.append(overallaverageLabel); } for (let i = 0; i < spell_results.length; ++i) { const spell_info = spell_results[i]; - let part_div = document.createElement("p"); + let part_div = make_elem("p", ["pt-3"]); parent_elem.append(part_div); - let subtitle_elem = document.createElement("p"); - subtitle_elem.textContent = spell_info.name - part_div.append(subtitle_elem); + part_div.append(make_elem("p", [], { textContent: spell_info.name })); if (spell_info.type === "damage") { let totalDamNormal = spell_info.normal_total; @@ -1607,14 +1449,26 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell let critAverage = (totalDamCrit[0]+totalDamCrit[1])/2 || 0; let averageDamage = (1-critChance)*nonCritAverage+critChance*critAverage || 0; - let averageLabel = document.createElement("p"); - averageLabel.textContent = "Average: "+averageDamage.toFixed(2); + let averageLabel = make_elem("p", [], { textContent: "Average: "+averageDamage.toFixed(2) }); // averageLabel.classList.add("damageSubtitle"); part_div.append(averageLabel); - if (spell_info.name === spell.display) { - _summary(spell_info.name+ ": ", averageDamage, "Damage"); + if (spellIdx === 0) { + let attackSpeeds = ["Super Slow", "Very Slow", "Slow", "Normal", "Fast", "Very Fast", "Super Fast"]; + let adjAtkSpd = attackSpeeds.indexOf(stats.get("atkSpd")) + stats.get("atkTier"); + if(adjAtkSpd > 6) { + adjAtkSpd = 6; + } else if(adjAtkSpd < 0) { + adjAtkSpd = 0; + } + _summary("Average DPS: ", averageDamage * baseDamageMultiplier[adjAtkSpd], "Damage"); + _summary("Attack Speed: ", attackSpeeds[adjAtkSpd], "Damage"); + _summary("Per Attack: ", averageDamage, "Damage"); + } + else { + _summary(spell_info.name+ ": ", averageDamage, "Damage"); + } } function _damage_display(label_text, average, dmg_min, dmg_max) { From c5dd848a058bf59684e560fdc196fc77fbe1c399 Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 19 Jul 2022 00:39:01 -0700 Subject: [PATCH 03/82] Big arrow hitbox --- js/display.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/display.js b/js/display.js index 9244057..74da10d 100644 --- a/js/display.js +++ b/js/display.js @@ -1915,12 +1915,12 @@ function stringCDF(id,val,base,amp) { function addClickableArrow(elem, target) { //up and down arrow - done ugly - let arrow = document.createElement("img"); - arrow.id = "arrow_" + elem.id; + let arrow = make_elem("img", [], { id: "arrow_" + elem.id, src: "../media/icons/" + (newIcons ? "new" : "old") + "/toggle_down.png" }); arrow.style.maxWidth = document.body.clientWidth > 900 ? "3rem" : "10rem"; - arrow.src = "../media/icons/" + (newIcons ? "new" : "old") + "/toggle_down.png"; - elem.appendChild(arrow); - arrow.addEventListener("click", () => toggle_spell_tab(arrow, target)); + let container = make_elem('div', ['col']); + container.appendChild(arrow); + elem.appendChild(container); + container.addEventListener("click", () => toggle_spell_tab(arrow, target)); } // toggle arrow thinger From ea89e936a1b41c10a2e95281e7f143b1b26cd00e Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 19 Jul 2022 01:09:21 -0700 Subject: [PATCH 04/82] Add back poison stats (kicked to the bottom) also powder special and poison stats now vanish if u don't have them --- builder/index.html | 2 +- builder/index_full.html | 4 +++- css/sq2bs.css | 4 ---- js/atree.js | 8 ++++---- js/builder_graph.js | 2 +- js/display.js | 45 +++++++++++++++++++++++++---------------- 6 files changed, 37 insertions(+), 28 deletions(-) diff --git a/builder/index.html b/builder/index.html index a226881..42ac371 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.

diff --git a/builder/index_full.html b/builder/index_full.html index 33f8073..600db3f 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -1150,9 +1150,11 @@
Input a weapon to see abilities!
+
-
+
diff --git a/css/sq2bs.css b/css/sq2bs.css index e62a03c..59e4e99 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -132,10 +132,6 @@ input.equipment-input { font-weight: bold; } -.spell-expand { - cursor: pointer; -} - :root { --scaled-fontsize: 2.5rem; } diff --git a/js/atree.js b/js/atree.js index 8ff1e86..2840f87 100644 --- a/js/atree.js +++ b/js/atree.js @@ -881,10 +881,10 @@ class AbilityTreeEnsureNodesNode extends ComputeNode { let display_elem = document.createElement('div'); display_elem.classList.add("col", "pe-0"); // TODO: just pass these elements into the display node instead of juggling the raw IDs... - let spell_summary = document.createElement('div'); spell_summary.setAttribute('id', "spell"+spell.base_spell+"-infoAvg"); - spell_summary.classList.add("col", "spell-display", "spell-expand", "dark-5", "rounded", "dark-shadow", "pt-2", "border", "border-dark"); - let spell_detail = document.createElement('div'); spell_detail.setAttribute('id', "spell"+spell.base_spell+"-info"); - spell_detail.classList.add("col", "spell-display", "dark-5", "rounded", "dark-shadow", "py-2"); + let spell_summary = make_elem('div', ["col", "spell-display", "dark-5", "rounded", "dark-shadow", "pt-2", "border", "border-dark"], + { id: "spell"+spell.base_spell+"-infoAvg" }); + let spell_detail = make_elem('div', ["col", "spell-display", "dark-5", "rounded", "dark-shadow", "py-2"], + { id: "spell"+spell.base_spell+"-info" }); spell_detail.style.display = "none"; display_elem.appendChild(spell_summary); display_elem.appendChild(spell_detail); diff --git a/js/builder_graph.js b/js/builder_graph.js index 724d027..73caa07 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -677,7 +677,7 @@ class BuildDisplayNode extends ComputeNode { // TODO: move weapon out? displayDefenseStats(document.getElementById("defensive-stats"), stats); - //displayPoisonDamage(document.getElementById("build-poison-stats"), build); + displayPoisonDamage(document.getElementById("build-poison-stats"), build); displayEquipOrder(document.getElementById("build-order"), build.equip_order); } } diff --git a/js/display.js b/js/display.js index 74da10d..58ebfa8 100644 --- a/js/display.js +++ b/js/display.js @@ -989,23 +989,30 @@ function displayFixedID(active, id, value, elemental_format, style) { function displayPoisonDamage(overallparent_elem, build) { overallparent_elem.textContent = ""; + if (build.statMap.get('poison') <= 0) { + overallparent_elem.style = "display: none"; + return; + } + overallparent_elem.style = ""; + + let container = make_elem('div', ['col', 'pe-0']); + let spell_summary = make_elem('div', ["col", "spell-display", "dark-5", "rounded", "dark-shadow", "py-2", "border", "border-dark"]); //Title - let title_elemavg = document.createElement("b"); - title_elemavg.textContent = "Poison Stats"; - overallparent_elem.append(title_elemavg); + let title_elemavg = make_elem("b"); + title_elemavg.append(make_elem('span', [], { textContent: "Poison Stats" })); + spell_summary.append(title_elemavg); - let overallpoisonDamage = document.createElement("p"); - let overallpoisonDamageFirst = document.createElement("span"); - let overallpoisonDamageSecond = document.createElement("span"); let poison_tick = Math.ceil(build.statMap.get("poison") * (1+skillPointsToPercentage(build.total_skillpoints[0])) * (build.statMap.get("poisonPct"))/100 /3); - overallpoisonDamageFirst.textContent = "Poison Tick: "; - overallpoisonDamageSecond.textContent = Math.max(poison_tick,0); - overallpoisonDamageSecond.classList.add("Damage"); - overallpoisonDamage.appendChild(overallpoisonDamageFirst); - overallpoisonDamage.appendChild(overallpoisonDamageSecond); - overallparent_elem.append(overallpoisonDamage); + let overallpoisonDamage = make_elem("p"); + overallpoisonDamage.append( + make_elem("span", [], { textContent: "Poison Tick: " }), + make_elem("span", ["Damage"], { textContent: Math.max(poison_tick,0) }) + ); + spell_summary.append(overallpoisonDamage); + container.append(spell_summary); + overallparent_elem.append(container); } function displayEquipOrder(parent_elem, buildOrder){ @@ -1228,6 +1235,13 @@ function displayDefenseStats(parent_elem, statMap, insertSummary){ } function displayPowderSpecials(parent_elem, powderSpecials, stats, weapon, overall=false) { + parent_elem.textContent = ""; + if (powderSpecials.length === 0) { + parent_elem.style = "display: none"; + return; + } + parent_elem.style = ""; + const skillpoints = [ stats.get('str'), stats.get('dex'), @@ -1235,16 +1249,13 @@ function displayPowderSpecials(parent_elem, powderSpecials, stats, weapon, overa stats.get('def'), stats.get('agi') ]; - parent_elem.textContent = "" - let title = document.createElement("b"); - title.textContent = "Powder Specials"; - parent_elem.appendChild(title); + parent_elem.append(make_elem("b", [], { textContent: "Powder Specials" })); let specials = powderSpecials.slice(); let expandedStats = new Map(); //each entry of powderSpecials is [ps, power] for (special of specials) { //iterate through the special and display its effects. - let powder_special = document.createElement("p"); + let powder_special = make_elem("p", ["pt-3"]); let specialSuffixes = new Map([ ["Duration", " sec"], ["Radius", " blocks"], ["Chains", ""], ["Damage", "%"], ["Damage Boost", "%"], ["Knockback", " blocks"] ]); let specialTitle = document.createElement("p"); let specialEffects = document.createElement("p"); From 5b94564e860012d0480efee6e4fdc1d38ee3e39f Mon Sep 17 00:00:00 2001 From: fin444 Date: Tue, 19 Jul 2022 11:40:37 -0700 Subject: [PATCH 05/82] ability requirements in tooltip --- js/atree.js | 58 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 54 insertions(+), 4 deletions(-) diff --git a/js/atree.js b/js/atree.js index 70d89e8..4421b61 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1020,7 +1020,7 @@ function render_AT(UI_elem, list_elem, tree) { node_wrap.tooltip_elem.remove(); delete node_wrap.tooltip_elem; } - node_wrap.tooltip_elem = generateTooltip(UI_elem, node_elem, ability); + node_wrap.tooltip_elem = generateTooltip(UI_elem, node_elem, ability, atree_map); }); hitbox.addEventListener('mouseout', function(e) { @@ -1040,12 +1040,13 @@ function render_AT(UI_elem, list_elem, tree) { return atree_map; }; -function generateTooltip(UI_elem, node_elem, ability) { +function generateTooltip(UI_elem, node_elem, ability, atree_map) { let container = make_elem("div", ["rounded-bottom", "dark-4", "border", "mx-2", "my-4", "dark-shadow", "text-start"], {"style": "position: absolute; z-index: 100;"}); container.style.top = (node_elem.getBoundingClientRect().top + window.pageYOffset + 50) + "px"; container.style.left = UI_elem.getBoundingClientRect().left + "px"; container.style.width = UI_elem.getBoundingClientRect().width * 0.95 + "px"; + // title let title = make_elem("b", ["scaled-font", "mx-1"], {}); title.innerHTML = ability.display_name; switch(ability.display.icon) { @@ -1073,12 +1074,14 @@ function generateTooltip(UI_elem, node_elem, ability) { container.innerHTML += "

"; + // description let description = make_elem("p", ["scaled-font-sm", "my-0", "mx-1", "text-wrap"], {}); description.innerHTML = ability.desc; container.appendChild(description); container.appendChild(document.createElement("br")); + // archetype if ("archetype" in ability && ability.archetype !== "") { let archetype = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); archetype.innerHTML = ability.archetype + " Archetype"; @@ -1111,8 +1114,55 @@ function generateTooltip(UI_elem, node_elem, ability) { container.appendChild(document.createElement("br")); } - // requirements - // TODO + // calculate if requirements are satisfied + let apUsed = 0; + let maxAP = parseInt(document.getElementById("active_AP_cap").innerHTML); + let archChosen = 0; + let blockedBy = []; + for (let [id, node_wrap] of atree_map.entries()) { + if (!node_wrap.active || id == ability.id) { + continue; // we don't want to count abilities that are not selected, and an ability should not count towards itself + } + apUsed += node_wrap.ability.cost; + if (node_wrap.ability.archetype == ability.archetype) { + archChosen++; + } + if (ability.blockers.includes(id)) { + blockedBy.push(node_wrap.ability.display_name); + } + } + + let reqYes = "" // green check mark + let reqNo = "" // red x + + // cost + let cost = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); + if (apUsed + ability.cost > maxAP) { + cost.innerHTML = reqNo; + } else { + cost.innerHTML = reqYes; + } + cost.innerHTML += " Ability Points: " + (maxAP - apUsed) + "/" + ability.cost; + container.appendChild(cost); + + // archetype req + if (ability.archetype_req > 0 && ability.archetype != null) { + let archReq = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); + if (archChosen >= ability.archetype_req) { + archReq.innerHTML = reqYes; + } else { + archReq.innerHTML = reqNo; + } + archReq.innerHTML += " Min " + ability.archetype + " Archetype: " + archChosen + "/" + ability.archetype_req; + container.appendChild(archReq); + } + + // blockers + for (let i = 0; i < blockedBy.length; i++) { + let blocker = make_elem("p", ["scaled-font-sm", "my-0", "mx-1"], {}); + blocker.innerHTML = reqNo + " Blocked By: " + blockedBy[i]; + container.appendChild(blocker); + } UI_elem.appendChild(container); return container; From 3f0fb053b9b45322c020c0b4d8eb327248064e54 Mon Sep 17 00:00:00 2001 From: fin444 Date: Tue, 19 Jul 2022 13:06:06 -0700 Subject: [PATCH 06/82] make numbers in tooltip descriptions pop --- js/atree.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/atree.js b/js/atree.js index 4421b61..601bb96 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1075,8 +1075,9 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { container.innerHTML += "

"; // description - let description = make_elem("p", ["scaled-font-sm", "my-0", "mx-1", "text-wrap"], {}); - description.innerHTML = ability.desc; + let description = make_elem("p", ["scaled-font-sm", "my-0", "mx-1", "text-wrap", "mc-gray"], {}); + let numberRegex = /[+-]?\d+(\.\d+)?[%+s]?/g; // +/- (optional), 1 or more digits, period followed by 1 or more digits (optional), %/+/s (optional) + description.innerHTML = ability.desc.replaceAll(numberRegex, (m) => { return "" + m + "" }); container.appendChild(description); container.appendChild(document.createElement("br")); From 71e04fcff0a9465c7945b16525459bf8c1220323 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Tue, 19 Jul 2022 17:14:51 -0500 Subject: [PATCH 07/82] patch 8 atree changes (also added ranges to stuff) --- js/atree_constants.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 518b26d..6d83f36 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -1864,7 +1864,7 @@ const atrees = { "col": 4, "icon": "node_2" }, - "properties": {}, + "properties": {"range": 16}, "effects": [ { "type": "replace_spell", @@ -3432,7 +3432,7 @@ const atrees = { "icon": "node_2" }, "properties": { - "duration": 5 + "duration": 8 }, "effects": [ { @@ -4759,7 +4759,7 @@ const atrees = { "name": "eConvBase:3.Lightning Damage" } ], - "scaling": [15] + "scaling": [10] } ] }, @@ -5052,7 +5052,7 @@ const atrees = { "name": "nConvBase:2.Explosion Damage" } ], - "scaling": [30] + "scaling": [20] }, { "type": "stat_scaling", @@ -5068,7 +5068,7 @@ const atrees = { "name": "tConvBase:2.Explosion Damage" } ], - "scaling": [10] + "scaling": [5] }, { "type": "stat_scaling", @@ -5160,7 +5160,7 @@ const atrees = { }, { "display_name": "Lightweaver", - "desc": "After healing 60% of your max health within 10s, summon a rotating orb that damages all enemies it touches for 20s. (Max 3 Orbs)", + "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": ["Orphion's Pulse"], @@ -5243,7 +5243,7 @@ const atrees = { "col": 7, "icon": "node_1" }, - "properties": {}, + "properties": {"range": 20}, "effects": [] }, { @@ -5570,7 +5570,7 @@ const atrees = { "type": "add_spell_prop", "base_spell": 3, "target_part": "Per Orb", - "multipliers": [-50, 0, -10, 0, 0, 0] + "multipliers": [-30, 0, -10, 0, 0, 0] }, { "type": "add_spell_prop", From 591fa29c7de9ae91366816b95a651f0a490e6c04 Mon Sep 17 00:00:00 2001 From: fin444 Date: Tue, 19 Jul 2022 16:03:13 -0700 Subject: [PATCH 08/82] assassin archetype colors --- js/atree.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/atree.js b/js/atree.js index b6f60b9..865b7ec 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1133,15 +1133,20 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { case "Trapper": archetype.classList.add("mc-dark-green"); break; + case "Trickster": case "Sharpshooter": archetype.classList.add("mc-light-purple"); break; case "Arcanist": archetype.classList.add("mc-dark-purple"); break; + case "Acrobat": case "Light Bender": // already white break; + case "Shadestepper": + archetype.classList.add("mc-dark-red"); + break; } container.appendChild(archetype); container.appendChild(document.createElement("br")); From 84476a95bcb8acd2593181c22fe5d6d8891c8b8e Mon Sep 17 00:00:00 2001 From: fin444 Date: Tue, 19 Jul 2022 19:50:14 -0700 Subject: [PATCH 09/82] it's 'node_0' not '0' --- js/atree.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/atree.js b/js/atree.js index 865b7ec..0a6151c 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1082,6 +1082,9 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { let title = make_elem("b", ["scaled-font", "mx-1"], {}); title.innerHTML = ability.display_name; switch(ability.display.icon) { + case "node_0": + // already white + break; case "node_1": title.classList.add("mc-gold"); break; @@ -1098,9 +1101,6 @@ function generateTooltip(UI_elem, node_elem, ability, atree_map) { case "node_shaman": title.classList.add("mc-green"); break; - case "0": - // already white - break; } container.appendChild(title); From 5066d6e5226b9bb031d1a05e5ee808c7dea90dd4 Mon Sep 17 00:00:00 2001 From: aspiepuppy Date: Tue, 19 Jul 2022 22:06:47 -0500 Subject: [PATCH 10/82] fixed breathless schema (idk if scaling is right) --- js/atree_constants.js | 68 ++++++++++++++++++++++----------------- js/atree_constants_min.js | 2 +- 2 files changed, 39 insertions(+), 31 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 6d83f36..440dd78 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -4729,36 +4729,44 @@ const atrees = { }, "properties": {}, "effects": [ - { - "type": "stat_scaling", - "slider": true, - "slider_name": "Winded", - "output": [ - { - "type": "stat", - "name": "nConvBase:3.Meteor Damage" - }, - { - "type": "stat", - "name": "eConvBase:3.Meteor Damage" - }, - { - "type": "stat", - "name": "nConvBase:3.Per Orb" - }, - { - "type": "stat", - "name": "eConvBase:3.Per Orb" - }, - { - "type": "stat", - "name": "nConvBase:3.Lightning Damage" - }, - { - "type": "stat", - "name": "eConvBase:3.Lightning Damage" - } - ], + { + "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": [5] + }, + { + "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] } ] diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 314e0d7..8a916a2 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":{},"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":5},"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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"nConvBase:3.Lightning Damage"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[15]}],"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":[30]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[10]},{"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 60% 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":{},"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":[-50,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}]} \ 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[5]},{"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}]} \ No newline at end of file From 12dd037f8b6a7161b714dd96bd75b0bf6b2f8407 Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 19 Jul 2022 20:50:52 -0700 Subject: [PATCH 11/82] Fix nconv breathless --- 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 440dd78..0d4b41f 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -4747,7 +4747,7 @@ const atrees = { "name": "nConvBase:3.Lightning Damage" } ], - "scaling": [5] + "scaling": [15] }, { "type": "stat_scaling", diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 8a916a2..a449976 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[5]},{"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}]} \ 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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}]} \ No newline at end of file From 70ad5d71e7563506bcd84cba9067742590bc77d1 Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 19 Jul 2022 21:27:06 -0700 Subject: [PATCH 12/82] Item changes for patch 8 --- clean.json | 1432 +++++++++++++++++++--------------------- compress.json | 2 +- py_script/json_diff.py | 8 +- py_script/merge.json | 190 ++++-- 4 files changed, 788 insertions(+), 844 deletions(-) diff --git a/clean.json b/clean.json index a3d73f0..4acaefd 100644 --- a/clean.json +++ b/clean.json @@ -5,12 +5,6 @@ "type": "helmet", "tier": "Legendary", "majorIds": [], - "tDamPct-base": -40, - "wDamPct-base": 30, - "aDamPct-base": 35, - "hprPct-base": -50, - "mr-base": 8, - "spRaw4-base": -4, "category": "armor", "displayName": "Keratoconus", "slots": 3, @@ -36,13 +30,6 @@ "type": "chestplate", "tier": "Legendary", "majorIds": [], - "wDamPct-base": 20, - "aDamPct-base": 30, - "sdRaw-base": 208, - "hprPct-base": -15, - "ms-base": -11, - "ls-base": 230, - "spd-base": 25, "category": "armor", "displayName": "Wanderlust", "slots": 2, @@ -68,12 +55,6 @@ "type": "leggings", "tier": "Legendary", "majorIds": [], - "eDamPct-base": 24, - "aDamPct-base": 32, - "atkTier-base": -1, - "mr-base": 8, - "ref-base": 48, - "spRaw1-base": -5, "category": "armor", "displayName": "Anaerobic", "slots": 4, @@ -98,12 +79,6 @@ "type": "relik", "tier": "Rare", "majorIds": [], - "sdRaw-base": 184, - "atkTier-base": 1, - "hpBonus-base": -1150, - "hprPct-base": -204, - "ms-base": 13, - "spRaw1-base": -7, "category": "weapon", "displayName": "Danse Macabre", "basedps": 238, @@ -132,12 +107,6 @@ "type": "bow", "tier": "Rare", "majorIds": [], - "hpBonus-base": 1500, - "wDefPct-base": -50, - "fDefPct-base": -50, - "ms-base": 13, - "ls-base": -700, - "ref-base": 25, "category": "weapon", "displayName": "Darkness's Dogma", "basedps": 1250, @@ -166,11 +135,6 @@ "type": "wand", "tier": "Rare", "majorIds": [], - "wDamPct-base": -30, - "mdPct-base": 25, - "mr-base": 7, - "ls-base": 380, - "spRaw1-base": -4, "category": "weapon", "displayName": "Frameshift", "basedps": 360, @@ -199,12 +163,6 @@ "type": "spear", "tier": "Rare", "majorIds": [], - "tDamPct-base": 20, - "atkTier-base": 1, - "hpBonus-base": -1250, - "wDefPct-base": -35, - "aDefPct-base": -35, - "ls-base": 500, "category": "weapon", "displayName": "Helminth", "basedps": 100, @@ -232,12 +190,6 @@ "type": "dagger", "tier": "Rare", "majorIds": [], - "fDamPct-base": 23, - "aDamPct-base": 23, - "hpBonus-base": 1000, - "jh-base": 1, - "spd-base": 30, - "spRaw2-base": -2, "category": "weapon", "displayName": "Lanternfly Leg", "basedps": 180, @@ -266,13 +218,6 @@ "type": "helmet", "tier": "Unique", "majorIds": [], - "tDamPct-base": 12, - "wDamPct-base": 20, - "sdPct-base": 20, - "ls-base": -275, - "spd-base": -20, - "sprint-base": 20, - "lb-base": 20, "category": "armor", "displayName": "Dissonance", "sprint": 20, @@ -297,12 +242,6 @@ "type": "chestplate", "tier": "Unique", "majorIds": [], - "tDamPct-base": -30, - "wDamPct-base": 25, - "ms-base": 8, - "spd-base": 15, - "spPct4-base": 14, - "xpb-base": 25, "category": "armor", "displayName": "Roridula", "slots": 2, @@ -326,12 +265,6 @@ "type": "leggings", "tier": "Unique", "majorIds": [], - "poison-base": 600, - "wDefPct-base": 31, - "fDefPct-base": 31, - "hprPct-base": 37, - "thorns-base": 25, - "jh-base": 1, "category": "armor", "displayName": "Atomizer", "poison": 600, @@ -355,13 +288,6 @@ "type": "boots", "tier": "Unique", "majorIds": [], - "eDamPct-base": 25, - "aDamPct-base": 25, - "sdRaw-base": 140, - "atkTier-base": -1, - "poison-base": 500, - "sprint-base": -15, - "spRaw3-base": -6, "category": "armor", "displayName": "Wasteland Azalea", "poison": 500, @@ -385,9 +311,6 @@ "type": "ring", "tier": "Unique", "majorIds": [], - "sdPct-base": 5, - "hprPct-base": 17, - "spd-base": -7, "category": "accessory", "displayName": "Tranquility", "hp": 550, @@ -408,10 +331,6 @@ "type": "bracelet", "tier": "Unique", "majorIds": [], - "eDamPct-base": 6, - "tDamPct-base": 6, - "wDamPct-base": 10, - "mr-base": 3, "category": "accessory", "displayName": "Misalignment", "lvl": 101, @@ -430,9 +349,6 @@ "type": "necklace", "tier": "Unique", "majorIds": [], - "sdPct-base": 8, - "hprPct-base": -11, - "spRaw1-base": -1, "category": "accessory", "displayName": "Grafted Eyestalk", "hp": -600, @@ -453,10 +369,6 @@ "type": "ring", "tier": "Fabled", "majorIds": [], - "tDamPct-base": -15, - "wDamPct-base": -15, - "mr-base": 4, - "ls-base": 120, "category": "accessory", "displayName": "Forbearance", "lvl": 105, @@ -475,9 +387,6 @@ "type": "ring", "tier": "Fabled", "majorIds": [], - "eDamPct-base": 8, - "aDamPct-base": 8, - "sdRaw-base": 55, "category": "accessory", "displayName": "Ingress", "aDef": 55, @@ -498,10 +407,6 @@ "type": "bracelet", "tier": "Fabled", "majorIds": [], - "sdPct-base": 13, - "sdRaw-base": 75, - "ms-base": 6, - "spRaw2-base": -4, "category": "accessory", "displayName": "Breakthrough", "fDef": -30, @@ -519,63 +424,11 @@ "spRaw2": -4, "id": 3667 }, - { - "name": "Detachment", - "type": "bracelet", - "tier": "Fabled", - "majorIds": [], - "mdRaw-base": -85, - "sdRaw-base": -65, - "spd-base": 13, - "spPct4-base": -13, - "category": "accessory", - "displayName": "Detachment", - "aDef": 60, - "tDef": 60, - "lvl": 105, - "dexReq": 55, - "agiReq": 60, - "spd": 13, - "sdRaw": -65, - "mdRaw": -85, - "spPct4": -13, - "id": 3668 - }, - { - "name": "Exhibition", - "type": "necklace", - "tier": "Fabled", - "majorIds": [], - "mr-base": -4, - "spRaw1-base": -2, - "spRaw2-base": -2, - "spRaw3-base": -2, - "spRaw4-base": -2, - "category": "accessory", - "displayName": "Exhibition", - "fDef": -30, - "wDef": 60, - "aDef": -30, - "tDef": -30, - "eDef": -30, - "lvl": 105, - "intReq": 80, - "mr": -4, - "spRaw1": -2, - "spRaw2": -2, - "spRaw3": -2, - "spRaw4": -2, - "id": 3669 - }, { "name": "Simulacrum", "type": "necklace", "tier": "Fabled", "majorIds": [], - "sdRaw-base": 150, - "hprRaw-base": -150, - "mr-base": 5, - "spd-base": 8, "category": "accessory", "displayName": "Simulacrum", "hp": -800, @@ -595,10 +448,6 @@ "type": "chestplate", "tier": "Unique", "majorIds": [], - "tDamPct-base": 8, - "wDamPct-base": 8, - "fDamPct-base": 8, - "sdPct-base": 8, "category": "armor", "displayName": "Medeis", "slots": 3, @@ -652,9 +501,9 @@ "tier": "Legendary", "majorIds": [], "quest": "The Qira Hive", - "set": "Master Hive", "category": "accessory", "displayName": "Prowess", + "set": "Master Hive", "hp": 425, "lvl": 100, "str": 4, @@ -695,7 +544,6 @@ "name": "Gigabyte", "type": "necklace", "tier": "Legendary", - "mr-base": -4, "category": "accessory", "displayName": "Gigabyte", "thorns": 8, @@ -717,7 +565,6 @@ "type": "boots", "tier": "Unique", "majorIds": [], - "sdRaw-base": 104, "category": "armor", "displayName": "Pro Tempore", "slots": 4, @@ -768,8 +615,6 @@ "type": "helmet", "tier": "Rare", "majorIds": [], - "mr-base": 10, - "ms-base": 15, "category": "armor", "displayName": "Brainwash", "hp": 2800, @@ -795,7 +640,6 @@ "type": "leggings", "tier": "Fabled", "majorIds": [], - "ls-base": -475, "category": "armor", "displayName": "Second Wind", "slots": 3, @@ -819,7 +663,6 @@ "type": "helmet", "tier": "Rare", "majorIds": [], - "sdPct-base": 15, "category": "armor", "displayName": "Cumulonimbus", "slots": 3, @@ -846,7 +689,6 @@ "type": "wand", "tier": "Legendary", "majorIds": [], - "sdRaw-base": 145, "category": "weapon", "displayName": "Morrowind", "basedps": 135, @@ -875,8 +717,8 @@ "type": "helmet", "tier": "Legendary", "quest": "The Qira Hive", - "set": "Master Hive", "category": "armor", + "set": "Master Hive", "slots": 2, "hp": 3000, "wDef": 150, @@ -906,9 +748,6 @@ "type": "helmet", "tier": "Unique", "majorIds": [], - "ms-base": 5, - "spPct1-base": -10, - "spPct4-base": -14, "category": "armor", "displayName": "Corsair", "slots": 2, @@ -929,39 +768,11 @@ "spPct4": -14, "id": 658 }, - { - "name": "Scaldsteppers", - "type": "boots", - "tier": "Unique", - "majorIds": [], - "spRaw3-base": -4, - "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, - "spRaw3": -4, - "id": 2956 - }, { "name": "Charging Flame", "type": "spear", "tier": "Rare", "majorIds": [], - "mr-base": 5, - "spRaw2-base": -12, "category": "weapon", "displayName": "Charging Flame", "basedps": 190, @@ -992,7 +803,6 @@ "type": "helmet", "tier": "Legendary", "majorIds": [], - "spRaw3-base": -7, "category": "armor", "displayName": "Aphotic", "slots": 2, @@ -1046,7 +856,6 @@ "majorIds": [ "RALLY" ], - "mr-base": 15, "category": "weapon", "displayName": "Rhythm of the Seasons", "basedps": 165, @@ -1094,7 +903,6 @@ "type": "boots", "tier": "Unique", "majorIds": [], - "spRaw3-base": -6, "category": "armor", "displayName": "Condensation", "hp": 2000, @@ -1114,8 +922,6 @@ "type": "chestplate", "tier": "Rare", "majorIds": [], - "mr-base": 5, - "spRaw3-base": -5, "category": "armor", "displayName": "Augoeides", "hp": 1000, @@ -1140,7 +946,6 @@ "type": "chestplate", "tier": "Legendary", "majorIds": [], - "spRaw1-base": -5, "category": "armor", "displayName": "Matryoshka Shell", "slots": 18, @@ -1174,8 +979,6 @@ "majorIds": [ "ENTROPY" ], - "ms-base": 30, - "spRaw3-base": 6, "category": "weapon", "displayName": "Pure", "basedps": 70, @@ -1202,7 +1005,6 @@ "type": "boots", "tier": "Mythic", "majorIds": [], - "mr-base": 30, "category": "armor", "displayName": "Resurgence", "slots": 4, @@ -1226,7 +1028,6 @@ "type": "boots", "tier": "Mythic", "majorIds": [], - "ms-base": 20, "category": "armor", "displayName": "Galleon", "poison": 4231, @@ -1252,7 +1053,6 @@ "type": "boots", "tier": "Mythic", "majorIds": [], - "mr-base": 10, "category": "armor", "displayName": "Boreal", "slots": 3, @@ -1278,7 +1078,6 @@ "type": "bow", "tier": "Mythic", "majorIds": [], - "mr-base": 10, "category": "weapon", "displayName": "Freedom", "basedps": 485, @@ -1309,8 +1108,6 @@ "type": "relik", "tier": "Mythic", "majorIds": [], - "spRaw1-base": -10, - "spRaw2-base": -10, "category": "weapon", "displayName": "Olympic", "basedps": 360, @@ -1368,9 +1165,6 @@ "type": "relik", "tier": "Mythic", "majorIds": [], - "mr-base": 30, - "spPct3-base": 112, - "spPct4-base": 112, "category": "weapon", "displayName": "Hadal", "basedps": 1950, @@ -1395,7 +1189,6 @@ "type": "dagger", "tier": "Mythic", "majorIds": [], - "ms-base": 16, "category": "weapon", "displayName": "Nullification", "basedps": 315, @@ -1430,8 +1223,6 @@ "type": "spear", "tier": "Mythic", "majorIds": [], - "mr-base": 10, - "spRaw2-base": -50, "category": "weapon", "displayName": "Idol", "basedps": 280, @@ -1459,7 +1250,6 @@ "type": "boots", "tier": "Mythic", "majorIds": [], - "ms-base": 12, "category": "armor", "displayName": "Dawnbreak", "slots": 2, @@ -1511,8 +1301,6 @@ "type": "dagger", "tier": "Mythic", "majorIds": [], - "ms-base": -10, - "spRaw4-base": -10, "category": "weapon", "displayName": "Grimtrap", "basedps": 570, @@ -1542,7 +1330,6 @@ "majorIds": [ "ROVINGASSASSIN" ], - "ms-base": 16, "category": "weapon", "displayName": "Weathered", "basedps": 245, @@ -1570,7 +1357,6 @@ "type": "spear", "tier": "Mythic", "majorIds": [], - "spRaw3-base": -6, "category": "weapon", "displayName": "Thrundacrack", "basedps": 205, @@ -1597,8 +1383,6 @@ "type": "wand", "tier": "Mythic", "majorIds": [], - "ms-base": 40, - "spPct1-base": -35, "category": "weapon", "displayName": "Lament", "basedps": 265, @@ -1624,7 +1408,6 @@ "type": "relik", "tier": "Mythic", "majorIds": [], - "ms-base": 18, "category": "weapon", "displayName": "Toxoplasmosis", "basedps": 3, @@ -1651,8 +1434,6 @@ "type": "boots", "tier": "Mythic", "majorIds": [], - "mr-base": -9, - "ms-base": 15, "category": "armor", "displayName": "Stardew", "slots": 2, @@ -1678,7 +1459,6 @@ "type": "bow", "tier": "Mythic", "majorIds": [], - "ms-base": 30, "category": "weapon", "displayName": "Divzer", "basedps": 299, @@ -1741,8 +1521,6 @@ "majorIds": [ "ARCANES" ], - "mr-base": 10, - "ms-base": -20, "category": "weapon", "displayName": "Nirvana", "basedps": 352.5, @@ -1772,7 +1550,6 @@ "majorIds": [ "FISSION" ], - "ms-base": 18, "category": "weapon", "displayName": "Collapse", "basedps": 827.5, @@ -1806,7 +1583,6 @@ "type": "wand", "tier": "Mythic", "majorIds": [], - "spRaw4-base": -9, "category": "weapon", "displayName": "Gaia", "basedps": 620, @@ -1834,8 +1610,6 @@ "type": "relik", "tier": "Mythic", "majorIds": [], - "mr-base": 16, - "spRaw1-base": -20, "category": "weapon", "displayName": "Absolution", "basedps": 200, @@ -1863,7 +1637,6 @@ "type": "bow", "tier": "Mythic", "majorIds": [], - "mr-base": 30, "category": "weapon", "displayName": "Spring", "basedps": 422.5, @@ -1890,8 +1663,6 @@ "type": "wand", "tier": "Mythic", "majorIds": [], - "ms-base": 10, - "spRaw1-base": 4, "category": "weapon", "displayName": "Monster", "basedps": 315, @@ -1919,8 +1690,6 @@ "type": "boots", "tier": "Mythic", "majorIds": [], - "ms-base": 10, - "spPct4-base": -28, "category": "armor", "displayName": "Revenant", "slots": 3, @@ -1946,8 +1715,6 @@ "type": "wand", "tier": "Mythic", "majorIds": [], - "spPct1-base": 28, - "spPct2-base": -49, "category": "weapon", "displayName": "Fatal", "basedps": 180.5, @@ -1974,9 +1741,6 @@ "type": "wand", "tier": "Mythic", "majorIds": [], - "mr-base": -45, - "spRaw1-base": 4, - "spRaw2-base": -299, "category": "weapon", "displayName": "Warp", "basedps": 260, @@ -2007,9 +1771,6 @@ "type": "dagger", "tier": "Mythic", "majorIds": [], - "mr-base": -30, - "ms-base": 15, - "spRaw2-base": -20, "category": "weapon", "displayName": "Oblivion", "basedps": 1699.5, @@ -2038,7 +1799,6 @@ "type": "bow", "tier": "Mythic", "majorIds": [], - "sdPct-base": 40, "category": "weapon", "displayName": "Epoch", "basedps": 1680, @@ -2068,10 +1828,6 @@ "type": "relik", "tier": "Mythic", "majorIds": [], - "spPct1-base": -27, - "spPct2-base": -27, - "spPct3-base": -27, - "spPct4-base": -27, "category": "weapon", "displayName": "Fantasia", "basedps": 1350, @@ -2104,7 +1860,6 @@ "type": "boots", "tier": "Mythic", "majorIds": [], - "spPct3-base": -30, "category": "armor", "displayName": "Slayer", "slots": 2, @@ -2127,7 +1882,6 @@ "type": "relik", "tier": "Mythic", "majorIds": [], - "spPct3-base": -14, "category": "weapon", "displayName": "Immolation", "basedps": 640, @@ -2157,7 +1911,6 @@ "type": "spear", "tier": "Mythic", "majorIds": [], - "spPct3-base": -45, "category": "weapon", "displayName": "Convergence", "basedps": 300, @@ -2180,6 +1933,584 @@ "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", @@ -2236,6 +2567,34 @@ "spPct4": 100, "id": 3618 }, + { + "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", @@ -5216,21 +5575,6 @@ "fDamPct": -25, "id": 135 }, - { - "name": "Aquarius", - "tier": "Legendary", - "type": "chestplate", - "category": "armor", - "slots": 3, - "drop": "NORMAL", - "hp": 2550, - "fDef": -100, - "lvl": 95, - "intReq": 110, - "mr": 25, - "mdPct": -20, - "id": 126 - }, { "name": "Arakadicus' Claw", "tier": "Unique", @@ -14692,29 +15036,6 @@ "fixID": true, "id": 627 }, - { - "name": "Ossuary", - "tier": "Legendary", - "type": "helmet", - "thorns": 30, - "category": "armor", - "slots": 2, - "drop": "never", - "restrict": "Untradable", - "hp": 2550, - "aDef": 90, - "tDef": 90, - "lvl": 84, - "ls": 245, - "int": -20, - "spd": 15, - "sdRaw": 170, - "aDamPct": 12, - "tDamPct": 15, - "fixID": true, - "spPct3": -10, - "id": 629 - }, { "name": "Drain", "tier": "Rare", @@ -14936,26 +15257,6 @@ "fixID": true, "id": 643 }, - { - "name": "Conduit of Spirit", - "tier": "Legendary", - "type": "chestplate", - "category": "armor", - "drop": "never", - "restrict": "Untradable", - "hp": 2800, - "aDef": 150, - "lvl": 93, - "agiReq": 105, - "mr": 5, - "sdPct": 25, - "ms": 15, - "ref": 20, - "spRegen": 50, - "aDamPct": 20, - "fixID": true, - "id": 639 - }, { "name": "Final Compulsion", "tier": "Rare", @@ -18087,34 +18388,6 @@ "spRaw1": -5, "id": 783 }, - { - "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": "Sprout", "tier": "Legendary", @@ -23352,28 +23625,6 @@ "spRegen": 3, "id": 1024 }, - { - "name": "Far Cosmos", - "tier": "Rare", - "type": "chestplate", - "category": "armor", - "slots": 5, - "drop": "NORMAL", - "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": -1, - "id": 1022 - }, { "name": "Fatigue", "tier": "Unique", @@ -27863,40 +28114,6 @@ "spRaw4": -5, "id": 1243 }, - { - "name": "Guillotine", - "tier": "Rare", - "type": "helmet", - "category": "armor", - "slots": 4, - "drop": "NORMAL", - "hp": 3100, - "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": -1429, - "sdRaw": 150, - "aDamPct": -50, - "aDefPct": -15, - "id": 3588 - }, { "name": "Gust", "tier": "Unique", @@ -29460,27 +29677,6 @@ "hpBonus": 50, "id": 1307 }, - { - "name": "Harmony", - "tier": "Rare", - "type": "leggings", - "category": "armor", - "slots": 2, - "drop": "NORMAL", - "hp": 2650, - "fDef": 180, - "wDef": 180, - "tDef": 180, - "eDef": 180, - "lvl": 84, - "agiReq": 65, - "sdPct": 9, - "mdPct": -18, - "spd": 18, - "spRegen": 18, - "aDefPct": 45, - "id": 1314 - }, { "name": "Hardline", "tier": "Unique", @@ -32645,28 +32841,6 @@ "type": "necklace", "id": 1464 }, - { - "name": "Ionosphere", - "tier": "Unique", - "type": "helmet", - "category": "armor", - "slots": 3, - "drop": "NORMAL", - "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, - "id": 1466 - }, { "name": "Iodide", "tier": "Unique", @@ -36016,29 +36190,6 @@ "sdRaw": 120, "id": 1636 }, - { - "name": "Leviathan", - "tier": "Rare", - "type": "chestplate", - "category": "armor", - "slots": 2, - "drop": "NORMAL", - "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, - "id": 1634 - }, { "name": "Lichcall", "tier": "Unique", @@ -40755,42 +40906,6 @@ "tDamPct": 5, "id": 1877 }, - { - "name": "Dragon's Eye Bracelet", - "tier": "Fabled", - "quest": "The Order of the Grook", - "category": "accessory", - "drop": "never", - "fDef": 25, - "lvl": 60, - "defReq": 40, - "xpb": 10, - "expd": 5, - "fDamPct": 11, - "wDefPct": -8, - "type": "bracelet", - "spRaw3": -5, - "id": 1879, - "set": "Grookwarts" - }, - { - "name": "Draoi Fair", - "tier": "Fabled", - "quest": "The Order of the Grook", - "category": "accessory", - "drop": "never", - "wDef": 20, - "eDef": 20, - "lvl": 60, - "strReq": 25, - "intReq": 25, - "xpb": 10, - "hprRaw": 30, - "type": "ring", - "spRaw1": -5, - "id": 1882, - "set": "Grookwarts" - }, { "name": "Earth Relic Dagger", "displayName": "Earth Relic Daggers", @@ -41846,25 +41961,6 @@ "type": "ring", "id": 1936 }, - { - "name": "Renda Langit", - "tier": "Fabled", - "quest": "The Order of the Grook", - "category": "accessory", - "drop": "never", - "hp": 230, - "aDef": 30, - "lvl": 60, - "agiReq": 40, - "xpb": 10, - "spd": 12, - "eDefPct": -8, - "type": "necklace", - "spRaw2": -5, - "spRaw4": -5, - "id": 1931, - "set": "Grookwarts" - }, { "name": "Royal Blazing Amulet", "tier": "Legendary", @@ -44585,39 +44681,6 @@ "type": "ring", "id": 2064 }, - { - "name": "Ophiolite", - "tier": "Rare", - "type": "helmet", - "category": "armor", - "slots": 4, - "drop": "NORMAL", - "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, - "expd": 30, - "spd": -20, - "hprRaw": 170, - "tDefPct": -20, - "id": 3596 - }, { "name": "Opalite", "tier": "Unique", @@ -46726,26 +46789,6 @@ "tDefPct": -7, "id": 2159 }, - { - "name": "Prayer", - "tier": "Unique", - "type": "leggings", - "category": "armor", - "slots": 2, - "drop": "NORMAL", - "hp": 1280, - "wDef": 100, - "tDef": -100, - "lvl": 68, - "intReq": 45, - "sdPct": 12, - "xpb": 8, - "int": 5, - "spRegen": 8, - "fDamPct": -16, - "wDefPct": 12, - "id": 2155 - }, { "name": "Precious", "tier": "Legendary", @@ -53524,25 +53567,6 @@ "fixID": true, "id": 2508 }, - { - "name": "Cloudwalkers", - "tier": "Unique", - "type": "boots", - "sprint": 15, - "category": "armor", - "slots": 3, - "drop": "never", - "aDef": 100, - "lvl": 94, - "agiReq": 50, - "sdPct": 40, - "xpb": 10, - "spd": 30, - "aDamPct": 30, - "aDefPct": 20, - "fixID": true, - "id": 2510 - }, { "name": "Ahms' Remains", "tier": "Unique", @@ -56404,67 +56428,6 @@ "fixID": true, "id": 2639 }, - { - "name": "Entamyx", - "tier": "Rare", - "type": "leggings", - "quest": "Troubled Tribesmen", - "thorns": 35, - "category": "armor", - "slots": 3, - "drop": "never", - "hp": 2150, - "fDef": -100, - "wDef": 150, - "aDef": 150, - "tDef": -100, - "eDef": 150, - "lvl": 76, - "strReq": 50, - "intReq": 50, - "agiReq": 50, - "ref": 35, - "dex": -20, - "def": -20, - "wDamPct": 15, - "aDamPct": 15, - "eDamPct": 15, - "wDefPct": 15, - "aDefPct": 15, - "eDefPct": 15, - "fixID": true, - "id": 2638 - }, - { - "name": "Gysdep", - "tier": "Rare", - "type": "helmet", - "quest": "Troubled Tribesmen", - "category": "armor", - "slots": 3, - "drop": "never", - "hp": 2000, - "fDef": 150, - "wDef": 150, - "aDef": 150, - "tDef": -100, - "eDef": -100, - "lvl": 74, - "intReq": 50, - "agiReq": 50, - "defReq": 50, - "str": -20, - "dex": -20, - "hpBonus": 500, - "fDamPct": 10, - "wDamPct": 10, - "aDamPct": 10, - "fDefPct": 25, - "wDefPct": 25, - "aDefPct": 25, - "fixID": true, - "id": 2642 - }, { "name": "Fuunyet", "tier": "Rare", @@ -59945,33 +59908,6 @@ "fixID": true, "id": 2815 }, - { - "name": "Steamstone", - "tier": "Unique", - "type": "leggings", - "category": "armor", - "slots": 2, - "drop": "never", - "hp": 2900, - "fDef": 75, - "wDef": 75, - "tDef": -130, - "eDef": 50, - "lvl": 91, - "intReq": 25, - "defReq": 25, - "hprPct": 25, - "ms": 5, - "int": 7, - "def": 8, - "aDamPct": -10, - "tDamPct": -10, - "eDamPct": 16, - "fDefPct": 8, - "wDefPct": 8, - "fixID": true, - "id": 2821 - }, { "name": "Stricken Bolt", "tier": "Unique", @@ -68575,29 +68511,6 @@ "dex": 3, "id": 3197 }, - { - "name": "Symphony", - "tier": "Unique", - "type": "chestplate", - "category": "armor", - "slots": 2, - "drop": "NORMAL", - "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, - "id": 3196 - }, { "name": "Sweden", "tier": "Unique", @@ -69904,27 +69817,6 @@ "tDamPct": 10, "id": 3259 }, - { - "name": "The Courier's Cape", - "tier": "Unique", - "type": "chestplate", - "category": "armor", - "slots": 3, - "drop": "NORMAL", - "hp": 1900, - "aDef": 50, - "lvl": 86, - "agiReq": 80, - "mr": 10, - "xpb": 15, - "lb": 10, - "agi": 10, - "spd": 20, - "aDamPct": 23, - "aDefPct": 15, - "eDefPct": 10, - "id": 3261 - }, { "name": "The Elder Wand", "tier": "Unique", @@ -76332,8 +76224,8 @@ "sdPct": 14, "mdPct": 14, "jh": 1, - "mr": -5, - "ms": -5 + "mr": -1, + "ms": -1 }, { "hprRaw": 50, @@ -76361,19 +76253,19 @@ "bonuses": [ {}, { - "ms": 5, + "ms": 1, "dex": 2, "sdRaw": 15, "mdRaw": 5 }, { - "ms": 5, + "ms": 1, "dex": 6, "sdRaw": 35, "mdRaw": 10 }, { - "ms": 15, + "ms": 3, "dex": 20, "sdRaw": 65, "mdRaw": 70 @@ -76433,10 +76325,10 @@ {}, {}, { - "mr": 25, + "mr": 5, "sdPct": 75, "mdPct": 75, - "ms": 25, + "ms": 5, "ls": 400, "hprRaw": 600 } @@ -76561,24 +76453,24 @@ "bonuses": [ {}, { - "mr": -5, - "ms": 10, + "mr": -1, + "ms": 2, "sdRaw": 40, "wDamPct": 5, "tDamPct": 5, "eDamPct": -34 }, { - "mr": -10, - "ms": 20, + "mr": -2, + "ms": 4, "sdRaw": 115, "wDamPct": 10, "tDamPct": 10, "eDamPct": -67 }, { - "mr": -15, - "ms": 30, + "mr": -3, + "ms": 6, "sdRaw": 230, "wDamPct": 32, "tDamPct": 32, @@ -76615,7 +76507,7 @@ "spRegen": 15 }, { - "mr": 10, + "mr": 2, "sdPct": 25, "mdPct": 25, "xpb": 50, @@ -76701,7 +76593,7 @@ "bonuses": [ {}, { - "mr": 10, + "mr": 2, "xpb": 40, "def": 25, "fDamPct": 20, @@ -76845,21 +76737,21 @@ {}, { "hprPct": -10, - "mr": 5, + "mr": 1, "sdPct": 6, "ref": 10, "thorns": 8 }, { "hprPct": -20, - "mr": 10, + "mr": 2, "sdPct": 14, "ref": 35, "thorns": 24 }, { "hprPct": -30, - "mr": 20, + "mr": 4, "sdPct": 30, "ref": 75, "thorns": 70 @@ -76875,7 +76767,7 @@ {}, { "mdPct": 30, - "ms": 10, + "ms": 2, "spd": 25, "spPct2": -40 } @@ -76899,46 +76791,46 @@ "lb": 5 }, { - "mr": 5, + "mr": 1, "xpb": 10, "lb": 10, - "spRaw2": -5, + "spRaw2": -1, "hpBonus": 125 }, { - "mr": 5, + "mr": 1, "xpb": 15, "lb": 15, - "spRaw2": -5, + "spRaw2": -1, "hpBonus": 425 }, { - "mr": 10, + "mr": 2, "xpb": 35, "lb": 35, "hpBonus": 1325, - "spRaw2": -5, - "spRaw4": -5 + "spRaw2": -1, + "spRaw4": -1 }, { - "mr": 10, + "mr": 2, "xpb": 55, "lb": 55, "hpBonus": 2575, - "spRaw2": -5, - "spRaw4": -5 + "spRaw2": -1, + "spRaw4": -1 }, { - "mr": 15, + "mr": 3, "xpb": 80, "lb": 80, "hpBonus": 4450, - "spRaw1": -5, - "spRaw2": -5, - "spRaw4": -5 + "spRaw1": -1, + "spRaw2": -1, + "spRaw4": -1 }, { - "mr": 20, + "mr": 4, "xpb": 100, "lb": 100, "str": 15, @@ -76947,10 +76839,10 @@ "agi": 15, "def": 15, "hpBonus": 8270, - "spRaw1": -5, - "spRaw2": -5, - "spRaw3": -5, - "spRaw4": -5 + "spRaw1": -1, + "spRaw2": -1, + "spRaw3": -1, + "spRaw4": -1 } ] }, @@ -77014,7 +76906,7 @@ "bonuses": [ {}, { - "mr": 10, + "mr": 2, "sdPct": 15, "mdPct": -15, "sdRaw": 30, @@ -77282,7 +77174,7 @@ "bonuses": [ {}, { - "mr": 10, + "mr": 2, "mdPct": -24, "int": 5, "wDamPct": 10, @@ -77290,7 +77182,7 @@ "wDefPct": 16 }, { - "mr": 25, + "mr": 5, "mdPct": -54, "int": 15, "wDamPct": 20, @@ -77298,7 +77190,7 @@ "wDefPct": 36 }, { - "mr": 40, + "mr": 8, "mdPct": -90, "int": 25, "wDamPct": 40, @@ -77324,7 +77216,7 @@ "aDefPct": 20, "tDefPct": 20, "eDefPct": 20, - "ms": 5 + "ms": 1 }, { "xpb": 50, @@ -77334,7 +77226,7 @@ "aDefPct": 50, "tDefPct": 50, "eDefPct": 50, - "ms": 10 + "ms": 2 }, { "xpb": 75, @@ -77345,7 +77237,7 @@ "tDefPct": 100, "eDefPct": 100, "sdPct": 40, - "ms": 30 + "ms": 6 } ] }, @@ -77359,7 +77251,7 @@ "bonuses": [ {}, { - "mr": 5, + "mr": 1, "sdPct": -10, "mdPct": -15, "def": 7, @@ -77368,7 +77260,7 @@ "aDamPct": 15 }, { - "mr": 15, + "mr": 3, "sdPct": -20, "mdPct": -40, "def": 15, @@ -77377,7 +77269,7 @@ "aDamPct": 40 }, { - "mr": 30, + "mr": 6, "sdPct": -40, "mdPct": -85, "def": 40, @@ -77439,7 +77331,7 @@ "sdPct": -33, "mdPct": -33, "ls": 90, - "ms": 10, + "ms": 2, "sdRaw": 160, "mdRaw": 105, "atkTier": 1 @@ -77460,7 +77352,7 @@ "hprRaw": 90 }, { - "mr": 25, + "mr": 5, "int": 20, "def": 20, "hpBonus": 1500, @@ -77480,19 +77372,19 @@ "bonuses": [ {}, { - "mr": 5, + "mr": 1, "xpb": 5, "lb": 10, "hpBonus": 55 }, { - "mr": 10, + "mr": 2, "xpb": 10, "lb": 25, "hpBonus": 170 }, { - "mr": 20, + "mr": 4, "xpb": 25, "lb": 50, "int": 20, @@ -77748,4 +77640,4 @@ ] } } -} +} \ No newline at end of file diff --git a/compress.json b/compress.json index 6ae7035..f451b3a 100644 --- a/compress.json +++ b/compress.json @@ -1 +1 @@ -{"items": [{"name": "Keratoconus", "type": "helmet", "tier": "Legendary", "majorIds": [], "tDamPct-base": -40, "wDamPct-base": 30, "aDamPct-base": 35, "hprPct-base": -50, "mr-base": 8, "spRaw4-base": -4, "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": [], "wDamPct-base": 20, "aDamPct-base": 30, "sdRaw-base": 208, "hprPct-base": -15, "ms-base": -11, "ls-base": 230, "spd-base": 25, "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": [], "eDamPct-base": 24, "aDamPct-base": 32, "atkTier-base": -1, "mr-base": 8, "ref-base": 48, "spRaw1-base": -5, "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": [], "sdRaw-base": 184, "atkTier-base": 1, "hpBonus-base": -1150, "hprPct-base": -204, "ms-base": 13, "spRaw1-base": -7, "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": [], "hpBonus-base": 1500, "wDefPct-base": -50, "fDefPct-base": -50, "ms-base": 13, "ls-base": -700, "ref-base": 25, "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": [], "wDamPct-base": -30, "mdPct-base": 25, "mr-base": 7, "ls-base": 380, "spRaw1-base": -4, "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": [], "tDamPct-base": 20, "atkTier-base": 1, "hpBonus-base": -1250, "wDefPct-base": -35, "aDefPct-base": -35, "ls-base": 500, "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": [], "fDamPct-base": 23, "aDamPct-base": 23, "hpBonus-base": 1000, "jh-base": 1, "spd-base": 30, "spRaw2-base": -2, "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": [], "tDamPct-base": 12, "wDamPct-base": 20, "sdPct-base": 20, "ls-base": -275, "spd-base": -20, "sprint-base": 20, "lb-base": 20, "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": "Roridula", "type": "chestplate", "tier": "Unique", "majorIds": [], "tDamPct-base": -30, "wDamPct-base": 25, "ms-base": 8, "spd-base": 15, "spPct4-base": 14, "xpb-base": 25, "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": "Atomizer", "type": "leggings", "tier": "Unique", "majorIds": [], "poison-base": 600, "wDefPct-base": 31, "fDefPct-base": 31, "hprPct-base": 37, "thorns-base": 25, "jh-base": 1, "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": [], "eDamPct-base": 25, "aDamPct-base": 25, "sdRaw-base": 140, "atkTier-base": -1, "poison-base": 500, "sprint-base": -15, "spRaw3-base": -6, "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": [], "sdPct-base": 5, "hprPct-base": 17, "spd-base": -7, "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": [], "eDamPct-base": 6, "tDamPct-base": 6, "wDamPct-base": 10, "mr-base": 3, "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": [], "sdPct-base": 8, "hprPct-base": -11, "spRaw1-base": -1, "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": [], "tDamPct-base": -15, "wDamPct-base": -15, "mr-base": 4, "ls-base": 120, "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": [], "eDamPct-base": 8, "aDamPct-base": 8, "sdRaw-base": 55, "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": [], "sdPct-base": 13, "sdRaw-base": 75, "ms-base": 6, "spRaw2-base": -4, "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": "Detachment", "type": "bracelet", "tier": "Fabled", "majorIds": [], "mdRaw-base": -85, "sdRaw-base": -65, "spd-base": 13, "spPct4-base": -13, "category": "accessory", "displayName": "Detachment", "aDef": 60, "tDef": 60, "lvl": 105, "dexReq": 55, "agiReq": 60, "spd": 13, "sdRaw": -65, "mdRaw": -85, "spPct4": -13, "id": 3668}, {"name": "Exhibition", "type": "necklace", "tier": "Fabled", "majorIds": [], "mr-base": -4, "spRaw1-base": -2, "spRaw2-base": -2, "spRaw3-base": -2, "spRaw4-base": -2, "category": "accessory", "displayName": "Exhibition", "fDef": -30, "wDef": 60, "aDef": -30, "tDef": -30, "eDef": -30, "lvl": 105, "intReq": 80, "mr": -4, "spRaw1": -2, "spRaw2": -2, "spRaw3": -2, "spRaw4": -2, "id": 3669}, {"name": "Simulacrum", "type": "necklace", "tier": "Fabled", "majorIds": [], "sdRaw-base": 150, "hprRaw-base": -150, "mr-base": 5, "spd-base": 8, "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": [], "tDamPct-base": 8, "wDamPct-base": 8, "fDamPct-base": 8, "sdPct-base": 8, "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", "set": "Master Hive", "category": "accessory", "displayName": "Prowess", "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", "mr-base": -4, "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": [], "sdRaw-base": 104, "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": [], "mr-base": 10, "ms-base": 15, "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": [], "ls-base": -475, "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": [], "sdPct-base": 15, "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": [], "sdRaw-base": 145, "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", "set": "Master Hive", "category": "armor", "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": [], "ms-base": 5, "spPct1-base": -10, "spPct4-base": -14, "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": "Scaldsteppers", "type": "boots", "tier": "Unique", "majorIds": [], "spRaw3-base": -4, "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, "spRaw3": -4, "id": 2956}, {"name": "Charging Flame", "type": "spear", "tier": "Rare", "majorIds": [], "mr-base": 5, "spRaw2-base": -12, "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": [], "spRaw3-base": -7, "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"], "mr-base": 15, "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": [], "spRaw3-base": -6, "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": [], "mr-base": 5, "spRaw3-base": -5, "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": [], "spRaw1-base": -5, "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"], "ms-base": 30, "spRaw3-base": 6, "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": [], "mr-base": 30, "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": [], "ms-base": 20, "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": [], "mr-base": 10, "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": [], "mr-base": 10, "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": [], "spRaw1-base": -10, "spRaw2-base": -10, "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": [], "mr-base": 30, "spPct3-base": 112, "spPct4-base": 112, "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": [], "ms-base": 16, "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": [], "mr-base": 10, "spRaw2-base": -50, "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": [], "ms-base": 12, "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": [], "ms-base": -10, "spRaw4-base": -10, "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"], "ms-base": 16, "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": [], "spRaw3-base": -6, "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": [], "ms-base": 40, "spPct1-base": -35, "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": [], "ms-base": 18, "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": [], "mr-base": -9, "ms-base": 15, "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": [], "ms-base": 30, "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"], "mr-base": 10, "ms-base": -20, "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"], "ms-base": 18, "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": [], "spRaw4-base": -9, "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": [], "mr-base": 16, "spRaw1-base": -20, "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": [], "mr-base": 30, "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": [], "ms-base": 10, "spRaw1-base": 4, "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": [], "ms-base": 10, "spPct4-base": -28, "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": [], "spPct1-base": 28, "spPct2-base": -49, "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": [], "mr-base": -45, "spRaw1-base": 4, "spRaw2-base": -299, "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": [], "mr-base": -30, "ms-base": 15, "spRaw2-base": -20, "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": [], "sdPct-base": 40, "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": [], "spPct1-base": -27, "spPct2-base": -27, "spPct3-base": -27, "spPct4-base": -27, "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": [], "spPct3-base": -30, "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": [], "spPct3-base": -14, "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": [], "spPct3-base": -45, "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": "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": "Ambivalence", "tier": "Legendary", "material": "259:29", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 70, "aDef": 70, "tDef": 70, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "sdPct": 250, "int": -100, "wDamPct": 50, "type": "necklace", "fixID": true, "spPct1": 130, "spPct2": 85, "spPct3": 130, "spPct4": 100, "id": 3618}, {"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": "Aquarius", "tier": "Legendary", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 2550, "fDef": -100, "lvl": 95, "intReq": 110, "mr": 25, "mdPct": -20, "id": 126}, {"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": "Ossuary", "tier": "Legendary", "type": "helmet", "thorns": 30, "category": "armor", "slots": 2, "drop": "never", "restrict": "Untradable", "hp": 2550, "aDef": 90, "tDef": 90, "lvl": 84, "ls": 245, "int": -20, "spd": 15, "sdRaw": 170, "aDamPct": 12, "tDamPct": 15, "fixID": true, "spPct3": -10, "id": 629}, {"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": "Conduit of Spirit", "tier": "Legendary", "type": "chestplate", "category": "armor", "drop": "never", "restrict": "Untradable", "hp": 2800, "aDef": 150, "lvl": 93, "agiReq": 105, "mr": 5, "sdPct": 25, "ms": 15, "ref": 20, "spRegen": 50, "aDamPct": 20, "fixID": true, "id": 639}, {"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": "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": "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": "Far Cosmos", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 5, "drop": "NORMAL", "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": -1, "id": 1022}, {"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": "Guillotine", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "hp": 3100, "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": -1429, "sdRaw": 150, "aDamPct": -50, "aDefPct": -15, "id": 3588}, {"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": "Harmony", "tier": "Rare", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 2650, "fDef": 180, "wDef": 180, "tDef": 180, "eDef": 180, "lvl": 84, "agiReq": 65, "sdPct": 9, "mdPct": -18, "spd": 18, "spRegen": 18, "aDefPct": 45, "id": 1314}, {"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": "Ionosphere", "tier": "Unique", "type": "helmet", "category": "armor", "slots": 3, "drop": "NORMAL", "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, "id": 1466}, {"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": "Leviathan", "tier": "Rare", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "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, "id": 1634}, {"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": "Dragon's Eye Bracelet", "tier": "Fabled", "quest": "The Order of the Grook", "category": "accessory", "drop": "never", "fDef": 25, "lvl": 60, "defReq": 40, "xpb": 10, "expd": 5, "fDamPct": 11, "wDefPct": -8, "type": "bracelet", "spRaw3": -5, "id": 1879, "set": "Grookwarts"}, {"name": "Draoi Fair", "tier": "Fabled", "quest": "The Order of the Grook", "category": "accessory", "drop": "never", "wDef": 20, "eDef": 20, "lvl": 60, "strReq": 25, "intReq": 25, "xpb": 10, "hprRaw": 30, "type": "ring", "spRaw1": -5, "id": 1882, "set": "Grookwarts"}, {"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": "Renda Langit", "tier": "Fabled", "quest": "The Order of the Grook", "category": "accessory", "drop": "never", "hp": 230, "aDef": 30, "lvl": 60, "agiReq": 40, "xpb": 10, "spd": 12, "eDefPct": -8, "type": "necklace", "spRaw2": -5, "spRaw4": -5, "id": 1931, "set": "Grookwarts"}, {"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": "Ophiolite", "tier": "Rare", "type": "helmet", "category": "armor", "slots": 4, "drop": "NORMAL", "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, "expd": 30, "spd": -20, "hprRaw": 170, "tDefPct": -20, "id": 3596}, {"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": "Prayer", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "NORMAL", "hp": 1280, "wDef": 100, "tDef": -100, "lvl": 68, "intReq": 45, "sdPct": 12, "xpb": 8, "int": 5, "spRegen": 8, "fDamPct": -16, "wDefPct": 12, "id": 2155}, {"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": "Cloudwalkers", "tier": "Unique", "type": "boots", "sprint": 15, "category": "armor", "slots": 3, "drop": "never", "aDef": 100, "lvl": 94, "agiReq": 50, "sdPct": 40, "xpb": 10, "spd": 30, "aDamPct": 30, "aDefPct": 20, "fixID": true, "id": 2510}, {"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": "Entamyx", "tier": "Rare", "type": "leggings", "quest": "Troubled Tribesmen", "thorns": 35, "category": "armor", "slots": 3, "drop": "never", "hp": 2150, "fDef": -100, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": 150, "lvl": 76, "strReq": 50, "intReq": 50, "agiReq": 50, "ref": 35, "dex": -20, "def": -20, "wDamPct": 15, "aDamPct": 15, "eDamPct": 15, "wDefPct": 15, "aDefPct": 15, "eDefPct": 15, "fixID": true, "id": 2638}, {"name": "Gysdep", "tier": "Rare", "type": "helmet", "quest": "Troubled Tribesmen", "category": "armor", "slots": 3, "drop": "never", "hp": 2000, "fDef": 150, "wDef": 150, "aDef": 150, "tDef": -100, "eDef": -100, "lvl": 74, "intReq": 50, "agiReq": 50, "defReq": 50, "str": -20, "dex": -20, "hpBonus": 500, "fDamPct": 10, "wDamPct": 10, "aDamPct": 10, "fDefPct": 25, "wDefPct": 25, "aDefPct": 25, "fixID": true, "id": 2642}, {"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": "Steamstone", "tier": "Unique", "type": "leggings", "category": "armor", "slots": 2, "drop": "never", "hp": 2900, "fDef": 75, "wDef": 75, "tDef": -130, "eDef": 50, "lvl": 91, "intReq": 25, "defReq": 25, "hprPct": 25, "ms": 5, "int": 7, "def": 8, "aDamPct": -10, "tDamPct": -10, "eDamPct": 16, "fDefPct": 8, "wDefPct": 8, "fixID": true, "id": 2821}, {"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": "Symphony", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 2, "drop": "NORMAL", "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, "id": 3196}, {"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 Courier's Cape", "tier": "Unique", "type": "chestplate", "category": "armor", "slots": 3, "drop": "NORMAL", "hp": 1900, "aDef": 50, "lvl": 86, "agiReq": 80, "mr": 10, "xpb": 15, "lb": 10, "agi": 10, "spd": 20, "aDamPct": 23, "aDefPct": 15, "eDefPct": 10, "id": 3261}, {"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": -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": 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": -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": 10, "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": 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": "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": "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": "Ambivalence", "tier": "Legendary", "material": "259:29", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 70, "aDef": 70, "tDef": 70, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "sdPct": 250, "int": -100, "wDamPct": 50, "type": "necklace", "fixID": true, "spPct1": 130, "spPct2": 85, "spPct3": 130, "spPct4": 100, "id": 3618}, {"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 diff --git a/py_script/json_diff.py b/py_script/json_diff.py index 11ce04e..7e31d3a 100644 --- a/py_script/json_diff.py +++ b/py_script/json_diff.py @@ -49,9 +49,10 @@ def __print_type_diff(type1, type2, path): def __print_path_diff(_1, _2, key, path, side): if side: print(f"{path}.{key}: Contained in right but not left") + print(f" Value: {shorten(str(_2[key]))}") else: print(f"{path}.{key}: Contained in left but not right") - print(f" Value: {shorten(str(key))}") + print(f" Value: {shorten(str(_1[key]))}") # Default diff reporter (just prints everything) JSON_DIFF_PRINTER = JSONDiffReporter( @@ -81,9 +82,10 @@ def __type_diff(type1, type2, path): def __path_diff(_1, _2, key, path, side): if side: errmsg = f"{path}.{key}: Contained in right but not left\n" + errmsg += f" Value: {shorten(str(_2[key]))}" else: errmsg = f"{path}.{key}: Contained in left but not right\n" - errmsg += f" Value: {shorten(str(key))}" + errmsg += f" Value: {shorten(str(_1[key]))}" raise AttributeError(errmsg) def get_test_diff_handler(get_key): @@ -130,7 +132,7 @@ def object_diff(reporter, obj1, obj2, path) -> bool: else: object_diff(reporter, val, obj, f"{path}.{k}") continue - reporter.path_diff(obj1, obj2, k, path, True) + reporter.path_diff(obj1, obj2, k, path, False) for k in obj2: if k not in obj1: reporter.path_diff(obj1, obj2, k, path, True) diff --git a/py_script/merge.json b/py_script/merge.json index 7d92630..86e4c3d 100644 --- a/py_script/merge.json +++ b/py_script/merge.json @@ -1,82 +1,104 @@ {"items": [ -{"name":"Keratoconus","type":"helmet","level":101,"tier":"Legendary","sockets":3,"majorIds":[],"intelligence":65,"agility":65,"intelligencePoints":15,"defensePoints":-10,"health":3900,"thunderDefense":-150,"fireDefense":-150,"airDefense":250,"tDamPct-base":-40,"wDamPct-base":30,"aDamPct-base":35,"hprPct-base":-50,"mr-base":8,"spRaw4-base":-4,"category":"armor","displayName":"Keratoconus","bonusThunderDamage":-40,"bonusWaterDamage":30,"bonusAirDamage":35,"healthRegen":-50,"manaRegen":8,"spellCostRaw4":-4,"identified":false}, -{"name":"Wanderlust","type":"chestplate","level":103,"tier":"Legendary","sockets":2,"majorIds":[],"dexterity":45,"agility":55,"health":3500,"thunderDefense":75,"waterDefense":100,"fireDefense":-75,"airDefense":100,"wDamPct-base":20,"aDamPct-base":30,"sdRaw-base":208,"hprPct-base":-15,"ms-base":-11,"ls-base":230,"spd-base":25,"category":"armor","displayName":"Wanderlust","bonusWaterDamage":20,"bonusAirDamage":30,"spellDamageRaw":208,"healthRegen":-15,"manaSteal":-12,"lifeSteal":230,"speed":25,"identified":false}, -{"name":"Anaerobic","type":"leggings","level":104,"tier":"Legendary","majorIds":[],"strength":60,"agility":60,"strengthPoints":12,"health":3850,"earthDefense":100,"waterDefense":-150,"airDefense":100,"eDamPct-base":24,"aDamPct-base":32,"atkTier-base":-1,"mr-base":8,"ref-base":48,"spRaw1-base":-5,"category":"armor","displayName":"Anaerobic","bonusEarthDamage":24,"bonusAirDamage":32,"attackSpeedBonus":-1,"manaRegen":8,"reflection":48,"spellCostRaw1":-8,"identified":false,"sockets":4}, -{"name":"Danse Macabre","type":"relik","level":102,"tier":"Rare","sockets":1,"majorIds":[],"classRequirement":"Shaman","dexterity":55,"defense":50,"damage":"0-0","earthDamage":"0-0","thunderDamage":"24-214","waterDamage":"0-0","fireDamage":"97-141","airDamage":"0-0","attackSpeed":"VERY_FAST","sdRaw-base":184,"atkTier-base":1,"hpBonus-base":-1150,"hprPct-base":-204,"ms-base":13,"spRaw1-base":-7,"category":"weapon","displayName":"Danse Macabre","basedps":238,"spellDamageRaw":184,"attackSpeedBonus":1,"healthBonus":-1150,"healthRegenRaw":-204,"manaSteal":13,"spellCostRaw1":-7,"identified":false}, -{"name":"Darkness's Dogma","type":"bow","level":103,"tier":"Rare","sockets":3,"majorIds":[],"classRequirement":"Archer","intelligence":60,"defense":50,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"600-650","fireDamage":"550-700","airDamage":"0-0","attackSpeed":"SUPER_SLOW","hpBonus-base":1500,"wDefPct-base":-50,"fDefPct-base":-50,"ms-base":13,"ls-base":-700,"ref-base":25,"category":"weapon","displayName":"Darkness's Dogma","basedps":1250,"healthBonus":1500,"bonusWaterDefense":-50,"bonusFireDefense":-50,"manaSteal":13,"lifeSteal":-700,"reflection":25,"identified":false}, -{"name":"Frameshift","type":"wand","level":104,"tier":"Rare","sockets":3,"majorIds":[],"classRequirement":"Mage","strength":40,"defense":60,"defensePoints":20,"damage":"0-0","earthDamage":"150-210","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"160-200","airDamage":"0-0","attackSpeed":"VERY_SLOW","wDamPct-base":-30,"mdPct-base":25,"mr-base":7,"ls-base":380,"spRaw1-base":-4,"category":"weapon","displayName":"Frameshift","basedps":360,"bonusWaterDamage":-30,"damageBonus":25,"manaRegen":7,"lifeSteal":380,"spellCostRaw1":-4,"identified":false}, -{"name":"Helminth","type":"spear","level":102,"tier":"Rare","sockets":2,"majorIds":[],"classRequirement":"Warrior","dexterity":65,"damage":"0-0","earthDamage":"0-0","thunderDamage":"1-199","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_FAST","tDamPct-base":20,"atkTier-base":1,"hpBonus-base":-1250,"wDefPct-base":-35,"aDefPct-base":-35,"ls-base":500,"category":"weapon","displayName":"Helminth","basedps":100,"bonusThunderDamage":20,"attackSpeedBonus":1,"healthBonus":-1250,"bonusWaterDefense":-35,"bonusAirDefense":-35,"lifeSteal":500,"identified":false}, -{"name":"Lanternfly Leg","type":"dagger","level":101,"tier":"Rare","sockets":3,"majorIds":[],"classRequirement":"Assassin","defense":50,"agility":50,"damage":"150-210","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"FAST","fDamPct-base":23,"aDamPct-base":23,"hpBonus-base":1000,"jh-base":1,"spd-base":30,"spRaw2-base":-2,"category":"weapon","displayName":"Lanternfly Leg","basedps":180,"bonusFireDamage":23,"bonusAirDamage":23,"healthBonus":1000,"jumpHeight":1,"speed":30,"spellCostRaw2":-4,"identified":false}, -{"name":"Dissonance","type":"helmet","level":103,"tier":"Unique","sockets":2,"majorIds":[],"dexterity":50,"intelligence":50,"health":3050,"thunderDefense":100,"waterDefense":100,"airDefense":-175,"tDamPct-base":12,"wDamPct-base":20,"sdPct-base":20,"ls-base":-275,"spd-base":-20,"sprint-base":20,"lb-base":20,"category":"armor","displayName":"Dissonance","bonusThunderDamage":12,"bonusWaterDamage":20,"spellDamage":20,"lifeSteal":-275,"speed":-20,"sprint":20,"lootBonus":20,"identified":false}, -{"name":"Roridula","type":"chestplate","level":104,"tier":"Unique","sockets":2,"majorIds":[],"strength":55,"intelligence":55,"strengthPoints":10,"health":3675,"earthDefense":150,"fireDefense":-150,"tDamPct-base":-30,"wDamPct-base":25,"ms-base":8,"spd-base":15,"spPct4-base":14,"xpb-base":25,"category":"armor","displayName":"Roridula","bonusThunderDamage":-30,"bonusWaterDamage":25,"manaSteal":8,"speed":15,"spellCostPct4":14,"xpBonus":25,"identified":false}, -{"name":"Atomizer","type":"leggings","level":102,"tier":"Unique","sockets":3,"majorIds":[],"agility":75,"agilityPoints":8,"health":4350,"waterDefense":120,"fireDefense":120,"airDefense":200,"poison-base":600,"wDefPct-base":31,"fDefPct-base":31,"hprPct-base":37,"thorns-base":25,"jh-base":1,"category":"armor","displayName":"Atomizer","poison":600,"bonusWaterDefense":31,"bonusFireDefense":31,"healthRegen":37,"thorns":25,"jumpHeight":1,"identified":false}, -{"name":"Wasteland Azalea","type":"boots","level":101,"tier":"Unique","sockets":3,"majorIds":[],"strength":45,"agility":50,"health":2750,"earthDefense":75,"fireDefense":-75,"eDamPct-base":25,"aDamPct-base":25,"sdRaw-base":140,"atkTier-base":-1,"poison-base":500,"sprint-base":-15,"spRaw3-base":-6,"category":"armor","displayName":"Wasteland Azalea","bonusEarthDamage":25,"bonusAirDamage":25,"spellDamageRaw":140,"attackSpeedBonus":-1,"poison":500,"sprint":-15,"spellCostRaw3":-6,"identified":false}, -{"name":"Tranquility","type":"ring","level":101,"tier":"Unique","majorIds":[],"defense":45,"intelligence":45,"strengthPoints":-3,"dexterityPoints":-3,"health":550,"waterDefense":50,"fireDefense":50,"sdPct-base":5,"hprPct-base":17,"spd-base":-7,"category":"accessory","displayName":"Tranquility","spellDamage":5,"healthRegen":17,"speed":-7,"identified":false}, -{"name":"Misalignment","type":"bracelet","level":101,"tier":"Unique","majorIds":[],"strength":35,"dexterity":45,"dexterityPoints":3,"intelligencePoints":3,"eDamPct-base":6,"tDamPct-base":6,"wDamPct-base":10,"mr-base":3,"category":"accessory","displayName":"Misalignment","bonusEarthDamage":6,"bonusThunderDamage":6,"bonusWaterDamage":10,"manaRegen":3,"identified":false}, -{"name":"Grafted Eyestalk","type":"necklace","level":101,"tier":"Unique","majorIds":[],"defense":40,"agility":40,"defensePoints":5,"agilityPoints":5,"health":-600,"earthDefense":-40,"thunderDefense":-40,"sdPct-base":8,"hprPct-base":-11,"spRaw1-base":-1,"category":"accessory","displayName":"Grafted Eyestalk","spellDamage":8,"healthRegen":-12,"spellCostRaw1":-1,"identified":false}, -{"name":"Forbearance","type":"ring","level":105,"tier":"Fabled","majorIds":[],"dexterity":60,"intelligence":60,"dexterityPoints":6,"intelligencePoints":6,"tDamPct-base":-15,"wDamPct-base":-15,"mr-base":4,"ls-base":120,"category":"accessory","displayName":"Forbearance","bonusThunderDamage":-15,"bonusWaterDamage":-15,"manaRegen":4,"lifeSteal":120,"identified":false}, -{"name":"Ingress","type":"ring","level":105,"tier":"Fabled","majorIds":[],"strength":55,"agility":55,"dexterityPoints":4,"intelligencePoints":2,"defensePoints":4,"earthDefense":55,"airDefense":55,"eDamPct-base":8,"aDamPct-base":8,"sdRaw-base":55,"category":"accessory","displayName":"Ingress","bonusEarthDamage":8,"bonusAirDamage":8,"spellDamageRaw":55,"identified":false}, -{"name":"Breakthrough","type":"bracelet","level":105,"tier":"Fabled","majorIds":[],"intelligence":45,"agility":45,"strengthPoints":-4,"dexterityPoints":-4,"defensePoints":-6,"earthDefense":-45,"thunderDefense":-45,"fireDefense":-30,"sdPct-base":13,"sdRaw-base":75,"ms-base":6,"spRaw2-base":-4,"category":"accessory","displayName":"Breakthrough","spellDamage":13,"spellDamageRaw":75,"manaSteal":6,"spellCostRaw2":-4,"identified":false}, -{"name":"Detachment","type":"bracelet","level":105,"tier":"Fabled","majorIds":[],"dexterity":55,"agility":60,"thunderDefense":60,"airDefense":60,"mdRaw-base":-85,"sdRaw-base":-65,"spd-base":13,"spPct4-base":-13,"category":"accessory","displayName":"Detachment","damageBonusRaw":-85,"spellDamageRaw":-65,"speed":13,"spellCostPct4":-13,"identified":false}, -{"name":"Exhibition","type":"necklace","level":105,"tier":"Fabled","majorIds":[],"intelligence":80,"earthDefense":-30,"thunderDefense":-30,"waterDefense":60,"fireDefense":-30,"airDefense":-30,"mr-base":-4,"spRaw1-base":-2,"spRaw2-base":-2,"spRaw3-base":-2,"spRaw4-base":-2,"category":"accessory","displayName":"Exhibition","manaRegen":-4,"spellCostRaw1":-2,"spellCostRaw2":-2,"spellCostRaw3":-2,"spellCostRaw4":-2,"identified":false}, -{"name":"Simulacrum","type":"necklace","level":105,"tier":"Fabled","majorIds":[],"strength":55,"defense":45,"health":-800,"earthDefense":-70,"fireDefense":-90,"sdRaw-base":150,"hprRaw-base":-150,"mr-base":5,"spd-base":8,"category":"accessory","displayName":"Simulacrum","spellDamageRaw":150,"healthRegenRaw":-150,"manaRegen":5,"speed":8,"identified":false}, -{"name":"Medeis","type":"chestplate","level":100,"tier":"Unique","sockets":3,"majorIds":[],"dexterity":40,"intelligence":40,"defense":40,"dexterityPoints":10,"intelligencePoints":10,"defensePoints":10,"health":2950,"earthDefense":-100,"thunderDefense":75,"waterDefense":75,"fireDefense":75,"airDefense":-100,"tDamPct-base":8,"wDamPct-base":8,"fDamPct-base":8,"sdPct-base":8,"category":"armor","displayName":"Medeis","bonusEarthDamage":-75,"bonusThunderDamage":8,"bonusWaterDamage":8,"bonusFireDamage":8,"bonusAirDamage":-75,"spellDamage":8,"identified":false}, +{"name":"Keratoconus","type":"helmet","level":101,"tier":"Legendary","sockets":3,"majorIds":[],"intelligence":65,"agility":65,"intelligencePoints":15,"defensePoints":-10,"health":3900,"thunderDefense":-150,"fireDefense":-150,"airDefense":250,"category":"armor","displayName":"Keratoconus","bonusThunderDamage":-40,"bonusWaterDamage":30,"bonusAirDamage":35,"healthRegen":-50,"manaRegen":8,"spellCostRaw4":-4,"identified":false}, +{"name":"Wanderlust","type":"chestplate","level":103,"tier":"Legendary","sockets":2,"majorIds":[],"dexterity":45,"agility":55,"health":3500,"thunderDefense":75,"waterDefense":100,"fireDefense":-75,"airDefense":100,"category":"armor","displayName":"Wanderlust","bonusWaterDamage":20,"bonusAirDamage":30,"spellDamageRaw":208,"healthRegen":-15,"manaSteal":-12,"lifeSteal":230,"speed":25,"identified":false}, +{"name":"Anaerobic","type":"leggings","level":104,"tier":"Legendary","majorIds":[],"strength":60,"agility":60,"strengthPoints":12,"health":3850,"earthDefense":100,"waterDefense":-150,"airDefense":100,"category":"armor","displayName":"Anaerobic","bonusEarthDamage":24,"bonusAirDamage":32,"attackSpeedBonus":-1,"manaRegen":8,"reflection":48,"spellCostRaw1":-8,"identified":false,"sockets":4}, +{"name":"Danse Macabre","type":"relik","level":102,"tier":"Rare","sockets":1,"majorIds":[],"classRequirement":"Shaman","dexterity":55,"defense":50,"damage":"0-0","earthDamage":"0-0","thunderDamage":"24-214","waterDamage":"0-0","fireDamage":"97-141","airDamage":"0-0","attackSpeed":"VERY_FAST","category":"weapon","displayName":"Danse Macabre","basedps":238,"spellDamageRaw":184,"attackSpeedBonus":1,"healthBonus":-1150,"healthRegenRaw":-204,"manaSteal":13,"spellCostRaw1":-7,"identified":false}, +{"name":"Darkness's Dogma","type":"bow","level":103,"tier":"Rare","sockets":3,"majorIds":[],"classRequirement":"Archer","intelligence":60,"defense":50,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"600-650","fireDamage":"550-700","airDamage":"0-0","attackSpeed":"SUPER_SLOW","category":"weapon","displayName":"Darkness's Dogma","basedps":1250,"healthBonus":1500,"bonusWaterDefense":-50,"bonusFireDefense":-50,"manaSteal":13,"lifeSteal":-700,"reflection":25,"identified":false}, +{"name":"Frameshift","type":"wand","level":104,"tier":"Rare","sockets":3,"majorIds":[],"classRequirement":"Mage","strength":40,"defense":60,"defensePoints":20,"damage":"0-0","earthDamage":"150-210","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"160-200","airDamage":"0-0","attackSpeed":"VERY_SLOW","category":"weapon","displayName":"Frameshift","basedps":360,"bonusWaterDamage":-30,"damageBonus":25,"manaRegen":7,"lifeSteal":380,"spellCostRaw1":-4,"identified":false}, +{"name":"Helminth","type":"spear","level":102,"tier":"Rare","sockets":2,"majorIds":[],"classRequirement":"Warrior","dexterity":65,"damage":"0-0","earthDamage":"0-0","thunderDamage":"1-199","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_FAST","category":"weapon","displayName":"Helminth","basedps":100,"bonusThunderDamage":20,"attackSpeedBonus":1,"healthBonus":-1250,"bonusWaterDefense":-35,"bonusAirDefense":-35,"lifeSteal":500,"identified":false}, +{"name":"Lanternfly Leg","type":"dagger","level":101,"tier":"Rare","sockets":3,"majorIds":[],"classRequirement":"Assassin","defense":50,"agility":50,"damage":"150-210","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"FAST","category":"weapon","displayName":"Lanternfly Leg","basedps":180,"bonusFireDamage":23,"bonusAirDamage":23,"healthBonus":1000,"jumpHeight":1,"speed":30,"spellCostRaw2":-4,"identified":false}, +{"name":"Dissonance","type":"helmet","level":103,"tier":"Unique","sockets":2,"majorIds":[],"dexterity":50,"intelligence":50,"health":3050,"thunderDefense":100,"waterDefense":100,"airDefense":-175,"category":"armor","displayName":"Dissonance","bonusThunderDamage":12,"bonusWaterDamage":20,"spellDamage":20,"lifeSteal":-275,"speed":-20,"sprint":20,"lootBonus":20,"identified":false}, +{"name":"Roridula","type":"chestplate","level":104,"tier":"Unique","sockets":2,"majorIds":[],"strength":55,"intelligence":55,"strengthPoints":10,"health":3675,"earthDefense":150,"fireDefense":-150,"category":"armor","displayName":"Roridula","bonusThunderDamage":-30,"bonusWaterDamage":25,"manaSteal":8,"speed":15,"spellCostPct4":14,"xpBonus":25,"identified":false}, +{"name":"Atomizer","type":"leggings","level":102,"tier":"Unique","sockets":3,"majorIds":[],"agility":75,"agilityPoints":8,"health":4350,"waterDefense":120,"fireDefense":120,"airDefense":200,"category":"armor","displayName":"Atomizer","poison":600,"bonusWaterDefense":31,"bonusFireDefense":31,"healthRegen":37,"thorns":25,"jumpHeight":1,"identified":false}, +{"name":"Wasteland Azalea","type":"boots","level":101,"tier":"Unique","sockets":3,"majorIds":[],"strength":45,"agility":50,"health":2750,"earthDefense":75,"fireDefense":-75,"category":"armor","displayName":"Wasteland Azalea","bonusEarthDamage":25,"bonusAirDamage":25,"spellDamageRaw":140,"attackSpeedBonus":-1,"poison":500,"sprint":-15,"spellCostRaw3":-6,"identified":false}, +{"name":"Tranquility","type":"ring","level":101,"tier":"Unique","majorIds":[],"defense":45,"intelligence":45,"strengthPoints":-3,"dexterityPoints":-3,"health":550,"waterDefense":50,"fireDefense":50,"category":"accessory","displayName":"Tranquility","spellDamage":5,"healthRegen":17,"speed":-7,"identified":false}, +{"name":"Misalignment","type":"bracelet","level":101,"tier":"Unique","majorIds":[],"strength":35,"dexterity":45,"dexterityPoints":3,"intelligencePoints":3,"category":"accessory","displayName":"Misalignment","bonusEarthDamage":6,"bonusThunderDamage":6,"bonusWaterDamage":10,"manaRegen":3,"identified":false}, +{"name":"Grafted Eyestalk","type":"necklace","level":101,"tier":"Unique","majorIds":[],"defense":40,"agility":40,"defensePoints":5,"agilityPoints":5,"health":-600,"earthDefense":-40,"thunderDefense":-40,"category":"accessory","displayName":"Grafted Eyestalk","spellDamage":8,"healthRegen":-12,"spellCostRaw1":-1,"identified":false}, +{"name":"Forbearance","type":"ring","level":105,"tier":"Fabled","majorIds":[],"dexterity":60,"intelligence":60,"dexterityPoints":6,"intelligencePoints":6,"category":"accessory","displayName":"Forbearance","bonusThunderDamage":-15,"bonusWaterDamage":-15,"manaRegen":4,"lifeSteal":120,"identified":false}, +{"name":"Ingress","type":"ring","level":105,"tier":"Fabled","majorIds":[],"strength":55,"agility":55,"dexterityPoints":4,"intelligencePoints":2,"defensePoints":4,"earthDefense":55,"airDefense":55,"category":"accessory","displayName":"Ingress","bonusEarthDamage":8,"bonusAirDamage":8,"spellDamageRaw":55,"identified":false}, +{"name":"Breakthrough","type":"bracelet","level":105,"tier":"Fabled","majorIds":[],"intelligence":45,"agility":45,"strengthPoints":-4,"dexterityPoints":-4,"defensePoints":-6,"earthDefense":-45,"thunderDefense":-45,"fireDefense":-30,"category":"accessory","displayName":"Breakthrough","spellDamage":13,"spellDamageRaw":75,"manaSteal":6,"spellCostRaw2":-4,"identified":false}, +{"name":"Simulacrum","type":"necklace","level":105,"tier":"Fabled","majorIds":[],"strength":55,"defense":45,"health":-800,"earthDefense":-70,"fireDefense":-90,"category":"accessory","displayName":"Simulacrum","spellDamageRaw":150,"healthRegenRaw":-150,"manaRegen":5,"speed":8,"identified":false}, +{"name":"Medeis","type":"chestplate","level":100,"tier":"Unique","sockets":3,"majorIds":[],"dexterity":40,"intelligence":40,"defense":40,"dexterityPoints":10,"intelligencePoints":10,"defensePoints":10,"health":2950,"earthDefense":-100,"thunderDefense":75,"waterDefense":75,"fireDefense":75,"airDefense":-100,"category":"armor","displayName":"Medeis","bonusEarthDamage":-75,"bonusThunderDamage":8,"bonusWaterDamage":8,"bonusFireDamage":8,"bonusAirDamage":-75,"spellDamage":8,"identified":false}, {"name":"Roulette","type":"dagger","level":79,"tier":"Rare","majorIds":[],"dexterity":40,"dexterityPoints":8,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-58","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_FAST","category":"weapon","displayName":"Roulette","basedps":29,"bonusThunderDamage":888,"xpBonus":8,"lootBonus":8,"identified":false}, -{"name":"Prowess","type":"bracelet","level":100,"tier":"Legendary","majorIds":[],"quest":"The Qira Hive","strengthPoints":4,"dexterityPoints":4,"intelligencePoints":4,"defensePoints":4,"agilityPoints":4,"health":425,"category":"accessory","displayName":"Prowess","identified":true}, +{"name":"Prowess","type":"bracelet","level":100,"tier":"Legendary","majorIds":[],"quest":"The Qira Hive","strengthPoints":4,"dexterityPoints":4,"intelligencePoints":4,"defensePoints":4,"agilityPoints":4,"health":425,"category":"accessory","displayName":"Prowess","identified":true,"set": "Master Hive"}, {"name":"Caesura","type":"helmet","level":93,"tier":"Unique","sockets":2,"majorIds":[],"strength":45,"dexterity":60,"intelligence":30,"strengthPoints":10,"intelligencePoints":15,"health":2450,"earthDefense":100,"thunderDefense":100,"waterDefense":-250,"category":"armor","displayName":"Caesura","bonusEarthDamage":25,"bonusThunderDamage":25,"spellDamage":10,"spellDamageRaw":231,"manaRegen":-15,"manaSteal":-15,"identified":false}, -{"name":"Gigabyte","type":"necklace","level":93,"tier":"Legendary","strengthPoints":4,"dexterityPoints":4,"intelligencePoints":4,"defensePoints":4,"agilityPoints":4,"health":-512,"mr-base":-4,"identified":true,"category":"accessory","displayName":"Gigabyte","healthRegenRaw":48,"manaRegen":-4,"thorns":8,"speed":8}, -{"name":"Pro Tempore","type":"boots","level":88,"tier":"Unique","sockets":4,"majorIds":[],"dexterity":40,"intelligence":50,"intelligencePoints":10,"health":2350,"thunderDefense":-50,"waterDefense":-50,"sdRaw-base":104,"category":"armor","displayName":"Pro Tempore","spellDamage":20,"spellDamageRaw":104,"manaRegen":10,"manaSteal":-15,"lifeSteal":165,"identified":false}, +{"name":"Gigabyte","type":"necklace","level":93,"tier":"Legendary","strengthPoints":4,"dexterityPoints":4,"intelligencePoints":4,"defensePoints":4,"agilityPoints":4,"health":-512,"identified":true,"category":"accessory","displayName":"Gigabyte","healthRegenRaw":48,"manaRegen":-4,"thorns":8,"speed":8}, +{"name":"Pro Tempore","type":"boots","level":88,"tier":"Unique","sockets":4,"majorIds":[],"dexterity":40,"intelligence":50,"intelligencePoints":10,"health":2350,"thunderDefense":-50,"waterDefense":-50,"category":"armor","displayName":"Pro Tempore","spellDamage":20,"spellDamageRaw":104,"manaRegen":10,"manaSteal":-15,"lifeSteal":165,"identified":false}, {"name":"Orange Lily","type":"bow","level":96,"tier":"Legendary","sockets":3,"strength":50,"intelligence":60,"damage":"75-140","earthDamage":"165-235","thunderDamage":"0-0","waterDamage":"165-235","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SLOW","identified":true,"category":"weapon","displayName":"Orange Lily","basedps":507.5,"bonusEarthDamage":20,"bonusWaterDamage":20,"bonusAirDamage":-150,"bonusAirDefense":-100,"manaRegen":10,"spellCostRaw3":-5,"spellCostRaw4":50}, -{"name":"Brainwash","type":"helmet","level":96,"tier":"Rare","majorIds":[],"strength":40,"dexterity":70,"strengthPoints":13,"intelligencePoints":-50,"health":2800,"earthDefense":70,"thunderDefense":100,"waterDefense":-220,"mr-base":10,"ms-base":15,"category":"armor","displayName":"Brainwash","bonusThunderDamage":15,"bonusWaterDamage":-30,"spellDamage":10,"spellDamageRaw":190,"healthRegen":-40,"manaRegen":10,"manaSteal":15,"identified":false}, -{"name":"Second Wind","type":"leggings","level":83,"tier":"Fabled","sockets":3,"majorIds":[],"defense":65,"agility":40,"agilityPoints":20,"health":6325,"earthDefense":-350,"thunderDefense":-350,"fireDefense":120,"airDefense":120,"ls-base":-475,"category":"armor","displayName":"Second Wind","attackSpeedBonus":1,"healthRegen":-30,"lifeSteal":-475,"speed":20,"identified":false}, -{"name":"Cumulonimbus","type":"helmet","level":94,"tier":"Rare","sockets":3,"majorIds":[],"dexterity":30,"intelligence":30,"agility":30,"dexterityPoints":10,"intelligencePoints":10,"agilityPoints":10,"health":1800,"thunderDefense":70,"waterDefense":70,"airDefense":70,"sdPct-base":15,"category":"armor","displayName":"Cumulonimbus","bonusThunderDamage":10,"bonusWaterDamage":10,"bonusAirDamage":10,"spellDamage":15,"speed":25,"identified":false}, -{"name":"Morrowind","type":"wand","level":96,"tier":"Legendary","sockets":3,"majorIds":[],"agility":45,"agilityPoints":14,"damage":"30-60","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"45-135","attackSpeed":"FAST","sdRaw-base":145,"category":"weapon","displayName":"Morrowind","basedps":135,"bonusEarthDamage":-15,"bonusAirDamage":23,"spellDamageRaw":145,"bonusAirDefense":23,"reflection":46,"speed":23,"identified":false}, -{"name": "Anima-Infused Helmet", "displayName":"Boreal-Patterned Crown","type":"helmet","level":100,"tier":"Legendary","sockets":2,"quest":"The Qira Hive","dexterity":40,"intelligence":40,"agility":40,"strengthPoints":-30,"defensePoints":-30,"health":3000,"thunderDefense":150,"waterDefense":150,"airDefense":150,"identified":true,"category":"armor","displayName":"Boreal-Patterned Crown","bonusThunderDamage":25,"bonusWaterDamage":25,"bonusAirDamage":25,"damageBonus":-40,"spellDamage":20,"spellDamageRaw":300,"bonusThunderDefense":10,"bonusWaterDefense":10,"bonusAirDefense":10,"manaRegen":8}, -{"name":"Corsair","type":"helmet","level":99,"tier":"Unique","sockets":2,"majorIds":[],"dexterity":55,"agility":35,"dexterityPoints":8,"health":2900,"earthDefense":-140,"thunderDefense":80,"airDefense":110,"ms-base":5,"spPct1-base":-10,"spPct4-base":-14,"category":"armor","displayName":"Corsair","bonusThunderDamage":10,"bonusAirDamage":12,"manaSteal":5,"speed":11,"spellCostPct1":-10,"spellCostPct4":-14,"emeraldStealing":4,"identified":false}, -{"name":"Scaldsteppers","type":"boots","level":90,"tier":"Unique","sockets":2,"majorIds":[],"intelligence":40,"defense":30,"intelligencePoints":7,"health":2325,"thunderDefense":-100,"waterDefense":110,"fireDefense":80,"airDefense":-90,"spRaw3-base":-4,"category":"armor","displayName":"Scaldsteppers","bonusWaterDamage":10,"bonusFireDamage":10,"bonusAirDamage":-12,"spellDamage":20,"exploding":10,"spellCostRaw3":-4,"identified":false}, -{"name":"Charging Flame","type":"spear","level":94,"tier":"Rare","sockets":2,"majorIds":[],"intelligence":40,"defense":40,"damage":"20-40","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"40-120","fireDamage":"20-140","airDamage":"0-0","attackSpeed":"NORMAL","mr-base":5,"spRaw2-base":-12,"category":"weapon","displayName":"Charging Flame","basedps":190,"bonusWaterDamage":12,"bonusFireDamage":12,"damageBonus":12,"spellDamage":12,"healthBonus":-1200,"bonusThunderDefense":-25,"manaRegen":5,"exploding":24,"spellCostRaw2":-12,"identified":false}, -{"name":"Aphotic","type":"helmet","level":98,"tier":"Legendary","sockets":2,"majorIds":[],"intelligence":100,"dexterityPoints":-80,"intelligencePoints":5,"health":3200,"thunderDefense":-150,"waterDefense":150,"spRaw3-base":-7,"category":"armor","displayName":"Aphotic","spellDamage":50,"attackSpeedBonus":-6,"spellCostRaw3":-7,"identified":false}, +{"name":"Brainwash","type":"helmet","level":96,"tier":"Rare","majorIds":[],"strength":40,"dexterity":70,"strengthPoints":13,"intelligencePoints":-50,"health":2800,"earthDefense":70,"thunderDefense":100,"waterDefense":-220,"category":"armor","displayName":"Brainwash","bonusThunderDamage":15,"bonusWaterDamage":-30,"spellDamage":10,"spellDamageRaw":190,"healthRegen":-40,"manaRegen":10,"manaSteal":15,"identified":false}, +{"name":"Second Wind","type":"leggings","level":83,"tier":"Fabled","sockets":3,"majorIds":[],"defense":65,"agility":40,"agilityPoints":20,"health":6325,"earthDefense":-350,"thunderDefense":-350,"fireDefense":120,"airDefense":120,"category":"armor","displayName":"Second Wind","attackSpeedBonus":1,"healthRegen":-30,"lifeSteal":-475,"speed":20,"identified":false}, +{"name":"Cumulonimbus","type":"helmet","level":94,"tier":"Rare","sockets":3,"majorIds":[],"dexterity":30,"intelligence":30,"agility":30,"dexterityPoints":10,"intelligencePoints":10,"agilityPoints":10,"health":1800,"thunderDefense":70,"waterDefense":70,"airDefense":70,"category":"armor","displayName":"Cumulonimbus","bonusThunderDamage":10,"bonusWaterDamage":10,"bonusAirDamage":10,"spellDamage":15,"speed":25,"identified":false}, +{"name":"Morrowind","type":"wand","level":96,"tier":"Legendary","sockets":3,"majorIds":[],"agility":45,"agilityPoints":14,"damage":"30-60","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"45-135","attackSpeed":"FAST","category":"weapon","displayName":"Morrowind","basedps":135,"bonusEarthDamage":-15,"bonusAirDamage":23,"spellDamageRaw":145,"bonusAirDefense":23,"reflection":46,"speed":23,"identified":false}, +{"name": "Anima-Infused Helmet", "displayName":"Boreal-Patterned Crown","type":"helmet","level":100,"tier":"Legendary","sockets":2,"quest":"The Qira Hive","dexterity":40,"intelligence":40,"agility":40,"strengthPoints":-30,"defensePoints":-30,"health":3000,"thunderDefense":150,"waterDefense":150,"airDefense":150,"identified":true,"category":"armor","displayName":"Boreal-Patterned Crown","bonusThunderDamage":25,"bonusWaterDamage":25,"bonusAirDamage":25,"damageBonus":-40,"spellDamage":20,"spellDamageRaw":300,"bonusThunderDefense":10,"bonusWaterDefense":10,"bonusAirDefense":10,"manaRegen":8,"set": "Master Hive"}, +{"name":"Corsair","type":"helmet","level":99,"tier":"Unique","sockets":2,"majorIds":[],"dexterity":55,"agility":35,"dexterityPoints":8,"health":2900,"earthDefense":-140,"thunderDefense":80,"airDefense":110,"category":"armor","displayName":"Corsair","bonusThunderDamage":10,"bonusAirDamage":12,"manaSteal":5,"speed":11,"spellCostPct1":-10,"spellCostPct4":-14,"emeraldStealing":4,"identified":false}, +{"name":"Charging Flame","type":"spear","level":94,"tier":"Rare","sockets":2,"majorIds":[],"intelligence":40,"defense":40,"damage":"20-40","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"40-120","fireDamage":"20-140","airDamage":"0-0","attackSpeed":"NORMAL","category":"weapon","displayName":"Charging Flame","basedps":190,"bonusWaterDamage":12,"bonusFireDamage":12,"damageBonus":12,"spellDamage":12,"healthBonus":-1200,"bonusThunderDefense":-25,"manaRegen":5,"exploding":24,"spellCostRaw2":-12,"identified":false}, +{"name":"Aphotic","type":"helmet","level":98,"tier":"Legendary","sockets":2,"majorIds":[],"intelligence":100,"dexterityPoints":-80,"intelligencePoints":5,"health":3200,"thunderDefense":-150,"waterDefense":150,"category":"armor","displayName":"Aphotic","spellDamage":50,"attackSpeedBonus":-6,"spellCostRaw3":-7,"identified":false}, {"name":"Silent Ballet","type":"relik","level":83,"tier":"Unique","majorIds":[],"strength":40,"agility":40,"damage":"0-0","earthDamage":"110-121","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"110-121","attackSpeed":"FAST","category":"weapon","displayName":"Silent Ballet","basedps":231,"damageBonus":40,"spellDamage":-40000,"spellDamageRaw":-40000,"spellCostPct1":-40,"spellCostPct2":-40,"spellCostPct3":-40,"spellCostPct4":-40,"spellCostRaw1":-400,"spellCostRaw2":-400,"spellCostRaw3":-400,"spellCostRaw4":-400,"identified":false}, -{"name":"Rhythm of the Seasons","type":"spear","level":100,"tier":"Fabled","sockets":2,"majorIds":["RALLY"],"strength":80,"defense":60,"defensePoints":12,"damage":"40-50","earthDamage":"100-140","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","mr-base":15,"category":"weapon","displayName":"Rhythm of the Seasons","basedps":165,"bonusWaterDamage":25,"healthBonus":1800,"healthRegenRaw":-660,"manaRegen":15,"identified":false}, +{"name":"Rhythm of the Seasons","type":"spear","level":100,"tier":"Fabled","sockets":2,"majorIds":["RALLY"],"strength":80,"defense":60,"defensePoints":12,"damage":"40-50","earthDamage":"100-140","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","category":"weapon","displayName":"Rhythm of the Seasons","basedps":165,"bonusWaterDamage":25,"healthBonus":1800,"healthRegenRaw":-660,"manaRegen":15,"identified":false}, {"name":"Sorrow","type":"chestplate","level":72,"tier":"Rare","sockets":1,"intelligence":95,"health":1400,"thunderDefense":-150,"waterDefense":150,"identified":true,"category":"armor","displayName":"Sorrow","bonusWaterDamage":42,"spellDamage":8,"manaRegen":5,"manaSteal":-20,"spellCostRaw1":-8,"soulPoints":20}, -{"name":"Condensation","type":"boots","level":87,"tier":"Unique","majorIds":[],"intelligence":75,"intelligencePoints":10,"health":2000,"thunderDefense":-120,"waterDefense":100,"spRaw3-base":-6,"category":"armor","displayName":"Condensation","damageBonus":-30,"spellDamage":30,"bonusThunderDefense":-20,"spellCostRaw3":-6,"identified":false}, -{"name":"Augoeides","type":"chestplate","level":63,"tier":"Rare","majorIds":[],"intelligence":65,"health":1000,"earthDefense":20,"thunderDefense":20,"waterDefense":20,"fireDefense":20,"airDefense":20,"mr-base":5,"spRaw3-base":-5,"category":"armor","displayName":"Augoeides","damageBonusRaw":-52,"manaRegen":5,"reflection":30,"spellCostRaw3":-5,"xpBonus":5,"lootBonus":8,"soulPoints":10,"identified":false}, -{"name":"Matryoshka Shell","type":"chestplate","level":55,"tier":"Legendary","sockets":18,"majorIds":[],"strength":10,"dexterity":10,"intelligence":10,"defense":10,"agility":10,"health":550,"earthDefense":50,"thunderDefense":50,"waterDefense":50,"fireDefense":50,"airDefense":50,"spRaw1-base":-5,"category":"armor","displayName":"Matryoshka Shell","bonusEarthDefense":20,"bonusThunderDefense":20,"bonusWaterDefense":20,"bonusFireDefense":20,"bonusAirDefense":20,"speed":10,"spellCostRaw1":-5,"xpBonus":20,"lootBonus":20,"identified":false}, -{"name":"Pure","type":"wand","level":65,"tier":"Mythic","majorIds":["ENTROPY"],"intelligence":50,"agility":30,"damage":"0-5","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"20-45","fireDamage":"0-0","airDamage":"15-55","attackSpeed":"FAST","ms-base":30,"spRaw3-base":6,"category":"weapon","displayName":"Pure","basedps":70,"damageBonus":-100,"spellDamage":400,"manaSteal":30,"reflection":20,"spellCostRaw3":6,"xpBonus":30,"identified":false}, -{"name":"Resurgence","type":"boots","level":91,"tier":"Mythic","sockets":4,"majorIds":[],"intelligence":65,"defense":90,"intelligencePoints":25,"health":4550,"waterDefense":175,"fireDefense":125,"mr-base":30,"category":"armor","displayName":"Resurgence","damageBonus":-45,"spellDamage":-35,"healthRegenRaw":390,"manaRegen":30,"speed":-14,"soulPoints":20,"identified":false}, -{"name":"Galleon","type":"boots","level":92,"tier":"Mythic","sockets":3,"majorIds":[],"strength":65,"intelligence":60,"health":4500,"earthDefense":200,"waterDefense":250,"airDefense":-175,"ms-base":20,"category":"armor","displayName":"Galleon","bonusEarthDamage":36,"bonusWaterDamage":36,"damageBonus":45,"attackSpeedBonus":-1,"poison":4231,"manaSteal":20,"emeraldStealing":15,"lootBonus":20,"identified":false}, -{"name":"Boreal","type":"boots","level":93,"tier":"Mythic","sockets":3,"majorIds":[],"defense":75,"agility":65,"health":5000,"fireDefense":250,"airDefense":375,"mr-base":10,"category":"armor","displayName":"Boreal","bonusEarthDamage":-75,"bonusThunderDamage":-75,"bonusFireDefense":50,"bonusAirDefense":50,"healthRegen":100,"healthRegenRaw":269,"manaRegen":10,"reflection":25,"speed":25,"identified":false}, -{"name":"Freedom","type":"bow","level":93,"tier":"Mythic","sockets":4,"majorIds":[],"strength":40,"dexterity":40,"intelligence":40,"defense":40,"agility":40,"agilityPoints":30,"damage":"0-0","earthDamage":"85-109","thunderDamage":"45-149","waterDamage":"65-129","fireDamage":"75-119","airDamage":"55-139","attackSpeed":"NORMAL","mr-base":10,"category":"weapon","displayName":"Freedom","basedps":485,"damageBonusRaw":111,"spellDamageRaw":111,"healthBonus":1000,"manaRegen":10,"speed":15,"identified":false}, -{"name":"Olympic","type":"relik","level":93,"tier":"Mythic","sockets":3,"majorIds":[],"agility":105,"agilityPoints":25,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"345-375","attackSpeed":"FAST","spRaw1-base":-10,"spRaw2-base":-10,"category":"weapon","displayName":"Olympic","basedps":360,"bonusAirDamage":20,"bonusAirDefense":30,"jumpHeight":6,"speed":35,"spellCostRaw1":-10,"spellCostRaw2":-10,"identified":false}, +{"name":"Condensation","type":"boots","level":87,"tier":"Unique","majorIds":[],"intelligence":75,"intelligencePoints":10,"health":2000,"thunderDefense":-120,"waterDefense":100,"category":"armor","displayName":"Condensation","damageBonus":-30,"spellDamage":30,"bonusThunderDefense":-20,"spellCostRaw3":-6,"identified":false}, +{"name":"Augoeides","type":"chestplate","level":63,"tier":"Rare","majorIds":[],"intelligence":65,"health":1000,"earthDefense":20,"thunderDefense":20,"waterDefense":20,"fireDefense":20,"airDefense":20,"category":"armor","displayName":"Augoeides","damageBonusRaw":-52,"manaRegen":5,"reflection":30,"spellCostRaw3":-5,"xpBonus":5,"lootBonus":8,"soulPoints":10,"identified":false}, +{"name":"Matryoshka Shell","type":"chestplate","level":55,"tier":"Legendary","sockets":18,"majorIds":[],"strength":10,"dexterity":10,"intelligence":10,"defense":10,"agility":10,"health":550,"earthDefense":50,"thunderDefense":50,"waterDefense":50,"fireDefense":50,"airDefense":50,"category":"armor","displayName":"Matryoshka Shell","bonusEarthDefense":20,"bonusThunderDefense":20,"bonusWaterDefense":20,"bonusFireDefense":20,"bonusAirDefense":20,"speed":10,"spellCostRaw1":-5,"xpBonus":20,"lootBonus":20,"identified":false}, +{"name":"Pure","type":"wand","level":65,"tier":"Mythic","majorIds":["ENTROPY"],"intelligence":50,"agility":30,"damage":"0-5","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"20-45","fireDamage":"0-0","airDamage":"15-55","attackSpeed":"FAST","category":"weapon","displayName":"Pure","basedps":70,"damageBonus":-100,"spellDamage":400,"manaSteal":30,"reflection":20,"spellCostRaw3":6,"xpBonus":30,"identified":false}, +{"name":"Resurgence","type":"boots","level":91,"tier":"Mythic","sockets":4,"majorIds":[],"intelligence":65,"defense":90,"intelligencePoints":25,"health":4550,"waterDefense":175,"fireDefense":125,"category":"armor","displayName":"Resurgence","damageBonus":-45,"spellDamage":-35,"healthRegenRaw":390,"manaRegen":30,"speed":-14,"soulPoints":20,"identified":false}, +{"name":"Galleon","type":"boots","level":92,"tier":"Mythic","sockets":3,"majorIds":[],"strength":65,"intelligence":60,"health":4500,"earthDefense":200,"waterDefense":250,"airDefense":-175,"category":"armor","displayName":"Galleon","bonusEarthDamage":36,"bonusWaterDamage":36,"damageBonus":45,"attackSpeedBonus":-1,"poison":4231,"manaSteal":20,"emeraldStealing":15,"lootBonus":20,"identified":false}, +{"name":"Boreal","type":"boots","level":93,"tier":"Mythic","sockets":3,"majorIds":[],"defense":75,"agility":65,"health":5000,"fireDefense":250,"airDefense":375,"category":"armor","displayName":"Boreal","bonusEarthDamage":-75,"bonusThunderDamage":-75,"bonusFireDefense":50,"bonusAirDefense":50,"healthRegen":100,"healthRegenRaw":269,"manaRegen":10,"reflection":25,"speed":25,"identified":false}, +{"name":"Freedom","type":"bow","level":93,"tier":"Mythic","sockets":4,"majorIds":[],"strength":40,"dexterity":40,"intelligence":40,"defense":40,"agility":40,"agilityPoints":30,"damage":"0-0","earthDamage":"85-109","thunderDamage":"45-149","waterDamage":"65-129","fireDamage":"75-119","airDamage":"55-139","attackSpeed":"NORMAL","category":"weapon","displayName":"Freedom","basedps":485,"damageBonusRaw":111,"spellDamageRaw":111,"healthBonus":1000,"manaRegen":10,"speed":15,"identified":false}, +{"name":"Olympic","type":"relik","level":93,"tier":"Mythic","sockets":3,"majorIds":[],"agility":105,"agilityPoints":25,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"345-375","attackSpeed":"FAST","category":"weapon","displayName":"Olympic","basedps":360,"bonusAirDamage":20,"bonusAirDefense":30,"jumpHeight":6,"speed":35,"spellCostRaw1":-10,"spellCostRaw2":-10,"identified":false}, {"name":"Guardian","type":"spear","level":93,"tier":"Mythic","sockets":3,"majorIds":["GUARDIAN"],"defense":110,"defensePoints":20,"damage":"50-90","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"165-205","airDamage":"0-0","attackSpeed":"NORMAL","category":"weapon","displayName":"Guardian","basedps":255,"healthBonus":6000,"bonusEarthDefense":20,"bonusWaterDefense":20,"bonusFireDefense":20,"healthRegenRaw":585,"manaRegen":1,"thorns":25,"identified":false}, -{"name":"Hadal","type":"relik","level":94,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":130,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"1750-2150","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_SLOW","mr-base":30,"spPct3-base":112,"spPct4-base":112,"category":"weapon","displayName":"Hadal","basedps":1950,"spellDamage":75,"manaRegen":30,"spellCostPct3":112,"spellCostPct4":112,"identified":false}, -{"name":"Nullification","type":"dagger","level":95,"tier":"Mythic","sockets":3,"majorIds":[],"strength":30,"dexterity":30,"intelligence":30,"defense":30,"agility":30,"defensePoints":40,"damage":"0-0","earthDamage":"60-66","thunderDamage":"22-104","waterDamage":"46-80","fireDamage":"36-90","airDamage":"28-98","attackSpeed":"FAST","ms-base":16,"category":"weapon","displayName":"Nullification","basedps":315,"poison":-7000,"bonusEarthDefense":143,"bonusThunderDefense":143,"bonusWaterDefense":143,"bonusFireDefense":143,"bonusAirDefense":143,"manaSteal":16,"lifeSteal":495,"reflection":80,"identified":false}, -{"name":"Idol","type":"spear","level":95,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":120,"intelligencePoints":26,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"230-330","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"NORMAL","mr-base":10,"spRaw2-base":-50,"category":"weapon","displayName":"Idol","basedps":280,"spellDamageRaw":264,"bonusWaterDefense":15,"manaRegen":10,"reflection":30,"spellCostRaw2":-50,"soulPoints":25,"identified":false}, -{"name":"Dawnbreak","type":"boots","level":96,"tier":"Mythic","sockets":2,"majorIds":[],"dexterity":65,"defense":65,"health":4225,"thunderDefense":200,"waterDefense":-125,"fireDefense":200,"airDefense":-125,"ms-base":12,"category":"armor","displayName":"Dawnbreak","bonusThunderDamage":27,"bonusFireDamage":27,"damageBonusRaw":2700,"attackSpeedBonus":-20,"manaSteal":12,"lifeSteal":350,"exploding":23,"identified":false}, +{"name":"Hadal","type":"relik","level":94,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":130,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"1750-2150","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_SLOW","category":"weapon","displayName":"Hadal","basedps":1950,"spellDamage":75,"manaRegen":30,"spellCostPct3":112,"spellCostPct4":112,"identified":false}, +{"name":"Nullification","type":"dagger","level":95,"tier":"Mythic","sockets":3,"majorIds":[],"strength":30,"dexterity":30,"intelligence":30,"defense":30,"agility":30,"defensePoints":40,"damage":"0-0","earthDamage":"60-66","thunderDamage":"22-104","waterDamage":"46-80","fireDamage":"36-90","airDamage":"28-98","attackSpeed":"FAST","category":"weapon","displayName":"Nullification","basedps":315,"poison":-7000,"bonusEarthDefense":143,"bonusThunderDefense":143,"bonusWaterDefense":143,"bonusFireDefense":143,"bonusAirDefense":143,"manaSteal":16,"lifeSteal":495,"reflection":80,"identified":false}, +{"name":"Idol","type":"spear","level":95,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":120,"intelligencePoints":26,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"230-330","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"NORMAL","category":"weapon","displayName":"Idol","basedps":280,"spellDamageRaw":264,"bonusWaterDefense":15,"manaRegen":10,"reflection":30,"spellCostRaw2":-50,"soulPoints":25,"identified":false}, +{"name":"Dawnbreak","type":"boots","level":96,"tier":"Mythic","sockets":2,"majorIds":[],"dexterity":65,"defense":65,"health":4225,"thunderDefense":200,"waterDefense":-125,"fireDefense":200,"airDefense":-125,"category":"armor","displayName":"Dawnbreak","bonusThunderDamage":27,"bonusFireDamage":27,"damageBonusRaw":2700,"attackSpeedBonus":-20,"manaSteal":12,"lifeSteal":350,"exploding":23,"identified":false}, {"name":"Cataclysm","type":"dagger","level":96,"tier":"Mythic","sockets":3,"majorIds":[],"dexterity":120,"dexterityPoints":20,"damage":"40-140","earthDamage":"0-0","thunderDamage":"45-305","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_FAST","category":"weapon","displayName":"Cataclysm","basedps":265,"bonusThunderDamage":17,"healthBonus":-6000,"thorns":21,"spellCostRaw1":-1,"emeraldStealing":5,"identified":false}, -{"name":"Grimtrap","type":"dagger","level":96,"tier":"Mythic","sockets":3,"majorIds":[],"strength":100,"strengthPoints":15,"damage":"175-235","earthDamage":"305-425","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SLOW","ms-base":-10,"spRaw4-base":-10,"category":"weapon","displayName":"Grimtrap","basedps":570,"poison":2000,"manaSteal":-10,"lifeSteal":650,"thorns":70,"spellCostRaw2":1,"spellCostRaw4":-10,"identified":false}, -{"name":"Weathered","type":"dagger","level":96,"tier":"Mythic","sockets":3,"majorIds":["ROVINGASSASSIN"],"agility":110,"agilityPoints":15,"damage":"40-80","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"140-230","attackSpeed":"VERY_FAST","ms-base":16,"category":"weapon","displayName":"Weathered","basedps":245,"bonusAirDamage":20,"attackSpeedBonus":1,"manaSteal":16,"reflection":25,"exploding":-50,"speed":25,"identified":false}, -{"name":"Thrundacrack","type":"spear","level":96,"tier":"Mythic","sockets":4,"majorIds":[],"dexterity":105,"dexterityPoints":35,"damage":"50-90","earthDamage":"0-0","thunderDamage":"50-220","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","spRaw3-base":-6,"category":"weapon","displayName":"Thrundacrack","basedps":205,"bonusThunderDamage":25,"bonusWaterDamage":60,"healthRegen":-60,"speed":9,"spellCostRaw3":-6,"identified":false}, -{"name":"Lament","type":"wand","level":96,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":110,"intelligencePoints":20,"damage":"70-90","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"180-190","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SLOW","ms-base":40,"spPct1-base":-35,"category":"weapon","displayName":"Lament","basedps":265,"bonusWaterDamage":80,"manaSteal":40,"lifeSteal":-500,"spellCostPct1":-35,"identified":false}, -{"name":"Toxoplasmosis","type":"relik","level":96,"tier":"Mythic","sockets":2,"majorIds":[],"strength":110,"strengthPoints":40,"damage":"0-0","earthDamage":"3-3","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","ms-base":18,"category":"weapon","displayName":"Toxoplasmosis","basedps":3,"poison":10000,"manaSteal":18,"lifeSteal":500,"speed":20,"lootBonus":20,"identified":false}, -{"name":"Stardew","type":"boots","level":97,"tier":"Mythic","sockets":2,"majorIds":[],"dexterity":65,"intelligence":75,"health":4075,"earthDefense":-100,"thunderDefense":150,"waterDefense":150,"fireDefense":-100,"airDefense":-100,"mr-base":-9,"ms-base":15,"category":"armor","displayName":"Stardew","bonusThunderDamage":35,"bonusWaterDamage":35,"spellDamageRaw":313,"manaRegen":-9,"manaSteal":15,"reflection":25,"identified":false}, -{"name":"Divzer","type":"bow","level":97,"tier":"Mythic","sockets":3,"majorIds":[],"dexterity":115,"dexterityPoints":37,"defensePoints":-39,"agilityPoints":-550,"damage":"48-50","earthDamage":"0-0","thunderDamage":"250-250","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_FAST","ms-base":30,"category":"weapon","displayName":"Divzer","basedps":299,"bonusWaterDamage":-550,"bonusFireDamage":-550,"damageBonusRaw":536,"spellDamageRaw":253,"attackSpeedBonus":1,"manaSteal":30,"lifeSteal":973,"identified":false}, +{"name":"Grimtrap","type":"dagger","level":96,"tier":"Mythic","sockets":3,"majorIds":[],"strength":100,"strengthPoints":15,"damage":"175-235","earthDamage":"305-425","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SLOW","category":"weapon","displayName":"Grimtrap","basedps":570,"poison":2000,"manaSteal":-10,"lifeSteal":650,"thorns":70,"spellCostRaw2":1,"spellCostRaw4":-10,"identified":false}, +{"name":"Weathered","type":"dagger","level":96,"tier":"Mythic","sockets":3,"majorIds":["ROVINGASSASSIN"],"agility":110,"agilityPoints":15,"damage":"40-80","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"140-230","attackSpeed":"VERY_FAST","category":"weapon","displayName":"Weathered","basedps":245,"bonusAirDamage":20,"attackSpeedBonus":1,"manaSteal":16,"reflection":25,"exploding":-50,"speed":25,"identified":false}, +{"name":"Thrundacrack","type":"spear","level":96,"tier":"Mythic","sockets":4,"majorIds":[],"dexterity":105,"dexterityPoints":35,"damage":"50-90","earthDamage":"0-0","thunderDamage":"50-220","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","category":"weapon","displayName":"Thrundacrack","basedps":205,"bonusThunderDamage":25,"bonusWaterDamage":60,"healthRegen":-60,"speed":9,"spellCostRaw3":-6,"identified":false}, +{"name":"Lament","type":"wand","level":96,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":110,"intelligencePoints":20,"damage":"70-90","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"180-190","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SLOW","category":"weapon","displayName":"Lament","basedps":265,"bonusWaterDamage":80,"manaSteal":40,"lifeSteal":-500,"spellCostPct1":-35,"identified":false}, +{"name":"Toxoplasmosis","type":"relik","level":96,"tier":"Mythic","sockets":2,"majorIds":[],"strength":110,"strengthPoints":40,"damage":"0-0","earthDamage":"3-3","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","category":"weapon","displayName":"Toxoplasmosis","basedps":3,"poison":10000,"manaSteal":18,"lifeSteal":500,"speed":20,"lootBonus":20,"identified":false}, +{"name":"Stardew","type":"boots","level":97,"tier":"Mythic","sockets":2,"majorIds":[],"dexterity":65,"intelligence":75,"health":4075,"earthDefense":-100,"thunderDefense":150,"waterDefense":150,"fireDefense":-100,"airDefense":-100,"category":"armor","displayName":"Stardew","bonusThunderDamage":35,"bonusWaterDamage":35,"spellDamageRaw":313,"manaRegen":-9,"manaSteal":15,"reflection":25,"identified":false}, +{"name":"Divzer","type":"bow","level":97,"tier":"Mythic","sockets":3,"majorIds":[],"dexterity":115,"dexterityPoints":37,"defensePoints":-39,"agilityPoints":-550,"damage":"48-50","earthDamage":"0-0","thunderDamage":"250-250","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_FAST","category":"weapon","displayName":"Divzer","basedps":299,"bonusWaterDamage":-550,"bonusFireDamage":-550,"damageBonusRaw":536,"spellDamageRaw":253,"attackSpeedBonus":1,"manaSteal":30,"lifeSteal":973,"identified":false}, {"name":"Inferno","type":"dagger","level":97,"tier":"Mythic","sockets":3,"majorIds":[],"defense":105,"defensePoints":15,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"855-1045","airDamage":"0-0","attackSpeed":"VERY_SLOW","category":"weapon","displayName":"Inferno","basedps":950,"bonusFireDamage":35,"damageBonus":25,"damageBonusRaw":560,"healthBonus":1500,"bonusWaterDefense":-40,"healthRegen":-45,"manaRegen":-1,"speed":25,"spellCostRaw1":-1,"identified":false}, -{"name":"Nirvana","type":"dagger","level":97,"tier":"Mythic","sockets":3,"majorIds":["ARCANES"],"intelligence":110,"intelligencePoints":40,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"320-385","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"NORMAL","mr-base":10,"ms-base":-20,"category":"weapon","displayName":"Nirvana","basedps":352.5,"damageBonus":-80,"spellDamage":25,"healthBonus":-2000,"manaRegen":10,"manaSteal":-20,"reflection":15,"identified":false}, -{"name":"Collapse","type":"spear","level":97,"tier":"Mythic","sockets":3,"majorIds":["FISSION"],"strength":35,"dexterity":35,"intelligence":35,"defense":35,"agility":35,"strengthPoints":45,"damage":"40-65","earthDamage":"0-310","thunderDamage":"0-310","waterDamage":"0-310","fireDamage":"0-310","airDamage":"0-310","attackSpeed":"VERY_SLOW","ms-base":18,"category":"weapon","displayName":"Collapse","basedps":827.5,"damageBonus":50,"bonusEarthDefense":-65,"bonusThunderDefense":-65,"bonusWaterDefense":-65,"bonusFireDefense":-65,"bonusAirDefense":-65,"manaSteal":18,"exploding":250,"identified":false}, -{"name":"Gaia","type":"wand","level":97,"tier":"Mythic","sockets":3,"majorIds":[],"strength":105,"strengthPoints":25,"damage":"150-220","earthDamage":"380-490","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_SLOW","spRaw4-base":-9,"category":"weapon","displayName":"Gaia","basedps":620,"damageBonus":15,"damageBonusRaw":575,"spellDamageRaw":-275,"poison":2500,"thorns":15,"spellCostRaw4":-9,"identified":false}, -{"name":"Absolution","type":"relik","level":97,"tier":"Mythic","majorIds":[],"defense":115,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"195-205","airDamage":"0-0","attackSpeed":"SUPER_FAST","mr-base":16,"spRaw1-base":-20,"category":"weapon","displayName":"Absolution","basedps":200,"bonusWaterDamage":200,"bonusFireDamage":20,"healthBonus":3000,"bonusEarthDefense":45,"bonusThunderDefense":45,"manaRegen":16,"spellCostRaw1":-20,"soulPoints":23,"identified":false}, -{"name":"Spring","type":"bow","level":98,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":120,"strengthPoints":15,"dexterityPoints":-40,"intelligencePoints":15,"damage":"150-185","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"200-310","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"NORMAL","mr-base":30,"category":"weapon","displayName":"Spring","basedps":422.5,"bonusThunderDamage":-50,"bonusWaterDamage":20,"manaRegen":30,"identified":false}, -{"name":"Monster","type":"wand","level":98,"tier":"Mythic","sockets":3,"majorIds":[],"defense":110,"defensePoints":40,"damage":"110-140","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"160-220","airDamage":"0-0","attackSpeed":"SLOW","ms-base":10,"spRaw1-base":4,"category":"weapon","displayName":"Monster","basedps":315,"bonusFireDamage":25,"damageBonus":40,"healthBonus":3000,"manaSteal":10,"lifeSteal":500,"spellCostRaw1":4,"identified":false}, -{"name":"Revenant","type":"boots","level":99,"tier":"Mythic","sockets":3,"majorIds":[],"strength":70,"agility":70,"health":7000,"earthDefense":70,"airDefense":70,"ms-base":10,"spPct4-base":-28,"category":"armor","displayName":"Revenant","bonusEarthDamage":40,"bonusAirDamage":40,"damageBonus":-70,"damageBonusRaw":520,"healthBonus":-2500,"manaSteal":10,"reflection":120,"speed":40,"spellCostPct4":-28,"identified":false}, -{"name":"Fatal","type":"wand","level":99,"tier":"Mythic","sockets":3,"majorIds":[],"dexterity":110,"dexterityPoints":25,"damage":"0-0","earthDamage":"0-0","thunderDamage":"1-360","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","spPct1-base":28,"spPct2-base":-49,"category":"weapon","displayName":"Fatal","basedps":180.5,"spellDamage":25,"manaSteal":1,"speed":15,"spellCostPct1":28,"spellCostPct2":-49,"identified":false}, -{"name":"Warp","type":"wand","level":99,"tier":"Mythic","sockets":3,"majorIds":[],"agility":130,"agilityPoints":20,"damage":"40-70","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"190-220","attackSpeed":"VERY_FAST","mr-base":-45,"spRaw1-base":4,"spRaw2-base":-299,"category":"weapon","displayName":"Warp","basedps":260,"bonusAirDamage":15,"healthRegen":-200,"healthRegenRaw":-600,"manaRegen":-45,"reflection":90,"exploding":50,"speed":180,"spellCostRaw1":4,"spellCostRaw2":-299,"identified":false}, -{"name":"Oblivion","type":"dagger","level":101,"tier":"Mythic","sockets":4,"majorIds":[],"dexterity":75,"intelligence":65,"dexterityPoints":15,"damage":"1-200","earthDamage":"0-0","thunderDamage":"600-999","waterDamage":"600-999","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_SLOW","mr-base":-30,"ms-base":15,"spRaw2-base":-20,"category":"weapon","displayName":"Oblivion","basedps":1699.5,"spellDamageRaw":265,"manaRegen":-30,"manaSteal":15,"exploding":40,"spellCostRaw2":-20,"soulPoints":40,"identified":false}, -{"name":"Epoch","type":"bow","level":102,"tier":"Mythic","sockets":3,"majorIds":[],"dexterity":70,"agility":70,"damage":"500-620","earthDamage":"0-0","thunderDamage":"480-640","waterDamage":"0-0","fireDamage":"0-0","airDamage":"520-600","attackSpeed":"SUPER_SLOW","sdPct-base":40,"category":"weapon","displayName":"Epoch","basedps":1680,"damageBonusRaw":769,"spellDamage":40,"manaSteal":-1,"lifeSteal":825,"speed":-20,"sprint":70,"spellCostRaw1":-1,"spellCostRaw4":-1,"identified":false}, -{"name":"Fantasia","type":"relik","level":96,"tier":"Mythic","sockets":3,"majorIds":[],"strength":45,"dexterity":45,"intelligence":45,"defense":45,"agility":45,"intelligencePoints":50,"damage":"0-0","earthDamage":"170-310","thunderDamage":"230-250","waterDamage":"200-280","fireDamage":"185-295","airDamage":"215-265","attackSpeed":"VERY_SLOW","spPct1-base":-27,"spPct2-base":-27,"spPct3-base":-27,"spPct4-base":-27,"category":"weapon","displayName":"Fantasia","basedps":1350,"spellDamage":30,"manaRegen":-20,"manaSteal":-20,"spellCostPct1":-27,"spellCostPct2":-27,"spellCostPct3":-27,"spellCostPct4":-27,"identified":false}, -{"name":"Slayer","type":"boots","level":94,"tier":"Mythic","sockets":2,"majorIds":[],"dexterity":75,"agility":60,"dexterityPoints":20,"health":3775,"waterDefense":-100,"spPct3-base":-30,"category":"armor","displayName":"Slayer","damageBonusRaw":285,"attackSpeedBonus":1,"healthRegenRaw":-270,"speed":27,"spellCostPct3":-30,"emeraldStealing":10,"identified":false}, -{"name":"Immolation","type":"relik","level":101,"tier":"Mythic","sockets":3,"majorIds":[],"defense":80,"agility":80,"defensePoints":50,"agilityPoints":50,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"200-440","airDamage":"310-330","attackSpeed":"SLOW","spPct3-base":-14,"category":"weapon","displayName":"Immolation","basedps":640,"bonusWaterDamage":-1000,"bonusFireDamage":45,"bonusAirDamage":45,"healthBonus":-2750,"healthRegen":-180,"spellCostPct3":-14,"identified":false}, -{"name":"Convergence","type":"spear","level":104,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":65,"defense":75,"damage":"70-90","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"100-120","fireDamage":"105-115","airDamage":"0-0","attackSpeed":"NORMAL","spPct3-base":-45,"category":"weapon","displayName":"Convergence","basedps":300,"bonusEarthDamage":55,"bonusThunderDamage":55,"bonusAirDefense":35,"healthRegen":43,"sprintRegen":43,"spellCostPct3":-45,"identified":false}, +{"name":"Nirvana","type":"dagger","level":97,"tier":"Mythic","sockets":3,"majorIds":["ARCANES"],"intelligence":110,"intelligencePoints":40,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"320-385","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"NORMAL","category":"weapon","displayName":"Nirvana","basedps":352.5,"damageBonus":-80,"spellDamage":25,"healthBonus":-2000,"manaRegen":10,"manaSteal":-20,"reflection":15,"identified":false}, +{"name":"Collapse","type":"spear","level":97,"tier":"Mythic","sockets":3,"majorIds":["FISSION"],"strength":35,"dexterity":35,"intelligence":35,"defense":35,"agility":35,"strengthPoints":45,"damage":"40-65","earthDamage":"0-310","thunderDamage":"0-310","waterDamage":"0-310","fireDamage":"0-310","airDamage":"0-310","attackSpeed":"VERY_SLOW","category":"weapon","displayName":"Collapse","basedps":827.5,"damageBonus":50,"bonusEarthDefense":-65,"bonusThunderDefense":-65,"bonusWaterDefense":-65,"bonusFireDefense":-65,"bonusAirDefense":-65,"manaSteal":18,"exploding":250,"identified":false}, +{"name":"Gaia","type":"wand","level":97,"tier":"Mythic","sockets":3,"majorIds":[],"strength":105,"strengthPoints":25,"damage":"150-220","earthDamage":"380-490","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_SLOW","category":"weapon","displayName":"Gaia","basedps":620,"damageBonus":15,"damageBonusRaw":575,"spellDamageRaw":-275,"poison":2500,"thorns":15,"spellCostRaw4":-9,"identified":false}, +{"name":"Absolution","type":"relik","level":97,"tier":"Mythic","majorIds":[],"defense":115,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"195-205","airDamage":"0-0","attackSpeed":"SUPER_FAST","category":"weapon","displayName":"Absolution","basedps":200,"bonusWaterDamage":200,"bonusFireDamage":20,"healthBonus":3000,"bonusEarthDefense":45,"bonusThunderDefense":45,"manaRegen":16,"spellCostRaw1":-20,"soulPoints":23,"identified":false}, +{"name":"Spring","type":"bow","level":98,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":120,"strengthPoints":15,"dexterityPoints":-40,"intelligencePoints":15,"damage":"150-185","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"200-310","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"NORMAL","category":"weapon","displayName":"Spring","basedps":422.5,"bonusThunderDamage":-50,"bonusWaterDamage":20,"manaRegen":30,"identified":false}, +{"name":"Monster","type":"wand","level":98,"tier":"Mythic","sockets":3,"majorIds":[],"defense":110,"defensePoints":40,"damage":"110-140","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"160-220","airDamage":"0-0","attackSpeed":"SLOW","category":"weapon","displayName":"Monster","basedps":315,"bonusFireDamage":25,"damageBonus":40,"healthBonus":3000,"manaSteal":10,"lifeSteal":500,"spellCostRaw1":4,"identified":false}, +{"name":"Revenant","type":"boots","level":99,"tier":"Mythic","sockets":3,"majorIds":[],"strength":70,"agility":70,"health":7000,"earthDefense":70,"airDefense":70,"category":"armor","displayName":"Revenant","bonusEarthDamage":40,"bonusAirDamage":40,"damageBonus":-70,"damageBonusRaw":520,"healthBonus":-2500,"manaSteal":10,"reflection":120,"speed":40,"spellCostPct4":-28,"identified":false}, +{"name":"Fatal","type":"wand","level":99,"tier":"Mythic","sockets":3,"majorIds":[],"dexterity":110,"dexterityPoints":25,"damage":"0-0","earthDamage":"0-0","thunderDamage":"1-360","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"VERY_FAST","category":"weapon","displayName":"Fatal","basedps":180.5,"spellDamage":25,"manaSteal":1,"speed":15,"spellCostPct1":28,"spellCostPct2":-49,"identified":false}, +{"name":"Warp","type":"wand","level":99,"tier":"Mythic","sockets":3,"majorIds":[],"agility":130,"agilityPoints":20,"damage":"40-70","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"190-220","attackSpeed":"VERY_FAST","category":"weapon","displayName":"Warp","basedps":260,"bonusAirDamage":15,"healthRegen":-200,"healthRegenRaw":-600,"manaRegen":-45,"reflection":90,"exploding":50,"speed":180,"spellCostRaw1":4,"spellCostRaw2":-299,"identified":false}, +{"name":"Oblivion","type":"dagger","level":101,"tier":"Mythic","sockets":4,"majorIds":[],"dexterity":75,"intelligence":65,"dexterityPoints":15,"damage":"1-200","earthDamage":"0-0","thunderDamage":"600-999","waterDamage":"600-999","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_SLOW","category":"weapon","displayName":"Oblivion","basedps":1699.5,"spellDamageRaw":265,"manaRegen":-30,"manaSteal":15,"exploding":40,"spellCostRaw2":-20,"soulPoints":40,"identified":false}, +{"name":"Epoch","type":"bow","level":102,"tier":"Mythic","sockets":3,"majorIds":[],"dexterity":70,"agility":70,"damage":"500-620","earthDamage":"0-0","thunderDamage":"480-640","waterDamage":"0-0","fireDamage":"0-0","airDamage":"520-600","attackSpeed":"SUPER_SLOW","category":"weapon","displayName":"Epoch","basedps":1680,"damageBonusRaw":769,"spellDamage":40,"manaSteal":-1,"lifeSteal":825,"speed":-20,"sprint":70,"spellCostRaw1":-1,"spellCostRaw4":-1,"identified":false}, +{"name":"Fantasia","type":"relik","level":96,"tier":"Mythic","sockets":3,"majorIds":[],"strength":45,"dexterity":45,"intelligence":45,"defense":45,"agility":45,"intelligencePoints":50,"damage":"0-0","earthDamage":"170-310","thunderDamage":"230-250","waterDamage":"200-280","fireDamage":"185-295","airDamage":"215-265","attackSpeed":"VERY_SLOW","category":"weapon","displayName":"Fantasia","basedps":1350,"spellDamage":30,"manaRegen":-20,"manaSteal":-20,"spellCostPct1":-27,"spellCostPct2":-27,"spellCostPct3":-27,"spellCostPct4":-27,"identified":false}, +{"name":"Slayer","type":"boots","level":94,"tier":"Mythic","sockets":2,"majorIds":[],"dexterity":75,"agility":60,"dexterityPoints":20,"health":3775,"waterDefense":-100,"category":"armor","displayName":"Slayer","damageBonusRaw":285,"attackSpeedBonus":1,"healthRegenRaw":-270,"speed":27,"spellCostPct3":-30,"emeraldStealing":10,"identified":false}, +{"name":"Immolation","type":"relik","level":101,"tier":"Mythic","sockets":3,"majorIds":[],"defense":80,"agility":80,"defensePoints":50,"agilityPoints":50,"damage":"0-0","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"200-440","airDamage":"310-330","attackSpeed":"SLOW","category":"weapon","displayName":"Immolation","basedps":640,"bonusWaterDamage":-1000,"bonusFireDamage":45,"bonusAirDamage":45,"healthBonus":-2750,"healthRegen":-180,"spellCostPct3":-14,"identified":false}, +{"name":"Convergence","type":"spear","level":104,"tier":"Mythic","sockets":3,"majorIds":[],"intelligence":65,"defense":75,"damage":"70-90","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"100-120","fireDamage":"105-115","airDamage":"0-0","attackSpeed":"NORMAL","category":"weapon","displayName":"Convergence","basedps":300,"bonusEarthDamage":55,"bonusThunderDamage":55,"bonusAirDefense":35,"healthRegen":43,"sprintRegen":43,"spellCostPct3":-45,"identified":false}, + +{"name":"Guillotine","type":"helmet","level":98,"tier":"Rare","sockets":4,"majorIds":[],"strength":45,"dexterity":45,"intelligence":45,"defense":45,"strengthPoints":5,"dexterityPoints":5,"intelligencePoints":5,"defensePoints":5,"agilityPoints":-99,"health":1000,"earthDefense":70,"thunderDefense":70,"waterDefense":70,"fireDefense":70,"airDefense":-220,"category":"armor","displayName":"Guillotine","bonusAirDamage":-50,"damageBonus":23,"spellDamage":10,"spellDamageRaw":150,"healthBonus":-1337,"bonusAirDefense":-15,"manaRegen":10,"manaSteal":10,"lifeSteal":215,"identified":false}, +{"name":"Prayer","type":"leggings","level":68,"tier":"Unique","sockets":2,"majorIds":[],"intelligence":45,"intelligencePoints":5,"health":1280,"thunderDefense":-100,"waterDefense":100,"category":"armor","displayName":"Prayer","bonusFireDamage":-16,"spellDamage":12,"bonusWaterDefense":12,"xpBonus":8,"soulPoints":8,"identified":false,"spellCostRaw3":-5}, +{"name":"Symphony","type":"chestplate","level":72,"tier":"Unique","sockets":2,"majorIds":[],"intelligence":50,"defense":50,"health":1350,"earthDefense":-90,"thunderDefense":-90,"waterDefense":80,"fireDefense":80,"category":"armor","displayName":"Symphony","damageBonus":-10,"spellDamage":10,"healthRegen":20,"healthRegenRaw":70,"reflection":17,"spellCostRaw4":-6,"xpBonus":12,"identified":false}, +{"name":"Entamyx","type":"leggings","level":76,"tier":"Rare","sockets":3,"majorIds":[],"quest":"Troubled Tribesmen","strength":50,"intelligence":50,"agility":50,"dexterityPoints":-20,"defensePoints":-20,"health":2150,"earthDefense":150,"thunderDefense":-100,"waterDefense":150,"fireDefense":-100,"airDefense":150,"category":"armor","displayName":"Entamyx","bonusEarthDamage":15,"bonusWaterDamage":15,"bonusAirDamage":15,"bonusEarthDefense":15,"bonusWaterDefense":15,"bonusAirDefense":15,"spellCostRaw1":-4,"spellCostRaw3":-4,"identified":true}, +{"name":"Gysdep","type":"helmet","level":74,"tier":"Rare","sockets":3,"majorIds":[],"quest":"Troubled Tribesmen","intelligence":50,"defense":50,"agility":50,"strengthPoints":-20,"dexterityPoints":-20,"health":2000,"earthDefense":-100,"thunderDefense":-100,"waterDefense":150,"fireDefense":150,"airDefense":150,"category":"armor","displayName":"Gysdep","bonusWaterDamage":10,"bonusFireDamage":10,"bonusAirDamage":10,"bonusWaterDefense":25,"bonusFireDefense":25,"bonusAirDefense":25,"spellCostRaw3":-5,"spellCostRaw4":-3,"identified":true}, +{"name":"Aquarius","type":"chestplate","level":95,"tier":"Legendary","sockets":3,"majorIds":[],"intelligence":110,"health":2550,"fireDefense":-100,"category":"armor","displayName":"Aquarius","damageBonus":-20,"manaRegen":25,"spellCostRaw1":-7,"identified":false}, +{"name":"Scaldsteppers","type":"boots","level":90,"tier":"Unique","sockets":2,"majorIds":[],"intelligence":40,"defense":30,"intelligencePoints":7,"health":2325,"thunderDefense":-100,"waterDefense":110,"fireDefense":80,"airDefense":-90,"category":"armor","displayName":"Scaldsteppers","bonusWaterDamage":10,"bonusFireDamage":10,"bonusAirDamage":-12,"spellDamage":20,"exploding":10,"spellCostRaw1":-6,"identified":false}, +{"name":"Steamstone","type":"leggings","level":91,"tier":"Unique","sockets":2,"majorIds":[],"intelligence":45,"defense":45,"intelligencePoints":7,"defensePoints":8,"health":2900,"earthDefense":50,"thunderDefense":-130,"waterDefense":75,"fireDefense":75,"category":"armor","displayName":"Steamstone","bonusEarthDamage":16,"bonusThunderDamage":-10,"bonusAirDamage":-10,"bonusWaterDefense":8,"bonusFireDefense":8,"healthRegen":25,"manaSteal":5,"spellCostRaw3":-6,"spellCostRaw4":-3,"identified":true}, +{"name":"Leviathan","type":"chestplate","level":97,"tier":"Rare","sockets":2,"majorIds":[],"strength":45,"intelligence":45,"strengthPoints":12,"health":2850,"earthDefense":100,"thunderDefense":-100,"waterDefense":90,"airDefense":-90,"category":"armor","displayName":"Leviathan","bonusEarthDamage":19,"bonusWaterDamage":19,"attackSpeedBonus":1,"bonusThunderDefense":-10,"spellCostRaw3":-6,"emeraldStealing":7,"identified":false}, +{"name":"The Courier's Cape","type":"chestplate","level":86,"tier":"Unique","sockets":3,"majorIds":[],"agility":70,"agilityPoints":10,"health":1900,"airDefense":50,"category":"armor","displayName":"The Courier's Cape","bonusAirDamage":23,"bonusEarthDefense":10,"bonusAirDefense":15,"manaRegen":10,"speed":20,"xpBonus":15,"lootBonus":10,"identified":false}, +{"name":"Exhibition","type":"necklace","level":105,"tier":"Fabled","majorIds":[],"intelligence":80,"earthDefense":-30,"thunderDefense":-30,"waterDefense":60,"fireDefense":-30,"airDefense":-30,"category":"accessory","displayName":"Exhibition","manaRegen":-10,"spellCostRaw1":-2,"spellCostRaw2":-2,"spellCostRaw3":-2,"spellCostRaw4":-2,"identified":false}, +{"name":"Ambivalence","type":"necklace","level":100,"tier":"Legendary","majorIds":[],"dexterity":40,"defense":40,"agility":40,"intelligencePoints":-100,"thunderDefense":70,"fireDefense":70,"airDefense":70,"category":"accessory","displayName":"Ambivalence","bonusWaterDamage":25,"spellDamage":50,"spellCostPct1":100,"spellCostPct2":100,"spellCostPct3":100,"spellCostPct4":100,"identified":true}, +{"name":"Conduit of Spirit","type":"chestplate","level":93,"tier":"Legendary","majorIds":[],"agility":105,"health":2800,"airDefense":150,"category":"armor","displayName":"Conduit of Spirit","bonusAirDamage":25,"spellDamage":25,"manaRegen":5,"manaSteal":15,"reflection":25,"spellCostRaw3":-5,"spellCostRaw4":-5,"soulPoints":50,"identified":true}, +{"name":"Ossuary","type":"helmet","level":84,"tier":"Legendary","sockets":2,"majorIds":[],"health":2550,"thunderDefense":90,"airDefense":90,"category":"armor","displayName":"Ossuary","bonusThunderDamage":15,"bonusAirDamage":12,"spellDamageRaw":170,"lifeSteal":245,"thorns":30,"speed":15,"spellCostRaw3":-4,"identified":true}, +{"name":"Far Cosmos","type":"chestplate","level":100,"tier":"Rare","sockets":5,"majorIds":[],"strength":30,"dexterity":30,"intelligence":30,"defense":30,"agility":30,"strengthPoints":9,"dexterityPoints":9,"intelligencePoints":9,"defensePoints":9,"agilityPoints":9,"health":3500,"category":"armor","displayName":"Far Cosmos","spellCostPct2":-6,"identified":false}, +{"name":"Ophiolite","type":"helmet","level":98,"tier":"Rare","sockets":4,"majorIds":[],"strength":45,"intelligence":45,"defense":45,"agility":45,"strengthPoints":5,"dexterityPoints":-99,"intelligencePoints":5,"defensePoints":5,"agilityPoints":5,"health":2400,"earthDefense":-60,"thunderDefense":-120,"waterDefense":-60,"fireDefense":80,"airDefense":80,"category":"armor","displayName":"Ophiolite","damageBonus":40,"spellDamage":14,"bonusThunderDefense":-20,"healthRegenRaw":170,"manaRegen":20,"lifeSteal":-235,"speed":-20,"spellCostRaw1":-6,"identified":false}, +{"name":"Ionosphere","type":"helmet","level":97,"tier":"Unique","sockets":3,"majorIds":[],"dexterity":55,"dexterityPoints":7,"health":2850,"thunderDefense":90,"fireDefense":70,"airDefense":-110,"category":"armor","displayName":"Ionosphere","bonusThunderDamage":21,"bonusEarthDefense":-15,"healthRegen":-15,"manaSteal":5,"lifeSteal":190,"speed":11,"spellCostRaw1":-5,"identified":false}, +{"name":"Dragon's Eye Bracelet","type":"bracelet","level":60,"tier":"Fabled","majorIds":[],"quest":"The Order of the Grook","defense":40,"fireDefense":25,"category":"accessory","displayName":"Dragon's Eye Bracelet","bonusFireDamage":11,"bonusWaterDefense":-8,"exploding":5,"spellCostRaw3":-3,"xpBonus":10,"identified":false,"set":"Grookwarts"}, +{"name":"Draoi Fair","type":"ring","level":60,"tier":"Fabled","majorIds":[],"quest":"The Order of the Grook","strength":25,"intelligence":25,"earthDefense":20,"waterDefense":20,"category":"accessory","displayName":"Draoi Fair","healthRegenRaw":30,"spellCostRaw1":-3,"xpBonus":10,"identified":false,"set":"Grookwarts"}, +{"name":"Renda Langit","type":"necklace","level":60,"tier":"Fabled","majorIds":[],"quest":"The Order of the Grook","agility":40,"health":230,"airDefense":30,"category":"accessory","displayName":"Renda Langit","bonusEarthDefense":-8,"speed":12,"spellCostRaw2":-3,"spellCostRaw4":-3,"xpBonus":10,"identified":false,"set":"Grookwarts"}, +{"name":"Cloudwalkers","type":"boots","level":94,"tier":"Unique","sockets":3,"majorIds":[],"agility":50,"airDefense":100,"category":"armor","displayName":"Cloudwalkers","bonusAirDamage":30,"spellDamage":40,"bonusAirDefense":20,"speed":30,"sprint":15,"spellCostRaw1":-5,"xpBonus":10,"identified":true}, +{"name":"Harmony","type":"leggings","level":84,"tier":"Rare","sockets":2,"majorIds":[],"agility":65,"health":2650,"earthDefense":180,"thunderDefense":180,"waterDefense":180,"fireDefense":180,"category":"armor","displayName":"Harmony","damageBonus":-18,"spellDamage":9,"bonusAirDefense":45,"speed":18,"spellCostRaw3":-5,"soulPoints":18,"identified":false}, +{"name":"Detachment","type":"bracelet","level":105,"tier":"Fabled","majorIds":[],"dexterity":55,"agility":60,"thunderDefense":60,"airDefense":60,"category":"accessory","displayName":"Detachment","damageBonusRaw":-85,"spellDamageRaw":-65,"speed":13,"spellCostPct4":-19,"identified":false}, +{"name":"Roridula","type":"chestplate","level":104,"tier":"Unique","sockets":2,"majorIds":[],"strength":55,"intelligence":55,"strengthPoints":10,"health":3675,"earthDefense":150,"fireDefense":-150,"category":"armor","displayName":"Roridula","bonusThunderDamage":-30,"bonusWaterDamage":25,"manaSteal":8,"speed":15,"spellCostPct4":14,"xpBonus":25,"identified":false}, { "name": "Panic Zealot", "tier": "Fabled", @@ -230,5 +252,33 @@ "bonusFireDefense": 0, "bonusAirDefense": 0, "category": "accessory" + }, + { + "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 } ]} From a3bf67aa2dcabec8b118c214c41a88efebb6ac98 Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 19 Jul 2022 21:31:01 -0700 Subject: [PATCH 13/82] Bump load.js version also bump ing since i forgot to since ages ago --- js/load.js | 2 +- js/load_ing.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/load.js b/js/load.js index c425c97..41a57a1 100644 --- a/js/load.js +++ b/js/load.js @@ -1,4 +1,4 @@ -const DB_VERSION = 97; +const DB_VERSION = 98; // @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.jsA let db; diff --git a/js/load_ing.js b/js/load_ing.js index 7652efb..3443bfc 100644 --- a/js/load_ing.js +++ b/js/load_ing.js @@ -1,4 +1,4 @@ -const ING_DB_VERSION = 13; +const ING_DB_VERSION = 14; // @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.js From ab371f575771164eb4ad62e8ca9504b18ae1d4df Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 19 Jul 2022 21:45:00 -0700 Subject: [PATCH 14/82] Fix duplicate items oops --- clean.json | 48 --------------------------- compress.json | 2 +- js/load.js | 2 +- py_script/merge.json | 78 -------------------------------------------- 4 files changed, 2 insertions(+), 128 deletions(-) diff --git a/clean.json b/clean.json index 4acaefd..a546351 100644 --- a/clean.json +++ b/clean.json @@ -237,29 +237,6 @@ "tDamPct": 12, "id": 3658 }, - { - "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": "Atomizer", "type": "leggings", @@ -2542,31 +2519,6 @@ "spPct3": -100, "id": 3600 }, - { - "name": "Ambivalence", - "tier": "Legendary", - "material": "259:29", - "category": "accessory", - "drop": "never", - "restrict": "Untradable", - "fDef": 70, - "aDef": 70, - "tDef": 70, - "lvl": 100, - "dexReq": 40, - "agiReq": 40, - "defReq": 40, - "sdPct": 250, - "int": -100, - "wDamPct": 50, - "type": "necklace", - "fixID": true, - "spPct1": 130, - "spPct2": 85, - "spPct3": 130, - "spPct4": 100, - "id": 3618 - }, { "name": "The Nothing", "tier": "Legendary", diff --git a/compress.json b/compress.json index f451b3a..2b17229 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": "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": "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": "Ambivalence", "tier": "Legendary", "material": "259:29", "category": "accessory", "drop": "never", "restrict": "Untradable", "fDef": 70, "aDef": 70, "tDef": 70, "lvl": 100, "dexReq": 40, "agiReq": 40, "defReq": 40, "sdPct": 250, "int": -100, "wDamPct": 50, "type": "necklace", "fixID": true, "spPct1": 130, "spPct2": 85, "spPct3": 130, "spPct4": 100, "id": 3618}, {"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": -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 diff --git a/js/load.js b/js/load.js index 41a57a1..05ade83 100644 --- a/js/load.js +++ b/js/load.js @@ -1,4 +1,4 @@ -const DB_VERSION = 98; +const DB_VERSION = 99; // @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.json b/py_script/merge.json index 86e4c3d..ca79a29 100644 --- a/py_script/merge.json +++ b/py_script/merge.json @@ -8,7 +8,6 @@ {"name":"Helminth","type":"spear","level":102,"tier":"Rare","sockets":2,"majorIds":[],"classRequirement":"Warrior","dexterity":65,"damage":"0-0","earthDamage":"0-0","thunderDamage":"1-199","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"SUPER_FAST","category":"weapon","displayName":"Helminth","basedps":100,"bonusThunderDamage":20,"attackSpeedBonus":1,"healthBonus":-1250,"bonusWaterDefense":-35,"bonusAirDefense":-35,"lifeSteal":500,"identified":false}, {"name":"Lanternfly Leg","type":"dagger","level":101,"tier":"Rare","sockets":3,"majorIds":[],"classRequirement":"Assassin","defense":50,"agility":50,"damage":"150-210","earthDamage":"0-0","thunderDamage":"0-0","waterDamage":"0-0","fireDamage":"0-0","airDamage":"0-0","attackSpeed":"FAST","category":"weapon","displayName":"Lanternfly Leg","basedps":180,"bonusFireDamage":23,"bonusAirDamage":23,"healthBonus":1000,"jumpHeight":1,"speed":30,"spellCostRaw2":-4,"identified":false}, {"name":"Dissonance","type":"helmet","level":103,"tier":"Unique","sockets":2,"majorIds":[],"dexterity":50,"intelligence":50,"health":3050,"thunderDefense":100,"waterDefense":100,"airDefense":-175,"category":"armor","displayName":"Dissonance","bonusThunderDamage":12,"bonusWaterDamage":20,"spellDamage":20,"lifeSteal":-275,"speed":-20,"sprint":20,"lootBonus":20,"identified":false}, -{"name":"Roridula","type":"chestplate","level":104,"tier":"Unique","sockets":2,"majorIds":[],"strength":55,"intelligence":55,"strengthPoints":10,"health":3675,"earthDefense":150,"fireDefense":-150,"category":"armor","displayName":"Roridula","bonusThunderDamage":-30,"bonusWaterDamage":25,"manaSteal":8,"speed":15,"spellCostPct4":14,"xpBonus":25,"identified":false}, {"name":"Atomizer","type":"leggings","level":102,"tier":"Unique","sockets":3,"majorIds":[],"agility":75,"agilityPoints":8,"health":4350,"waterDefense":120,"fireDefense":120,"airDefense":200,"category":"armor","displayName":"Atomizer","poison":600,"bonusWaterDefense":31,"bonusFireDefense":31,"healthRegen":37,"thorns":25,"jumpHeight":1,"identified":false}, {"name":"Wasteland Azalea","type":"boots","level":101,"tier":"Unique","sockets":3,"majorIds":[],"strength":45,"agility":50,"health":2750,"earthDefense":75,"fireDefense":-75,"category":"armor","displayName":"Wasteland Azalea","bonusEarthDamage":25,"bonusAirDamage":25,"spellDamageRaw":140,"attackSpeedBonus":-1,"poison":500,"sprint":-15,"spellCostRaw3":-6,"identified":false}, {"name":"Tranquility","type":"ring","level":101,"tier":"Unique","majorIds":[],"defense":45,"intelligence":45,"strengthPoints":-3,"dexterityPoints":-3,"health":550,"waterDefense":50,"fireDefense":50,"category":"accessory","displayName":"Tranquility","spellDamage":5,"healthRegen":17,"speed":-7,"identified":false}, @@ -176,83 +175,6 @@ "bonusAirDefense": 0, "category": "weapon" }, - { - "name": "Ambivalence", - "tier": "Legendary", - "accessoryType": "Necklace", - "set": null, - "identified": true, - "restrictions": "Untradable", - "material": "259:29", - "dropType": "never", - "addedLore": null, - "sockets": 0, - "health": 0, - "earthDefense": 0, - "thunderDefense": 70, - "waterDefense": 0, - "fireDefense": 70, - "airDefense": 70, - "level": 100, - "quest": null, - "classRequirement": null, - "strength": 0, - "dexterity": 40, - "intelligence": 0, - "defense": 40, - "agility": 40, - "strengthPoints": 0, - "dexterityPoints": 0, - "intelligencePoints": -100, - "defensePoints": 0, - "agilityPoints": 0, - "damageBonus": 0, - "damageBonusRaw": 0, - "spellDamage": 250, - "spellDamageRaw": 0, - "rainbowSpellDamageRaw": 0, - "healthRegen": 0, - "healthRegenRaw": 0, - "healthBonus": 0, - "poison": 0, - "lifeSteal": 0, - "manaRegen": 0, - "manaSteal": 0, - "spellCostPct1": 130, - "spellCostRaw1": 0, - "spellCostPct2": 85, - "spellCostRaw2": 0, - "spellCostPct3": 130, - "spellCostRaw3": 0, - "spellCostPct4": 100, - "spellCostRaw4": 0, - "thorns": 0, - "reflection": 0, - "attackSpeedBonus": 0, - "speed": 0, - "exploding": 0, - "soulPoints": 0, - "sprint": 0, - "sprintRegen": 0, - "jumpHeight": 0, - "xpBonus": 0, - "lootBonus": 0, - "lootQuality": 0, - "emeraldStealing": 0, - "gatherXpBonus": 0, - "gatherSpeed": 0, - "bonusEarthDamage": 0, - "bonusThunderDamage": 0, - "bonusWaterDamage": 50, - "bonusFireDamage": 0, - "bonusAirDamage": 0, - "bonusEarthDefense": 0, - "bonusThunderDefense": 0, - "bonusWaterDefense": 0, - "bonusFireDefense": 0, - "bonusAirDefense": 0, - "category": "accessory" - }, { "name": "The Nothing", "tier": "Legendary", From 9a126fcf1c1d9ff8de77e64e793e38836ec2baee Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 00:35:20 -0700 Subject: [PATCH 15/82] Summary element rename/cleanup --- js/display.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/js/display.js b/js/display.js index 58ebfa8..2a9cdce 100644 --- a/js/display.js +++ b/js/display.js @@ -1434,14 +1434,14 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell let part_divavg = make_elem("p"); overallparent_elem.append(part_divavg); - function _summary(text, val, fmt) { + function add_summary(text, val, fmt) { if (typeof(val) === 'number') { val = val.toFixed(2); } - let overallaverageLabel = make_elem("p"); - let first = make_elem("span", [], { textContent: text }); - let second = make_elem("span", [fmt], { textContent: val }); - overallaverageLabel.appendChild(first); - overallaverageLabel.appendChild(second); - part_divavg.append(overallaverageLabel); + let summary_elem = make_elem("p"); + summary_elem.append( + make_elem("span", [], { textContent: text }), + make_elem("span", [fmt], { textContent: val }) + ); + part_divavg.append(summary_elem); } for (let i = 0; i < spell_results.length; ++i) { @@ -1473,12 +1473,12 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell } else if(adjAtkSpd < 0) { adjAtkSpd = 0; } - _summary("Average DPS: ", averageDamage * baseDamageMultiplier[adjAtkSpd], "Damage"); - _summary("Attack Speed: ", attackSpeeds[adjAtkSpd], "Damage"); - _summary("Per Attack: ", averageDamage, "Damage"); + add_summary("Average DPS: ", averageDamage * baseDamageMultiplier[adjAtkSpd], "Damage"); + add_summary("Attack Speed: ", attackSpeeds[adjAtkSpd], "Damage"); + add_summary("Per Attack: ", averageDamage, "Damage"); } else { - _summary(spell_info.name+ ": ", averageDamage, "Damage"); + add_summary(spell_info.name+ ": ", averageDamage, "Damage"); } } @@ -1505,7 +1505,7 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell // healLabel.classList.add("damagep"); part_div.append(healLabel); if (spell_info.name === spell.display) { - _summary(spell_info.name+ ": ", heal_amount, "Set"); + add_summary(spell_info.name+ ": ", heal_amount, "Set"); } } } From dea0ed56fcfc4fa0bd0ebaa58dfd047c5af856d2 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 02:17:54 -0700 Subject: [PATCH 16/82] 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 ebcce93a3792693cda7ab3254c9bf84c69842132 Mon Sep 17 00:00:00 2001 From: reschan Date: Wed, 20 Jul 2022 20:26:04 +0700 Subject: [PATCH 17/82] assassin tree implementation --- js/atree_constants.js | 9828 ++++++++++++++++++++++++++----------- js/atree_constants_min.js | 2 +- 2 files changed, 6912 insertions(+), 2918 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 518b26d..d554930 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -3,7 +3,10 @@ const atrees = { { "display_name": "Arrow Shield", "desc": "Create a shield around you that deal damage and knockback mobs when triggered. (2 Charges)", - "parents": ["Power Shots", "Cheaper Escape"], + "parents": [ + "Power Shots", + "Cheaper Escape" + ], "dependencies": [], "blockers": [], "cost": 1, @@ -28,7 +31,14 @@ const atrees = { { "name": "Shield Damage", "type": "damage", - "multipliers": [90, 0, 0, 0, 0, 10] + "multipliers": [ + 90, + 0, + 0, + 0, + 0, + 10 + ] }, { "name": "Total Damage", @@ -44,35 +54,39 @@ const atrees = { { "display_name": "Escape", "desc": "Throw yourself backward to avoid danger. (Hold shift while escaping to cancel)", - "parents": ["Heart Shatter"], + "parents": [ + "Heart Shatter" + ], "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { - "row": 7, - "col": 4, - "icon": "node_archer" + "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": [] - }] + "effects": [ + { + "type": "replace_spell", + "name": "Escape", + "cost": 25, + "base_spell": 2, + "display": "", + "parts": [] + } + ] }, { "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": [], + "parents": [], "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 0, "col": 4, @@ -82,35 +96,48 @@ const atrees = { "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 } - } - ] - }] + "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 + } + } + ] + } + ] }, { "display_name": "Heart Shatter", "desc": "If you hit a mob directly with Arrow Bomb, shatter its heart and deal bonus damage.", "base_abil": "Arrow Bomb", - "parents": ["Bow Proficiency I"], - "dependencies": [], + "parents": [ + "Bow Proficiency I" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 4, "col": 4, @@ -118,17 +145,26 @@ const atrees = { }, "properties": {}, "effects": [ - { + { "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Heart Shatter", - "multipliers": [100, 0, 0, 0, 0, 0] + "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 } + "base_spell": 3, + "target_part": "Total Damage", + "hits": { + "Heart Shatter": 1 + } } ] }, @@ -136,31 +172,44 @@ const atrees = { "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": "Arrow Bomb", - "parents": ["Phantom Ray", "Fire Mastery", "Bryophyte Roots"], - "dependencies": [], + "parents": [ + "Phantom Ray", + "Fire Mastery", + "Bryophyte Roots" + ], + "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { - "row": 16, - "col": 6, - "icon": "node_1" + "row": 16, + "col": 6, + "icon": "node_1" }, - "properties": { + "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] + "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 } + "base_spell": 3, + "target_part": "Total Burn Damage", + "hits": { + "Fire Creep": 15 + } } ] }, @@ -168,30 +217,48 @@ const atrees = { "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": "Arrow Storm", - "archetype": "Trapper", - "archetype_req": 1, - "parents": ["Fire Creep", "Earth Mastery"], - "dependencies": ["Arrow Storm"], + "archetype": "Trapper", + "archetype_req": 1, + "parents": [ + "Fire Creep", + "Earth Mastery" + ], + "dependencies": [ + "Arrow Storm" + ], "blockers": [], - "cost": 2, - "display": { "row": 16, "col": 8, "icon": "node_1"}, + "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", + "base_spell": 1, + "target_part": "Bryophyte Roots", "cost": 0, - "multipliers": [40, 20, 0, 0, 0, 0] + "multipliers": [ + 40, + 20, + 0, + 0, + 0, + 0 + ] }, - { + { "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Total Roots Damage", - "hits": { "Bryophyte Roots": 12 } + "base_spell": 1, + "target_part": "Total Roots Damage", + "hits": { + "Bryophyte Roots": 12 + } } ] }, @@ -199,56 +266,96 @@ const atrees = { "display_name": "Nimble String", "desc": "Arrow Storm throw out +6 arrows per stream and shoot twice as fast.", "base_abil": "Arrow Storm", - "parents": ["Thunder Mastery", "Arrow Rain"], - "dependencies": ["Arrow Storm"], - "blockers": ["Phantom Ray"], - "cost": 2, - "display": { "row": 15, "col": 2, "icon": "node_1"}, + "parents": [ + "Thunder Mastery", + "Arrow Rain" + ], + "dependencies": [ + "Arrow Storm" + ], + "blockers": [ + "Phantom Ray" + ], + "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] + "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 } + "base_spell": 1, + "target_part": "Single Stream", + "hits": { + "Single Arrow": 6 + } } ] }, { "display_name": "Arrow Storm", "desc": "Shoot a stream of 8 arrows, dealing significant damage to close mobs and pushing them back.", - "parents": ["Double Shots", "Cheaper Escape"], + "parents": [ + "Double Shots", + "Cheaper Escape" + ], "dependencies": [], "blockers": [], - "cost": 1, - "display": { "row": 9, "col": 2, "icon": "node_archer"}, - "properties": { "range": 16 }, + "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", + "base_spell": 1, + "spell_type": "damage", + "display": "Total Damage", "parts": [ - { + { "name": "Single Arrow", - "multipliers": [30, 0, 10, 0, 0, 0] + "multipliers": [ + 30, + 0, + 10, + 0, + 0, + 0 + ] }, - { + { "name": "Single Stream", - "hits": { "Single Arrow": 8 } + "hits": { + "Single Arrow": 8 + } }, - { + { "name": "Total Damage", - "hits": { "Single Stream": 1 } + "hits": { + "Single Stream": 1 + } } ] } @@ -258,12 +365,17 @@ const atrees = { "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, + "archetype_req": 3, "base_abil": "Arrow Shield", - "parents": ["Triple Shots", "Frenzy"], - "dependencies": ["Arrow Shield"], + "parents": [ + "Triple Shots", + "Frenzy" + ], + "dependencies": [ + "Arrow Shield" + ], "blockers": [], - "cost": 2, + "cost": 2, "display": { "row": 19, "col": 1, @@ -285,7 +397,14 @@ const atrees = { { "name": "Single Arrow", "type": "damage", - "multipliers": [30, 0, 0, 0, 0, 10] + "multipliers": [ + 30, + 0, + 0, + 0, + 0, + 10 + ] }, { "name": "Single Bow", @@ -309,14 +428,16 @@ const atrees = { "display_name": "Windy Feet", "desc": "When casting Escape, give speed to yourself and nearby allies.", "base_abil": "Escape", - "parents": ["Arrow Storm"], - "dependencies": [], + "parents": [ + "Arrow Storm" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { - "row": 10, - "col": 1, - "icon": "node_1" + "row": 10, + "col": 1, + "icon": "node_1" }, "properties": { "aoe": 8, @@ -328,22 +449,24 @@ const atrees = { "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": ["Bryophyte Roots"], - "dependencies": [], + "archetype_req": 2, + "parents": [ + "Bryophyte Roots" + ], + "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { - "row": 19, - "col": 8, - "icon": "node_3" + "row": 19, + "col": 8, + "icon": "node_3" }, "properties": { "aoe": 7, "traps": 2 }, "effects": [ - { + { "type": "replace_spell", "name": "Basaltic Trap", "base_spell": 7, @@ -352,7 +475,14 @@ const atrees = { { "name": "Trap Damage", "type": "damage", - "multipliers": [140, 30, 0, 0, 30, 0] + "multipliers": [ + 140, + 30, + 0, + 0, + 30, + 0 + ] } ] } @@ -362,10 +492,15 @@ const atrees = { "display_name": "Windstorm", "desc": "Arrow Storm shoot +1 stream of arrows, and each stream shoots +2 arrows, effectively doubling its damage.", "base_abil": "Arrow Storm", - "parents": ["Guardian Angels", "Cheaper Arrow Storm"], - "dependencies": [], - "blockers": ["Phantom Ray"], - "cost": 2, + "parents": [ + "Guardian Angels", + "Cheaper Arrow Storm" + ], + "dependencies": [], + "blockers": [ + "Phantom Ray" + ], + "cost": 2, "display": { "row": 21, "col": 1, @@ -375,22 +510,33 @@ const atrees = { "effects": [ { "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Single Arrow", - "multipliers": [-10, 0, -2, 0, 0, 2] + "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 } + "base_spell": 1, + "target_part": "Total Damage", + "hits": { + "Single Stream": 1 + } }, { "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Single Stream", + "base_spell": 1, + "target_part": "Single Stream", "cost": 0, - "hits": { "Single Arrow": 2 } + "hits": { + "Single Arrow": 2 + } } ] }, @@ -398,18 +544,23 @@ const atrees = { "display_name": "Grappling Hook", "base_abil": "Escape", "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, - "base_abil": "Escape", - "parents": ["Focus", "More Shields", "Cheaper Arrow Storm"], - "dependencies": [], - "blockers": ["Escape Artist"], - "cost": 2, + "archetype": "Trapper", + "archetype_req": 0, + "parents": [ + "Focus", + "More Shields", + "Cheaper Arrow Storm" + ], + "dependencies": [], + "blockers": [ + "Escape Artist" + ], + "cost": 2, "display": { "row": 21, "col": 5, "icon": "node_2" - }, + }, "properties": { "range": 26 }, @@ -418,13 +569,16 @@ const atrees = { { "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, + "archetype": "Trapper", + "archetype_req": 0, "base_abil": "Arrow Bomb", - "parents": ["Grappling Hook", "More Shields"], - "dependencies": [], + "parents": [ + "Grappling Hook", + "More Shields" + ], + "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { "row": 22, "col": 6, @@ -432,23 +586,35 @@ const atrees = { }, "properties": {}, "effects": [ - { + { "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Heart Shatter", - "multipliers": [40, 0, 0, 0, 0, 0] + "base_spell": 3, + "target_part": "Heart Shatter", + "multipliers": [ + 40, + 0, + 0, + 0, + 0, + 0 + ] } ] }, { "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": ["More Focus", "Traveler"], - "dependencies": ["Focus"], + "archetype": "Sharpshooter", + "archetype_req": 4, + "parents": [ + "More Focus", + "Traveler" + ], + "dependencies": [ + "Focus" + ], "blockers": [], - "cost": 2, + "cost": 2, "display": { "row": 25, "col": 4, @@ -470,33 +636,54 @@ const atrees = { { "name": "Single Shot", "type": "damage", - "multipliers": [200, 0, 0, 0, 0, 0] + "multipliers": [ + 200, + 0, + 0, + 0, + 0, + 0 + ] } ] } - ] + ] }, { "display_name": "Fierce Stomp", "desc": "When using Escape, hold shift to quickly drop down and deal damage.", - "archetype": "Boltslinger", - "archetype_req": 0, + "archetype": "Boltslinger", + "archetype_req": 0, "base_abil": "Escape", - "parents": ["Refined Gunpowder", "Traveler"], - "dependencies": [], + "parents": [ + "Refined Gunpowder", + "Traveler" + ], + "dependencies": [], "blockers": [], - "cost": 2, - "display": { "row": 26, "col": 1, "icon": "node_1"}, + "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", + "base_spell": 2, + "target_part": "Fierce Stomp", "cost": 0, - "multipliers": [100, 0, 0, 0, 0, 0] + "multipliers": [ + 100, + 0, + 0, + 0, + 0, + 0 + ] }, { "type": "add_spell_prop", @@ -513,36 +700,58 @@ const atrees = { { "display_name": "Scorched Earth", "desc": "Fire Creep become much stronger.", - "archetype": "Sharpshooter", - "archetype_req": 0, - "parents": ["Twain's Arc"], - "dependencies": ["Fire Creep"], + "archetype": "Sharpshooter", + "archetype_req": 0, + "parents": [ + "Twain's Arc" + ], + "dependencies": [ + "Fire Creep" + ], "blockers": [], - "cost": 1, - "display": { "row": 26, "col": 5, "icon": "node_1"}, + "cost": 1, + "display": { + "row": 26, + "col": 5, + "icon": "node_1" + }, "properties": { "duration": 2, "aoe": 0.4 }, "effects": [ - { + { "type": "add_spell_prop", - "base_spell": 3, + "base_spell": 3, "target_part": "Fire Creep", - "multipliers": [10, 0, 0, 0, 5, 0] + "multipliers": [ + 10, + 0, + 0, + 0, + 5, + 0 + ] } ] }, { "display_name": "Leap", "desc": "When you double tap jump, leap foward. (2s Cooldown)", - "archetype": "Boltslinger", - "archetype_req": 5, - "parents": ["Refined Gunpowder", "Homing Shots"], - "dependencies": [], + "archetype": "Boltslinger", + "archetype_req": 5, + "parents": [ + "Refined Gunpowder", + "Homing Shots" + ], + "dependencies": [], "blockers": [], - "cost": 2, - "display": { "row": 28, "col": 0, "icon": "node_1"}, + "cost": 2, + "display": { + "row": 28, + "col": 0, + "icon": "node_1" + }, "properties": { "cooldown": 2 }, @@ -551,14 +760,24 @@ const atrees = { { "display_name": "Shocking Bomb", "desc": "Arrow Bomb will not be affected by gravity, and all damage conversions become Thunder.", - "archetype": "Sharpshooter", - "archetype_req": 5, + "archetype": "Sharpshooter", + "archetype_req": 5, "base_abil": "Arrow Bomb", - "parents": ["Twain's Arc", "Better Arrow Shield", "Homing Shots"], - "dependencies": ["Arrow Bomb"], + "parents": [ + "Twain's Arc", + "Better Arrow Shield", + "Homing Shots" + ], + "dependencies": [ + "Arrow Bomb" + ], "blockers": [], - "cost": 2, - "display": { "row": 28, "col": 4, "icon": "node_1"}, + "cost": 2, + "display": { + "row": 28, + "col": 4, + "icon": "node_1" + }, "properties": { "gravity": 0 }, @@ -574,26 +793,29 @@ const atrees = { { "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, + "archetype": "Trapper", + "archetype_req": 5, "base_abil": "Basaltic Trap", - "parents": ["More Traps", "Better Arrow Shield"], - "dependencies": [], + "parents": [ + "More Traps", + "Better Arrow Shield" + ], + "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { - "row": 28, - "col": 8, - "icon": "node_3" + "row": 28, + "col": 8, + "icon": "node_3" }, "properties": { "range": 16, "manaRegen": 2.85 }, "effects": [ - { + { "type": "add_spell_prop", - "base_spell": 3, + "base_spell": 3, "cost": 10 } ] @@ -601,31 +823,45 @@ const atrees = { { "display_name": "Escape Artist", "desc": "When casting Escape, release 120 arrows towards the ground.", - "archetype": "Boltslinger", - "archetype_req": 0, + "archetype": "Boltslinger", + "archetype_req": 0, "base_abil": "Escape", - "parents": ["Better Guardian Angels", "Leap"], - "dependencies": [], - "blockers": ["Grappling Hook"], - "cost": 2, + "parents": [ + "Better Guardian Angels", + "Leap" + ], + "dependencies": [], + "blockers": [ + "Grappling Hook" + ], + "cost": 2, "display": { - "row": 31, - "col": 0, - "icon": "node_1" + "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] + "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 }, + "base_spell": 2, + "target_part": "Max Damage (Escape Artist)", + "hits": { + "Per Arrow": 120 + }, "display": "Max Damage (Escape Artist)" } ] @@ -634,12 +870,22 @@ const atrees = { "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": ["Shocking Bomb", "Better Arrow Shield", "Cheaper Arrow Storm (2)"], - "dependencies": ["Focus"], + "archetype_req": 5, + "parents": [ + "Shocking Bomb", + "Better Arrow Shield", + "Cheaper Arrow Storm (2)" + ], + "dependencies": [ + "Focus" + ], "blockers": [], - "cost": 2, - "display": { "row": 31, "col": 5, "icon": "node_2"}, + "cost": 2, + "display": { + "row": 31, + "col": 5, + "icon": "node_2" + }, "properties": {}, "effects": [] }, @@ -647,41 +893,68 @@ const atrees = { "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, + "archetype_req": 0, "base_abil": "Arrow Shield", - "parents": ["Initiator", "Cheaper Arrow Storm (2)"], - "dependencies": ["Arrow Shield"], + "parents": [ + "Initiator", + "Cheaper Arrow Storm (2)" + ], + "dependencies": [ + "Arrow Shield" + ], "blockers": [], - "cost": 2, - "display": { "row": 32, "col": 7, "icon": "node_2"}, + "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] + "base_spell": 4, + "target_part": "Hound Damage", + "multipliers": [ + 40, + 0, + 0, + 0, + 0, + 0 + ] } ] }, { "display_name": "Arrow Hurricane", "desc": "Arrow Storm will shoot +2 stream of arrows.", - "archetype": "Boltslinger", - "archetype_req": 8, + "archetype": "Boltslinger", + "archetype_req": 8, "base_abil": "Arrow Storm", - "parents": ["Precise Shot", "Escape Artist"], - "dependencies": [], - "blockers": ["Phantom Ray"], - "cost": 2, - "display": { "row": 33, "col": 0, "icon": "node_3"}, + "parents": [ + "Precise Shot", + "Escape Artist" + ], + "dependencies": [], + "blockers": [ + "Phantom Ray" + ], + "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 } + "base_spell": 1, + "target_part": "Total Damage", + "hits": { + "Single Stream": 2 + } } ] }, @@ -689,69 +962,103 @@ const atrees = { "display_name": "Geyser Stomp", "desc": "Fierce Stomp will create geysers, dealing more damage and vertical knockback.", "base_abil": "Escape", - "parents": ["Shrapnel Bomb"], - "dependencies": ["Fierce Stomp"], + "parents": [ + "Shrapnel Bomb" + ], + "dependencies": [ + "Fierce Stomp" + ], "blockers": [], - "cost": 2, - "display": { "row": 37, "col": 1, "icon": "node_1"}, + "cost": 2, + "display": { + "row": 37, + "col": 1, + "icon": "node_1" + }, "properties": {}, "effects": [ - { + { "type": "add_spell_prop", - "base_spell": 2, + "base_spell": 2, "target_part": "Geyser Stomp", - "multipliers": [0, 0, 0, 50, 0, 0] + "multipliers": [ + 0, + 0, + 0, + 50, + 0, + 0 + ] }, - { + { "type": "add_spell_prop", - "base_spell": 2, + "base_spell": 2, "target_part": "Stomp Damage", - "hits": { "Geyser Stomp": 1 } + "hits": { + "Geyser Stomp": 1 + } }, { "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Fierce Stomp", - "name": "aoe", - "value": 1 - }] + "bonuses": [ + { + "type": "prop", + "abil": "Fierce Stomp", + "name": "aoe", + "value": 1 + } + ] } ] }, { "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": ["Cheaper Arrow Shield"], - "dependencies": ["Arrow Storm"], + "archetype": "Sharpshooter", + "archetype_req": 10, + "parents": [ + "Cheaper Arrow Shield" + ], + "dependencies": [ + "Arrow Storm" + ], "blockers": [], - "cost": 2, + "cost": 2, "display": { - "row": 37, - "col": 4, - "icon": "node_3" + "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] + "multipliers": [ + 20, + 0, + 0, + 5, + 0, + 0 + ] }, { "name": "DPS", - "hits": { "Single Arrow": 20 } + "hits": { + "Single Arrow": 20 + } }, - { + { "name": "Total Damage", - "hits": { "DPS": 7 } + "hits": { + "DPS": 7 + } } ] } @@ -761,65 +1068,100 @@ const atrees = { "display_name": "Grape Bomb", "desc": "Arrow bomb will throw 3 additional smaller bombs when exploding.", "base_abil": "Arrow Bomb", - "parents": ["Cheaper Escape (2)"], - "dependencies": [], + "parents": [ + "Cheaper Escape (2)" + ], + "dependencies": [], "blockers": [], - "cost": 2, - "display": { "row": 37, "col": 7, "icon": "node_2"}, + "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] + "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 } + "base_spell": 3, + "target_part": "Total Damage", + "hits": { + "Grape Bomb": 3 + } } ] }, { "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, + "archetype": "Trapper", + "archetype_req": 0, "base_abil": "Basaltic Trap", - "parents": ["Grape Bomb"], - "dependencies": ["Basaltic Trap"], + "parents": [ + "Grape Bomb" + ], + "dependencies": [ + "Basaltic Trap" + ], "blockers": [], - "cost": 2, - "display": {"row": 38, "col": 6, "icon": "node_1"}, + "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] + "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 } + "base_spell": 7, + "target_part": "DPS", + "hits": { + "Line Damage Tick": 5 + } } ] }, { "display_name": "Snow Storm", "desc": "Enemies near you will be slowed down.", - "parents": ["Geyser Stomp", "More Focus (2)"], - "dependencies": [], + "parents": [ + "Geyser Stomp", + "More Focus (2)" + ], + "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { "row": 39, "col": 2, @@ -835,29 +1177,46 @@ const atrees = { "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, + "archetype_req": 11, "base_abil": "Arrow Shield", - "parents": ["Snow Storm"], - "dependencies": ["Guardian Angels"], + "parents": [ + "Snow Storm" + ], + "dependencies": [ + "Guardian Angels" + ], "blockers": [], - "cost": 2, - "display": { "row": 40, "col": 1, "icon": "node_3"}, + "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] + "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 } + "base_spell": 4, + "target_part": "Single Bow", + "hits": { + "Single Arrow": 5 + } } ] }, @@ -865,21 +1224,37 @@ const atrees = { "display_name": "Minefield", "desc": "Allow you to place +6 Traps, but with reduced damage and range.", "archetype": "Trapper", - "archetype_req": 10, + "archetype_req": 10, "base_abil": "Basaltic Trap", - "parents": ["Grape Bomb", "Cheaper Arrow Bomb (2)"], - "dependencies": ["Basaltic Trap"], + "parents": [ + "Grape Bomb", + "Cheaper Arrow Bomb (2)" + ], + "dependencies": [ + "Basaltic Trap" + ], "blockers": [], - "cost": 2, - "display": {"row": 40, "col": 7, "icon": "node_3"}, + "cost": 2, + "display": { + "row": 40, + "col": 7, + "icon": "node_3" + }, "properties": {}, "effects": [ - { + { "type": "add_spell_prop", "base_spell": 7, - "target_part": "Trap Damage", + "target_part": "Trap Damage", "cost": 0, - "multipliers": [-80, 0, 0, 0, 0, 0] + "multipliers": [ + -80, + 0, + 0, + 0, + 0, + 0 + ] }, { "type": "raw_stat", @@ -904,28 +1279,49 @@ const atrees = { "display_name": "Bow Proficiency I", "desc": "Improve your Main Attack's damage and range when using a bow.", "base_abil": 999, - "parents": ["Arrow Bomb"], - "dependencies": [], + "parents": [ + "Arrow Bomb" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": { "row": 2, "col": 4, "icon": "node_0"}, + "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] - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 0, + "target_part": "Single Shot", + "multipliers": [ + 5, + 0, + 0, + 0, + 0, + 0 + ] + } + ] }, { "display_name": "Cheaper Arrow Bomb", "desc": "Reduce the Mana cost of Arrow Bomb.", "base_abil": "Arrow Bomb", - "parents": ["Bow Proficiency I"], - "dependencies": [], + "parents": [ + "Bow Proficiency I" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 2, "col": 6, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 2, + "col": 6, + "icon": "node_0" + }, "properties": {}, "effects": [ { @@ -933,17 +1329,25 @@ const atrees = { "base_spell": 3, "cost": -10 } - ] + ] }, { "display_name": "Cheaper Arrow Storm", "desc": "Reduce the Mana cost of Arrow Storm.", "base_abil": "Arrow Storm", - "parents": ["Grappling Hook", "Windstorm", "Focus"], - "dependencies": [], + "parents": [ + "Grappling Hook", + "Windstorm", + "Focus" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 21, "col": 3, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 21, + "col": 3, + "icon": "node_0" + }, "properties": {}, "effects": [ { @@ -951,34 +1355,45 @@ const atrees = { "base_spell": 1, "cost": -5 } - ] + ] }, { "display_name": "Cheaper Escape", "desc": "Reduce the Mana cost of Escape.", "base_abil": "Escape", - "parents": ["Arrow Storm", "Arrow Shield"], - "dependencies": [], + "parents": [ + "Arrow Storm", + "Arrow Shield" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": { "row": 9, "col": 4, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 9, + "col": 4, + "icon": "node_0" + }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 2, - "cost": -5 - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 2, + "cost": -5 + } + ] }, { "display_name": "Earth Mastery", "base_abil": 998, "desc": "Increases your base damage from all Earth attacks", - "archetype": "Trapper", - "archetype_req": 0, - "parents": ["Arrow Shield"], - "dependencies": [], + "archetype": "Trapper", + "archetype_req": 0, + "parents": [ + "Arrow Shield" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 13, "col": 8, @@ -1006,18 +1421,22 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Thunder Mastery", "base_abil": 998, "desc": "Increases your base damage from all Thunder attacks", - "archetype": "Boltslinger", - "archetype_req": 0, - "parents": ["Arrow Storm", "Fire Mastery", "Cheaper Escape"], - "dependencies": [], + "archetype": "Boltslinger", + "archetype_req": 0, + "parents": [ + "Arrow Storm", + "Fire Mastery", + "Cheaper Escape" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 13, "col": 2, @@ -1045,18 +1464,22 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Water Mastery", "base_abil": 998, "desc": "Increases your base damage from all Water attacks", - "archetype": "Sharpshooter", - "archetype_req": 0, - "parents": ["Cheaper Escape", "Thunder Mastery", "Fire Mastery"], - "dependencies": [], + "archetype": "Sharpshooter", + "archetype_req": 0, + "parents": [ + "Cheaper Escape", + "Thunder Mastery", + "Fire Mastery" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 14, "col": 4, @@ -1084,18 +1507,20 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Air Mastery", "base_abil": 998, "desc": "Increases base damage from all Air attacks", - "archetype": "Boltslinger", - "archetype_req": 0, - "parents": ["Arrow Storm"], - "dependencies": [], + "archetype": "Boltslinger", + "archetype_req": 0, + "parents": [ + "Arrow Storm" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 13, "col": 0, @@ -1123,18 +1548,22 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Fire Mastery", "base_abil": 998, "desc": "Increases base damage from all Fire attacks", - "archetype": "Sharpshooter", - "archetype_req": 0, - "parents": ["Thunder Mastery", "Arrow Shield", "Cheaper Escape"], - "dependencies": [], + "archetype": "Sharpshooter", + "archetype_req": 0, + "parents": [ + "Thunder Mastery", + "Arrow Shield", + "Cheaper Escape" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 13, "col": 6, @@ -1162,16 +1591,21 @@ const atrees = { } ] } - ] + ] }, { "display_name": "More Shields", "desc": "Give +2 charges to Arrow Shield.", "base_abil": "Arrow Shield", - "parents": ["Grappling Hook", "Basaltic Trap"], - "dependencies": ["Arrow Shield"], + "parents": [ + "Grappling Hook", + "Basaltic Trap" + ], + "dependencies": [ + "Arrow Shield" + ], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 21, "col": 7, @@ -1183,7 +1617,10 @@ const atrees = { "type": "add_spell_prop", "base_spell": 4, "target_part": "Total Damage", - "hits": { "Shield Damage": 2, "Single Bow": 2 } + "hits": { + "Shield Damage": 2, + "Single Bow": 2 + } }, { "type": "raw_stat", @@ -1201,12 +1638,16 @@ const atrees = { { "display_name": "Stormy Feet", "desc": "Windy Feet will last longer and add more speed.", - "archetype": "Boltslinger", + "archetype": "Boltslinger", "base_abil": "Escape", - "parents": ["Windstorm"], - "dependencies": ["Windy Feet"], + "parents": [ + "Windstorm" + ], + "dependencies": [ + "Windy Feet" + ], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 23, "col": 1, @@ -1221,59 +1662,85 @@ const atrees = { "display_name": "Refined Gunpowder", "desc": "Increase the damage of Arrow Bomb.", "base_abil": "Arrow Bomb", - "parents": ["Windstorm", "Traveler"], - "dependencies": [], + "parents": [ + "Windstorm", + "Traveler" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "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] - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "target_part": "Arrow Bomb", + "multipliers": [ + 50, + 0, + 0, + 0, + 0, + 0 + ] + } + ] }, { "display_name": "More Traps", "desc": "Increase the maximum amount of active Traps you can have by +2.", "archetype": "Trapper", - "archetype_req": 0, + "archetype_req": 0, "base_abil": "Basaltic Trap", - "parents": ["Bouncing Bomb"], - "dependencies": ["Basaltic Trap"], + "parents": [ + "Bouncing Bomb" + ], + "dependencies": [ + "Basaltic Trap" + ], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 26, "col": 8, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Basaltic Trap", - "name": "traps", - "value": 2 - }] - }] + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "prop", + "abil": "Basaltic Trap", + "name": "traps", + "value": 2 + } + ] + } + ] }, { "display_name": "Better Arrow Shield", "desc": "Arrow Shield will gain additional area of effect, knockback and damage.", - "archetype": "Sharpshooter", - "archetype_req": 0, + "archetype": "Sharpshooter", + "archetype_req": 0, "base_abil": "Arrow Shield", - "parents": ["Mana Trap", "Shocking Bomb", "Twain's Arc"], - "dependencies": ["Arrow Shield"], + "parents": [ + "Mana Trap", + "Shocking Bomb", + "Twain's Arc" + ], + "dependencies": [ + "Arrow Shield" + ], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 28, "col": 6, @@ -1283,20 +1750,29 @@ const atrees = { "effects": [ { "type": "add_spell_prop", - "base_spell": 3, + "base_spell": 3, "target_part": "Arrow Shield", "behavior": "modify", - "multipliers": [40, 0, 0, 0, 0, 0] + "multipliers": [ + 40, + 0, + 0, + 0, + 0, + 0 + ] }, { "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Arrow Shield", - "behavior": "modify", - "name": "aoe", - "value": 1 - }] + "bonuses": [ + { + "type": "prop", + "abil": "Arrow Shield", + "behavior": "modify", + "name": "aoe", + "value": 1 + } + ] } ] }, @@ -1304,121 +1780,162 @@ const atrees = { "display_name": "Better Leap", "desc": "Reduce leap's cooldown by 1s.", "archetype": "Boltslinger", - "archetype_req": 0, + "archetype_req": 0, "base_abil": "Leap", - "parents": ["Leap", "Homing Shots"], - "dependencies": ["Leap"], + "parents": [ + "Leap", + "Homing Shots" + ], + "dependencies": [ + "Leap" + ], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 29, "col": 1, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Leap", - "name": "cooldown", - "value": -1 - }] - }] + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "prop", + "abil": "Leap", + "name": "cooldown", + "value": -1 + } + ] + } + ] }, { "display_name": "Better Guardian Angels", "desc": "Your Guardian Angels can shoot +4 arrows before disappearing.", "archetype": "Boltslinger", - "archetype_req": 0, + "archetype_req": 0, "base_abil": "Arrow Shield", - "parents": ["Escape Artist", "Homing Shots"], - "dependencies": ["Guardian Angels"], + "parents": [ + "Escape Artist", + "Homing Shots" + ], + "dependencies": [ + "Guardian Angels" + ], "blockers": [], - "cost": 1, + "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 } - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 4, + "target_part": "Single Bow", + "hits": { + "Single Arrow": 4 + } + } + ] }, { "display_name": "Cheaper Arrow Storm (2)", "desc": "Reduce the Mana cost of Arrow Storm.", "base_abil": "Arrow Storm", - "parents": ["Initiator", "Mana Trap"], - "dependencies": [], + "parents": [ + "Initiator", + "Mana Trap" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 31, "col": 8, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 1, - "cost": -5 - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 1, + "cost": -5 + } + ] }, { "display_name": "Precise Shot", "desc": "+30% Critical Hit Damage", - "parents": ["Better Guardian Angels", "Cheaper Arrow Shield", "Arrow Hurricane"], - "dependencies": [], + "parents": [ + "Better Guardian Angels", + "Cheaper Arrow Shield", + "Arrow Hurricane" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 33, "col": 2, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ - "type": "stat", - "name": "critDamPct", - "value": 30 - }] - }] + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "stat", + "name": "critDamPct", + "value": 30 + } + ] + } + ] }, { "display_name": "Cheaper Arrow Shield", "desc": "Reduce the Mana cost of Arrow Shield.", "base_abil": "Arrow Shield", - "parents": ["Precise Shot", "Initiator"], - "dependencies": [], + "parents": [ + "Precise Shot", + "Initiator" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 33, "col": 4, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 4, - "cost": -5 - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 4, + "cost": -5 + } + ] }, { "display_name": "Rocket Jump", "desc": "Arrow Bomb's self-damage will knockback you farther away.", "base_abil": "Arrow Bomb", - "parents": ["Cheaper Arrow Storm (2)", "Initiator"], - "dependencies": ["Arrow Bomb"], + "parents": [ + "Cheaper Arrow Storm (2)", + "Initiator" + ], + "dependencies": [ + "Arrow Bomb" + ], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 33, "col": 6, @@ -1431,73 +1948,93 @@ const atrees = { "display_name": "Cheaper Escape (2)", "desc": "Reduce the Mana cost of Escape.", "base_abil": "Escape", - "parents": ["Call of the Hound", "Decimator"], - "dependencies": [], + "parents": [ + "Call of the Hound", + "Decimator" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 34, "col": 7, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 2, - "cost": -5 - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 2, + "cost": -5 + } + ] }, { "display_name": "Stronger Hook", "desc": "Increase your Grappling Hook's range, speed and strength.", - "archetype": "Trapper", - "archetype_req": 5, + "archetype": "Trapper", + "archetype_req": 5, "base_abil": "Escape", - "parents": ["Cheaper Escape (2)"], - "dependencies": ["Grappling Hook"], + "parents": [ + "Cheaper Escape (2)" + ], + "dependencies": [ + "Grappling Hook" + ], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 35, "col": 8, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Grappling Hook", - "name": "range", - "value": 8 - }] - }] + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "prop", + "abil": "Grappling Hook", + "name": "range", + "value": 8 + } + ] + } + ] }, { "display_name": "Cheaper Arrow Bomb (2)", "desc": "Reduce the Mana cost of Arrow Bomb.", "base_abil": "Arrow Bomb", - "parents": ["More Focus (2)", "Minefield"], - "dependencies": [], + "parents": [ + "More Focus (2)", + "Minefield" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 40, "col": 5, "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 3, - "cost": -5 - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "cost": -5 + } + ] }, { "display_name": "Bouncing Bomb", "desc": "Arrow Bomb will bounce once when hitting a block or enemy", "base_abil": "Arrow Bomb", - "parents": ["More Shields"], + "parents": [ + "More Shields" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -1512,9 +2049,12 @@ const atrees = { { "display_name": "Homing Shots", "desc": "Your Main Attack arrows will follow nearby enemies and not be affected by gravity", - "archetype": "Sharpshooter", + "archetype": "Sharpshooter", "base_abil": 999, - "parents": ["Leap", "Shocking Bomb"], + "parents": [ + "Leap", + "Shocking Bomb" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -1532,7 +2072,10 @@ const atrees = { "archetype": "Boltslinger", "archetype_req": 8, "base_abil": "Arrow Bomb", - "parents": ["Arrow Hurricane", "Precise Shot"], + "parents": [ + "Arrow Hurricane", + "Precise Shot" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -1542,19 +2085,30 @@ const atrees = { "icon": "node_1" }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Shrapnel Bomblet", - "multipliers": [40, 0, 0, 0, 20, 0] - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "target_part": "Shrapnel Bomblet", + "multipliers": [ + 40, + 0, + 0, + 0, + 20, + 0 + ] + } + ] }, { "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": ["Geyser Stomp"], + "parents": [ + "Geyser Stomp" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -1572,9 +2126,13 @@ const atrees = { "archetype": "Boltslinger", "archetype_req": 0, "base_abil": 999, - "parents": ["Escape"], + "parents": [ + "Escape" + ], "dependencies": [], - "blockers": ["Power Shots"], + "blockers": [ + "Power Shots" + ], "cost": 1, "display": { "row": 7, @@ -1587,13 +2145,22 @@ const atrees = { "type": "add_spell_prop", "base_spell": 0, "target_part": "Single Shot", - "multipliers": [-30, 0, 0, 0, 0, 0] + "multipliers": [ + -30, + 0, + 0, + 0, + 0, + 0 + ] }, { "type": "add_spell_prop", "base_spell": 0, "target_part": "Total Damage", - "hits": { "Single Shot": 2 }, + "hits": { + "Single Shot": 2 + }, "display": "Total Damage" } ] @@ -1604,8 +2171,13 @@ const atrees = { "archetype": "Boltslinger", "archetype_req": 0, "base_abil": 999, - "parents": ["Arrow Rain", "Frenzy"], - "dependencies": ["Double Shots"], + "parents": [ + "Arrow Rain", + "Frenzy" + ], + "dependencies": [ + "Double Shots" + ], "blockers": [], "cost": 1, "display": { @@ -1619,13 +2191,22 @@ const atrees = { "type": "add_spell_prop", "base_spell": 0, "target_part": "Single Shot", - "multipliers": [-20, 0, 0, 0, 0, 0] + "multipliers": [ + -20, + 0, + 0, + 0, + 0, + 0 + ] }, { "type": "add_spell_prop", "base_spell": 0, "target_part": "Total Damage", - "hits": { "Single Shot": 1 }, + "hits": { + "Single Shot": 1 + }, "display": "Total Damage" } ] @@ -1636,9 +2217,13 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "base_abil": 999, - "parents": ["Escape"], + "parents": [ + "Escape" + ], "dependencies": [], - "blockers": ["Double Shots"], + "blockers": [ + "Double Shots" + ], "cost": 1, "display": { "row": 7, @@ -1653,7 +2238,9 @@ const atrees = { "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": ["Phantom Ray"], + "parents": [ + "Phantom Ray" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -1663,17 +2250,21 @@ const atrees = { "icon": "node_3" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": true, - "slider_name": "Focus", - "output": { - "type": "stat", - "name": "damMult.Focus" - }, - "scaling": [40], - "slider_max": 3 - }] + "effects": [ + { + "type": "stat_scaling", + "slider": true, + "slider_name": "Focus", + "output": { + "type": "stat", + "name": "damMult.Focus" + }, + "scaling": [ + 40 + ], + "slider_max": 3 + } + ] }, { "display_name": "More Focus", @@ -1681,8 +2272,13 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "base_abil": "Focus", - "parents": ["Cheaper Arrow Storm", "Grappling Hook"], - "dependencies": ["Focus"], + "parents": [ + "Cheaper Arrow Storm", + "Grappling Hook" + ], + "dependencies": [ + "Focus" + ], "blockers": [], "cost": 1, "display": { @@ -1691,17 +2287,21 @@ const atrees = { "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": true, - "slider_name": "Focus", - "slider_max": 2, - "output": { - "type": "stat", - "name": "damMult.Focus" - }, - "scaling": [-5] - }] + "effects": [ + { + "type": "stat_scaling", + "slider": true, + "slider_name": "Focus", + "slider_max": 2, + "output": { + "type": "stat", + "name": "damMult.Focus" + }, + "scaling": [ + -5 + ] + } + ] }, { "display_name": "More Focus (2)", @@ -1709,8 +2309,13 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "base_abil": "Focus", - "parents": ["Crepuscular Ray", "Snow Storm"], - "dependencies": ["Focus"], + "parents": [ + "Crepuscular Ray", + "Snow Storm" + ], + "dependencies": [ + "Focus" + ], "blockers": [], "cost": 1, "display": { @@ -1719,22 +2324,29 @@ const atrees = { "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": true, - "slider_name": "Focus", - "slider_max": 2, - "output": { - "type": "stat", - "name": "damMult.Focus" - }, - "scaling": [-5] - }] + "effects": [ + { + "type": "stat_scaling", + "slider": true, + "slider_name": "Focus", + "slider_max": 2, + "output": { + "type": "stat", + "name": "damMult.Focus" + }, + "scaling": [ + -5 + ] + } + ] }, { "display_name": "Traveler", "desc": "For every 1% Walk Speed you have from items, gain +1 Raw Spell Damage (Max 100)", - "parents": ["Refined Gunpowder", "Twain's Arc"], + "parents": [ + "Refined Gunpowder", + "Twain's Arc" + ], "dependencies": [], "blockers": [], "cost": 1, @@ -1744,20 +2356,26 @@ const atrees = { "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": false, - "inputs": [{ - "type": "stat", - "name": "spd" - }], - "output": { - "type": "stat", - "name": "sdRaw" - }, - "scaling": [1], - "max": 100 - }] + "effects": [ + { + "type": "stat_scaling", + "slider": false, + "inputs": [ + { + "type": "stat", + "name": "spd" + } + ], + "output": { + "type": "stat", + "name": "sdRaw" + }, + "scaling": [ + 1 + ], + "max": 100 + } + ] }, { "display_name": "Patient Hunter", @@ -1765,8 +2383,12 @@ const atrees = { "archetype": "Trapper", "archetype_req": 0, "base_abil": "Basaltic Trap", - "parents": ["More Shields"], - "dependencies": ["Basaltic Trap"], + "parents": [ + "More Shields" + ], + "dependencies": [ + "Basaltic Trap" + ], "blockers": [], "cost": 2, "display": { @@ -1777,18 +2399,22 @@ const atrees = { "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] - }] + "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 + ] + } + ] }, { "display_name": "Stronger Patient Hunter", @@ -1796,8 +2422,12 @@ const atrees = { "archetype": "Trapper", "archetype_req": 0, "base_abil": "Basaltic Trap", - "parents": ["Grape Bomb"], - "dependencies": ["Patient Hunter"], + "parents": [ + "Grape Bomb" + ], + "dependencies": [ + "Patient Hunter" + ], "blockers": [], "cost": 1, "display": { @@ -1815,12 +2445,14 @@ const atrees = { }, { "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Patient Hunter", - "name": "max", - "value": 80 - }] + "bonuses": [ + { + "type": "prop", + "abil": "Patient Hunter", + "name": "max", + "value": 80 + } + ] } ] }, @@ -1829,7 +2461,10 @@ const atrees = { "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": ["Triple Shots", "Nimble String"], + "parents": [ + "Triple Shots", + "Nimble String" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -1839,25 +2474,38 @@ const atrees = { "icon": "node_1" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": true, - "slider_name": "Hits dealt", - "output": { - "type": "stat", - "name": "spd" - }, - "scaling": [6], - "max": 160 - }] + "effects": [ + { + "type": "stat_scaling", + "slider": true, + "slider_name": "Hits dealt", + "output": { + "type": "stat", + "name": "spd" + }, + "scaling": [ + 6 + ], + "max": 160 + } + ] }, { "display_name": "Phantom Ray", "desc": "Condense Arrow Storm into a single ray that damages enemies 10 times per second", "base_abil": "Arrow Storm", - "parents": ["Water Mastery", "Fire Creep"], - "dependencies": ["Arrow Storm"], - "blockers": ["Windstorm", "Nimble String", "Arrow Hurricane"], + "parents": [ + "Water Mastery", + "Fire Creep" + ], + "dependencies": [ + "Arrow Storm" + ], + "blockers": [ + "Windstorm", + "Nimble String", + "Arrow Hurricane" + ], "cost": 2, "display": { "row": 16, @@ -1866,24 +2514,31 @@ const atrees = { }, "properties": {}, "effects": [ - { + { "type": "replace_spell", "name": "Phantom Ray", - "base_spell": 1, - "spell_type": "damage", + "base_spell": 1, + "spell_type": "damage", "scaling": "spell", - "display": "Total Damage", + "display": "Total Damage", "parts": [ - { + { "name": "Single Arrow", "type": "damage", - "multipliers": [25, 0, 5, 0, 0, 0] + "multipliers": [ + 25, + 0, + 5, + 0, + 0, + 0 + ] }, - { + { "name": "Total Damage", "type": "total", "hits": { - "Single Arrow": 16 + "Single Arrow": 16 } } ] @@ -1899,8 +2554,13 @@ const atrees = { "display_name": "Arrow Rain", "desc": "When Arrow Shield loses its last charge, unleash 150 arrows raining down on enemies", "base_abil": "Arrow Shield", - "parents": ["Nimble String", "Air Mastery"], - "dependencies": ["Arrow Shield"], + "parents": [ + "Nimble String", + "Air Mastery" + ], + "dependencies": [ + "Arrow Shield" + ], "blockers": [], "cost": 2, "display": { @@ -1914,13 +2574,22 @@ const atrees = { "type": "add_spell_prop", "base_spell": 4, "target_part": "Arrow Rain (Per Arrow)", - "multipliers": [80, 0, 0, 0, 0, 60] + "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 } + "hits": { + "Arrow Rain (Per Arrow)": 150 + } } ] }, @@ -1930,8 +2599,13 @@ const atrees = { "archetype": "Sharpshooter", "archetype_req": 0, "base_abil": "Arrow Storm", - "parents": ["Cheaper Arrow Shield", "Cheaper Escape (2)"], - "dependencies": ["Phantom Ray"], + "parents": [ + "Cheaper Arrow Shield", + "Cheaper Escape (2)" + ], + "dependencies": [ + "Phantom Ray" + ], "blockers": [], "cost": 2, "display": { @@ -1940,27 +2614,31 @@ const atrees = { "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] - }] + "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 + ] + } + ] } ], "Warrior": [ { "display_name": "Bash", "desc": "Violently bash the ground, dealing high damage in a large area", - "parents": [], - "dependencies": [], + "parents": [], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 0, "col": 4, @@ -1983,7 +2661,14 @@ const atrees = { { "name": "Single Hit", "type": "damage", - "multipliers": [130, 20, 0, 0, 0, 0] + "multipliers": [ + 130, + 20, + 0, + 0, + 0, + 0 + ] }, { "name": "Total Damage", @@ -1994,16 +2679,18 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Spear Proficiency 1", "desc": "Improve your Main Attack's damage and range w/ spear", "base_abil": 999, - "parents": ["Bash"], - "dependencies": [], + "parents": [ + "Bash" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 2, "col": 4, @@ -2012,46 +2699,56 @@ const atrees = { "properties": { "melee_range": 1 }, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 0, - "target_part": "melee", - "multipliers": [5, 0, 0, 0, 0, 0] - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 0, + "target_part": "melee", + "multipliers": [ + 5, + 0, + 0, + 0, + 0, + 0 + ] + } + ] }, - { "display_name": "Cheaper Bash", "desc": "Reduce the Mana cost of Bash", "base_abil": "Bash", - "parents": ["Spear Proficiency 1"], - "dependencies": [], + "parents": [ + "Spear Proficiency 1" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 2, "col": 2, "icon": "node_0" }, - "properties": { - - }, + "properties": {}, "effects": [ { "type": "add_spell_prop", "base_spell": 1, "cost": -10 } - ] + ] }, { "display_name": "Double Bash", "desc": "Bash will hit a second time at a farther range", - "parents": ["Spear Proficiency 1"], + "parents": [ + "Spear Proficiency 1" + ], "base_abil": "Bash", - "dependencies": [], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 4, "col": 4, @@ -2075,44 +2772,55 @@ const atrees = { "base_spell": 1, "target_part": "Single Hit", "cost": 0, - "multipliers": [-50, 0, 0, 0, 0, 0] + "multipliers": [ + -50, + 0, + 0, + 0, + 0, + 0 + ] } - ] + ] }, - { "display_name": "Charge", "desc": "Charge forward at high speed (hold shift to cancel)", - "parents": ["Double Bash"], - "dependencies": [], + "parents": [ + "Double Bash" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "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": [] - }] + "effects": [ + { + "type": "replace_spell", + "name": "Charge", + "cost": 25, + "base_spell": 2, + "spell_type": "damage", + "scaling": "spell", + "display": "", + "parts": [] + } + ] }, - { "display_name": "Heavy Impact", "desc": "After using Charge, violently crash down into the ground and deal damage", "base_abil": "Charge", - "parents": ["Uppercut"], - "dependencies": [], + "parents": [ + "Uppercut" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 9, "col": 1, @@ -2127,34 +2835,45 @@ const atrees = { "base_spell": 2, "target_part": "Heavy Impact", "cost": 0, - "multipliers": [100, 0, 0, 0, 0, 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 } + "hits": { + "Heavy Impact": 1 + } } - ] + ] }, - { "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": ["Charge"], - "dependencies": [], - "blockers": ["Tougher Skin"], - "cost": 1, + "archetype": "Fallen", + "archetype_req": 0, + "parents": [ + "Charge" + ], + "dependencies": [], + "blockers": [ + "Tougher Skin" + ], + "cost": 1, "display": { "row": 6, "col": 2, "icon": "node_0" }, - "properties": { - }, + "properties": {}, "effects": [ { "type": "stat_scaling", @@ -2173,28 +2892,33 @@ const atrees = { "type": "stat", "name": "spd" }, - "scaling": [2, 2], + "scaling": [ + 2, + 2 + ], "max": 20 } - ] + ] }, - { "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": ["Charge"], - "dependencies": [], - "blockers": ["Vehement"], - "cost": 1, + "archetype": "Paladin", + "archetype_req": 0, + "parents": [ + "Charge" + ], + "dependencies": [], + "blockers": [ + "Vehement" + ], + "cost": 1, "display": { "row": 6, "col": 6, "icon": "node_0" }, - "properties": { - }, + "properties": {}, "effects": [ { "type": "raw_stat", @@ -2223,19 +2947,24 @@ const atrees = { "type": "stat", "name": "hpBonus" }, - "scaling": [10, 10], + "scaling": [ + 10, + 10 + ], "max": 100 } - ] + ] }, - { "display_name": "Uppercut", "desc": "Rocket enemies in the air and deal massive damage", - "parents": ["Vehement", "Cheaper Charge"], - "dependencies": [], + "parents": [ + "Vehement", + "Cheaper Charge" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 8, "col": 2, @@ -2257,48 +2986,60 @@ const atrees = { "parts": [ { "name": "Uppercut", - "multipliers": [200, 40, 40, 0, 0, 0] + "multipliers": [ + 200, + 40, + 40, + 0, + 0, + 0 + ] }, { "name": "Total Damage", - "hits": { "Uppercut": 1 } + "hits": { + "Uppercut": 1 + } } ] } - ] + ] }, - { "display_name": "Cheaper Charge", "desc": "Reduce the Mana cost of Charge", "base_abil": "Charge", - "parents": ["Uppercut", "War Scream"], - "dependencies": [], + "parents": [ + "Uppercut", + "War Scream" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 8, "col": 4, "icon": "node_0" }, - "properties": { - }, + "properties": {}, "effects": [ { "type": "add_spell_prop", "base_spell": 2, "cost": -5 } - ] + ] }, - { "display_name": "War Scream", "desc": "Emit a terrorizing roar that deals damage, pull nearby enemies, and add damage resistance to yourself and allies", - "parents": ["Tougher Skin", "Cheaper Charge"], - "dependencies": [], + "parents": [ + "Tougher Skin", + "Cheaper Charge" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 8, "col": 6, @@ -2321,1814 +3062,40 @@ const atrees = { "parts": [ { "name": "War Scream", - "multipliers": [50, 0, 0, 0, 50, 0] + "multipliers": [ + 50, + 0, + 0, + 0, + 50, + 0 + ] }, { "name": "Total Damage", - "hits": { "War Scream": 1 } + "hits": { + "War Scream": 1 + } } ] } - ] + ] }, - { "display_name": "Earth Mastery", "base_abil": 998, "desc": "Increases base damage from all Earth attacks", - "archetype": "Fallen", - "archetype_req": 0, - "parents": ["Uppercut"], - "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.66666666666666666666666666666 - } - }, - { - "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", - "desc": "Reduce Blood Pact's health cost. (0.3% health per mana)", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "Blood Pact", - "parents": ["Blood Pact"], - "dependencies": ["Blood Pact"], - "blockers": [], - "cost": 1, - "display": { - "row": 35, - "col": 2, - "icon": "node_1" - }, - "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ "type": "prop", "abil": "Blood Pact", "name": "health_cost", "value": -0.3}] - }] - }, - - { - "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": [ - { - "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"], + "archetype": "Fallen", + "archetype_req": 0, + "parents": [ + "Uppercut" + ], "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] - } - ] - } - ] - }, - { - "display_name": "Shooting Star", - "desc": "Drastically increase the speed of your Meteor ability.", - "base_abil": 3, - "parents": ["Wand Proficiency I"], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { - "row": 4, - "col": 4, - "icon": "node_1" - }, - "properties": {}, - "effects": [] - }, - { - "display_name": "Wand Proficiency I", - "desc": "Improve your Main Attack's damage and range when using a wand.", - "base_abil": 999, - "parents": ["Meteor"], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": { "row": 2, "col": 4, "icon": "node_0"}, - "properties": {}, - "effects": [ - { - "type": "raw_stat", - "bonuses": [ - { - "type": "stat", - "name": "mdPct", - "value": 5 - } - ] - } - ] - }, - { - "display_name": "Cheaper Meteor", - "desc": "Reduce the Mana cost of Meteor.", - "base_abil": "Meteor", - "parents": ["Wand Proficiency I"], - "dependencies": [], - "blockers": [], - "cost": 1, - "display": {"row": 2, "col": 6, "icon": "node_0"}, - "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 3, - "cost": -10 - }] - }, - { - "display_name": "Earth Mastery", - "base_abil": 998, - "desc": "Increases your base damage from all Earth attacks", - "archetype": "Arcanist", - "archetype_req": 0, - "parents": ["Ice Snake"], - "dependencies": [], - "blockers": [], - "cost": 1, "display": { "row": 10, - "col": 8, + "col": 0, "icon": "node_0" }, "properties": {}, @@ -4153,18 +3120,22 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Thunder Mastery", "base_abil": 998, - "desc": "Increases your base damage from all Thunder attacks", - "archetype": "Riftwalker", - "archetype_req": 0, - "parents": ["Heal", "Cheaper Teleport"], - "dependencies": [], + "desc": "Increases base damage from all Thunder attacks", + "archetype": "Fallen", + "archetype_req": 0, + "parents": [ + "Uppercut", + "Air Mastery", + "Cheaper Charge" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 10, "col": 2, @@ -4192,18 +3163,22 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Water Mastery", "base_abil": 998, - "desc": "Increases your base damage from all Water attacks", - "archetype": "Light Bender", - "archetype_req": 0, - "parents": ["Cheaper Teleport", "Thunder Mastery"], - "dependencies": [], + "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, + "cost": 1, "display": { "row": 11, "col": 4, @@ -4231,18 +3206,2298 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Air Mastery", "base_abil": 998, "desc": "Increases base damage from all Air attacks", - "archetype": "Riftwalker", - "archetype_req": 0, - "parents": ["Heal"], - "dependencies": [], + "archetype": "Battle Monk", + "archetype_req": 0, + "parents": [ + "War Scream", + "Thunder Mastery", + "Cheaper Charge" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "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", + "desc": "Reduce Blood Pact's health cost. (0.3% health per mana)", + "archetype": "Fallen", + "archetype_req": 0, + "base_abil": "Blood Pact", + "parents": [ + "Blood Pact" + ], + "dependencies": [ + "Blood Pact" + ], + "blockers": [], + "cost": 1, + "display": { + "row": 35, + "col": 2, + "icon": "node_1" + }, + "properties": {}, + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "prop", + "abil": "Blood Pact", + "name": "health_cost", + "value": -0.3 + } + ] + } + ] + }, + { + "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": [ + { + "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": 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 + ] + } + ] + } + ] + }, + { + "display_name": "Shooting Star", + "desc": "Drastically increase the speed of your Meteor ability.", + "base_abil": 3, + "parents": [ + "Wand Proficiency I" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 4, + "col": 4, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Wand Proficiency I", + "desc": "Improve your Main Attack's damage and range when using a wand.", + "base_abil": 999, + "parents": [ + "Meteor" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 2, + "col": 4, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "stat", + "name": "mdPct", + "value": 5 + } + ] + } + ] + }, + { + "display_name": "Cheaper Meteor", + "desc": "Reduce the Mana cost of Meteor.", + "base_abil": "Meteor", + "parents": [ + "Wand Proficiency I" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 2, + "col": 6, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "cost": -10 + } + ] + }, + { + "display_name": "Earth Mastery", + "base_abil": 998, + "desc": "Increases your base damage from all Earth attacks", + "archetype": "Arcanist", + "archetype_req": 0, + "parents": [ + "Ice Snake" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Thunder Mastery", + "base_abil": 998, + "desc": "Increases your base damage from all Thunder attacks", + "archetype": "Riftwalker", + "archetype_req": 0, + "parents": [ + "Heal", + "Cheaper Teleport" + ], + "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 your base damage from all Water attacks", + "archetype": "Light Bender", + "archetype_req": 0, + "parents": [ + "Cheaper Teleport", + "Thunder 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": "Riftwalker", + "archetype_req": 0, + "parents": [ + "Heal" + ], + "dependencies": [], + "blockers": [], + "cost": 1, "display": { "row": 10, "col": 0, @@ -4270,18 +5525,20 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Fire Mastery", "base_abil": 998, "desc": "Increases base damage from all Fire attacks", - "archetype": "Arcanist", - "archetype_req": 0, - "parents": ["Ice Snake"], - "dependencies": [], + "archetype": "Arcanist", + "archetype_req": 0, + "parents": [ + "Ice Snake" + ], + "dependencies": [], "blockers": [], - "cost": 1, + "cost": 1, "display": { "row": 10, "col": 6, @@ -4309,32 +5566,45 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Cheaper Teleport", "desc": "Reduce the Mana cost of Teleport.", "base_abil": "Teleport", - "parents": ["Heal", "Ice Snake"], - "dependencies": [], + "parents": [ + "Heal", + "Ice Snake" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": { "row": 8, "col": 4, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 8, + "col": 4, + "icon": "node_0" + }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 2, - "cost": -5 - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 2, + "cost": -5 + } + ] }, { "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": ["Teleport"], + "parents": [ + "Teleport" + ], "dependencies": [], - "blockers": ["Wand Proficiency II"], + "blockers": [ + "Wand Proficiency II" + ], "cost": 1, "display": { "row": 6, @@ -4342,10 +5612,11 @@ const atrees = { "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": false, - "inputs": [ + "effects": [ + { + "type": "stat_scaling", + "slider": false, + "inputs": [ { "type": "stat", "name": "sdPct" @@ -4355,13 +5626,17 @@ const atrees = { "name": "sdRaw" } ], - "output": { - "type": "stat", - "name": "mr" - }, - "scaling": [0.5, 0.5], - "max": 5 - }] + "output": { + "type": "stat", + "name": "mr" + }, + "scaling": [ + 0.5, + 0.5 + ], + "max": 5 + } + ] }, { "display_name": "Wand Proficiency II", @@ -4369,7 +5644,9 @@ const atrees = { "archetype": "Riftwalker", "archetype_req": 0, "base_abil": 999, - "parents": ["Teleport"], + "parents": [ + "Teleport" + ], "dependencies": [], "blockers": [], "cost": 1, @@ -4390,32 +5667,50 @@ const atrees = { } ] } - ] + ] }, { "display_name": "Wind Slash", "desc": "When using Teleport, slash through the air and deal damage to enemies you pierce.", "archetype": "Riftwalker", "base_abil": "Teleport", - "parents": ["Air Mastery", "Thunderstorm"], - "dependencies": ["Teleport"], + "parents": [ + "Air Mastery", + "Thunderstorm" + ], + "dependencies": [ + "Teleport" + ], "blockers": [], - "cost": 2, - "display": { "row": 12, "col": 0, "icon": "node_1"}, + "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] + "base_spell": 2, + "multipliers": [ + 50, + 0, + 0, + 0, + 0, + 50 + ] }, { "type": "add_spell_prop", "target_part": "Total Damage", - "base_spell": 2, + "base_spell": 2, "display": "Total Damage", - "hits": {"Wind Slash": 1} + "hits": { + "Wind Slash": 1 + } } ] }, @@ -4423,8 +5718,13 @@ const atrees = { "display_name": "Thunderstorm", "desc": "After casting Meteor, summon 3 lightning strikes and deal additional damage", "base_abil": "Meteor", - "parents": ["Wind Slash", "Thunder Mastery"], - "dependencies": ["Meteor"], + "parents": [ + "Wind Slash", + "Thunder Mastery" + ], + "dependencies": [ + "Meteor" + ], "blockers": [], "cost": 2, "display": { @@ -4439,14 +5739,23 @@ const atrees = { { "type": "add_spell_prop", "target_part": "Lightning Damage", - "base_spell": 3, - "multipliers": [30, 0, 15, 0, 0, 0] + "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 } + "hits": { + "Lightning Damage": 3 + } } ] }, @@ -4454,28 +5763,50 @@ const atrees = { "display_name": "Stronger Meteor", "desc": "Increase the damage of Meteor.", "base_abil": "Meteor", - "archetype": "Arcanist", - "archetype_req": 2, - "parents": ["Burning Sigil"], - "dependencies": ["Meteor"], + "archetype": "Arcanist", + "archetype_req": 2, + "parents": [ + "Burning Sigil" + ], + "dependencies": [ + "Meteor" + ], "blockers": [], - "cost": 1, - "display": { "row": 13, "col": 8, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 13, + "col": 8, + "icon": "node_0" + }, "properties": {}, "effects": [ - { + { "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Meteor Damage", + "base_spell": 3, + "target_part": "Meteor Damage", "behavior": "modify", - "multipliers": [30, 90, 0, 0, 0, 0] + "multipliers": [ + 30, + 90, + 0, + 0, + 0, + 0 + ] }, { "type": "add_spell_prop", - "base_spell": 3, + "base_spell": 3, "target_part": "Lightning Damage", "behavior": "modify", - "multipliers": [30, 90, 0, 0, 0, 0] + "multipliers": [ + 30, + 90, + 0, + 0, + 0, + 0 + ] } ] }, @@ -4483,39 +5814,55 @@ const atrees = { "display_name": "Burning Sigil", "desc": "Meteor will leave a sigil that damages enemies every 0.4s.", "base_abil": "Meteor", - "parents": ["Fire Mastery", "Earth Mastery"], - "dependencies": [], + "parents": [ + "Fire Mastery", + "Earth Mastery" + ], + "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { - "row": 12, - "col": 7, - "icon": "node_1" + "row": 12, + "col": 7, + "icon": "node_1" }, - "properties": { + "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 } - } - ] - }] + "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 + } + } + ] + } + ] }, { "display_name": "Sunshower", @@ -4523,10 +5870,16 @@ const atrees = { "archetype": "Light Bender", "archetype_req": 0, "base_abil": "Heal", - "parents": ["Water Mastery"], - "dependencies": ["Heal"], - "blockers": ["Arcane Transfer"], - "cost": 2, + "parents": [ + "Water Mastery" + ], + "dependencies": [ + "Heal" + ], + "blockers": [ + "Arcane Transfer" + ], + "cost": 2, "display": { "row": 13, "col": 4, @@ -4534,11 +5887,18 @@ const atrees = { }, "properties": {}, "effects": [ - { + { "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Sunshower Damage", - "multipliers": [70, 0, 0, 30, 0, 0] + "base_spell": 1, + "target_part": "Sunshower Damage", + "multipliers": [ + 70, + 0, + 0, + 30, + 0, + 0 + ] } ] }, @@ -4546,17 +5906,24 @@ const atrees = { "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": ["Wind Slash", "Thunderstorm"], - "dependencies": ["Ice Snake"], + "archetype_req": 3, + "parents": [ + "Wind Slash", + "Thunderstorm" + ], + "dependencies": [ + "Ice Snake" + ], "blockers": [], - "cost": 2, + "cost": 2, "display": { "row": 15, "col": 1, "icon": "node_3" }, - "properties": { "max": 5 }, + "properties": { + "max": 5 + }, "effects": [ { "type": "stat_scaling", @@ -4566,7 +5933,9 @@ const atrees = { "type": "stat", "name": "nConvBase:4.Ice Snake Damage" }, - "scaling": [20], + "scaling": [ + 20 + ], "slider_step": 1, "slider_max": 5 }, @@ -4578,7 +5947,9 @@ const atrees = { "type": "stat", "name": "wConvBase:4.Ice Snake Damage" }, - "scaling": [10] + "scaling": [ + 10 + ] } ] }, @@ -4587,7 +5958,9 @@ const atrees = { "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": ["Sunshower"], + "parents": [ + "Sunshower" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -4596,7 +5969,9 @@ const atrees = { "col": 4, "icon": "node_3" }, - "properties": { "health": 200 }, + "properties": { + "health": 200 + }, "effects": [ { "type": "replace_spell", @@ -4606,11 +5981,20 @@ const atrees = { "parts": [ { "name": "Per Orb", - "multipliers": [50, 0, 30, 20, 0, 0] + "multipliers": [ + 50, + 0, + 30, + 20, + 0, + 0 + ] }, { "name": "Per Melee (max)", - "hits": { "Per Orb": 2 } + "hits": { + "Per Orb": 2 + } } ] }, @@ -4625,23 +6009,27 @@ const atrees = { "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": ["Burning Sigil"], - "dependencies": [], + "archetype_req": 2, + "parents": [ + "Burning Sigil" + ], + "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { - "row": 15, - "col": 7, - "icon": "node_3" + "row": 15, + "col": 7, + "icon": "node_3" + }, + "properties": { + "bank": 90 }, - "properties": { "bank": 90 }, "effects": [ - { + { "type": "replace_spell", "name": "Arcane Transfer", - "base_spell": 1, - "parts": [], + "base_spell": 1, + "parts": [], "display": "" } ] @@ -4650,11 +6038,18 @@ const atrees = { "display_name": "Cheaper Heal", "desc": "Reduce the Mana cost of Heal.", "base_abil": "Heal", - "parents": ["Windsweeper", "Purification"], - "dependencies": [], + "parents": [ + "Windsweeper", + "Purification" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 17, "col": 1, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 17, + "col": 1, + "icon": "node_0" + }, "properties": {}, "effects": [ { @@ -4662,13 +6057,17 @@ const atrees = { "base_spell": 1, "cost": -5 } - ] + ] }, { "display_name": "Purification", "desc": "Heal and Arcane Transfer will purify you of all negative effects and fire. (3s Cooldown)", "base_abil": 1, - "parents": ["Ophanim", "Cheaper Heal", "Sentient Snake"], + "parents": [ + "Ophanim", + "Cheaper Heal", + "Sentient Snake" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -4684,8 +6083,13 @@ const atrees = { "display_name": "Sentient Snake", "desc": "Ice Snake will follow the direction you're facing, allowing you to control it.", "base_abil": "Ice Snake", - "parents": ["Arcane Transfer", "Purification"], - "dependencies": ["Ice Snake"], + "parents": [ + "Arcane Transfer", + "Purification" + ], + "dependencies": [ + "Ice Snake" + ], "blockers": [], "cost": 2, "display": { @@ -4700,8 +6104,12 @@ const atrees = { "display_name": "Eye Piercer", "desc": "Teleport will blind enemies, confusing them for a short amount of time.", "base_abil": "Teleport", - "parents": ["Cheaper Heal"], - "dependencies": ["Teleport"], + "parents": [ + "Cheaper Heal" + ], + "dependencies": [ + "Teleport" + ], "blockers": [], "cost": 2, "display": { @@ -4716,10 +6124,15 @@ const atrees = { "display_name": "Breathless", "desc": "Meteor will deal additional damage to enemies for every Winded they have.", "base_abil": "Windsweeper", - "archetype": "Riftwalker", - "archetype_req": 0, - "parents": ["Cheaper Heal", "Purification"], - "dependencies": ["Windsweeper"], + "archetype": "Riftwalker", + "archetype_req": 0, + "parents": [ + "Cheaper Heal", + "Purification" + ], + "dependencies": [ + "Windsweeper" + ], "blockers": [], "cost": 2, "display": { @@ -4759,7 +6172,9 @@ const atrees = { "name": "eConvBase:3.Lightning Damage" } ], - "scaling": [15] + "scaling": [ + 15 + ] } ] }, @@ -4767,32 +6182,51 @@ const atrees = { "display_name": "Larger Heal", "desc": "Increase your Heal's range.", "base_abil": 1, - "archetype": "Light Bender", - "archetype_req": 0, - "parents": ["Purification", "Sentient Snake"], - "dependencies": ["Heal"], - "blockers": ["Arcane Transfer"], - "cost": 1, - "display": { "row": 18, "col": 5, "icon": "node_0"}, + "archetype": "Light Bender", + "archetype_req": 0, + "parents": [ + "Purification", + "Sentient Snake" + ], + "dependencies": [ + "Heal" + ], + "blockers": [ + "Arcane Transfer" + ], + "cost": 1, + "display": { + "row": 18, + "col": 5, + "icon": "node_0" + }, "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Heal", - "name": "aoe", - "value": 2 - }] - }] + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "prop", + "abil": "Heal", + "name": "aoe", + "value": 2 + } + ] + } + ] }, { "display_name": "Larger Mana Bank", "desc": "Increase your maximum Mana Bank by +30.", "base_abil": 1, - "archetype": "Arcanist", - "archetype_req": 0, - "parents": ["Sentient Snake"], - "dependencies": ["Arcane Transfer"], + "archetype": "Arcanist", + "archetype_req": 0, + "parents": [ + "Sentient Snake" + ], + "dependencies": [ + "Arcane Transfer" + ], "blockers": [], "cost": 1, "display": { @@ -4801,42 +6235,64 @@ const atrees = { "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Arcane Transfer", - "name": "bank", - "value": 30 - }] - }] + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "prop", + "abil": "Arcane Transfer", + "name": "bank", + "value": 30 + } + ] + } + ] }, { "display_name": "Cheaper Ice Snake", "desc": "Reduce the Mana cost of Ice Snake.", "base_abil": "Ice Snake", - "parents": ["Eye Piercer", "Fortitude"], - "dependencies": [], + "parents": [ + "Eye Piercer", + "Fortitude" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 20, "col": 0, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 20, + "col": 0, + "icon": "node_0" + }, "properties": {}, - "effects": [{ - "type": "add_spell_prop", - "base_spell": 4, - "cost": -5 - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 4, + "cost": -5 + } + ] }, { "display_name": "Cheaper Teleport II", "desc": "Reduce the Mana cost of Teleport.", "base_abil": "Teleport", - "parents": ["Purification"], - "_parents": ["Purification", "Fortitude"], - "dependencies": [], + "parents": [ + "Purification" + ], + "_parents": [ + "Purification", + "Fortitude" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 20, "col": 4, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 20, + "col": 4, + "icon": "node_0" + }, "properties": {}, "effects": [ { @@ -4844,15 +6300,18 @@ const atrees = { "base_spell": 2, "cost": -5 } - ] + ] }, { "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": "Heal", - "archetype": "Light Bender", - "archetype_req": 0, - "parents": ["Cheaper Ice Snake", "Cheaper Teleport II"], + "archetype": "Light Bender", + "archetype_req": 0, + "parents": [ + "Cheaper Ice Snake", + "Cheaper Teleport II" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -4870,9 +6329,11 @@ const atrees = { "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": ["Sentient Snake"], + "archetype": "Arcanist", + "archetype_req": 4, + "parents": [ + "Sentient Snake" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -4890,7 +6351,10 @@ const atrees = { "desc": "For every 5/3s Lifesteal you have from items, gain 1% Spell Damage (Max 50%)", "archetype": "", "archetype_req": 0, - "parents": ["Pyrokinesis", "Snake Nest"], + "parents": [ + "Pyrokinesis", + "Snake Nest" + ], "dependencies": [], "blockers": [], "cost": 1, @@ -4900,31 +6364,40 @@ const atrees = { "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": false, - "inputs": [ + "effects": [ + { + "type": "stat_scaling", + "slider": false, + "inputs": [ { "type": "stat", "name": "ls" } ], - "output": { - "type": "stat", - "name": "sdPct" - }, - "scaling": [0.2], - "max": 50 - }] + "output": { + "type": "stat", + "name": "sdPct" + }, + "scaling": [ + 0.2 + ], + "max": 50 + } + ] }, { "display_name": "Blink", "desc": "Teleport will trigger 2 times in quick successions", "base_abil": "Teleport", - "archetype": "Riftwalker", - "archetype_req": 0, - "parents": ["Fortitude", "Cheaper Ice Snake"], - "dependencies": ["Teleport"], + "archetype": "Riftwalker", + "archetype_req": 0, + "parents": [ + "Fortitude", + "Cheaper Ice Snake" + ], + "dependencies": [ + "Teleport" + ], "blockers": [], "cost": 2, "display": { @@ -4936,19 +6409,24 @@ const atrees = { "effects": [ { "type": "raw_stat", - "bonuses": [{ - "type": "prop", - "abil": "Teleport", - "name": "range", - "value": -4 - }] + "bonuses": [ + { + "type": "prop", + "abil": "Teleport", + "name": "range", + "value": -4 + } + ] }, { "type": "add_spell_prop", "behavior": "modify", "target_part": "Total Damage", - "base_spell": 2, - "hits": {"Wind Slash": 1, "Explosion Damage": 1} + "base_spell": 2, + "hits": { + "Wind Slash": 1, + "Explosion Damage": 1 + } } ] }, @@ -4956,8 +6434,14 @@ const atrees = { "display_name": "Snake Nest", "desc": "Ice Snake will summon 3 snakes.", "base_abil": "Ice Snake", - "parents": ["Seance", "Cheaper Teleport II", "Healthier Ophanim I"], - "dependencies": ["Ice Snake"], + "parents": [ + "Seance", + "Cheaper Teleport II", + "Healthier Ophanim I" + ], + "dependencies": [ + "Ice Snake" + ], "blockers": [], "cost": 2, "display": { @@ -4972,10 +6456,15 @@ const atrees = { "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": ["Seance", "Snake Nest"], - "dependencies": ["Pyrokinesis"], + "archetype": "Arcanist", + "archetype_req": 0, + "parents": [ + "Seance", + "Snake Nest" + ], + "dependencies": [ + "Pyrokinesis" + ], "blockers": [], "cost": 2, "display": { @@ -4994,7 +6483,10 @@ const atrees = { "archetype": "Light Bender", "archetype_req": 0, "base_abil": "Heal", - "parents": ["Healthier Ophanim I", "Transonic Warp"], + "parents": [ + "Healthier Ophanim I", + "Transonic Warp" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -5004,31 +6496,40 @@ const atrees = { "icon": "node_1" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": false, - "round": false, - "inputs": [ + "effects": [ + { + "type": "stat_scaling", + "slider": false, + "round": false, + "inputs": [ { "type": "stat", "name": "wDamPct" } ], - "output": { - "type": "stat", - "name": "healPct" - }, - "scaling": [0.3] - }] + "output": { + "type": "stat", + "name": "healPct" + }, + "scaling": [ + 0.3 + ] + } + ] }, { "display_name": "Transonic Warp", "desc": "Teleport will deal additional damage to enemies for every Winded they have.", "base_abil": "Windsweeper", - "archetype": "Riftwalker", - "archetype_req": 5, - "parents": ["Cheaper Ice Snake"], - "dependencies": ["Ice Snake", "Windsweeper"], + "archetype": "Riftwalker", + "archetype_req": 5, + "parents": [ + "Cheaper Ice Snake" + ], + "dependencies": [ + "Ice Snake", + "Windsweeper" + ], "blockers": [], "cost": 2, "display": { @@ -5052,7 +6553,9 @@ const atrees = { "name": "nConvBase:2.Explosion Damage" } ], - "scaling": [30] + "scaling": [ + 30 + ] }, { "type": "stat_scaling", @@ -5068,7 +6571,9 @@ const atrees = { "name": "tConvBase:2.Explosion Damage" } ], - "scaling": [10] + "scaling": [ + 10 + ] }, { "type": "stat_scaling", @@ -5084,18 +6589,25 @@ const atrees = { "name": "aConvBase:2.Explosion Damage" } ], - "scaling": [5] + "scaling": [ + 5 + ] } ] }, { "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, + "archetype": "Light Bender", + "archetype_req": 0, "base_abil": "Ophanim", - "parents": ["Fortitude", "Cheaper Teleport II"], - "dependencies": ["Ophanim"], + "parents": [ + "Fortitude", + "Cheaper Teleport II" + ], + "dependencies": [ + "Ophanim" + ], "blockers": [], "cost": 1, "display": { @@ -5111,16 +6623,25 @@ const atrees = { "desc": "Heal will trigger 2 more times, increasing the overall healing.", "archetype": "Light Bender", "base_abil": "Heal", - "parents": ["Healthier Ophanim I", "Snake Nest"], - "dependencies": ["Heal"], - "blockers": ["Arcane Transfer"], - "cost": 2, + "parents": [ + "Healthier Ophanim I", + "Snake Nest" + ], + "dependencies": [ + "Heal" + ], + "blockers": [ + "Arcane Transfer" + ], + "cost": 2, "display": { - "row": 23, - "col": 4, - "icon": "node_1" + "row": 23, + "col": 4, + "icon": "node_1" + }, + "properties": { + "aoe": 5 }, - "properties": { "aoe": 5 }, "effects": [ { "type": "add_spell_prop", @@ -5143,11 +6664,16 @@ const atrees = { { "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, + "archetype": "Riftwalker", + "archetype_req": 6, "base_abil": "Windsweeper", - "parents": ["Transonic Warp", "Fluid Healing"], - "dependencies": ["Windsweeper"], + "parents": [ + "Transonic Warp", + "Fluid Healing" + ], + "dependencies": [ + "Windsweeper" + ], "blockers": [], "cost": 2, "display": { @@ -5155,22 +6681,26 @@ const atrees = { "col": 1, "icon": "node_3" }, - "properties": {"aoe": 5 }, + "properties": { + "aoe": 5 + }, "effects": [] }, { "display_name": "Lightweaver", "desc": "After healing 60% 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": ["Orphion's Pulse"], + "archetype_req": 7, + "parents": [ + "Orphion's Pulse" + ], "dependencies": [], "blockers": [], - "cost": 2, + "cost": 2, "display": { - "row": 25, - "col": 4, - "icon": "node_3" + "row": 25, + "col": 4, + "icon": "node_3" }, "properties": {}, "effects": [ @@ -5180,15 +6710,24 @@ const atrees = { "base_spell": 5, "display": "Orb Damage", "parts": [ - { + { "name": "Single Orb", "type": "damage", - "multipliers": [30, 0, 0, 0, 20, 0] + "multipliers": [ + 30, + 0, + 0, + 0, + 20, + 0 + ] }, { "name": "Orb Damage", "type": "total", - "hits": { "Single Orb": 3 } + "hits": { + "Single Orb": 3 + } } ] } @@ -5198,8 +6737,13 @@ const atrees = { "display_name": "Arcane Speed", "desc": "After casting Heal or Arcane Transfer, gain +80% speed for 3s. (8s Cooldown)", "base_abil": "Heal", - "parents": ["Lightweaver", "Larger Mana Bank II"], - "dependencies": ["Heal"], + "parents": [ + "Lightweaver", + "Larger Mana Bank II" + ], + "dependencies": [ + "Heal" + ], "blockers": [], "cost": 2, "display": { @@ -5214,10 +6758,15 @@ const atrees = { "display_name": "Larger Mana Bank II", "desc": "Increase your maximum Mana Bank by +30.", "base_abil": 1, - "archetype": "Arcanist", - "archetype_req": 0, - "parents": ["Seance", "Arcane Speed"], - "dependencies": ["Arcane Transfer"], + "archetype": "Arcanist", + "archetype_req": 0, + "parents": [ + "Seance", + "Arcane Speed" + ], + "dependencies": [ + "Arcane Transfer" + ], "blockers": [], "cost": 1, "display": { @@ -5232,10 +6781,15 @@ const atrees = { "display_name": "Psychokinesis", "desc": "Meteor will launch directly from you as a slow projectile.", "base_abil": 3, - "archetype": "Arcanist", - "archetype_req": 5, - "parents": ["Larger Mana Bank II", "Arcane Speed"], - "dependencies": ["Meteor"], + "archetype": "Arcanist", + "archetype_req": 5, + "parents": [ + "Larger Mana Bank II", + "Arcane Speed" + ], + "dependencies": [ + "Meteor" + ], "blockers": [], "cost": 1, "display": { @@ -5250,10 +6804,14 @@ const atrees = { "display_name": "More Winded", "desc": "Incrase your maximum Winded by +5.", "base_abil": "Windsweeper", - "archetype": "Riftwalker", - "archetype_req": 0, - "parents": ["Diffusion"], - "dependencies": ["Windsweeper"], + "archetype": "Riftwalker", + "archetype_req": 0, + "parents": [ + "Diffusion" + ], + "dependencies": [ + "Windsweeper" + ], "blockers": [], "cost": 1, "display": { @@ -5286,11 +6844,18 @@ const atrees = { "display_name": "Cheaper Ice Snake II", "desc": "Reduce the Mana cost of Ice Snake.", "base_abil": "Ice Snake", - "parents": ["Diffusion", "Explosive Entrance"], - "dependencies": [], + "parents": [ + "Diffusion", + "Explosive Entrance" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 27, "col": 1, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 27, + "col": 1, + "icon": "node_0" + }, "properties": {}, "effects": [ { @@ -5298,17 +6863,25 @@ const atrees = { "base_spell": 4, "cost": -5 } - ] + ] }, { "display_name": "Cheaper Meteor II", "desc": "Reduce the Mana cost of Meteor.", "base_abil": "Meteor", - "parents": ["Explosive Entrance", "Lightweaver", "Arcane Speed"], - "dependencies": [], + "parents": [ + "Explosive Entrance", + "Lightweaver", + "Arcane Speed" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 27, "col": 5, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 27, + "col": 5, + "icon": "node_0" + }, "properties": {}, "effects": [ { @@ -5316,16 +6889,20 @@ const atrees = { "base_spell": 3, "cost": -5 } - ] + ] }, { "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": "Arcane Transfer", - "archetype": "Arcanist", - "archetype_req": 8, - "parents": ["Larger Mana Bank II"], - "dependencies": ["Arcane Transfer"], + "archetype": "Arcanist", + "archetype_req": 8, + "parents": [ + "Larger Mana Bank II" + ], + "dependencies": [ + "Arcane Transfer" + ], "blockers": [], "cost": 2, "display": { @@ -5340,10 +6917,14 @@ const atrees = { "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": "Arcane Transfer", - "archetype": "Arcanist", - "archetype_req": 0, - "parents": ["Arctic Snake"], - "dependencies": ["Arcane Transfer"], + "archetype": "Arcanist", + "archetype_req": 0, + "parents": [ + "Arctic Snake" + ], + "dependencies": [ + "Arcane Transfer" + ], "blockers": [], "cost": 1, "display": { @@ -5358,8 +6939,13 @@ const atrees = { "display_name": "Explosive Entrance", "desc": "Deal Damage in an area on the location you Teleport to.", "base_abil": "Teleport", - "parents": ["Cheaper Ice Snake II", "Cheaper Meteor II"], - "dependencies": ["Teleport"], + "parents": [ + "Cheaper Ice Snake II", + "Cheaper Meteor II" + ], + "dependencies": [ + "Teleport" + ], "blockers": [], "cost": 2, "display": { @@ -5374,15 +6960,24 @@ const atrees = { { "type": "add_spell_prop", "target_part": "Explosion Damage", - "base_spell": 2, - "multipliers": [50, 0, 0, 0, 30, 0] + "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} + "base_spell": 2, + "hits": { + "Explosion Damage": 1 + } } ] }, @@ -5390,10 +6985,15 @@ const atrees = { "display_name": "Gust", "desc": "Ice Snake will add +1 Winded to enemies and deal more damage.", "base_abil": "Ice Snake", - "archetype": "Riftwalker", - "archetype_req": 7, - "parents": ["Cheaper Ice Snake II", "Explosive Entrance"], - "dependencies": ["Ice Snake"], + "archetype": "Riftwalker", + "archetype_req": 7, + "parents": [ + "Cheaper Ice Snake II", + "Explosive Entrance" + ], + "dependencies": [ + "Ice Snake" + ], "blockers": [], "cost": 2, "display": { @@ -5406,17 +7006,26 @@ const atrees = { { "type": "add_spell_prop", "target_part": "Ice Snake Damage", - "base_spell": 4, - "multipliers": [0, 0, 0, 0, 0, 20] + "base_spell": 4, + "multipliers": [ + 0, + 0, + 0, + 0, + 0, + 20 + ] } ] }, { "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": ["Cheaper Ice Snake II"], + "archetype": "Riftwalker", + "archetype_req": 7, + "parents": [ + "Cheaper Ice Snake II" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -5434,26 +7043,45 @@ const atrees = { "archetype": "Light Bender", "archetype_req": 0, "base_abil": "Ophanim", - "parents": ["Cheaper Meteor II"], - "_parents": ["Explosive Entrance", "Cheaper Meteor II"], - "dependencies": ["Ophanim"], + "parents": [ + "Cheaper Meteor II" + ], + "_parents": [ + "Explosive Entrance", + "Cheaper Meteor II" + ], + "dependencies": [ + "Ophanim" + ], "blockers": [], - "cost": 1, - "display": { "row": 28, "col": 4, "icon": "node_0"}, + "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 } - }] + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "target_part": "Per Melee (max)", + "hits": { + "Per Orb": 1 + } + } + ] }, { "display_name": "Arctic Snake", "desc": "Ice Snake will freeze enemies completely for 2s.", "base_abil": "Ice Snake", - "parents": ["Chaos Explosion"], - "dependencies": ["Ice Snake"], + "parents": [ + "Chaos Explosion" + ], + "dependencies": [ + "Ice Snake" + ], "blockers": [], "cost": 2, "display": { @@ -5468,9 +7096,12 @@ const atrees = { "display_name": "Devitalize", "desc": "Enemies will deal -2% damage for every Winded they have.", "base_abil": "Windsweeper", - "archetype": "Riftwalker", - "archetype_req": 5, - "parents": ["More Winded II", "Dynamic Faith"], + "archetype": "Riftwalker", + "archetype_req": 5, + "parents": [ + "More Winded II", + "Dynamic Faith" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -5488,9 +7119,16 @@ const atrees = { "base_abil": "Windsweeper", "archetype": "Riftwalker", "archetype_req": 0, - "parents": ["Time Dilation"], - "_parents": ["Time Dilation", "Dynamic Faith"], - "dependencies": ["Windsweeper"], + "parents": [ + "Time Dilation" + ], + "_parents": [ + "Time Dilation", + "Dynamic Faith" + ], + "dependencies": [ + "Windsweeper" + ], "blockers": [], "cost": 1, "display": { @@ -5522,7 +7160,10 @@ const atrees = { { "display_name": "Dynamic Faith", "desc": "For every 2% Sprint you have from items, gain +1% Thunder Damage (Max 100%)", - "parents": ["More Winded II", "Healthier Ophanim II"], + "parents": [ + "More Winded II", + "Healthier Ophanim II" + ], "dependencies": [], "blockers": [], "cost": 1, @@ -5532,31 +7173,40 @@ const atrees = { "icon": "node_0" }, "properties": {}, - "effects": [{ - "type": "stat_scaling", - "slider": false, - "inputs": [ + "effects": [ + { + "type": "stat_scaling", + "slider": false, + "inputs": [ { "type": "stat", "name": "sprint" } ], - "output": { - "type": "stat", - "name": "tDamPct" - }, - "scaling": [0.5], - "max": 100 - }] + "output": { + "type": "stat", + "name": "tDamPct" + }, + "scaling": [ + 0.5 + ], + "max": 100 + } + ] }, { "display_name": "Divination", "desc": "Increase your maximum orbs from Ophanim by +3 and reduce their damage.", "base_abil": "Ophanim", - "archetype": "Light Bender", - "archetype_req": 0, - "parents": ["Dynamic Faith", "Healthier Ophanim II"], - "dependencies": ["Ophanim"], + "archetype": "Light Bender", + "archetype_req": 0, + "parents": [ + "Dynamic Faith", + "Healthier Ophanim II" + ], + "dependencies": [ + "Ophanim" + ], "blockers": [], "cost": 2, "display": { @@ -5566,17 +7216,26 @@ const atrees = { }, "properties": {}, "effects": [ - { - "type": "add_spell_prop", + { + "type": "add_spell_prop", "base_spell": 3, - "target_part": "Per Orb", - "multipliers": [-50, 0, -10, 0, 0, 0] + "target_part": "Per Orb", + "multipliers": [ + -50, + 0, + -10, + 0, + 0, + 0 + ] }, - { + { "type": "add_spell_prop", "base_spell": 3, "target_part": "Per Melee (max)", - "hits": { "Per Orb": 3 } + "hits": { + "Per Orb": 3 + } } ] }, @@ -5584,10 +7243,14 @@ const atrees = { "display_name": "Healthier Ophanim II", "desc": "Increase the health of your orbs from Ophanim by +3000.", "base_abil": "Ophanim", - "archetype": "Light Bender", - "archetype_req": 0, - "parents": ["Better Ophanim"], - "dependencies": ["Healthier Ophanim I"], + "archetype": "Light Bender", + "archetype_req": 0, + "parents": [ + "Better Ophanim" + ], + "dependencies": [ + "Healthier Ophanim I" + ], "blockers": [], "cost": 1, "display": { @@ -5601,10 +7264,12 @@ const atrees = { { "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, + "archetype": "Light Bender", + "archetype_req": 12, "base_abil": "Heal", - "parents": ["Healthier Ophanim II"], + "parents": [ + "Healthier Ophanim II" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -5622,11 +7287,15 @@ const atrees = { { "display_name": "Larger Mana Bank III", "desc": "Increase your maximum Mana Bank by +30.", - "archetype": "Arcanist", - "archetype_req": 0, + "archetype": "Arcanist", + "archetype_req": 0, "base_abil": "Arcane Transfer", - "parents": ["Arctic Snake"], - "dependencies": ["Arcane Transfer"], + "parents": [ + "Arctic Snake" + ], + "dependencies": [ + "Arcane Transfer" + ], "blockers": [], "cost": 1, "display": { @@ -5640,11 +7309,15 @@ 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": "Arcanist", + "archetype_req": 11, "base_abil": "Arcane Transfer", - "parents": ["Larger Mana Bank III"], - "dependencies": ["Arcane Transfer"], + "parents": [ + "Larger Mana Bank III" + ], + "dependencies": [ + "Arcane Transfer" + ], "blockers": [], "cost": 2, "display": { @@ -5661,8 +7334,12 @@ const atrees = { "archetype": "Arcanist", "archetype_req": 0, "base_abil": "Arcane Transfer", - "parents": ["Arcane Overflow"], - "dependencies": ["Chaos Explosion"], + "parents": [ + "Arcane Overflow" + ], + "dependencies": [ + "Chaos Explosion" + ], "blockers": [], "cost": 1, "display": { @@ -5676,9 +7353,13 @@ const atrees = { { "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": ["Cheaper Heal II", "Arcane Overflow", "Sunflare"], + "archetype": "Arcanist", + "archetype_req": 1, + "parents": [ + "Cheaper Heal II", + "Arcane Overflow", + "Sunflare" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -5693,11 +7374,16 @@ const atrees = { { "display_name": "Better Lightweaver", "desc": "Increase your Max Orbs by +2.", - "archetype": "Light Bender", + "archetype": "Light Bender", "archetype_req": 0, "base_abil": "Lightweaver", - "parents": ["Cheaper Heal II", "Manastorm"], - "dependencies": ["Lightweaver"], + "parents": [ + "Cheaper Heal II", + "Manastorm" + ], + "dependencies": [ + "Lightweaver" + ], "blockers": [], "cost": 1, "display": { @@ -5707,20 +7393,24 @@ const atrees = { }, "properties": {}, "effects": [ - { + { "type": "add_spell_prop", "target_part": "Orb Damage", "base_spell": 5, - "hits": { "Single Orb": 2 } + "hits": { + "Single Orb": 2 + } } ] }, { "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": "Riftwalker", "archetype_req": 12, - "parents": ["More Winded II"], + "parents": [ + "More Winded II" + ], "dependencies": [], "blockers": [], "cost": 2, @@ -5736,11 +7426,18 @@ const atrees = { "display_name": "Cheaper Heal II", "desc": "Reduce the Mana cost of Heal.", "base_abil": "Heal", - "parents": ["Timelock", "Manastorm"], - "dependencies": [], + "parents": [ + "Timelock", + "Manastorm" + ], + "dependencies": [], "blockers": [], - "cost": 1, - "display": {"row": 34, "col": 2, "icon": "node_0"}, + "cost": 1, + "display": { + "row": 34, + "col": 2, + "icon": "node_0" + }, "properties": {}, "effects": [ { @@ -5748,7 +7445,2304 @@ const atrees = { "base_spell": 1, "cost": -5 } - ] + ] + } + ], + "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 + ] + } + ] + } + ] + }, + { + "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": [ + "Spin Attack" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Cheaper Spin Attack", + "desc": "Reduce the Mana cost of Spin Attack.", + "archetype": "", + "archetype_req": 0, + "base_abil": "Spin Attack", + "parents": [ + "Dagger Proficiency I" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 2, + "col": 2, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 1, + "cost": -10 + } + ] + }, + { + "display_name": "Double Spin", + "desc": "Spin Attack will activate twice.", + "archetype": "", + "archetype_req": 0, + "base_abil": "Spin Attack", + "parents": [ + "Dagger Proficiency I" + ], + "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": 2 + }, + "display": "Total Damage" + } + ] + }, + { + "display_name": "Poisoned Blade", + "desc": "For every 24 or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)", + "archetype": "Shadestepper", + "archetype_req": 0, + "parents": [ + "Dash" + ], + "dependencies": [], + "blockers": [ + "Double Slice" + ], + "cost": 0, + "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 + } + ] + }, + { + "display_name": "Dash", + "desc": "Dash in the direction you're facing.", + "archetype": "", + "archetype_req": 0, + "parents": [ + "Double Spin" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 7, + "col": 4, + "icon": "node_assassin" + }, + "properties": {}, + "effects": [ + { + "type": "replace_spell", + "name": "Dash", + "cost": 20, + "base_spell": 2, + "spell_type": "damage", + "scaling": "spell", + "use_atkspd": true, + "display": "Total Damage", + "parts": [ + { + "name": "None", + "type": "damage", + "multipliers": [ + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + ] + } + ] + }, + { + "display_name": "Double Slice", + "desc": "Your Main Attack will attack twice, but deal -4% damage per hit.", + "archetype": "Acrobat", + "archetype_req": 0, + "base_abil": 999, + "parents": [ + "Dash" + ], + "dependencies": [], + "blockers": [ + "Poisoned Blade" + ], + "cost": 1, + "display": { + "row": 7, + "col": 6, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 0, + "multipliers": [ + -40, + 0, + 0, + 0, + 0, + 0 + ] + } + ] + }, + { + "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": [ + "Poisoned Blade", + "Cheaper Dash" + ], + "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, + "spell_type": "damage", + "scaling": "spell", + "use_atkspd": true, + "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 + } + } + ] + } + ] + }, + { + "display_name": "Cheaper Dash", + "desc": "Reduce the Mana cost of Dash", + "archetype": "", + "archetype_req": 0, + "base_abil": "Dash", + "parents": [ + "Smoke Bomb", + "Multihit" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 9, + "col": 4, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 2, + "cost": -5 + } + ] + }, + { + "display_name": "Multihit", + "desc": "Unleash a rapid flurry of 8 hits to enemies facing you, dealing overwhelming damage", + "archetype": "", + "archetype_req": 0, + "parents": [ + "Double Slice", + "Cheaper Dash" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 9, + "col": 6, + "icon": "node_assassin" + }, + "properties": {}, + "effects": [ + { + "type": "replace_spell", + "name": "Multihit", + "cost": 45, + "base_spell": 3, + "spell_type": "damage", + "scaling": "spell", + "use_atkspd": true, + "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 + } + } + ] + } + ] + }, + { + "display_name": "Earth Mastery", + "desc": "Increases base damage from all Earth attacks", + "archetype": "Shadestepper", + "archetype_req": 0, + "base_abil": 998, + "parents": [ + "Smoke Bomb", + "Thunder Mastery" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Thunder Mastery", + "desc": "Increases base damage from all Thunder attacks", + "archetype": "Shadestepper", + "archetype_req": 0, + "base_abil": 998, + "parents": [ + "Earth Mastery", + "Smoke Bomb" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Fire Mastery", + "desc": "Increases base damage from all Fire attacks", + "archetype": "Trickster", + "archetype_req": 0, + "base_abil": 998, + "parents": [ + "Cheaper Dash", + "Water Mastery" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Water Mastery", + "desc": "Increases base damage from all Water attacks", + "archetype": "Acrobat", + "archetype_req": 0, + "base_abil": 998, + "parents": [ + "Multihit", + "Air Mastery" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Air Mastery", + "desc": "Increases base damage from all Air attacks", + "archetype": "Acrobat", + "archetype_req": 0, + "base_abil": 998, + "parents": [ + "Water Mastery", + "Multihit" + ], + "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 + } + ] + } + ] + }, + { + "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, + "parents": [ + "Earth Mastery", + "Thunder Mastery" + ], + "dependencies": [ + "Multihit" + ], + "blockers": [ + "Stronger Multihit" + ], + "cost": 2, + "display": { + "row": 15, + "col": 1, + "icon": "node_1" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "target_part": "Per Hit", + "behavior": "modify", + "cost": 0, + "multipliers": [ + 200, + 50, + 0, + 0, + 0, + 0 + ] + }, + { + "type": "add_spell_prop", + "base_spell": 3, + "target_part": "Total Damage", + "behavior": "modify", + "hits": { + "Per Hit": 1 + } + }, + { + "type": "add_spell_prop", + "base_spell": 3, + "cost": -5 + } + ] + }, + { + "display_name": "Fatality", + "desc": "Multihit will deal an additional final slash", + "archetype": "", + "archetype_req": 0, + "base_abil": "Multihit", + "parents": [ + "Water Mastery", + "Air Mastery" + ], + "dependencies": [ + "Multihit" + ], + "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 + } + } + ] + }, + { + "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": "Dash", + "parents": [ + "Backstab", + "Sticky Bomb" + ], + "dependencies": [ + "Dash" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 16, + "col": 2, + "icon": "node_2" + }, + "properties": { + "duration": 5 + }, + "effects": [] + }, + { + "display_name": "Sticky Bomb", + "desc": "Smoke Bomb will stick to enemies and deal additional damage", + "archetype": "Trickster", + "archetype_req": 0, + "base_abil": "Smoke Bomb", + "parents": [ + "Vanish", + "Fire Mastery" + ], + "dependencies": [ + "Smoke Bomb" + ], + "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 + ] + } + ] + }, + { + "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": [ + "Fatality" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 16, + "col": 6, + "icon": "node_2" + }, + "properties": {}, + "effects": [] + }, + { + "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": "Dash", + "parents": [ + "Vanish" + ], + "dependencies": [ + "Vanish" + ], + "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 + } + ] + } + ] + }, + { + "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": "Dash", + "parents": [ + "Sticky Bomb" + ], + "dependencies": [ + "Vanish" + ], + "blockers": [ + "Lacerate" + ], + "cost": 2, + "display": { + "row": 19, + "col": 4, + "icon": "node_3" + }, + "properties": { + "clone": 3 + }, + "effects": [] + }, + { + "display_name": "Lacerate", + "desc": "Spin Attack will lunge you forward, deal 3 strikes, and lunge you backward", + "archetype": "Acrobat", + "archetype_req": 2, + "base_abil": "Spin Attack", + "parents": [ + "Fatality" + ], + "dependencies": [], + "blockers": [ + "Mirror Image" + ], + "cost": 2, + "display": { + "row": 19, + "col": 7, + "icon": "node_3" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 1, + "target_part": "Spin Attack", + "behavior": "modify", + "multipliers": [ + 40, + 0, + 0, + 10, + 0, + 20 + ] + }, + { + "type": "add_spell_prop", + "base_spell": 1, + "target_part": "Total Damage", + "behavior": "modify", + "hits": { + "Spin Attack": 3 + } + } + ] + }, + { + "display_name": "Silent Killer", + "desc": "After killing an enemy, reset Vanish's cooldown", + "archetype": "", + "archetype_req": 0, + "base_abil": "Dash", + "parents": [ + "Surprise Strike" + ], + "dependencies": [ + "Vanish" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 20, + "col": 1, + "icon": "node_2" + }, + "properties": {}, + "effects": [] + }, + { + "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": [ + "Mirror Image" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 20, + "col": 5, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "stat_scaling", + "slider": false, + "inputs": [ + { + "type": "stat", + "name": "stealing" + } + ], + "output": [ + { + "type": "stat", + "name": "ms" + } + ], + "scaling": [ + 0.5 + ], + "max": 8 + } + ] + }, + { + "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": "Smoke Bomb", + "parents": [ + "Lacerate" + ], + "dependencies": [ + "Smoke Bomb" + ], + "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 Bomb", + "multipliers": [ + -20, + 0, + 0, + 0, + 0, + 0 + ] + } + ] + }, + { + "display_name": "Better Smoke Bomb", + "desc": "Increase the range and area of effect of Smoke Bomb", + "archetype": "", + "archetype_req": 0, + "base_abil": "Smoke Bomb", + "parents": [ + "Silent Killer", + "Shadow Travel" + ], + "dependencies": [ + "Smoke Bomb" + ], + "blockers": [], + "cost": 1, + "display": { + "row": 22, + "col": 0, + "icon": "node_0" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Shadow Travel", + "desc": "Vanish will increase your speed by +100%", + "archetype": "Shadestepper", + "archetype_req": 0, + "base_abil": "Dash", + "parents": [ + "Better Smoke Bomb", + "Silent Killer", + "Cheaper Multihit" + ], + "dependencies": [ + "Vanish" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 22, + "col": 2, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Cheaper Multihit", + "desc": "Reduce the Mana cost of Multihit", + "archetype": "", + "archetype_req": 0, + "base_abil": "Multihit", + "parents": [ + "Shenanigans", + "Shadow Travel", + "Dagger Proficiency II" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 22, + "col": 5, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "cost": -5 + } + ] + }, + { + "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": [ + "Cheaper Multihit", + "Wall of Smoke" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 22, + "col": 8, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "raw_stat", + "bonuses": [ + { + "type": "stat", + "name": "damRaw", + "value": 5 + } + ] + } + ] + }, + { + "display_name": "Last Laugh", + "desc": "When losing a Clone, it will cast Spin Attack before dying", + "archetype": "Trickster", + "archetype_req": 3, + "base_abil": "Dash", + "parents": [ + "Shadow Travel", + "Cheaper Multihit" + ], + "dependencies": [ + "Mirror Image" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 23, + "col": 4, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Cheaper Smoke Bomb", + "desc": "Reduce the Mana cost of Smoke Bomb", + "archetype": "", + "archetype_req": 0, + "base_abil": "Smoke Bomb", + "parents": [ + "Better Smoke Bomb", + "Blazing Powder" + ], + "dependencies": [ + "Smoke Bomb" + ], + "blockers": [], + "cost": 1, + "display": { + "row": 25, + "col": 0, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 4, + "cost": -5 + } + ] + }, + { + "display_name": "Blazing Powder", + "desc": "Spin Attack will blind enemies and deal additional damage", + "archetype": "", + "archetype_req": 0, + "base_abil": "Spin Attack", + "parents": [ + "Cheaper Smoke Bomb", + "Shadow Travel", + "Cheaper Multihit" + ], + "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 + ] + } + ] + }, + { + "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": [ + "Cheaper Multihit", + "Dagger Proficiency II" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 25, + "col": 7, + "icon": "node_2" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Black Hole", + "desc": "Smoke Bomb will pull nearby enemies", + "archetype": "", + "archetype_req": 0, + "base_abil": "Smoke Bomb", + "parents": [ + "Cheaper Smoke Bomb", + "Blazing Powder" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 26, + "col": 1, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "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": [ + "Blazing Powder", + "Hop" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 26, + "col": 4, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Hop", + "desc": "When you double tap jump, leap forward. (2s Cooldown)", + "archetype": "Acrobat", + "archetype_req": 0, + "parents": [ + "Sandbagging", + "Weightless" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 26, + "col": 6, + "icon": "node_1" + }, + "properties": { + "cooldown": 2 + }, + "effects": [] + }, + { + "display_name": "Dancing Blade", + "desc": "Deal damage to mobs you Dash through", + "archetype": "", + "archetype_req": 0, + "base_abil": "Dash", + "parents": [ + "Weightless" + ], + "dependencies": [ + "Dash" + ], + "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" + } + ] + }, + { + "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": [ + "Cheaper Smoke Bomb" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 27, + "col": 0, + "icon": "node_1" + }, + "properties": {}, + "effects": [ + { + "type": "replace_spell", + "name": "Violent Vortex", + "cost": 0, + "base_spell": 5, + "spell_type": "damage", + "scaling": "spell", + "use_atkspd": true, + "display": "Total Damage", + "parts": [ + { + "name": "Total Damage", + "type": "damage", + "multipliers": [ + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + ] + } + ] + }, + { + "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": "Smoke Bomb", + "parents": [ + "Sandbagging" + ], + "dependencies": [ + "Smoke Bomb" + ], + "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 + } + ] + } + ] + }, + { + "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": [ + "Violent Vortex" + ], + "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 + ] + } + ] + }, + { + "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": "Dash", + "parents": [ + "Sandbagging", + "Shurikens" + ], + "dependencies": [ + "Mirror Image" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Shurikens", + "desc": "After using Dash, your next Main Attack will throw 3 shurikens", + "archetype": "Acrobat", + "archetype_req": 0, + "base_abil": "Dash", + "parents": [ + "Echo", + "Far Reach" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 28, + "col": 6, + "icon": "node_2" + }, + "properties": {}, + "effects": [ + { + "type": "replace_spell", + "name": "Shurikens", + "cost": 0, + "base_spell": 6, + "spell_type": "damage", + "scaling": "spell", + "use_atkspd": true, + "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 + } + } + ] + } + ] + }, + { + "display_name": "Far Reach", + "desc": "Increase the range of Multihit", + "archetype": "", + "archetype_req": 0, + "base_abil": "Multihit", + "parents": [ + "Dancing Blade", + "Shurikens" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 28, + "col": 8, + "icon": "node_0" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Stronger Multihit", + "desc": "Increases Multihit's amount of hits by +3", + "archetype": "", + "archetype_req": 0, + "base_abil": "Multihit", + "parents": [ + "Echo", + "Shurikens" + ], + "dependencies": [], + "blockers": [ + "Backstab" + ], + "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 + } + } + ] + }, + { + "display_name": "Psithurism", + "desc": "Increase your Walk Speed by +20% and your Jump Height by +1", + "archetype": "Acrobat", + "archetype_req": 5, + "parents": [ + "Shurikens", + "Far Reach" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Ambush", + "desc": "Increase Surprise Strike's damage by +40%", + "archetype": "Shadestepper", + "archetype_req": 4, + "base_abil": "Dash", + "parents": [ + "Marked" + ], + "dependencies": [ + "Surprise Strike" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Cheaper Dash 2", + "desc": "Reduce the Mana cost of Dash", + "archetype": "", + "archetype_req": 0, + "base_abil": "Dash", + "parents": [ + "Echo" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 31, + "col": 4, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 2, + "cost": -5 + } + ] + }, + { + "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": [ + "Cheaper Spin Attack 2" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 31, + "col": 6, + "icon": "node_2" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Cheaper Spin Attack 2", + "desc": "Reduce the Mana cost of Spin Attack", + "archetype": "", + "archetype_req": 0, + "base_abil": "Spin Attack", + "parents": [ + "Far Reach", + "Parry" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 31, + "col": 8, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 1, + "cost": -5 + } + ] + }, + { + "display_name": "Death Magnet", + "desc": "After leaving Vanish, pull all nearby Marked mobs towards you", + "archetype": "Shadestepper", + "archetype_req": 5, + "base_abil": "Dash", + "parents": [ + "Cheaper Multihit 2", + "Ambush" + ], + "dependencies": [ + "Vanish" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 33, + "col": 0, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Cheaper Multihit 2", + "desc": "Reduce the Mana cost of Multihit", + "archetype": "", + "archetype_req": 0, + "base_abil": "Multihit", + "parents": [ + "Death Magnet", + "Ambush", + "Hoodwink" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 33, + "col": 2, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 3, + "cost": -5 + } + ] + }, + { + "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": "Spin Attack", + "parents": [ + "Cheaper Multihit 2", + "Cheaper Dash 2", + "Choke Bomb" + ], + "dependencies": [ + "Spin Attack" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 33, + "col": 4, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Choke Bomb", + "desc": "Smoke Bomb will slow down enemies while in the smoke", + "archetype": "Trickster", + "archetype_req": 0, + "base_abil": "Smoke Bomb", + "parents": [ + "Hoodwink", + "Wall Jump", + "Parry" + ], + "dependencies": [], + "blockers": [], + "cost": 1, + "display": { + "row": 33, + "col": 6, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Wall Jump", + "desc": "When you Hop into a wall, bounce backward. (Hold shift to cancel)", + "archetype": "Acrobat", + "archetype_req": 5, + "parents": [ + "Choke Bomb", + "Cheaper Spin Attack 2" + ], + "dependencies": [ + "Hop" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 33, + "col": 8, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "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": "Spin Attack", + "parents": [ + "Death Magnet", + "Cheaper Multihit 2" + ], + "dependencies": [ + "Marked" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 34, + "col": 1, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Stronger Lacerate", + "desc": "Lacerate will deal +1 slash", + "archetype": "Acrobat", + "archetype_req": 0, + "base_abil": "Spin Attack", + "parents": [ + "Choke Bomb", + "Wall Jump" + ], + "dependencies": [ + "Lacerate" + ], + "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": { + "Spin Attack": 1 + } + } + ] + }, + { + "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": [ + "Fatal Spin" + ], + "dependencies": [ + "Violent Vortex" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 35, + "col": 0, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "replace_spell", + "name": "Violent Vortex", + "cost": 0, + "base_spell": 5, + "spell_type": "damage", + "scaling": "spell", + "use_atkspd": true, + "display": "Total Damage", + "parts": [ + { + "name": "Total Damage", + "type": "damage", + "multipliers": [ + 0, + 0, + 0, + 0, + 0, + 0 + ] + } + ] + } + ] + }, + { + "display_name": "Harvester", + "desc": "After killing an enemy, gain +5 Mana for each leftover Marks it had", + "archetype": "Shadestepper", + "archetype_req": 0, + "parents": [ + "Fatal Spin", + "Cheaper Smoke Bomb 2" + ], + "dependencies": [ + "Marked" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 37, + "col": 1, + "icon": "node_2" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Cheaper Smoke Bomb 2", + "desc": "Reduce the Mana cost of Smoke Bomb", + "archetype": "", + "archetype_req": 0, + "base_abil": "Smoke Bomb", + "parents": [ + "Harvester", + "Hoodwink", + "Blade Fury" + ], + "dependencies": [ + "Smoke Bomb" + ], + "blockers": [], + "cost": 1, + "display": { + "row": 37, + "col": 4, + "icon": "node_0" + }, + "properties": {}, + "effects": [ + { + "type": "add_spell_prop", + "base_spell": 4, + "cost": -5 + } + ] + }, + { + "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": "Multihit", + "parents": [ + "Stronger Lacerate", + "Cheaper Smoke Bomb 2" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 37, + "col": 7, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "More Marks", + "desc": "Add +2 max Marks", + "archetype": "Shadestepper", + "archetype_req": 0, + "base_abil": "Marked", + "parents": [ + "Harvester", + "Cheaper Smoke Bomb 2" + ], + "dependencies": [ + "Marked" + ], + "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] + } + ] + }, + { + "display_name": "Stronger Clones", + "desc": "Improve your damage while your Clones are active by +20%", + "archetype": "Trickster", + "archetype_req": 7, + "base_abil": "Dash", + "parents": [ + "Cheaper Smoke Bomb 2", + "Blade Fury" + ], + "dependencies": [ + "Mirror Image" + ], + "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 + } + ] + } + ] + }, + { + "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": "Dash", + "parents": [ + "Blade Fury" + ], + "dependencies": [ + "Shurikens" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 38, + "col": 8, + "icon": "node_1" + }, + "properties": {}, + "effects": [] + }, + { + "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": [ + "Harvester" + ], + "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 + } + ] + } + ] + }, + { + "display_name": "Forbidden Art", + "desc": "Summon +3 additional Clones. (+20s Cooldown)", + "archetype": "Trickster", + "archetype_req": 8, + "base_abil": "Dash", + "parents": [ + "Cheaper Smoke Bomb 2" + ], + "dependencies": [ + "Mirror Image" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 39, + "col": 4, + "icon": "node_2" + }, + "properties": {}, + "effects": [] + }, + { + "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": "Smoke Bomb", + "parents": [ + "Forbidden Art" + ], + "dependencies": [ + "Delirious Gas" + ], + "blockers": [], + "cost": 2, + "display": { + "row": 40, + "col": 5, + "icon": "node_3" + }, + "properties": {}, + "effects": [] + }, + { + "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": [ + "Blade Fury" + ], + "dependencies": [], + "blockers": [], + "cost": 2, + "display": { + "row": 39, + "col": 7, + "icon": "node_3" + }, + "properties": {}, + "effects": [ + { + "type": "replace_spell", + "name": "Jasmine Bloom", + "cost": 0, + "base_spell": 7, + "spell_type": "damage", + "scaling": "spell", + "use_atkspd": true, + "display": "Per Hit", + "parts": [ + { + "name": "Per Hit", + "type": "damage", + "multipliers": [ + 60, + 5, + 0, + 15, + 0, + 0 + ] + } + ] + } + ] + }, + { + "display_name": "Better Ricochets", + "desc": "Add +1 Max Bounce to Ricochets", + "archetype": "Acrobat", + "archetype_req": 0, + "base_abil": "Dash", + "parents": [ + "Jasmine Bloom" + ], + "dependencies": [ + "Ricochets" + ], + "blockers": [], + "cost": 1, + "display": { + "row": 40, + "col": 8, + "icon": "node_0" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Devour", + "desc": "Harvester will give +5 Mana", + "archetype": "Shadestepper", + "archetype_req": 0, + "parents": [ + "Satsujin" + ], + "dependencies": [ + "Harvester" + ], + "blockers": [], + "cost": 1, + "display": { + "row": 41, + "col": 0, + "icon": "node_0" + }, + "properties": {}, + "effects": [] + }, + { + "display_name": "Better Marked", + "desc": "Increase Marked's damage bonus by +5%", + "archetype": "", + "archetype_req": 0, + "base_abil": "Marked", + "parents": [ + "Satsujin" + ], + "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 + ] + } + ] } ] -} +} \ No newline at end of file diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 314e0d7..ab12d27 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":{},"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":5},"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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"nConvBase:3.Lightning Damage"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[15]}],"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":[30]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[10]},{"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 60% 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":{},"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":[-50,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}]} \ 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":{},"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":5},"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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"nConvBase:3.Lightning Damage"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[15]}],"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":[30]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[10]},{"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 60% 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":{},"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":[-50,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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Hit","behavior":"modify","cost":0,"multipliers":[200,50,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","behavior":"modify","hits":{"Per Hit":1}},{"type":"add_spell_prop","base_spell":3,"cost":-5}],"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":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","behavior":"modify","multipliers":[40,0,0,10,0,20]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","behavior":"modify","hits":{"Spin Attack":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":"stealing"}],"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 Bomb","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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":6,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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":{"Spin Attack":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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":7,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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 77726b003fe265549516d83e5b870309b7932dce Mon Sep 17 00:00:00 2001 From: reschan Date: Wed, 20 Jul 2022 23:00:56 +0700 Subject: [PATCH 18/82] backstab temp push --- js/atree_constants.js | 44 +++++++++++++++++---------------------- js/atree_constants_min.js | 2 +- 2 files changed, 20 insertions(+), 26 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 77d3f01..6033742 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -9747,6 +9747,7 @@ const atrees = { "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": "Multihit", "parents": [ "Earth Mastery", "Thunder Mastery" @@ -9766,33 +9767,26 @@ const atrees = { "properties": {}, "effects": [ { - "type": "add_spell_prop", + "type": "replace_spell", + "name": "Backstab", "base_spell": 3, - "target_part": "Per Hit", - "behavior": "modify", - "cost": 0, - "multipliers": [ - 200, - 50, - 0, - 0, - 0, - 0 + "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 + } + } ] - }, - { - "type": "add_spell_prop", - "base_spell": 3, - "target_part": "Total Damage", - "behavior": "modify", - "hits": { - "Per Hit": 1 - } - }, - { - "type": "add_spell_prop", - "base_spell": 3, - "cost": -5 } ] }, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index fb70fad..436ee19 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":{},"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":5},"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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":"eConvBase:3.Meteor Damage"},{"type":"stat","name":"nConvBase:3.Per Orb"},{"type":"stat","name":"eConvBase:3.Per Orb"},{"type":"stat","name":"nConvBase:3.Lightning Damage"},{"type":"stat","name":"eConvBase:3.Lightning Damage"}],"scaling":[15]}],"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":[30]},{"type":"stat_scaling","slider":true,"slider_name":"Winded","output":[{"type":"stat","name":"tConvBase:2.Wind Slash"},{"type":"stat","name":"tConvBase:2.Explosion Damage"}],"scaling":[10]},{"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 60% 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":{},"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":[-50,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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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,"parents":[10,11],"dependencies":[9],"blockers":[44],"cost":2,"display":{"row":15,"col":1,"icon":"node_1"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"target_part":"Per Hit","behavior":"modify","cost":0,"multipliers":[200,50,0,0,0,0]},{"type":"add_spell_prop","base_spell":3,"target_part":"Total Damage","behavior":"modify","hits":{"Per Hit":1}},{"type":"add_spell_prop","base_spell":3,"cost":-5}],"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":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","behavior":"modify","multipliers":[40,0,0,10,0,20]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","behavior":"modify","hits":{"Spin Attack":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":"stealing"}],"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 Bomb","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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":6,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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":{"Spin Attack":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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":7,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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}]} +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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","behavior":"modify","multipliers":[40,0,0,10,0,20]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","behavior":"modify","hits":{"Spin Attack":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":"stealing"}],"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 Bomb","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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":6,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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":{"Spin Attack":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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":7,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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 b0777ecfcf9ed6b43917f979c60e29143f0e12c9 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 09:21:13 -0700 Subject: [PATCH 19/82] Fix ability tree "appx. toposort"... finally... --- js/atree.js | 39 ++++++++--------------------- js/skillpoints.js | 56 +++-------------------------------------- js/utils.js | 64 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 78 insertions(+), 81 deletions(-) diff --git a/js/atree.js b/js/atree.js index 0a6151c..3e2f925 100644 --- a/js/atree.js +++ b/js/atree.js @@ -170,40 +170,23 @@ const atree_node = new (class extends ComputeNode { } node.parents = parents; } - console.log(atree_map); + let sccs = make_SCC_graph(atree_head, atree_map.values()); let atree_topo_sort = []; - topological_sort_tree(atree_head, atree_topo_sort, new Map()); - atree_topo_sort.reverse(); + for (const scc of sccs) { + for (const node of scc.nodes) { + delete node.visited; + delete node.assigned; + delete node.scc; + atree_topo_sort.push(node); + } + } + console.log("Approximate topological order ability tree:"); + console.log(atree_topo_sort); return atree_topo_sort; } })(); -/** - * Create a reverse topological sort of the tree in the result list. - * NOTE: our structure isn't a tree... it isn't even acyclic... but do it anyway i guess... - * - * https://en.wikipedia.org/wiki/Topological_sorting - * @param tree: Root of tree to sort - * @param res: Result list (reverse topological order) - * @param mark_state: Bookkeeping. Call with empty Map() - */ -function topological_sort_tree(tree, res, mark_state) { - const state = mark_state.get(tree); - if (state === undefined) { - // unmarked. - mark_state.set(tree, false); // temporary mark - for (const child of tree.children) { - topological_sort_tree(child, res, mark_state); - } - mark_state.set(tree, true); // permanent mark - res.push(tree); - } - // these cases are not needed. Case 1 does nothing, case 2 should never happen. - // else if (state === true) { return; } // permanent mark. - // else if (state === false) { throw "not a DAG"; } // temporary mark. -} - /** * Display ability tree from topologically sorted list. * diff --git a/js/skillpoints.js b/js/skillpoints.js index f83a47e..f57384d 100644 --- a/js/skillpoints.js +++ b/js/skillpoints.js @@ -223,21 +223,15 @@ function construct_scc_graph(items_to_consider) { let terminal_node = { item: null, children: [], - parents: nodes, - visited: false, - assigned: false, - scc: null + parents: nodes }; let root_node = { item: null, children: nodes, parents: [], - visited: false, - assigned: false, - scc: null }; for (const item of items_to_consider) { - nodes.push({item: item, children: [terminal_node], parents: [root_node], visited: false, assigned: false, scc: null}); + nodes.push({item: item, children: [terminal_node], parents: [root_node]}); } // Dependency graph construction. for (const node_a of nodes) { @@ -253,50 +247,6 @@ function construct_scc_graph(items_to_consider) { } } } - const res = [] - /* - * SCC graph construction. - * https://en.wikipedia.org/wiki/Kosaraju%27s_algorithm - */ - function visit(u, res) { - if (u.visited) { return; } - u.visited = true; - for (const child of u.children) { - if (!child.visited) { visit(child, res); } - } - res.push(u); - } - visit(root_node, res); - res.reverse(); - const sccs = []; - function assign(node, cur_scc) { - if (node.assigned) { return; } - cur_scc.nodes.push(node); - node.scc = cur_scc; - node.assigned = true; - for (const parent of node.parents) { - assign(parent, cur_scc); - } - } - for (const node of res) { - if (node.assigned) { continue; } - const cur_scc = { - nodes: [], - children: new Set(), - parents: new Set() - }; - assign(node, cur_scc); - sccs.push(cur_scc); - } - for (const scc of sccs) { - for (const node of scc.nodes) { - for (const child of node.children) { - scc.children.add(child.scc); - } - for (const parent of node.parents) { - scc.parents.add(parent.scc); - } - } - } + const sccs = make_SCC_graph(root_node, nodes); return [root_node, terminal_node, sccs]; } diff --git a/js/utils.js b/js/utils.js index 2fa1c21..30cc395 100644 --- a/js/utils.js +++ b/js/utils.js @@ -889,3 +889,67 @@ function make_elem(type, classlist = [], args = {}) { } return ret_elem; } + +/** + * Nodes must have: + * node: { + * parents: List[node] + * children: List[node] + * } + * + * This function will define: "visited, assigned, scc" properties + * Assuming a connected graph. (only one root) + */ +function make_SCC_graph(root_node, nodes) { + for (const node of nodes) { + node.visited = false; + node.assigned = false; + node.scc = null; + } + const res = [] + /* + * SCC graph construction. + * https://en.wikipedia.org/wiki/Kosaraju%27s_algorithm + */ + function visit(u, res) { + if (u.visited) { return; } + u.visited = true; + for (const child of u.children) { + if (!child.visited) { visit(child, res); } + } + res.push(u); + } + visit(root_node, res); + res.reverse(); + const sccs = []; + function assign(node, cur_scc) { + if (node.assigned) { return; } + cur_scc.nodes.push(node); + node.scc = cur_scc; + node.assigned = true; + for (const parent of node.parents) { + assign(parent, cur_scc); + } + } + for (const node of res) { + if (node.assigned) { continue; } + const cur_scc = { + nodes: [], + children: new Set(), + parents: new Set() + }; + assign(node, cur_scc); + sccs.push(cur_scc); + } + for (const scc of sccs) { + for (const node of scc.nodes) { + for (const child of node.children) { + scc.children.add(child.scc); + } + for (const parent of node.parents) { + scc.parents.add(parent.scc); + } + } + } + return sccs; +} From eee970701619960fbec75743f918ec93b64c95f7 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 09:37:39 -0700 Subject: [PATCH 20/82] Spellcost NaN good documentation! --- js/atree.js | 6 +++--- js/atree_constants.js | 27 +-------------------------- js/atree_constants_min.js | 2 +- 3 files changed, 5 insertions(+), 30 deletions(-) diff --git a/js/atree.js b/js/atree.js index 3e2f925..40a1dc2 100644 --- a/js/atree.js +++ b/js/atree.js @@ -41,8 +41,8 @@ add_spell_prop: { // If target part does not exist, a new part is created. behavior: Optional[str] // One of: "merge", "modify". default: merge // merge: add if exist, make new part if not exist - // modify: change existing part. do nothing if not exist - cost: Optional[int] // change to spellcost + // modify: increment existing part. do nothing if not exist + cost: Optional[int] // change to spellcost. If the spell is not spell 1-4, this must be left empty. multipliers: Optional[array[float, 6]] // Additive changes to spellmult (for damage spell) power: Optional[float] // Additive change to healing power (for heal spell) hits: Optional[Map[str, float]] // Additive changes to hits (for total entry) @@ -62,7 +62,7 @@ raw_stat: { // string value means bind to (or create) named button behavior: Optional[str] // One of: "merge", "modify". default: merge // merge: add if exist, make new part if not exist - // modify: change existing part. do nothing if not exist + // modify: increment existing part. do nothing if not exist bonuses: List[stat_bonus] } stat_bonus: { diff --git a/js/atree_constants.js b/js/atree_constants.js index 6033742..b235d21 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -9338,9 +9338,6 @@ const atrees = { "name": "Dash", "cost": 20, "base_spell": 2, - "spell_type": "damage", - "scaling": "spell", - "use_atkspd": true, "display": "Total Damage", "parts": [ { @@ -9418,9 +9415,6 @@ const atrees = { "name": "Smoke Bomb", "cost": 40, "base_spell": 4, - "spell_type": "damage", - "scaling": "spell", - "use_atkspd": true, "display": "Total Damage", "parts": [ { @@ -9504,9 +9498,6 @@ const atrees = { "name": "Multihit", "cost": 45, "base_spell": 3, - "spell_type": "damage", - "scaling": "spell", - "use_atkspd": true, "display": "Total Damage", "parts": [ { @@ -10464,11 +10455,7 @@ const atrees = { { "type": "replace_spell", "name": "Violent Vortex", - "cost": 0, "base_spell": 5, - "spell_type": "damage", - "scaling": "spell", - "use_atkspd": true, "display": "Total Damage", "parts": [ { @@ -10615,11 +10602,7 @@ const atrees = { { "type": "replace_spell", "name": "Shurikens", - "cost": 0, "base_spell": 6, - "spell_type": "damage", - "scaling": "spell", - "use_atkspd": true, "display": "Total Damage", "parts": [ { @@ -11037,11 +11020,7 @@ const atrees = { { "type": "replace_spell", "name": "Violent Vortex", - "cost": 0, "base_spell": 5, - "spell_type": "damage", - "scaling": "spell", - "use_atkspd": true, "display": "Total Damage", "parts": [ { @@ -11323,11 +11302,7 @@ const atrees = { { "type": "replace_spell", "name": "Jasmine Bloom", - "cost": 0, "base_spell": 7, - "spell_type": "damage", - "scaling": "spell", - "use_atkspd": true, "display": "Per Hit", "parts": [ { @@ -11425,4 +11400,4 @@ const atrees = { ] } ] -} \ No newline at end of file +} diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 436ee19..3f6e146 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","behavior":"modify","multipliers":[40,0,0,10,0,20]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","behavior":"modify","hits":{"Spin Attack":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":"stealing"}],"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 Bomb","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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":6,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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":{"Spin Attack":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","cost":0,"base_spell":5,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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","cost":0,"base_spell":7,"spell_type":"damage","scaling":"spell","use_atkspd":true,"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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","behavior":"modify","multipliers":[40,0,0,10,0,20]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","behavior":"modify","hits":{"Spin Attack":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":"stealing"}],"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 Bomb","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":{"Spin Attack":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 From 99408e5e16934ea1734b92b1462e48a2797d2bb6 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 09:41:18 -0700 Subject: [PATCH 21/82] Add lemonalade to credits.txt --- credits.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/credits.txt b/credits.txt index 41ef4d1..9be7cb4 100644 --- a/credits.txt +++ b/credits.txt @@ -14,6 +14,7 @@ Additional Contributors, in no particular order: - touhoku (best IM) - HeyZeer0 (huge help in getting our damage formulas right) - blankman (fin444 github) (beautifying atree visuals) + - lemonalade (ability tree pdf for us to copy from :) ) - Lennon (Skill point formula reversing) - Phanta (WynnAtlas custom expression parser / item search) - nbcss (and WIM team) (Crafted Item mechanics reverse engineering, testing) From b07faf7b47e33e9644af4faf4b09bfe61f1c235c Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 09:54:05 -0700 Subject: [PATCH 22/82] Fix lacerate vs. spin attack interaction thanks good documentation! --- js/atree_constants.js | 44 +++++++++++++++++++++------------------ js/atree_constants_min.js | 2 +- 2 files changed, 25 insertions(+), 21 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index b235d21..45b4f90 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -9989,27 +9989,31 @@ const atrees = { "properties": {}, "effects": [ { - "type": "add_spell_prop", + "type": "replace_spell", + "name": "Lacerate", "base_spell": 1, - "target_part": "Spin Attack", - "behavior": "modify", - "multipliers": [ - 40, - 0, - 0, - 10, - 0, - 20 + "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 + } + } ] - }, - { - "type": "add_spell_prop", - "base_spell": 1, - "target_part": "Total Damage", - "behavior": "modify", - "hits": { - "Spin Attack": 3 - } } ] }, @@ -10992,7 +10996,7 @@ const atrees = { "base_spell": 1, "target_part": "Total Damage", "hits": { - "Spin Attack": 1 + "Per Hit": 1 } } ] diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 3f6e146..aba3699 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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":"add_spell_prop","base_spell":1,"target_part":"Spin Attack","behavior":"modify","multipliers":[40,0,0,10,0,20]},{"type":"add_spell_prop","base_spell":1,"target_part":"Total Damage","behavior":"modify","hits":{"Spin Attack":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":"stealing"}],"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 Bomb","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":{"Spin Attack":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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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":"stealing"}],"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 Bomb","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 From ca3cf4c0c1f6db2f6ae8772f636dfd3e363093e5 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 10:09:12 -0700 Subject: [PATCH 23/82] Fix lacerate, spin, wall of smoke, double slice --- js/atree_constants.js | 16 ++++++++++++---- js/atree_constants_min.js | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 45b4f90..b6217f0 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -9262,7 +9262,7 @@ const atrees = { "base_spell": 1, "target_part": "Total Damage", "hits": { - "Spin Attack": 2 + "Spin Attack": 1 }, "display": "Total Damage" } @@ -9270,7 +9270,7 @@ const atrees = { }, { "display_name": "Poisoned Blade", - "desc": "For every 24 or 2 Raw Main Attack Damage you have from items, gain +5/3s Poison Damage (Max 50/3s)", + "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": [ @@ -9358,7 +9358,7 @@ const atrees = { }, { "display_name": "Double Slice", - "desc": "Your Main Attack will attack twice, but deal -4% damage per hit.", + "desc": "Your Main Attack will attack twice, but deal -40% damage per hit.", "archetype": "Acrobat", "archetype_req": 0, "base_abil": 999, @@ -9380,6 +9380,7 @@ const atrees = { { "type": "add_spell_prop", "base_spell": 0, + "target_part": "Melee", "multipliers": [ -40, 0, @@ -9388,6 +9389,13 @@ const atrees = { 0, 0 ] + }, + { + "type": "add_spell_prop", + "base_spell": 0, + "display": "Total Damage", + "target_part": "Total Damage", + "hits": {"Melee": 2} } ] }, @@ -10111,7 +10119,7 @@ const atrees = { { "type": "add_spell_prop", "base_spell": 4, - "target_part": "Per Bomb", + "target_part": "Per Tick", "multipliers": [ -20, 0, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index aba3699..a7a47a2 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":2},"display":"Total Damage"}],"id":3},{"display_name":"Poisoned Blade","desc":"For every 24 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":0,"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 -4% 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,"multipliers":[-40,0,0,0,0,0]}],"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":"stealing"}],"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 Bomb","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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":0,"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":"stealing"}],"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 From a63b4df3aa9dc11d44e5f3148831db6cd06b4208 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 10:25:32 -0700 Subject: [PATCH 24/82] Expand the arrow hitbox even further --- css/sq2bs.css | 4 ++++ js/atree.js | 2 +- js/display.js | 6 ++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/css/sq2bs.css b/css/sq2bs.css index 59e4e99..191226a 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -132,6 +132,10 @@ input.equipment-input { font-weight: bold; } +.clickable { + cursor: pointer; +} + :root { --scaled-fontsize: 2.5rem; } diff --git a/js/atree.js b/js/atree.js index d761878..18850dc 100644 --- a/js/atree.js +++ b/js/atree.js @@ -864,7 +864,7 @@ class AbilityTreeEnsureNodesNode extends ComputeNode { let display_elem = document.createElement('div'); display_elem.classList.add("col", "pe-0"); // TODO: just pass these elements into the display node instead of juggling the raw IDs... - let spell_summary = make_elem('div', ["col", "spell-display", "dark-5", "rounded", "dark-shadow", "pt-2", "border", "border-dark"], + let spell_summary = make_elem('div', ["col", "spell-display", "clickable", "dark-5", "rounded", "dark-shadow", "pt-2", "border", "border-dark"], { id: "spell"+spell.base_spell+"-infoAvg" }); let spell_detail = make_elem('div', ["col", "spell-display", "dark-5", "rounded", "dark-shadow", "py-2"], { id: "spell"+spell.base_spell+"-info" }); diff --git a/js/display.js b/js/display.js index 2a9cdce..83af057 100644 --- a/js/display.js +++ b/js/display.js @@ -1928,10 +1928,8 @@ function addClickableArrow(elem, target) { //up and down arrow - done ugly let arrow = make_elem("img", [], { id: "arrow_" + elem.id, src: "../media/icons/" + (newIcons ? "new" : "old") + "/toggle_down.png" }); arrow.style.maxWidth = document.body.clientWidth > 900 ? "3rem" : "10rem"; - let container = make_elem('div', ['col']); - container.appendChild(arrow); - elem.appendChild(container); - container.addEventListener("click", () => toggle_spell_tab(arrow, target)); + elem.appendChild(arrow); + elem.addEventListener("click", () => toggle_spell_tab(arrow, target)); } // toggle arrow thinger From d5d0f87bccc61d13584d7a5ba70e060d7b71ec8b Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 10:31:38 -0700 Subject: [PATCH 25/82] Change from `clickable` to `fake-button` holy UI design --- css/sq2bs.css | 4 ---- js/atree.js | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/css/sq2bs.css b/css/sq2bs.css index 191226a..59e4e99 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -132,10 +132,6 @@ input.equipment-input { font-weight: bold; } -.clickable { - cursor: pointer; -} - :root { --scaled-fontsize: 2.5rem; } diff --git a/js/atree.js b/js/atree.js index 18850dc..2e18f05 100644 --- a/js/atree.js +++ b/js/atree.js @@ -864,7 +864,7 @@ class AbilityTreeEnsureNodesNode extends ComputeNode { let display_elem = document.createElement('div'); display_elem.classList.add("col", "pe-0"); // TODO: just pass these elements into the display node instead of juggling the raw IDs... - let spell_summary = make_elem('div', ["col", "spell-display", "clickable", "dark-5", "rounded", "dark-shadow", "pt-2", "border", "border-dark"], + let spell_summary = make_elem('div', ["col", "spell-display", "fake-button", "dark-5", "rounded", "dark-shadow", "pt-2", "border", "border-dark"], { id: "spell"+spell.base_spell+"-infoAvg" }); let spell_detail = make_elem('div', ["col", "spell-display", "dark-5", "rounded", "dark-shadow", "py-2"], { id: "spell"+spell.base_spell+"-info" }); From 2b8ffce379263b8b6f8c71a97591206e9fdb4e01 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 10:49:23 -0700 Subject: [PATCH 26/82] Fix shenanigans stealing --- 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 b6217f0..54ba044 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -10071,7 +10071,7 @@ const atrees = { "inputs": [ { "type": "stat", - "name": "stealing" + "name": "eSteal" } ], "output": [ diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index a7a47a2..b438c9c 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":0,"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":"stealing"}],"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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":0,"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 From 2c17845866f032fb397202d5fd97750bee6d3be2 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 11:00:10 -0700 Subject: [PATCH 27/82] Fix poisoned blade cost --- 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 54ba044..07d1648 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -9280,7 +9280,7 @@ const atrees = { "blockers": [ "Double Slice" ], - "cost": 0, + "cost": 1, "display": { "row": 7, "col": 2, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index b438c9c..81e614e 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":0,"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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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 From bb47fee2f880a37f76b7b6b9b5be368174ae206a Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 11:14:38 -0700 Subject: [PATCH 28/82] Fix Haemhorrage AP cost remove duplicate entry in atree json?? lol wtf --- js/atree_constants.js | 25 +------------------------ js/atree_constants_min.js | 2 +- 2 files changed, 2 insertions(+), 25 deletions(-) diff --git a/js/atree_constants.js b/js/atree_constants.js index 07d1648..09d8c8a 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -4604,29 +4604,6 @@ const atrees = { }, "effects": [] }, - - { - "display_name": "Haemorrhage", - "desc": "Reduce Blood Pact's health cost. (0.3% health per mana)", - "archetype": "Fallen", - "archetype_req": 0, - "base_abil": "Blood Pact", - "parents": ["Blood Pact"], - "dependencies": ["Blood Pact"], - "blockers": [], - "cost": 1, - "display": { - "row": 35, - "col": 2, - "icon": "node_1" - }, - "properties": {}, - "effects": [{ - "type": "raw_stat", - "bonuses": [{ "type": "prop", "abil": "Blood Pact", "name": "health_cost", "value": -0.3}] - }] - }, - { "display_name": "Brink of Madness", "desc": "If your health is 25% full or less, gain +40% Resistance", @@ -6731,7 +6708,7 @@ const atrees = { "Blood Pact" ], "blockers": [], - "cost": 1, + "cost": 2, "display": { "row": 35, "col": 2, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index 81e614e..daaacfd 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":"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":1,"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":65},{"display_name":"Brink of Madness","desc":"If your health is 25% full or less, gain +40% Resistance","parents":[64,67],"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":66},{"display_name":"Cheaper Uppercut 2","desc":"Reduce the Mana cost of Uppercut","base_abil":8,"parents":[63,66],"dependencies":[],"blockers":[],"cost":1,"display":{"row":35,"col":6,"icon":"node_0"},"properties":{},"effects":[{"type":"add_spell_prop","base_spell":3,"cost":-5}],"id":67},{"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":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":[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":["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 From a364cb0fc7622e7eff9453152508e69ae35898ff Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 11:59:29 -0700 Subject: [PATCH 29/82] HOTFIX: patch attack speed display introduced by stat box merge... manual test failure... TODO: unit test framework --- js/display.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/display.js b/js/display.js index 83af057..ff5124f 100644 --- a/js/display.js +++ b/js/display.js @@ -1466,15 +1466,16 @@ function displaySpellDamage(parent_elem, overallparent_elem, stats, spell, spell if (spell_info.name === spell.display) { if (spellIdx === 0) { - let attackSpeeds = ["Super Slow", "Very Slow", "Slow", "Normal", "Fast", "Very Fast", "Super Fast"]; + 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) { adjAtkSpd = 0; } add_summary("Average DPS: ", averageDamage * baseDamageMultiplier[adjAtkSpd], "Damage"); - add_summary("Attack Speed: ", attackSpeeds[adjAtkSpd], "Damage"); + add_summary("Attack Speed: ", display_attack_speeds[adjAtkSpd], "Damage"); add_summary("Per Attack: ", averageDamage, "Damage"); } else { From 75f4fc684bb24c168eb656a02b6a49bee09ccaa9 Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 12:06:34 -0700 Subject: [PATCH 30/82] 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 31/82] 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 32/82] 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 8383ed0c06b5007360ce5732b374b8e6ea22d45b Mon Sep 17 00:00:00 2001 From: hppeng Date: Wed, 20 Jul 2022 21:55:07 -0700 Subject: [PATCH 33/82] Add more doc for atree specification also, add description to Marked and fix More Marked --- js/atree.js | 14 +++++++++----- js/atree_constants.js | 11 ++--------- js/atree_constants_min.js | 2 +- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/js/atree.js b/js/atree.js index 2e18f05..623aa29 100644 --- a/js/atree.js +++ b/js/atree.js @@ -79,12 +79,16 @@ stat_scaling: { round: Optional[bool] // Control floor behavior. True for stats and false for slider by default slider_behavior: Optional[str] // One of: "merge", "modify". default: merge // merge: add if exist, make new part if not exist - // modify: change existing part. do nothing if not exist + // modify: change existing part, by incrementing properties. do nothing if not exist slider_max: Optional[float] // affected by slider_behavior - "inputs": Optional[list[scaling_target]], - "output": scaling_target | List[scaling_target], - "scaling": list[float], - "max": float + inputs: Optional[list[scaling_target]] // List of things to scale. Omit this if using slider + + output: Optional[scaling_target | List[scaling_target]] // One of the following: + // 1. Single output scaling target + // 2. List of scaling targets (all scaled the same) + // 3. Omitted. no output (useful for modifying slider only without input or output) + scaling: Optional[list[float]] // One float for each input. Sums into output. + max: float } scaling_target: { "type": "stat" | "prop", diff --git a/js/atree_constants.js b/js/atree_constants.js index 09d8c8a..144601e 100644 --- a/js/atree_constants.js +++ b/js/atree_constants.js @@ -10499,7 +10499,7 @@ const atrees = { }, { "display_name": "Marked", - "desc": "Smoke Bomb will add +1 Mark to enemies it hits. (Max 5, 0.5s Cooldown)", + "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": [ @@ -11127,14 +11127,7 @@ const atrees = { "type": "stat_scaling", "slider": true, "slider_name": "Marked", - "slider_max": 2, - "output": [ - { - "type": "stat", - "name": "damMult.Marked" - } - ], - "scaling": [10] + "slider_max": 2 } ] }, diff --git a/js/atree_constants_min.js b/js/atree_constants_min.js index daaacfd..f8753d6 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":["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) 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 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}],"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 From 4aee8f2d31f6f799d2b3990de018c0a764430ed5 Mon Sep 17 00:00:00 2001 From: fin444 Date: Thu, 21 Jul 2022 11:26:46 -0700 Subject: [PATCH 34/82] 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 35/82] 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 36/82] 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 37/82] 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 38/82] 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 39/82] 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 40/82] 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 41/82] 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 42/82] 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 43/82] 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 44/82] 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 45/82] 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 46/82] 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 47/82] 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 48/82] 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 49/82] 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 50/82] 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 51/82] 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 52/82] 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 53/82] 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 ecb73af9116a5e8d61f1958b9e020fa5cd73ab57 Mon Sep 17 00:00:00 2001 From: fin444 Date: Sat, 23 Jul 2022 13:18:35 -0400 Subject: [PATCH 54/82] texture atlas for atree connectors --- js/atree.js | 92 +++++++++++++++++------------- media/atree/connect_0011.png | Bin 182 -> 0 bytes media/atree/connect_0011_1.png | Bin 1587 -> 0 bytes media/atree/connect_0101.png | Bin 183 -> 0 bytes media/atree/connect_0101_1.png | Bin 1586 -> 0 bytes media/atree/connect_0110.png | Bin 178 -> 0 bytes media/atree/connect_0110_1.png | Bin 1579 -> 0 bytes media/atree/connect_0111.png | Bin 202 -> 0 bytes media/atree/connect_0111_0011.png | Bin 1609 -> 0 bytes media/atree/connect_0111_0101.png | Bin 1615 -> 0 bytes media/atree/connect_0111_0110.png | Bin 1620 -> 0 bytes media/atree/connect_0111_0111.png | Bin 1604 -> 0 bytes media/atree/connect_1001.png | Bin 184 -> 0 bytes media/atree/connect_1001_1.png | Bin 1581 -> 0 bytes media/atree/connect_1010.png | Bin 177 -> 0 bytes media/atree/connect_1010_1.png | Bin 1578 -> 0 bytes media/atree/connect_1011.png | Bin 202 -> 0 bytes media/atree/connect_1011_0011.png | Bin 1609 -> 0 bytes media/atree/connect_1011_1001.png | Bin 1613 -> 0 bytes media/atree/connect_1011_1010.png | Bin 1616 -> 0 bytes media/atree/connect_1011_1011.png | Bin 1602 -> 0 bytes media/atree/connect_1100.png | Bin 184 -> 0 bytes media/atree/connect_1100_1.png | Bin 1590 -> 0 bytes media/atree/connect_1101.png | Bin 205 -> 0 bytes media/atree/connect_1101_0101.png | Bin 1612 -> 0 bytes media/atree/connect_1101_1001.png | Bin 1616 -> 0 bytes media/atree/connect_1101_1100.png | Bin 1615 -> 0 bytes media/atree/connect_1101_1101.png | Bin 1604 -> 0 bytes media/atree/connect_1110.png | Bin 203 -> 0 bytes media/atree/connect_1110_0110.png | Bin 1614 -> 0 bytes media/atree/connect_1110_1010.png | Bin 1610 -> 0 bytes media/atree/connect_1110_1100.png | Bin 1607 -> 0 bytes media/atree/connect_1110_1110.png | Bin 1603 -> 0 bytes media/atree/connect_1111.png | Bin 221 -> 0 bytes media/atree/connect_1111_0011.png | Bin 1630 -> 0 bytes media/atree/connect_1111_0101.png | Bin 1634 -> 0 bytes media/atree/connect_1111_0110.png | Bin 1633 -> 0 bytes media/atree/connect_1111_0111.png | Bin 1629 -> 0 bytes media/atree/connect_1111_1001.png | Bin 1635 -> 0 bytes media/atree/connect_1111_1010.png | Bin 1633 -> 0 bytes media/atree/connect_1111_1011.png | Bin 1630 -> 0 bytes media/atree/connect_1111_1100.png | Bin 1633 -> 0 bytes media/atree/connect_1111_1101.png | Bin 1627 -> 0 bytes media/atree/connect_1111_1110.png | Bin 1630 -> 0 bytes media/atree/connect_1111_1111.png | Bin 1616 -> 0 bytes media/atree/connectors.png | Bin 0 -> 4186 bytes media/atree/node-blocked.png | Bin 1147 -> 0 bytes media/atree/node-selected.png | Bin 1147 -> 0 bytes media/atree/node.png | Bin 1147 -> 0 bytes 49 files changed, 53 insertions(+), 39 deletions(-) delete mode 100644 media/atree/connect_0011.png delete mode 100644 media/atree/connect_0011_1.png delete mode 100644 media/atree/connect_0101.png delete mode 100644 media/atree/connect_0101_1.png delete mode 100644 media/atree/connect_0110.png delete mode 100644 media/atree/connect_0110_1.png delete mode 100644 media/atree/connect_0111.png delete mode 100644 media/atree/connect_0111_0011.png delete mode 100644 media/atree/connect_0111_0101.png delete mode 100644 media/atree/connect_0111_0110.png delete mode 100644 media/atree/connect_0111_0111.png delete mode 100644 media/atree/connect_1001.png delete mode 100644 media/atree/connect_1001_1.png delete mode 100644 media/atree/connect_1010.png delete mode 100644 media/atree/connect_1010_1.png delete mode 100644 media/atree/connect_1011.png delete mode 100644 media/atree/connect_1011_0011.png delete mode 100644 media/atree/connect_1011_1001.png delete mode 100644 media/atree/connect_1011_1010.png delete mode 100644 media/atree/connect_1011_1011.png delete mode 100644 media/atree/connect_1100.png delete mode 100644 media/atree/connect_1100_1.png delete mode 100644 media/atree/connect_1101.png delete mode 100644 media/atree/connect_1101_0101.png delete mode 100644 media/atree/connect_1101_1001.png delete mode 100644 media/atree/connect_1101_1100.png delete mode 100644 media/atree/connect_1101_1101.png delete mode 100644 media/atree/connect_1110.png delete mode 100644 media/atree/connect_1110_0110.png delete mode 100644 media/atree/connect_1110_1010.png delete mode 100644 media/atree/connect_1110_1100.png delete mode 100644 media/atree/connect_1110_1110.png delete mode 100644 media/atree/connect_1111.png delete mode 100644 media/atree/connect_1111_0011.png delete mode 100644 media/atree/connect_1111_0101.png delete mode 100644 media/atree/connect_1111_0110.png delete mode 100644 media/atree/connect_1111_0111.png delete mode 100644 media/atree/connect_1111_1001.png delete mode 100644 media/atree/connect_1111_1010.png delete mode 100644 media/atree/connect_1111_1011.png delete mode 100644 media/atree/connect_1111_1100.png delete mode 100644 media/atree/connect_1111_1101.png delete mode 100644 media/atree/connect_1111_1110.png delete mode 100644 media/atree/connect_1111_1111.png create mode 100644 media/atree/connectors.png delete mode 100644 media/atree/node-blocked.png delete mode 100644 media/atree/node-selected.png delete mode 100644 media/atree/node.png diff --git a/js/atree.js b/js/atree.js index e2249da..e8dc914 100644 --- a/js/atree.js +++ b/js/atree.js @@ -973,7 +973,8 @@ function render_AT(UI_elem, list_elem, tree) { const parent_id = parent_abil.id; let connect_elem = document.createElement("div"); - connect_elem.style = "background-size: cover; width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated;"; + // connect_elem.style = "background-size: cover; width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated;"; + connect_elem.style = "width: 112.5%; height: 112.5%; position: absolute; top: -5.55%; left: -5.55%; image-rendering: pixelated; background-image: url('../media/atree/connectors.png'); background-size: 1200% 400%;" // connect up for (let i = ability.display.row - 1; i > parent_abil.display.row; i--) { const coord = i + "," + ability.display.col; @@ -1233,26 +1234,6 @@ function set_connector_type(connector_info) { // left right up down } } -// draw the connector onto the screen -function atree_render_connection(atree_connectors_map) { - for (let i of atree_connectors_map.keys()) { - let connector_info = atree_connectors_map.get(i); - let connector_elem = connector_info.connector; - let connector_img = document.createElement('img'); - set_connector_type(connector_info); - connector_img.src = '../media/atree/connect_'+connector_info.type+'.png'; - connector_img.style = "width: 100%; height: 100%;" - connector_elem.replaceChildren(connector_img); - connector_info.highlight = [0, 0, 0, 0]; - let target_elem = document.getElementById("atree-row-" + i.split(",")[0]).children[i.split(",")[1]]; - if (target_elem.children.length != 0) { - // janky special case... - connector_elem.style.display = 'none'; - } - target_elem.appendChild(connector_elem); - }; -}; - // toggle the state of a node. function atree_set_state(node_wrapper, new_state) { let icon = node_wrapper.ability.display.icon; @@ -1280,6 +1261,48 @@ function atree_set_state(node_wrapper, new_state) { } }; +// first key is connector type, second key is highlight, then [x, y] pair of 0-index positions in the tile atlas +const atreeConnectorAtlasPositions = { + "1100": {"0000": [0, 0], "1100": [1, 0]}, + "1010": {"0000": [2, 0], "1010": [3, 0]}, + "0110": {"0000": [4, 0], "0110": [5, 0]}, + "1001": {"0000": [6, 0], "1001": [7, 0]}, + "0101": {"0000": [8, 0], "0101": [9, 0]}, + "0011": {"0000": [10, 0], "0011": [11, 0]}, + "1101": {"0000": [0, 1], "1101": [1, 1], "1100": [2, 1], "1001": [3, 1], "0101": [4, 1]}, + "0111": {"0000": [5, 1], "0111": [6, 1], "0110": [7, 1], "0101": [8, 1], "0011": [9, 1]}, + "1110": {"0000": [0, 2], "1110": [1, 2], "1100": [2, 2], "1010": [3, 2], "0110": [4, 2]}, + "1011": {"0000": [5, 2], "1011": [6, 2], "1010": [7, 2], "1001": [8, 2], "0011": [9, 2]}, + "1111": {"0000": [0, 3], "1111": [1, 3], "1110": [2, 3], "1101": [3, 3], "1100": [4, 3], "1011": [5, 3], "1010": [6, 3], "1001": [7, 3], "0111": [8, 3], "0110": [9, 3], "0101": [10, 3], "0011": [11, 3]} +} +function atlasBGPositionCalc(pos, atlasSize) { + // https://css-tricks.com/focusing-background-image-precise-location-percentages/ + // p = (c + 0.5/z - 0.5) * z/(z - 1) + 0.5 + // z = num tiles in direction + // c = starting pos of tile in percent of total atlas (equal to index/z) + let x = ((pos[0]/atlasSize[0]) + 0.5/atlasSize[0] - 0.5) * atlasSize[0]/(atlasSize[0] - 1) + 0.5 + let y = ((pos[1]/atlasSize[1]) + 0.5/atlasSize[1] - 0.5) * atlasSize[1]/(atlasSize[1] - 1) + 0.5 + return (x * 100) + "% " + (y * 100) + "%" // multiply by 100 to convert decimal to percent +} + +// draw the connector onto the screen +function atree_render_connection(atree_connectors_map) { + for (let i of atree_connectors_map.keys()) { + let connector_info = atree_connectors_map.get(i); + let connector_elem = connector_info.connector; + set_connector_type(connector_info); + connector_info.highlight = [0, 0, 0, 0]; + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[connector_info.type]["0000"], [12, 4]); + let target_elem = document.getElementById("atree-row-" + i.split(",")[0]).children[i.split(",")[1]]; + if (target_elem.children.length != 0) { + // janky special case... + connector_elem.style.display = 'none'; + } + target_elem.appendChild(connector_elem); + }; +}; + +// update the connector (after being drawn the first time by atree_render_connection) function atree_set_edge(atree_connectors_map, parent, child, state) { const connectors = child.connectors.get(parent); const parent_row = parent.ability.display.row; @@ -1294,8 +1317,6 @@ function atree_set_edge(atree_connectors_map, parent, child, state) { let connector_info = atree_connectors_map.get(connector_label); let connector_elem = connector_info.connector; let highlight_state = connector_info.highlight; // left right up down - let connector_img_elem = document.createElement("img"); - connector_img_elem.style = "width: 100%; height: 100%;"; const ctype = connector_info.type; let num_1s = 0; for (let i = 0; i < 4; i++) { @@ -1323,23 +1344,16 @@ function atree_set_edge(atree_connectors_map, parent, child, state) { for (let i = 0; i < 4; i++) { render += highlight_state[i] === 0 ? "0" : "1"; } - if (render == "0000") { - connector_img_elem.src = "../media/atree/connect_" + ctype + ".png"; - } else { - connector_img_elem.src = "../media/atree/connect_" + ctype + "_" + render + ".png"; - } - connector_elem.replaceChildren(connector_img_elem); + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype][render], [12, 4]); continue; - } - // lol bad overloading, [0] is just the whole state - highlight_state[0] += state_delta; - if (highlight_state[0] > 0) { - connector_img_elem.src = '../media/atree/connect_' + ctype + '_1.png'; - connector_elem.replaceChildren(connector_img_elem); - } - else { - connector_img_elem.src = '../media/atree/connect_'+ctype+'.png'; - connector_elem.replaceChildren(connector_img_elem); + } else { + // lol bad overloading, [0] is just the whole state + highlight_state[0] += state_delta; + if (highlight_state[0] > 0) { + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype][ctype], [12, 4]); + } else { + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype]["0000"], [12, 4]); + } } } } diff --git a/media/atree/connect_0011.png b/media/atree/connect_0011.png deleted file mode 100644 index 24b75d681a5893efdc17e2d0a9a01c4bf6d84069..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{*Z=?j1DOs^US?(%x_Snx zs_GLiUK0cgF_i@Q1v4;|O+IS@NwvHyDPeq^;C|(U0bk(}o&}98 Z4AoJ5`^27n5d|8~;OXk;vd$@?2>`P_IiLUl diff --git a/media/atree/connect_0011_1.png b/media/atree/connect_0011_1.png deleted file mode 100644 index d3294b31f4f676ef2fd8b86e2a36923214175201..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1587 zcmah}U1%It6rRKeYf7M2&>}^KDM&@`{Qv9>yKR1Un=EA0HCZ%1nLBsxY=-RoI5Wv^ z0)htA*ayW&gD+MeirAuvPf`@26ns!0M11o_#6J1pgD*aK?(FP#3jqh_=bZV@chC9m zx#yks+Vb4&)3Y4M%{5o*>+t5;ed-Z-zR~I4gV(9{t5CFexHH;V~)? z{0G`Rln?t;q(535!p3|LAxCvGAc*1AW3tQgY1V53Th#Gl5_nGW>8qwqyb49sBr4LW zq9I#1Jw!~^Qi)daDfLG@%_z%pL@46{W-$N~Q&9|qS~k+Hih*=uxu`-c6)6~dvPCu1 zRg6*mwKRa%!@bFT7>@@$u8Upls|M0+#X`Di`>3L*7V>p!Q^VCf*;NGIBhJ-04KZw4 z5aKSClBg^2Oj&24-K+_!D3@lthjSmG(BDDi#r>@GcY=^^>1^)j3L5rir!&M#b>q?Np>ic7Nc|bPks}ru$*$eoh z*BwlTC1iMydP3iD=3&|Br$JlUn&Bmkn zEcWw0PU%7yR0DCK?Fw=DOXYq%H$wKeDH9t60!7dRfoy@7ChDk4?66PPR+UbYVThX; z5(UT53lj(|h#L(xW{n3UjX;1D#$M;U-=Bez`B<{@a>j9Io?!PBcl_aba9(TH7dn@I zBwOd({3l1>cb`1hcAd-yBq=-%1+e=gja;*57stIvOM>oqo`n~k;l?ZvIb{{WAe<5K_t diff --git a/media/atree/connect_0101.png b/media/atree/connect_0101.png deleted file mode 100644 index 46c28e71140dd3f19cb5b850637cac6a976c9410..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{*Z=?j1DOs^US?(%x_Snx zs_GLiUK0cgF_i@Q1v4;|O+IS@uoGu_=0ijEGO0D8S6jDxYnLeoc`p6 cNc;}QgfqNP>FVdQ&MBb@0HCBkH2?qr diff --git a/media/atree/connect_0101_1.png b/media/atree/connect_0101_1.png deleted file mode 100644 index 774f2e8e29ea0ae916ac03a5bea6115284aa97ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmah}O=u)V6z=RMh*`5@3=(7yO>dA0R{u?RPj@r3n@J`=1DQBX28}0EQ(ZmNWcnxF zm6=ISyL(u15%%Ok5j^O@gDmdBlc2C5Uc?1K*_+@&@Fd>%;H#dW%|gJ2{&}yz_tkq} zy?P%u_O=)1U!NBQVWGBDZNgjR_v~eO-fne%g4b-PQm+WY!~0jB;yJKqvgY=>@Zgtg ze}l2u*llfYC%ZT9d|+92@#}Bj|NRdntG_+`;%5$J&AokL?XM@kAk3`?tpj#Y-*rhG z%GitBR33&2pah|GbC_UqM48y8oggYp|9tm@BnDntde^M0^<;x~gPpUK?w{?o$k`Eb zJn80*h56FZ1%{9^EDpn7l)1yQloPw~&E1M5<`8yNmJaF-aU)KtXvl`FqRnB@*Cikk z#Zv0|ZnL^ICIPD~bs0-sMHvhR@}MBcX-Cl<$5B*W(RBm}l$}Nl4^fm|ACZh{sx%{M zkgy<*L{5v_@d+zSkjE&&Fsaw4>`^w>0TfY&I8iiNRl<;Gouf0h*@xh9E*GM+)@eeO zCe7lLl+evSjo9@`xJRb3$w}JFtMG_Ido%=C2CHe)rM7GJ#uUw~?gU|yM}Wdp6bt-k z+B}yJ|C6UbSscQqe9s{#b#fqx;Z|dE!t<$B%MxGI^MY(jlvA{E;zGHi<= z+iz2ZZOf-BH8k6BCOow$V>lv|^8m9P0Ey*bi`djeI@OBEP>VitblX6h-6o!nbxU{5 zN&MSs0Ii36=kwt_9`I1l$5_KAGHuv?17jVv3)n)~vus}_HYpHK5#c7CP%YqPh zsFFk-N#x49l}4>B>9RUD8$HZ?fI@!X)m$^~5#x$-U~4-#VDb`YAEis0QLd+vVbjtKfq+UmS4TzE33;Zw;mO(*NnBrhS5K^wiXYY?09LZ`s<^WKi~TDUT>wbw)ErGH}J;X s(@QViyF2sMrQ3JAS6{ZSJ-KyR_*{J<{^*nMXZeV(ZSGYctRLR_50>}cN&o-= diff --git a/media/atree/connect_0110.png b/media/atree/connect_0110.png deleted file mode 100644 index 56a167826e1ea20e21e75957be4fc3738e92c3a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 178 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{*Z=?j1DOs^US?(%x_Snx zs_GLiUK0cgF_i@Q1v4;|O+IS@Q%bv)W@po zPP$idHtL8tI2#ccy%awKDy{^@l`sosKtvFnoiH0k#GMQ8t9;Brg9Y`ux6VE9-t+Fe zZ+1J4!s=729LE(}%~}uMJiE_74A0m4gYV#Veo$>!IqtJ}F8qU6z&@Au8k^kh@1MR8 z#uMG`e!UTIU%vjj`N@}tQF`U4dq|Woefrl82F-e%9qzf`e)c$SWz+BPX1ncen?!+# z-N>QhIEVqoapf!H7?T5<@eUpMVMX}kt8WC}cPqlndRuPCTXf%Vo+NbVq|+xS2gGuP zE0+ta<*^M60nIQ!4u)ZBk1Ik>Y{NHmO9G!mvV)4S+wSsPQ9^l5)I=H8$NrHj013~R z6W6nQwW~7{uqwiSmc_OtjYcDJR1~9RASsq*NwO-bDgp#bkHZX)QJ7wwlFVpoG$n~2 zXMPm&j21i5VO9|!k7r}uLhDB~%r4HuU9yOc50hbDg-awlqyfNESWQ_h)o8W53pA^G;0JLY0SYfrneY9l z%>((cKY9A|#UX6L_W*KUCj){Qb}b@@ET2}bBCthmHzK}k=bySv6w6g~R3wBT%`hxf zGA$WVqM3@KI*R7VbDmb1W;i62@c^^v1Bs;?riLwuk}U^mSf{AunnhHURYDYpnwI9w z<6lU8Xgxe!&WG{1z(XMmQ#W0t6Hi8(MLlH6V46i0W8HCFk5GYkiG4Ln0t{Q`2Y5iG zI2;H(Q`W9_TNObSA=%vQ4sqrI6#Cl_-Ds4~{Cz*5I~iuuDTZzux~9RiWSVAihIol4 zDfAX2Q)IEI3OrNZhU7s)%-Rk@^OEeXgyJkp`cX8j2y9uN#Z3RT;c&P(!!?{y;F49< zmQ7nx`-*B8HCr(enDQJPxxRP&f6)9W@o<%=``YwVSp9h6o*j@K`s$Kv<{bKb-s?6d z(-KmAL|tL#B>OlVP#6Z#hf|n;#$M|sgUE`fAho2rNGoC!VWN4cq^mLk7bdDXk53~n z8{vdj2cQ~=18tX!!>`Zwl^PCR#x7A i@mZ%}Jhr#?JI77Fc*OYi$Gcy%+1#pkYPUD{uKx>>Zr_6d diff --git a/media/atree/connect_0111.png b/media/atree/connect_0111.png deleted file mode 100644 index 5ab0abba1f35b7bd2546100df001cc0977c697ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 202 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{*Z=?j1DOs^US?(%x_Snx zs_GLiUK0cgF_i@Q1v4;|O+IS@x-+ z{Ek1m8p{;Yl(m6NY4fR4mdv_VvWd_<`+Y zCRv4U2oe&AWyK1$2vt=j7Az18B18q`l1y?3#KC{@-nPzlYmYcd@z1abJ8m^A9-(b}8LlUE&@* ze*RA|=349R`f9v>?bdtc`(GMHW#`x5ktkoj{NlpWs}CRkb(aNXn;To)!XLkR9CvQX zZ*OPY&2`I(0+F~;hl+zB1{B9tuMcA4?9q(x(5@fWgulQ3M&Nz7CcLFLsg!jN7^k_L1WX@N&GnTqmXB`q!aCDH39M%CK$xc=9oQ93mrfaX+UC05oIX|Sk^f@&FTjb zT;y^lI&B}uRNACzw4XS%en7+Q(kR?@#g~zDO_x{u7iG0|bJpIw)5H{v}0y(Oa0YMDQj+}j#Ps6SWY*EXN9N)F_N8*-c z6B{aWb(tb8(+cVk>>+3X((x)CS;yrOPa{k-5;~Oe0JG==iAG4-#Kc5Y*F1zt#YAR@ zD#)x<973^y6~!3Ezn1vWdZag*594ux2YZ;7HMfEk!!Qt5l`V7DUZOB>wAa)2hEQX55MYgU)TH;RzDoOivzMn z-1a_SVBq;s4EmsXP1Os3c~>Ua0v6y*lXB|isxw#>Nu1j?3Lk(Dip~& zaXOk}U`M5+_%!meK1t|e7gPgrpzU&T`1xW#UK%0$yOfCy0)ZlELLh;cChDk4?66PP zR+Y|@VThX;5;@1v3lj(|h#L(xW{n3U4MBhe#@-8$-~I(g=F{=ojg;eNF0!k{-Tq__ zoI4GBu|5Bzb91i6-#NMR%*mD0-igTH**)Gle#36eHBTEq&(-bk8dovqZk*PyB2;?R z`snzubZ_A+<>UGXFK>MN*$*r7z4_apTI*9k-7S57{^GMM7cRWMRI1{0vc853jhEB diff --git a/media/atree/connect_0111_0101.png b/media/atree/connect_0111_0101.png deleted file mode 100644 index 68e417f8b98945e2803f03afd91be63efabfbb6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1615 zcmah}OK;p%6m}q4kWmmSR76pcjQb!|^4l|>v1VE(nQ1a8PDjZI!irw|UVGe(AJ|T2 z60r!8DpV1PYE}rbD1s$aV!?_9?F!TdtU$0LDEl5i)sNpqJ3>BVt4wkNUCPTb3Ofo+lWh!3y?R+A@7t+dSc1WkACdVZ8efWi}0 z>N!ufc_ttFCrf|4ID}33o|IM2@!2O2+g)+EXM?;VcZGBUX7z!ury}$&xFH)QHmNU zCBP*qiXrKStaN0>P*p=!crc|gIK-Z__kYmrD6w!=M|EBG5?Fn2;?57qCi&o$D|hxh zHtTf**`qBaXqR9vciLSPxCDj)^x+8Rol$E{ERARcLvbyO*PNoxmo?4dVOT(|9fTDG zy)ueVLMQE`nABZR4a9-A%fw+9^Lo5FM)tdeiVXsRBK%W+eOdzlzZambeH5rT~00Ckcd+z#914iZx(dv5%!xUbo_Z0K_7xUokwi@-$ z;;;6t`S$U`(Us$KhmYM-{Z(mBekeY)7EX??9xt3&N4Nd^a52M!ukH%yF5ULt z{`u->cMd+ZFMTrq+wc|h!u-9NbItZ^SHA8Z2*(E}((6cjQn-7+u=rwcdWx|w75+3I ReS4k`?^biY@nGrJ;eT3I?2`Zh diff --git a/media/atree/connect_0111_0110.png b/media/atree/connect_0111_0110.png deleted file mode 100644 index 9f6db4fb65dd4e095709d614f3c5db9d9b06584b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1620 zcmah}OK;p%6n04}m4qN97DR!CaY;y{`0aVvnrS=9n z6O75mn!U6VtzEovE1xeGKL2WZ`ejj4-uUU4%L`Y&_~iOB3rIKCH@VBd|Lk(y*#*zu zO1J8377l$0ku&_!BW2Xe0y*n)57mIXe8q&sC{tKQ%j!O& zE=iB3N)sG=QR;;O&uEbo?xtk{^5`b$NA>!EJxF>wfFg1SMY1X>vhTC3Gjx(J?Llxa zms8P+y&q9|gC^l_jOo%I4bt=daDoT1(Qe$zsvuaVE$Ra-fz{N(QY*E3V}NE=H$6Yf zB0%8*D)rp|w0SHa_9sifzc_>q_#Q*{>tsL>!>WdOm*rEdmIbz`MMCTmEBnmps9+RP zUQ`VSi3T>YSab|WBt=s%sD?r?ar->AAW2bxDdPcV$paExMA)PX5f!3pqLJ5i5fz9b znyQ(juBw=bn*I1!Vh>smwTAOyJOp?Q%`sHsY9hi;UNrQgD;BY-ihABqO_!=p&ZPoR zu(cehuSbcxs?j4X# zdVR>%bGAG_>vap^ZV3t6qeSRA@iq#Y6ovuxVHf6|veyI^9Adhv2zv^>Qg9rxSinT2 zs^$`;ft*DUu^XR+ZrVmMtu#S35C_^W6NjJe?Z<^avb{~2*dP!nA`S^8@bXX{C7B)e z;o3^_X)<(iLqj6t=z3uSfdz5>p~kGiV59*E5X0E3zV+D@jLava)vF1|jX%roGu+*e zCc*h;ty-~Xf56u!8+_|%=9#0J2cI5EeCzmdj(>ON!JIpPbLRH^@l8Saur)tBd-&-6 zFA2sYFD;HdJiKz-R^B-`H9q&^)o*|MRXCnHeDw5l?N{wvcZwJ8jgQ{5)~3%r{Cn=> eKb|-ldA`Ekx%*W6N6#?X_^vIjS5FqM-S`){$?Ts1 diff --git a/media/atree/connect_0111_0111.png b/media/atree/connect_0111_0111.png deleted file mode 100644 index dbf77128198a542571436f260045fb20cfa0eaf8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1604 zcmah}PiP!v6rX4-HZdUfQbploT0#uW|C!zWhTYaAyGa(ZaY>dMPv)EXzTFI&f1R0R zH#x;1n3jTAyeJ-u)iA3|9-3U2yW*(^No2y_~xUjf5~~UC(`xh1>y9k z*Z%_JmF8-zwj8fsJ^HYC@BVwgJuVbVlB_htv(3h; z?M8u2Xyh=t7sP-Pgz~jsOxzuoA%}Imup<8b-S;B$XhnR-YN(BPk!^b`2MOCaSZlcl zJ1(Z;wX4&U<(>@;0m}&L1%8;?y^5F<+wjcYiimPZwo?%|8%?wrB@CIeDXUVg=k4ht zkRVh}Xxm<|E)7V)s)*ZJ7Tb!_?RMp^AxB9^(J;n}sw=uK0YXam!;JK#FumL-8PHT& z>Ly;Cc~OWsEpejVtRg}k{Q`ry(HOCZ=|BfiMCp-O(PUK#0$z2FPP5t`1P^LC6P>p9 zW2UULG}=vER@-A?c6k_1-BE13oA`Mb)K!?z0)VBEO&g_Jt~Z(^H1E3O1#un$3Xf2k z*M6$aGxhK{dHKWS5H{j_2084L13?VC8o9f?o_e(+@}xG6T#wrMqlO)<8dgEVhFXwJ z%b-%pViuUxaIisKS}G2C>S3CZ&}Ezlm}L)0idx%pREKk`!i(lWD4K=py3E+fY16Nch-6Xx@^&m@tw>Nh^x{ipbL<9@Brp{|C)KB?P~6|6EtR6teG++=CBfgWVW&4V=D* z@>#cu+ixKydyI+$r@KwU4ufR?bJ&M@XP&jGQRWyh92Vwhtx3cvV5wcuEmqVV!!iEAOU)Fm;h%6T)YoUjpY=y*l5T z{n_2R)I=x8GcO;{Jow{SMkh}W=g{q$2Xp?FBN;t85=H;smD$BLJvJa_Ahf8KZ@I}pBl_(AoThl`&yg<$vnT)QsghH>k~Dh~Zb1_7=`ufiLeHB5yo_?(4R_^g+0RDWm|82Cb` dPhnmG)3iLE@4hN>=0M{aJYD@<);T3K0RZFLI_3ZX diff --git a/media/atree/connect_1001_1.png b/media/atree/connect_1001_1.png deleted file mode 100644 index 748a9c041f6970911eed2de6bbacbf80bb92604c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1581 zcmah}J!~9B6yAUX#EBaMl7%Ri4MIlB?9c4p?T_w~oP8Jjkk1_U2~34&XJ^kV-~O<> z_MKgk$bpcC1{y>M1w|B*f(8nt2t)zmrvOnPA-MoirK6(Y&EDR{ku0&&{=B!}`{uoG z-n@6aYs+)9&&&#fFxOsbuESg8_spa4yw>Y~3$K}eqtg(CyYHR-mz)OsRJOjnDBSts z*}uVfvb)-AEhnp&uD?^QTITJ~-}vUrA!%)uq=e9kr7zvF%{xAY~f|Ydw0f zLv2sGd}(gBHgbR=WH}K>;ULPKQC%vC9r)&MMG^~0zEhVrJ6&-pPMK)PhODC2DA>ai zkceU}^?YZ&d9@?~t1fNldEzL_a5$8Qx*Vr{MYC;NQL%zC0tCwTqnwOTlwBB;lr&A2 z(KJZ%AdW;%OWb%juS<}}IKeRKbf)Z4R_XwXC?k?6nye~e$g?icS>D=%;4+sJ(OGXl zVahto;@y<8)*g%U3zKk#Y_npfQq!lZ}*g{P=I z@E>UNP(J)mk^W?H2%GXfgq+mLfgpy{jOi}Vr`@bed{M`XY2Z1gEG zY$03sF!Bt{EXFjoqLB$tJIZnrQO0?ISq^|iw=CWC8AGO4RgpmmLvF=Tk*eyx>uRoz zT|9|@ISruo$l!QBoW}zm({wFU^(>^(iiZrHRFP{EiYPNH7+bE1^{OO#)VUg`A%QIm zLeghS67?mKE9*46?Ye|zwKTf}lKTLK{thB99%iM#7ldphCtNzMS~05?LszYeZDHLg z5wEf|gWlp~nkws%Jy+g=jQ@4uaCjsqO_DR< zQZaT^)6sBG!;Y>whKaybC*ar%{Qduf7Dq{ht2W-(l^}!F_owdifNZcgkGV?cAP|dQ zcL*JqkdZy+Nu`r+lc>*N7(gG6VZjM|tx}6vu4*8=%5-FC20@l-=*V=LN_FDf#P=uh zS?uRSlCnl0R0DCK?FwpY$oFIqWjEfBdfg>jo!kK zbZh>fEA2BkzMFr3;ZVAFarI)Uc7ei=n&QJ40iW*tGzK05OLk#w!UqO)3X+a+bVN>UhH^nC$Gh;J^oVhH001 VBd`43UI8?h!PC{xWt~$(69BG7IHCXm diff --git a/media/atree/connect_1010_1.png b/media/atree/connect_1010_1.png deleted file mode 100644 index 9c8bec9c10cfb3a97ae0a3e115ad695c1ba71d40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1578 zcmah}O=u)V6z;{1U_wCFOOQP@y&|hn{onJ`%eYL{ z+u2%OetB6Cgw&c`1a$KfAJF7SCZb=y71ul>wkf9 zt-IZCY(?9*&h8bz{=QHsz5VB7B&)A}^UpblroGONaOcS*R}hxgz5ZUh*WR{C=*yUf z4wJ`z1SmnM+#W}m9I{k&*uV>_(%(N^NTNrp(py$rZATmIz-ykwZ0DrYCntxbOr_hm zR+lSd8yI|+VsY#bgTx+JrHt5yZ|+tkF@vOsRcWu?6*t0|iKcAIDr$_qV_gCgQLMz& zwR`o=oCK_@bdaWzttg|>NFEt-7!MS!TrMlBuIM@f1WG1BipMBOZcIsXnmS8J>_w>; z1|p}$PI#17CCFo%pdYo{bM_#~bpS<_F^&{XRu$jpS!d`ZZ5%^zp39}^q(6z6(ql<@ z6cg4sW?#|J?>VfA+Sp+CNN2Q+oRGVk= z;eWF9XNyDFobMUrtWFLDG3Gz}Pe}MMYZBkXbSsm4;S;{JQR2^D>{V|C5TuiK?hvOgK%u|AfQF+a_xC-Y?WCAXrxmPX!7}xdR#MG^R>%>%EKZ=e zIGLu(hAxR*c^i@k2{CUw2+c~eH)4j@E!*M`GEaf<6WWx%ECx~&#% zP48>EZD_WxA~4k%IHaCC`9ElOltj2H(|v7v39LSuyYmCG!`@wR<<6leX1#7>GA$v& z$Bat3lN{h+z+f0aA5LN3C421{Wvyho4l2WrBhxKlu5%g3b&{$chqoVM`zF1pDxlD#BZed7d98)h$ zAg~~AHq^K^AB-#j0b&??YZvh@jLa9J=6)gwD=+c;ityRzYv9~$)ocBme~`OtUGbH3 zS=_#Jy5D>#T%3M!?g;why%!s&Z+5%CEbXs+`pNkR*SuP~nSk^Qyc0ZA#2E~!6XTe~G+6tX(>U)DVkIiF|c wDyIDki^^Lr*-2*2kI~9y-N149^TuL%ks6VMyk0UdfEF@%y85}Sb4q9e04+I1>;M1& diff --git a/media/atree/connect_1011_0011.png b/media/atree/connect_1011_0011.png deleted file mode 100644 index a396d8571c0026dc14427b1d4453ab4f84a15c95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1609 zcmah}-D@0G6rW-%G&P{uhae)ugld(}_hfcw*ln}PZj&|HxNMf1K4^1i?w#EsJ0H&6 zWH$jJmQoWC1$_%X^db0AwHU-FAB?^TeNaS@zA1SS1flw;T8fe%+B0%f9H44 z`JHpmetl(Oa^i&vj^ie)i{%EqdG?%r3jW_~wtj@y*;c7m;<%%aF8qVe!TL<-V z^P6jQt+s5tQ6M24IYjCOF`ziEaIF_3cY{#gAuT^F3Xi}2PT+l96yBVvDYbZ>wEe}M zgskqYG~JyI*TTZJtCJIjo(&8Ep@{DVoiMd~MIj@$;hULdfzKdxqbRJ^>im3^5Z;gs zNf9eOe@hd9gy#zh_UuOa`hWyhMWIb;Y|C=D+m*Vy6eTTLwJb|kG+EO`K#1vfNKsD= z)9F6RfTm1RH}PZYMkrQpwq5yI90}SF?ZNwg?106sSxrbs|l@vJ$SkxIhrIjsk z9>j7gI&E&pL~f8Y+Du$h*&-pG9=c<9pJ zs-ugZsUy+IAxE@aB`0DlkF^CzD0B(q0cObu5*5!_X3q3P#c&nT$eTn& zUfvN6>>(>>n#joKhyHIQKC~X{jK{-xFz_h4f^#Z%Mb}ha(O|*kRZ|yvbEs{S;EPML^NM(QTu!MPL{}ANDQ&DYZ5fY&f2ghhEX3*182X(o{us z45*&2TSUi@Pv1X{JlaJGDYZZ~5C_^W6NkS%sK={AWVcP2*dP!nB8~|p@bXw51({v; z@!SgXX)^S2V?!e2=v!d|!3z9_LyfIQgOP+FKmub=IO5pQJ|8dMOgZkt^Xxgp9eg?k z##_~Lsd@QlcYUhPclIRy&coIZ7nSC*e6RiY-j(CSi|v!C-9Ns*d-t<_{`2*vr6pRr z@%`I(UOqlN{P4BoEIyPzmRj{eC={_TBJ@EY1o1&A_#pbEe}E63J3G5>A>hL7%sKO& z?|%2YXU>Psjn(O?b5k70P1o0|Ex7aSI`KUGzt`@354RJY#l|AXeRbp1KX?-2iKMl< z#69@o{GSlaG}qg;)oA_F^$!fg6eXp2|LcnvUw!xIr#JiB8HP?<8=Kt1@4vVlH@W1s zx6-Y~y5)qvgh^;qsqaUC;<)nVeuSM}n({X7ctJ(@>(RFY?~#h|mflbr(K6lf)(&I3 zdAQMb4tJdr5iVbvo+|e(VDM>*`M%!`602VkGGYs!Sy~qO43h3vgsn!CUk+o+Ymz1@ zVy*A(BLPTwz8n+RYE@Tq5{N3oPMSuREcbdnsaKG~xFf5jQb|^jjF1QjF*yiQ+!upn zZa|XLRB7VGUX*%az%yEGhkI#7038E?e$;4;*n=eZ0UVM0IFeOKk$s=3&d^C(+lS&@ z%dzOBeGpN(MU!wZc4%#%2I<_eoH(P}XfN(&yC9BCyVM6*0;{Q`rB>^W<_OJp-SPY= zs{n^bsMK@+^X3^n>`f+rxHy!J_?|%y_sM`@hE)xnJ*KB#tq5#Ui-e9xtn5)yv4agn zL|o8HqE^&h5i8ggQBgB(yI>pCForz!AW3oHP{sqyk_RNE0#%5sJEC4tOi?pbRkTf) zh^D4%4nak?NYSwVjo5?M!`*Q`jE4YEfv5`Bm<|UcQ3Fk)S=1F!RMK_DHi`vP6?o!U zD`D(oI5N-29V$mbN8p*W)?%|>5s;+hVY7=<7ogDJUO>WLlIPo=Pd8J{tWyoWXy_V3 zx`|ZNDCLMZX`DcBF)~$=3ZR}jZ-IEQ5VN*}(rioCa!hd=#_cfdRs^PkXElR&4fr?+ zPH`2d6u1%5$DDNmsc_V;DHau57d7nYqOB4|Bt>c< zSJzBpo5T7fbkiP=>0$?519PD5GIRL({5)P8B6~ZOnGFVkBjT7r0xys4qb#$JeSB|a z`8XQ}xUnITaSXCBfgpmq;ZS4IXfVMwA zw_aUr&;RIb&o=Lz`$*b;|49dZ_tMGM!r7B6GtJYrGuth6dfHg{`{l{W+LiW~4R!=#T&a diff --git a/media/atree/connect_1011_1010.png b/media/atree/connect_1011_1010.png deleted file mode 100644 index d4fc9bd31fc3a1df82e77566d3a3ba415d9c1751..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1616 zcmah}J8T?P6rCtZfsG{u2{IAIFqVZaF`u28ou76Suf1z~W3O54RWKEP^WK~F;GIuq z#@@B7U@Q@!K%z(yA>@uoM3F$Gfg&!DkSL%7Iw&F}L_tMI!F{uzIFcnsn$Nv+?s@l~ zci;V>xwbShc4ds?xQY65bsgS3yDyxF=ew=;_wc&Vt~4qf_vOdq|DuavpG()5=D7zy zzWgT`lg-suZ7E(g4D0IQ`{w`_QSI9_qUG(-X~?@&0<4o#0zxWUp`3a z#=%+(AM9Y82-mJojFoy0Fa$J1d@tyPsnaV9Ik5xZ%qbSIYuh)FBb}iIacYu3aQV z)kMW5s;Dani?*fPqOB;%wu&aD9vSk~!!$!7ri=%eB_Bu>VtAP9mgw0o7WIPWiWb(f zsHv`7L@M$q!o&F26CYX+bx!BQcnI)l0Jn&VMWkWKLo;d8iO;YGBMpjTHO%-^iyaUODgow2rgytnV3kgM8l(eF#Qx;ejJd5f7Yrx?k zC_`10QQ%Tk)lp2RptcICqbZJJh+ry1a727>|No%*QR3k$_4jqzPhs`_k$Z4JHt5Y$ zu7R`T^Lej32=_}!(H@1J?K|-{3fmNh0rX+tlzAjFpue zwKq`b{^KjR+@nv%zv9k+aeVyI3isi|!)a+-x_oo#@)kUHXWzRwb$4#&o4MP6oh&}b YdDox)=kYIi6njbk9sDok<$fvFWs$S*Usa>Q$#q*Jr9K z=}uOeabXle*MmzJ@iPO1x|)T-g~BWx20`2@G6=2&-Ma9;>d#~#U_pKEt#i-2_q_Y= z`;FD5>B+N`9LG)9ma9#8^XxwL7(B1FIzPbcRHss}aNO;WrvAmJ!Jf#POY_{VAJ6>> z#m|y2f4l;}@UfPR|Fe^?bd);*vO& zuot(f)DIItaa`$QKfz>+=6suWf~YL~b>~}w54^JQhEZ4Q$pYOBmiJP+wzt|Mdt1cu zgo_uZCrf=77($w3z8`j@%AX_tlo%V0Hiywp;y-Wa1<)tw+riU?46jLHN5 zp*D}?!~PWMj~0ipG2bJ|QJoA3Vz||qY_oi7)v~}Ab-kDbo?Cp{itii9@kGZkeNneH zO>Ap+Tg1fIJ!BJuXx@mY7G*h(2xUCLECoPfsmLM-YocMz_`Hrp{hA;3QaWBVdh+)fu z5O=7YL>+-=%DR8^Imlr3-LZRkK-TEhW3HjI8}LQ1 zyO<10$nXw@ogFyICXPB3h5_{9z!RLX*NS1OKB1O~uu4Q7wXujz#Skq6Q`=At*f3)h zpT&OO!zrzFKs68t+O80XKR?`$mq*CnCS_uSK%j{DP#_RqK2}FbW{3TFZ6*0683wpx zL!#gqcwqv81#zRH#;oyRq!9>^!q{v6?L7e_^QmO{O2%x1vu$gVA} KR&UL3T>lU4m*+qL diff --git a/media/atree/connect_1100.png b/media/atree/connect_1100.png deleted file mode 100644 index 779aa18c14eeabd9d78dd4d5899bded4d453e607..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{*Z=?j1DOs^US?(%x_Snx zs_GLiUK0cgF_i@Q1v4;|O+IS@PijQ$OIv&xCLsPWe|Khge%Nih$!?OxY+N==8xgU0?%df7+4-M5^dRDfB_Gh%|lbi}+^fLq&?9h=On8gHX?%o!zDoaA1DUneTk} zobR4{-fgcf&&{5iQRFo*%gag{T}7?UlU@eb|zVO99++gk$fyH(+Qsim~yMY`#)>?L%4Z>>xA zwut2lXHL(}R)#h(1T@3^FzAP=J*)~ju?^qMEem`O$+oJ(Myt&)MhWG0NtYC{G4ywk z03%#T8z(PAgs&Z+|BF-kCqTdfIum=-#KBJvQ&vMMQZ5U{Lsbec7GAh^ioNOaoW zjj7zBX|$aX+Ss9CHa`w`$s{)3PWpKjE|F=U1^`Q8HFdJoa#Ri5nZhe(Zoh($ diff --git a/media/atree/connect_1101.png b/media/atree/connect_1101.png deleted file mode 100644 index 692e29b8a35c23df53acc009a1e474c706b91ec5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvp#Yx{*Z=?j1DOs^US?(%x_Snx zs_GLiUK0cgF_i@Q1v4;|O+IS@9eDKUk&u)S zkYo@|;B9SUn9;CNYexPOhRcs~*04O1mOj8ET4Kh|(!k9jwVF+mn@fqaV+EV^ xBCZ*1){8heW?3!f+_8&e5ob#SD;p03!+9GK1D`L}AAxocOLeQ1v1$9t0197X>d~Jovtu+3gkr4$PnT=J$Tz zd%y2}?~T^l%G~S|vkb$`HR{ziyjglrABX4VPWM}QO?NBJ3d4N%_Q`+I4A@gqdu55a zdHcyfz?g5Xc4{lZ>bWadHBILQsc_?q)2E+)>E~Y;m!4gC>ydwGK-^wiXBL0IV>8Um zlGE9UH=3)4<+}pHzDb0k8vu%7O6P|GvbIUgnxyM^W$v%9zu{O1m${4irqm3U$(B>! z3(5N4TF2Vkwu+cLe{OEJG&F$0B{5=$ZqJL1VVO&a4fv*Rkz*4`yj|utnk{zO4+*OZ zsvz;Tp|hiKK*F-65Zgw(dLbhLtITc1abSqzU@#B{Il&LRqFgK%MM)7Ag$D#5?Rqg9 z@?Nx%l4LYh5?P@W#E$Q=lopwOKQ42SN1C7;G@D~~FUoWPMZ_TrL|KqT*QHq}=qRr3 zKya4Jk?5$i8xXNgBEKJ6q_#u6cwrQdt#NG74|_=!*b+&PxB!b_HF><$N~75tqiNM$ z#|@GQPYjFL0cODg61AWqO(HsPnlj>5NrCvh zsqzF9y{G^&HuX{bbD;yRhkBFwP#z3CwpzeNgfK5_D&&Doo7Yv<;_U*KG@@ZulVy&@ zmT|!kT?AX^xTs6S!0U1>Ro1Aq8f8uqq|9vfP;3Jf`rGlaKZr7a$8pJejHq<7mM>^| zRhAW9QHsS;T21jT;X@%>(zqgk*tCjHlh z!+}wZswgJFB`Jy_6%1MF$cmxpMo#9zlty45JNEAXL6f7z!c|K5weCc)`tI1B9gubM z@`NjM_8d0pbpu&x2@%>Mn9H2j7V^3Th5__p3UiLwYehwhXV*je7Q~H)8nwoQk$50L2xHH@c%lj;^TD8gDPowDkJ5XJdGGys zaGH&3rE}&7Yjgh3{YK;No%*Gz+g(l59-4a$uKn3tuN}Kwf8ou;Tm1l+`s7=;6#n|^Yk_y|qVQU-imTxY-Er3sBf53C z*{}|GE!`GwT%VmPbPZteXhQg|*YabdTNF}a1HPGC68IF7>=uRXYK>nBBFbmQtcX#$ z>$VjENO-;w*^W^!t@cU4DhfME5*m`!>2$C=>GY(;LExPi|zT4DzKNl}12dI@@AwK`zyTBTYWqFL2V*9+4K zP3 zku1)ktgdGfp&196X3iq2nNv*S40tMjoDkolj0c!S7f5o{!5Eu)WSO#wvYMtN4cl3y z*$Q!pZ06;RI*5NYa-sD|YcwCmV*`(qRdTwbSdfCLqAXQ2NF%z6G8rdtXVe@p+X8P} z#%d6G1h&leNRvvT-xPSJtg%$96a_`ZeY4ggi33pRZ`ZejPTco5T#s%ggh?l>xjYbK zUDI_XuV(s)+cb)yw-}j>#f&2GOnC#62MGylI|xlnGFBo=k|1gXL8~aREO-{v`&Wg- zVUvWENJ4=ND~f^hhO9JX#ZWXu))1I@01j-|Iru+ldX#v$3cY<@cVk%nVCe22kS)45 z;_5qFE}!>lGjy*Cd| zr&3yKT>IX-Gymt&FXyG&`M2Czb8c>~QJ>k{+dG=Vi;JHxES{X4JpFKD;@uzjFS= YIM@DU=I(Rl@q~@;N_n$%x_syOUjl#Zu>b%7 diff --git a/media/atree/connect_1101_1100.png b/media/atree/connect_1101_1100.png deleted file mode 100644 index 7a41664ef35b40d939ea8dae3124fcbb0641e2f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1615 zcmah}OK;p%6n3ClkdjTwBBB+tTmnJr^=oX8ZOycqWTwfWOc;_8O(iONeSJN#GJaq? znMow1CaP2c3#5t_VhM-^st5>Jbb-1+s4NN#gxDauipmE5Ko^|rc`%hCVabnk{GIQd z``vTTyUn%b>8a7Y}b4hFSdL8zjna{r2bF+{+7#uYRqZxyAyr^|cLd;rMrt<0cpV z)@HWZShYzMh}exBD)xdHP#jmf)Qd6MrWxdaBg3fgzw7=6gXWOzmD-$cb(EW^PH~b4a#b7B(AAekn>QuZfx{ zqgv13RRtj7`BLI~_Ima5fCQ|vu$5)8ElJ&OSL_zVC}~TIWm%G}N~($gfzrJ&!#xzH z=ldiBnkr36;>VdEg*>ChPPCJi1*oH6U=TMNBla*I=m3gHJseAlC`&=Ws?O1AR@;T( zK`keu)7D;0rFEJ{I|-q+T^eTRhv6<6#l|~HCtrn2B-)_?z*5Mjj8ZMv8_f}#t-9?8 zaUKB*k5HNK{in?n^{_vA`NQN8HsX5%Ib0_Lf*5u+B0H>}dbKRDq_!Io-?j5kOExu= zx*C!TE=8K@SO{yfjtp1Ph^IOQy&w;H>S3DUkWj`0%%Tq@gvf=WNi0+>U=3-iqaj?B zJ!I%k!BwzTB#J(ae=YH$^>Amr9>(JWk6yHNolqAkhOQz_@nqy^*h88DH55F>QHdk) zF0n61Nq}L?`~bJ96o+krXUf`@X1y$^A{3jO%?{2yfI@%!p&ND6fxqPkbR)w|I>=Ns zbWKqW(^L(^7$DxDNeaEi$P`&Dr~=QFx1o5D5VN*}(0obuQbKVSC9Npxlm(WSXEFVM z4LBSw&TtiH6u4wnwdJC%s4YdcRnyiC1g1O$N3QSf{U0chNZ_Thb(AD_ z*vHpal1`GLj~g2jIY-|M69_Db8xA#QjRqqPL4X9t-aBjW9l*$ZCSJLka@^_X*ge60 z^zke>q4_JV`Jc)4*}rep>$T=eb>cyLW@bh+GalFy#K^;G4{qlwjp=Io2kvsdmt z`ec4{pt2hbMn{Q=bC?fc6{@thsTG<``>+d bFkR*zA5EXR_sh3$vdLYqtyS+VUO)U7=a1?W diff --git a/media/atree/connect_1101_1101.png b/media/atree/connect_1101_1101.png deleted file mode 100644 index 83756fc25f9eba6acb2b6747c288bad61ccb204f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1604 zcmah}OK2oj6s>#)oDA7$(BKSGR78@+>-u*6=$@G*-ANkKv8PiyaUtf_t5=;OT_39| z=}thHnT_a1(T#{3XXQczvv45_q9E=@1(mpRBcdP*x^>}w)t|{gz=HbRTj!p4?|Jv# z*IHZavolZ5a2z+=*r>JP&9i%Y3ZA!}&e!mo?kqQ#Iqu#Ym;S{Uz@Et3>nq&J{VTtN z@n~z)sjnxSSMR)PeE6}hn=k$NGb%~XeDu%j44SvMwz=!Sp86bjVI^>O@}1_UP2#YG zz1XFtewYA?<0{ws2`2kA=Uv(fqN?!Mr=JUa;8lg2<)+k3R_R`_ah%fa<1L3A?-R=t zu3ep-sq}4N2x*S_e%OsNyI&OwVjI4hTNL;LlJ8fAoo0()jZ?~NC9Nc(dOtW+1R&x0 zO6vJ`yS6qY0jnzP<#}R@Vz1XL_0&?Fc0}2-EKyQKML~c-*-@0^K8mu10m+c2Ml+HI zNgl)z&uFn5ALLa5@)#r-Ce7xUJ<5hUfFfcaC!$=E#4u!87w9anA42djmvhmXbCgiA zO|$qQCA5A>qkLf$?vZh9a*%e5Dm)_6E)4;e!D{k&sr5#)HAb_lJ3*Kf5uorGl?VO< zZ63;p{VCEPEe>I0zK4*bIvEheuxl|nVEHs^Re>#Pdoc+-yZCe!)$+}@t9AN?P+I7&QRmBGGl1R1P;Gzh*Xl4bFD4r=WE^+tF?LUI@4hz=&fP|B*;)LC z?9Tsr>!(wvwevl9zcV*C=d>Mo-kOn?mOkNbzx~$a=JnPiPv4!s`Ne#9@q@`x|ys-li$N uQy)f2xX$VA^_{~TIOp9Prm~kGm>8bV5#=fAXA%M0$l&Sf=d#Wzp$PzZ96k;J diff --git a/media/atree/connect_1110_0110.png b/media/atree/connect_1110_0110.png deleted file mode 100644 index 35a8eb5a63a80251efa8f4f692cd24856b7e71eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1614 zcmah}-D@LN6raWJqFIB&iq;QgnEkL_xifceCdp(-w%az{Hrm9PW^087doyz<9h>=Z zX40g6(o#@YMIU@o7FiYqQCZdpp|GIU2L&G#d{FVlH^C?Wfqn4Y$;Wn~;J|#GGr#k@ z=lt%u=k0oJF`arMB?v;gvQ%!sTjck|eeisv+5Qn;6YbgRtRQ^#{>eM^IM~Oc#^RiC z^XI4j0b{bh++0`;mUB7%!tR^-FTXx}_8BDOSAP5J;@orVkEUPc0db?YB3%6Y4_gq9 z&pFMtc&)l@n7%7h%WpBc?*@PpgyKv;pynov#TIKjUP=1*_P3JgSS9JDY!z37dA8v! z?SyP)r`9xgHqC-1&0I*QihTnZTozNY?{>V%=$E8~*nn^DRwOZj#G55)ty&l7{g8>8 ztjQQH^qnmt0f{IUL(4WAYjhq(ZYU^R8T)MBMtAESBI zZO09g2vB&8iXHo|HuvPi|0L;;7KgAg-#y4tog4^a7-iq=@_Z`glEfD^EZ=l2Bl*ly zm1qQKkXAMqL_Ln<2=ADJ3x}v87pW74XI4ikfsxg zC^j{e&u28%Bp8!SZWRAQ=s@ey&f$DGj|DuK0^C$pWUCn+X?e{?x<&JdSz4~8TV??> zO%g5Bxa5Z}g)MVj+Ga}NwIz`&Ys}UwC5gy*Xx2M4wgC$L?Rb{oi-!KDhFMAzEc&1ii({R4iwRBy!~qNFF4lyzL+~Dan`*8IAq0>HD3M#Dhg1 zGx%49!(q{wmTAm@3ln1CyrGh&N(_=Wa2A1yM_}J_?Ct-9CPztxt2o%#B`1Q_x5w_` z0a;k!mojaJ?ldpHqyngP3z4PK{*Ur54{X>^)tB>q` zLDT8(i?vK+_nlk&`}_JwpFaNV^uff$^H;8X`0KmxrPo*QPhGwJ*!k)2F5_D#QmLya hZv6S=;=zB#wP`yauW=Vbr@ diff --git a/media/atree/connect_1110_1010.png b/media/atree/connect_1110_1010.png deleted file mode 100644 index 4a08b8cbe26455a43da2dec33b0dac1f02efb2cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1610 zcmah}O>7%g5Z*wGTDOsq2oO<_R$E$1cFuas(VXX$n3Y50G;-uwn`XPWbsd4~Dyy$k=~vtUmowdDoo;dd|p z3C47FwZ60*t?GLI+WtGngGY!LuUvWU&QHJ2E!_NifA1CzNNa2B%-kQpxD0c4!K-hi z8e*hDphtdj0vmqDlej? zp0^`&K*F+x*m12|>BfKrtRmM+)5sEpZnw*K6+Vocf@GSeAj*O)BS4^JH%M_01?aEtf0R5t?@0^!zA` z0EI`W)N}vS=81afo2>j{atIsoJ%JqdNr51SRSNA6t*2Znax|&sgtq5c*`ur)s_AGV zGKg*<)iq?)z_N)%#ny1%P$k954|&Q#lH$N7ln0o34@i`Tq7z+qkZxcTsiun&R%H!o zMqaZeMYLsE9LC>@Js3UQ9?Q+$-Sf$Mim7yxt{J+f zijtUDw7fEme1pUZ%oZh+L|&0OmMU*S@gO0lV+WyGOV(mca2m$-Fl-k&nwF(8{dX1k zI2@ef5>5$liLz{oh9${$Nw#F&0>!};hv3lh+};0!W}gxZze4|9SG)wW?~dGq4`iKe zkGTfUw#R0(ZehFMLV|aQ!wsBv3kOXC%K+xE5A#krYZK>HRhJFakQ4=}nr$P~&1=Zi zb&W_OR*2{hi=Ib-x+ndwX`|X3Pza3mXnK|I^w_m+`XRi9~%Cq-AJwAFcbME$6$H&gm(bVrx zy@+-Fbw$rjcDC=HpP9XM>6635!)H#uIG3B9eLnXBcM)$-O-*f=9{v2oJ^c3sbMwcG VAANlCc?)te<)yXK!-dWLe*x9Y<(2>d diff --git a/media/atree/connect_1110_1100.png b/media/atree/connect_1110_1100.png deleted file mode 100644 index de9a81ba185ec167d564ec7948e27968de28282d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1607 zcmah}OK;p%6m}q$nv_9EP^c;-ELROviR>PUwr6gfegr6vD_`wJ*x9BjZ_~CHRD`GBeJ}7HsR-AL4Y?65&@FFyKc?&Z zt1V}L+cAl7bv8F$?peU#(-iYPzY`=@uOei`7JM_eB=8v|-L425jV8Yk#*{CJ1yM$| zp0}$CK*ICon7Gzjb#XufRz=uK)5wyfZnrCTH8G6al46>sB&(9DB0!*IFGz6@1<9p8 z$$+Lx6DRhf)C&Wi(PBH?Nh<>6(NEBi8jTTqkPLJHMWh~%Bt?`Z-)C88=p?P}LhvA$ zQ_)FlFQU>KO~Renp|xEaq?d-_#2Lj#J8>tgf;bZGP#<6ktfq{XTB$sptNu&2#y%KUw<2#UX6O_Z)IqCj){QRyA~XSU&Y?MPQ3sBy>DtWuLNJbg8Bg zq!^BZ3Z`qKlB$`=)i70Q(bfv8Hsq-XNs0r9G9F+SJs@#qhm@#MM5e1?RIp1$WSc5R zhJmT0+jdE}@i6|~*n`%?o$-7a4*?#?qNpo&5m8qwqJp6VkLwsnh9roisjjXT1fDq7 zVi@}vw#@T!n@Um87I>ztHP@_H1XYv=X0wA+7ogDJUO>WbGVr%NpRT8vNvG&VSf(Hs zG*i`zC1ZeikH!h~79&$+QBwt;DQ`jYAR%UL2ccO>){JAn12G8Uj-uf_g{(bXjcZS`zNj6PZvT@yAY&@mke)G*{%>2vD zB)iF}4XCjQ-o;Z1=%Fom@Z`Zrp%%f47x5-|5IiY(5W$1*oBh)i0xrzXyf?r1``-J# zH}Avd+VXT^w!m@RbbY1Pf;-QyvuEJ{cBl6(+|Ksq8}l6Z#m5)_#pl4DN?Xed+=C~t z{0_#Y=4xkYIbOYT@ImR`m!?_X_~{o>Qs(aeb%#N-)>@mp_S?@c$DLd7I_uebW7Q^6 zAYmu!QfUyxfa18y)j^EO7R~rB?RjBU_~Wau1>SS2!VROLG~z|N>8$ke9+z*0C(ogB4XZ!{-pR&~z{;yeNro}e<% zeX7kf`LH*6`s2ePY{K^pa$F|^f*5u!B0DUfdaWw3Lv1G_o@3{auC7spi6S~BLlJd^ z4Y6!dN7O8rYDUS#gji#qdYEQ7B$V+0v*ZDZp;J{am#K&-(M4S|saSRuQ^criD#%bu zu49hl-%LChJ?x*%hw(VT(=|{@H@am}?J7vrO;r~y-2hswmP)FlQA<$--XZq&Cg>!BmpQln?BB5fWmxxp%eAfk-y^ww4GrlooYgThGtosfy$Z+ zY37k{(1tvbL8FjH4HYX? z?>g={K8@V0j}toI1Jytr7`t2?zBuZ~Yhz@8lQOYEAW%enDv&1d@`*YsGW*z1)>e^E zlVONEu_SVip%*p~SP(Z}YRsA}MjCH;%@$;i!?-tL$j9aZ% zvc3J*rI&79IA56hM_PNMpoov&Ke%&njcb2%JnO&i&wli76c-=@W_ci7lIr=s)O^q+l zZr%Amw1tHyVUupXI%}nWwf{U@R`B_uEd%fU?=}rbxQc%<{hcVS@QOG8 Q1<(x)p00i_>zopr0Ay2Av;Y7A diff --git a/media/atree/connect_1111_0011.png b/media/atree/connect_1111_0011.png deleted file mode 100644 index 3229c68cc2effbdc1fc1abca9d9d35044c20bd33..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1630 zcmah}OK;p%6m~?5Xrj=m8X!U}j7v&E^7#GKOq<7~$v`HICX+DT&|LdoPn?V&*iL4W z6;u_J1!9530ez1jX6UT4~KwK<0Q_??M=(OIy^(#Fy}bNKyJ ze}geyUuiBb#VfjQUcL3E@zEzUGtcrx@#fEe%+9~C`S|2E4agd+Ys~ClzjzFDcHVEc zvQ}-ycB7z(aO99;FNgufFr{m~7`ZznV;$1=!!q~JXPl&=75A{O9}SuM&hWQE zsZTPXsgTr7{5bQYkfpT9iFUIx2YK`p4B}dC#2%&t9Y7JGhhjl0ib4?3taEglE$%_^ zAeU3oX>&g&LW88yZsL-~JrZV@hT+&9#m2iyC$9p#0_l(dU@5F7jh0%f*6JfPt-9?8 zaUKB*k5HNK-Ph)UeCVG%{o&#eHsX5#IjoZcK@7VRxw|x8iYnOp`~7 z=!Hrcd?*hF9#b?_tQtCxWuow^Ch5GT=njuHQMVjP!kTV! zEOzbdQ4%27GCx3VBE(^vW2v(CT)kT6m8JN0EPbcLmYL}fxqboWGzEfI!V_I zT~ka`Q)N>#tN~(!Bq{V3C6mOWB6BQN-iG8sLPXmRLi3XBg@m9iN}5sBDRVRnmd5n| z)!=Yol%WdB2yltAY>S31$xTVNWz|+y9!zlvjc8*d{Oxpbz^n|CGJ~%jrjl8Uj5;E5Y)j%9*yIdUh%3wd98zQ?~go+IUfg=2Ufi#X4PSjBn z=wUxuTS+)ghCc4ZkjOduUYI~&LELbtQEN09NeBWYF!mn)V*4u?ndjo=8!5v~T%`9H z^Zp0Z;Dkdo*SzwByE$FI+qr$2y?y!U&eL~0&%AbXw*G7D!i`tN=69|2!r>d5`r|j> zwq{h7dH(45_!z(UCp?*p1z~LB&J#y(7pCMFH!dtqe_42Bsy=QoeyUw z*-h|4_r(eUU-YH=pk-eQQt&~1@WFzj5J-Ix#5W}rslN0d@WFFuKbk_of%!ORe&=`3 z`Q3BRM~&6xxtUjH7>1dvtyG%uX6Ze78lE4t+@Ik!=`Pk68RqMcXaB`hU{55?wo?3FwE4F z*IG~4>$eOm^mEt_O_J;S5ug~Rc&!^@Ym20;Nn9@|aZkVdo?|_`#NE!HjR@Z)Nw^(bq`E_b^x`Pow#Kp1cHGXYuq~dni4U*@RujidE!XOeF`8EG zdVZ8efWl)`>N(G}c`hINCrf{{IE0P)oRwpehmJ>sbaNs0rDP#$2;c|f9@vZFY*iY!ymkV2e1 z!bFvkEa`$kbgap;K8k-M_Mr7}`*=Q-#|9q9G_fOzDiR$>MT#Tn$g~w16|kfhG(~k( zP2*VGGH!&ik73I^AG?H)0+(Z{vc_VgR^p_bFf?A{f%k#-vim7yB zA+HwlvX;+FnkXsa5b+j?6X-2UCJH%O;#jJ@0m*}en6@2+W+fTrnBX*wTVdEPaWo5- z#ti<|;c(bE#TA?q;1VRs5L82yTB2k~iXkcpOko5LZO_^LKWKK8Sh$LVeO>VqSbcZw z9v+Z2^6oL$(AoCbtk(@}4N6Gx4uPE=IIT?_xCDj)^x?qcov_!kCTc{NWu$3&5h<$R zAXCT}kS>_EteUEdB~WV+pM*}@!7*8MK{XHu+Ab4^y*%8H*GI_CCZS@3K%fYECQzPZ z`D1kyd3xB7*H+|Dl3{>5HY75RffptaSP(ZFYSbDJMiPJkF^s*3^WGyEnJ-2wZzl{h zdzRi4%-zoyz}c-;7F(Bpu{IVOfA;UZ%HHc8xIexWHD7+nvrqbu?_A-Z9Q7Y_)3<*( zI=a{I_uK6@b8h2Q{OSH-vwV8v)KT^30rtL(&h7VlM+e^hpQg(T=cf+ef6v~!aM+uA x^MW(K|Bo>L>&6SpL|J+I+1)Q@C(pDeCz!^SGlyrV-B0K+uT@to50*B1{{aj?^=$wE diff --git a/media/atree/connect_1111_0110.png b/media/atree/connect_1111_0110.png deleted file mode 100644 index fcef42f80969ec05bce1cc4400865a72c7f4aabc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1633 zcmah}OK%%h6rR42nko>fT||_{WSW*xG4Ju%GqRgFahe##!Ey|w8=C8T?>M7)9?VQ) zCu~YV6r@OOP#1^|f(-~oV$l@~vWXCj78VEvHkGnKLaM|MfCcA{$8IV`Vx)PTGvE2{ zIp00^d|Y2%7#(?WgyXo;>SCn{(>_+8gMgmqzSWlABmgR1@D|K}#h}yDhS(dD5vZjfE5aVq>K|Rrr zuk=YWnhK3^UqzJrv5Sq{yDfvQE))GQS1E zSuQ7{; zbP<_IY3YT6rV=!We?4-c^-$+{K8%L|kAtacsHP>Vc@2w3-m=63#*V0(22l)+nuI_e z1lu=*$V0GYu7}!G4*j;kGiB{^y;>49Ny*H52PF6EH(igeB#23;LdIrJ zFX*{K!8A23L%d0&7Y3Iy9NAFHD%v%`M8 zwxWEJ41L_OA(3+Qy)c2mg1Es@W7cpmQXd3}VC)Ga@4gQs^L)5?E9STh7ukJ^`|R^^ zaCWPea&ziuyf$86JKDX*?_S&gXkzW?)jPLmewjQNyY;s6>*T@e*xrXZqxsY1!-K;^ z?)v^$a6P$y|LBOjI3_n5+H=>{JC`S>p1)MqKA5Q2tJV70?|Ep$5OyF%O`;&7_7G7Hu1iA_$?N~M*V=9Kv)g1L8{EW#tq`=&_S=mW|6x1X zO-{6`n&!l%il9QM<5D+id>;ui^GwV~(N@KOg%SodJ6&SzVl`4t{*= zFEA#IWwW*zEnm5_TP$kow@+{W{2N=~FJFFVcK+SHhtCg5K)SlJM$P{DON*k;%)4eY zZ8ny5JM;_42`yac`VpWgs(iH@A$tR-w1wMlP+^{b_dP?qPKEhUY4D9`0k6ADJ276{ zSuyRM4ZGwpSFenZmb*GI_&7y$*Y|=%?^c+MScf%na}1q9(v1q!Y#8)H7-L#4$OWFQ zb=@tI0TP-n$4*OMtzOGXz^X9oX&UJq*XeW$9jOq;ZB8haN*ph8qR0Y*O}2v+b=e@f z)Fa7hsyMM@H%i?wpb0Iq!p*e8KpwpW{ix9xum?%511Q3EQN#%ap7VW@b%svT+7<-o zxtxkl%LYtTJAz!le`}h2^c5&GSeTiY4H2 zZ2ejo`v{KA^-&vhQP5^+qO3k=)GLfw;B(XPP}%}0^tT&0VJFG`rt9Oi6cOo!qM{ZR zNiB+kB#N4xBR;@!0=-4Z1im1N3{8~RA$gDxk+y@-tR#IQ#wZPAGYq{7L$aVrOz&F* zE{B6sR7EKUE?yLMUeyKB6hs}?GS7m^_ram#wzmHdnq4Ite&yb|F1ZQpzCCc~7i0~8 zdcu`EJ(tdUT}O7WgamD2hsmAxIttnth5__p59Xe7)}kijmSpj)gcX&QWygXuQbbm9 zRD`USRn#!l(~D2SR@y-^o@;|@AP%%$CJsH7pT~3`*;&U#Y!C<(VP6OY!gD9;D0Aep zpRBFSohCyMcVb9n96c{gAg~~=Kh%gd7>qao0b&??J0Blx!N?qmmTn{zHFl0XL)62s zCcv50t8?bmPxh?|gZA!EKDs~o?CwR{d-B=M+4@oQ?2S*R&7-C ldo*(P@$T-_W9l1;qGtbiy=H#><#jU0>$R2Y!ThZ|{{eoN?sNbE diff --git a/media/atree/connect_1111_1001.png b/media/atree/connect_1111_1001.png deleted file mode 100644 index be7c2214c2157cd20e848b965dd2e88656d17ee0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1635 zcmah}U1%It6rR+?pM=ngSVC!Gm{P6ao&TMk8Ft%lvT3q58`sU!#wT-U?w!q;ouAH3 zvYR|!qS|Ld*x*YFx|SLzjxyZhGEKX?M{v9!4`%iaF| z;*BPIIeWQ7h`vWX1qh&epnVBeDayV`=l&fDb(e9JV)34#hrw% z>@2t3oekF_!ufO4lck;w3<1qB-wQfnYWK=QPHe-Pxg~+mA=yS*SgkksxhSE$F6yF; z=6n8@DgX)3mlERH&FaMg30P%eJOJDox$Qk260Cc}9z!XfrDdkVikkAg|r|40ThvXIF=MqmV$s~oukuiehY#J zxg3g4TiY>}nlz0z6PM0!(J(tb3@7d=Hr`A+c@@N!Xom&>OJO%mj;G3qYMwz{RW}P%9rDz|G{d1w84oavK9DG`uIUBYL`6+=5Wr<*VUwVu zsp-1uQ3q3V82@78L+jzr!F(7G0UotzxCPyG5$sw(x>9tIsVWqy1qWM1^Atw~9^%>; zqa?s^WPX6#REop4z%ym-N~2a5R8bz7jSkK{fI@%!A&I)_z~Ax%x{_fgonjPhhM3Gu8V#OyKj%&gA1}kuO4s> zoE@Lfd)>xvzl0QTQ6dbS?m7YXr&FRfjH21xj6jU!FfD4M0VFH6B`5qMbJnf4Wy9{)KQYyWj|P3 zNjgl1KJLJf$T|96m_T4b+;FHdYcv>X2m&N9_P+V_9)^+mM7;QN%5hUqv1g3C`Q8jT zw`+BEi+Dzk@z3b2L@9%!w{_0rVeDZUN|9x-&`t#EIUwiw)<5#}ybWXmyx3_=) zKKJz6^z@}mmyaBoc;~gd{_2Uwjo#SO8@KLUUA^bu>Emri-d t-~3ZP{^QzX`q-TQ;N6?IrpAwU#>cp8{?Wft&uFn}UYlR8-kx3C{TE;r^Va|X diff --git a/media/atree/connect_1111_1010.png b/media/atree/connect_1111_1010.png deleted file mode 100644 index 803f74ae9e1ca8984cf94f93f5ffe31dabfe1cdc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1633 zcmah}Pi)&{6n95AK}-3gN>D10Tu&PV)$!lhu}QWjP1dF~C8QCwNU(mkKPRT~A8fZt zD-KZcU(>klfOeX=OqwcjKpb{p94g=fyD+sExFK;u;>>~fIZoC|m5Ai{d(Xf3``-I~ z?|YxuR~9D5rpG9Xny4<88}O#dGx`Ypf7opO2(Qsru~ww0Z@wJ=7o7%sBx)>_sQq7_ z{|k(%`f{_f5G*T7?%cT-FYbNHW_b1Xw^#1}F;`lu%HQ200dZqxm74qW(59%<$F3XxHv|1&+T}T-YYN(u?}nE<`_DG#G3_XtyZV!{Seb~M$YhT zrRQvm43N-tKD2DTQNEm#fK_1HaUAFz*X?#QT`A*-El$uhjpId56j?y9(T*3R9_vMC z`y?q%8AoR51hM0LG@(U?zZDl4$fKX28`Nq;b}veG07bYS3OFIdbFNFWPS8pv^=1kS|I4gUumq$oCL(P$vO`7<$<^w@5zKa)BY6>XvUhmYytmRh6XUa~zy0gxcC2wfBiQbrV9mu8)yqj+%} zg8R9giH>SJ0THSs^0z{ZEN&Aoo*IN>YZx1Bh3%vYYzd@IT!2NenlxN$xm2zU(X{HO z;|56tC_F^Pj{QuV=klR{lJp0QL)eh-Ipm;D3Is9CqHk@{d`iUvM;A4*Z#mdZK9ML% zNKFhmTf7U#YWc14dUMl9cVq&KAjKc!N7whsnH;s!E3s$0T1kd4mB{ZH)O+-6ji~x z#YAz;qN3z<)lmD0w@Da5Z&5Ny%qTL)QsqrZ9wbDx?I1KM$y^8tiv6(W`|ScpvtVgV z?_U`X2Sza}qL=`eD9fg(o043UWK&j5=y5Q`0occmz4L$20TD@x}nzX%Q+m2n34o&jeC9Ryb8h zUZ98lbZvRzEE#&ZQ$r%*=y_oRfdz4cp+>FYU?d(05W?6K>K8N^nWMqVI}yW-U!eCn z=E0|v;DkdoS4;nF)h8?L;r>j0f9AV`%j{umZ|1lCtM%FA>4RB+Hhny8Pu%<=o&Nmr zc>2Np`^?396|UP8sZ?rj^rf*czF|flkJoPwFkkSx#7a<_gu z{Wln6wZ(dQK3X)4sp)I)PE0&+-n=79%Im-Uc5(LdLvy0Y0@CHB74G7Ldku~|KI_(3 z)79#tMM7V~PH0o9?MHy(xWa{Ygvka?d7C!fpeX$F)z<>=Iz{2CURA2m99?%8c4NA- zyHqE;8zk=t7p6ys3vCM+e41ju?R!CDwTnVVY{55k%L1Q4(v709TCMSOVN7{V(j-MJ zx7}?d013|*Vy9s(mo9Zlz$yysX&PCw+-kL?R!$1zrmW`kd09a+LLwl07c|Bj$~C*WZ!35XXqp?Z$of5 zmm|?heJ7&wGEKs*n9%Yz4bro{aEJ6`qpjG>s&I%*J?aB2fz{OhQuCE+t&e6^H(fu< zB0%9jDs>x=w0SHa_9sifw>X6L`5r^|>SRC=!zzVji{(=(6$Q4a<%Gm_tn3pRrf%kJ zO*Hf=Bx*=k#e7aNL}cc31W_Gh9rbuBL6YKtP{sqyk_#k;Nfif~NF=(7MNLKT3*pegNmwxO;IDZF53cFq=f zhgg@w*vGJCu8*5kj)JDZGi9xrTBRr;N$Hw352p=)LVvq~6Sk7BzwY{UCB;lS)zD2t z&*c?WQ&eM0?IK>GaRR-?$W%qjLG?^|3z7#3F>5;r%}TQ7Vv5r+u7{yl6j&BKi|PEU z!r^dmic2`9z@;E$DW;{Ox{55MTZ$rrsr101<2H8w51Jh%92 zZXR-Vou12Qy>4OBDIvkz)DgN)vW|l$g<$}F*nzo6?6q#|wt^@Y^O{3NEr*e4BZG)Y z!^lufC5Ldn7oUWUw1s0j(*)H(9B8{t9DcI9A20Nft#!)827y2k@sU8Fv3#hGg3J#4 z;o1uFQ8ILJhlWJP(ec6r0t@1LLycMe!AJuTAcnCgt^9QZM&^lV;njrWPCmu%0q(<( z#=zOClxFIaKa;hw+NigGj(_9&56y2!hm2F-$o!ahdjCcF(*y73b3<3}9vs~N^Wgr+ z2M64#wav}V%9Shd+&eM(*%zM-lz%^eWAL55@z*|h5)VCHKQ?~d^Ve>F$$x(L?H^x0 s^WAxGZ13FY{)0FFsQt^KGxvs$aoX_c^smocewNMhN_nYtYj*A0f0%0USO5S3 diff --git a/media/atree/connect_1111_1101.png b/media/atree/connect_1111_1101.png deleted file mode 100644 index 4823513e48b009b0e539d97f46cb070420ff260b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1627 zcmah}U1%It6rN~w(-ZHO|Hh0kwln*Q3azoWb`HTBHB*MGW0(P@2og?Zu6-&}?no%I@P z=~{Kkv_n6SozNort{(x4VTu>J5w3P?uahL)jBPT%MS}F~Al$KsvC(GS&Z=;1p0tS%umpA!hg&UFsmNBx-B8iHV9HwT}HYrILH-sSiyo|s2ayQ zws|p(eGEtD`M62=C}?slRo0xTRZ5(c7y4$cjZ+t((BEF*gq@`CZ+JdgNimg9)YO8e z%7ucV%9^OCeZ_v z)*M|E9SdVg9>gc1n|5$aW}2WHhy!hxiNogl=ke?S*=Z3fHV6cYp!)(D9Lpc7qsY_C zez>+Gf0PV8+@T?narC?}fxv>e!BC^ta4?bp1c+hm{qW1HcVT2c8ZEw(FwBWl^ci9H zKbZt4T%wsq?q_>_vNo}I<=p!Idp|aBPaJ2Nx?cdqr=>UX)^!S&q1 z)43dTdc9u1H1g2Y)acdA*Cwu>T)ow5=l=TR`diNNxi3Eb=;LeRS2u6XzJL4R@l*Bk r=HzD|TFm}sVgKIS<-4O#JfiI~&%beUdgr-rhYs?}{Brrm?E3D1S?KYD diff --git a/media/atree/connect_1111_1110.png b/media/atree/connect_1111_1110.png deleted file mode 100644 index 92f9919c29541ad7bbe0fa6e5a1a242411aa6454..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1630 zcmah}O>7%Q6yCOp1Syt~ijc*Rv~1N?85g{4BHm zhs~HbJt!je)x&5m#%#KBQHp&PCb5M_Nm?7KW@{2WNC4kx$x_E4#P~( zx~-LDrFqG;15ZFWXcJ-Jg@9t1^7%oC>@||GZPIc53isz{pL48>E8KI1rqm4QNY`E1 zipcWTV$0rIvklChKbM;+4@_Y2NP^gb*Yjg@P~lQy6V}u%a%>7o)+*de(_-g>h_ITV z2@+o)xEl%wBrIEwuwyROE@mWPRk&`Fgr+F=`+cFW3PIEnWy3H;Nf8x=2LvB)`Ux8F zetdF7lF`&iY)5XGxPi}7TGS5KlL`lUj1u(1W^=;s$C(bGh&Vu@C<~J4c{J-39Vhh- z2+ndj6dkuVLn1DbI9QKtQr{qca&jDw?MZC79`({Huq~1v@c~jE*0A# zhEq^@Sm?awXeHigOC_F2l8T63kR61^JPkiikZ%*p1I&U8Bn1_#2x$_pYes?BN0t*rrIYnS zQ7@=PP1dENDwQ(Cvm}b4w0-~hYM=Kn#{tHi>uJUZ6}H-_CeC+_Tm zERz=wxH4zYWz$|akv%FQMjHfknbYnfze8XcKp&1^?jdKb5?NLa1)75%v!+XkFA)dx zSiz+dF)%41eH0BRcm~m-+t*C%WCY_81_VB-1OB~-?$Imqfh;H^P}8@wO>@}t=sRJH@Wj7Q+0|?R0gR3H^Z)<= diff --git a/media/atree/connect_1111_1111.png b/media/atree/connect_1111_1111.png deleted file mode 100644 index ec468ba17e8ed1430e5c12e69defcdb49bc4980d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1616 zcmah}Pi)&%7geeon2%f3V#q z?Fn`m1tGy1aRAXHRN4V99H>BuiNoMD0SCAsBrb5^Iw8L2I3bfN5$VPLKL5Vo`@Y}% z-uITZu{uBd^en?L^YyiA6P_$x(~rad8?ElQ@R;sa8Wo1Q`|jLBJOlPr(p+6)j_*J7 z2N>tA^;T^)TEBYx&B7<2>3Z?jgI^IZE`Iv=+Z38MH#V8;zyIhm%*>M4+Df+?>!uz0 zJa)nk;Rk*MD26Fr8${UNAt~D-T`wqee|_;K$9hhgds%CUjcA!{dus_w>;1}vq;op3iTbCAa{K|g9V#_U0o>i~)f0~`qwFABa-v(C^-THAx*JeO0^NozkM zLX#xnZfuj<9tqORqj1L_$40wxFRQ|_1=1rvz!KO^8gI2)Z&+hAt-9;^Q5FFTk5Q@T z{-@0&`Oq&}`lHPuY|Qrva#SY;f*58sw0CJf^=g@;o0?8&dybjCYDPgWibVw#HAP0M zE{g~|x{YKoC8s0Vx<*Dk^&m-cU=zv%%)AFAvLx%O;bLTnL_w;m*a#ENK&qw_-FD;x zE)+-cFUB6U9_~%%LwOwFksMVt3dBW432R7|RRdvJBFOC&bX}BPg%HTYvCWk*_Awlp z=i@FBqM*yMR9UlP)ytgBi@9m_aOwgS`r8Yfu%G1qmgker6jSLWT`TCCqARe9nr!5V zmq?sIZ&5Ny<-YUuk%*YhD7o?~mR21=%F8O}KJr&ttP* zH?ch|A;EjZ;c}BvsWE)zv$2 zM#K0dbkjbLNu>*_fjH21nK$AR^Zd!t(Ql7U zZ@e%oPE{_wcX4fyk6U=9xt_T{|kg->Bj&7 diff --git a/media/atree/connectors.png b/media/atree/connectors.png new file mode 100644 index 0000000000000000000000000000000000000000..be2f56a6af1792a5cf11acd4fe37ad79fab86582 GIT binary patch literal 4186 zcmV-g5T);lP)EX>4Tx04R}tkv&MmKpe$iQ>7x64i*)0$WWauh>AE$6^me@v=v%)FuC*#nlvOS zE{=k0!NHHks)LKOt`4q(Aou~|=;Wm6A|?JWDYS_3;J6>}?mh0_0Yam~RI_UWP&La) z#baVNw<-o+5x^iq7=R!#Q%|H9Gw>W=_we!cF3PjK&;2?2l)T9RpGZ8%bi*RvAfDN@ zbk6(4VOEk9;&bA0gDyz?$aUG}H_ki6e@tQNECM zS>e3JS*_Gq>z@3D!MwJT<~q$0#Ib|~k`N)IhB7L!5T#Wk#YBqsV;=rt$DbsZOs+B* zITlcb3d!+<|H1EW&BD~An-q)z-7mKNF$x5Bfo9#dzmILZc>?&Kfh(=;uQq_$Ptxmc zEph~ewteSad^gZEa<4bO1wgWnpw> zWFU8GbZ8()Nlj2!fese{01h%qL_t(|+U;FGYg=0q9~ptJOd4gk$r=}rG)7>PN~H29 z5U4TaHGzDM*SsQ4zJ?)90&Wau%Oz|YqbfKcv^*9U%RV>nS&gx7D!n3_o4KR&cg~UT zk$k2~Wa)Qj=FFUb_x#SZV1wlF=*6O(&!Omc0RZ6Z)t8n8=lJcr#kc+ubS76YJNqcc zL7e~qP%jDA;n9ml@8lJrPXGS(mlkA+E`!0##cVbM01&qojUNE8w%5+4I;&e0N#MlL zBbF^$%*iz`%PP4-aPZ&QL7QYJyFSZflx|Vfl4V^u8veWw_X007{yEEl{-pxF4l&;&pnd~VD}QuS!G@odwOd0B$0Pb`Kb z7yuYCc*9DjJTY;6pCf%%EF6jO>AX$ay2O~5B^(~Ts3iafI{%ypFZ~NDqx!6OvZ~Nw zSuXhV_{illTpz!Ex6%lF_yBIN6%P7+m@+>e4@VUS?pk$=qSo=y#kNbZ z9lw3In4NuuZc)_QuDm$+!tqH6RY!?&=i(b(M>#wDSj|pUTjuz?zy19m@aG@DYvai` zu@CxvxSm{@6AS|YjW-1~epYn5E6!>evihLk2T%m|R2iVBRzvsppTqs#tuX+2FGCY+ zI+*~#_ifhl;#?d^U$4Hj27{N2UatrEenppPMvS6Z6ia^`^!q<_?e{BPsejP_s%K!L z*=+jOKdL%7+VNboL<>nWo>*L8lO3kS;%!UqFva`WwLIxSm~`N z6X=lN(svZ}IlW%5<|x~=kz!KEU!Q$|4hf>r=_ii*d;8Df|Nr~%s$Z6Ro1QZ-OMr`W zC`hM6eb-^WwY7;)l5zRz0hxGDvJA2?lG;Apq6zi6<14iNJnK4eu5O>^^zAl2k6!iQ1Zv=t7e!^>a`;^_2L;k5b4z?01sH1ywmJ-`DT|Bv6J0iaS0*LnC1-(D2I ze|Yp_0YsN|EQV{(0sw%zUtAKo!dR|B`Px^7@%?!}+Kf+AO~FIgD(LHiC7L7%O`}(@ z*Q?so)h{@D{dDqkHDck^-WLaFNacJEv)K%Ky`J|BhHr9w>mNZu*2XId#uG!8Yybd% z{_(q0VyJ{}T)2)LF-Dh|I1lwK9}N61?^Rt#u@xME1>Hcv;E|4Ex}=NYCn*je!PXsT zZPNqj4p@jX4;kc-QO4uT)?n~*p<4%f;Q%ZO%?4D6;M7nW3w&eB7YEm2m|%RW>MFCd zkKZ>{$o_$;18V2Q*dA$Omu!=Ci*=xYCcI7ZQK>Bv)k$&jy6NJ)wh1D^8ILbp-J+=J zBMI>F__D?IktRyFD5_|Cn&vIV_tOWNHI^-^!N0N-^^N3cXB zgcYq@8#IlRnq4`;vINV4;~~_C!g=hH6Rct3Qz$7bn&N~oqq#n@a6;|Egx@sAcUw2? zatBc&X16GuS+?`Cgx<-kACA5_hhjJaB>Sa+BehH7AD3Xn&tecCU6|3PQ4CKkNN{4? zMfHj0pLI)%pEuOapYas3?oK%xv|Q-?xwAa2E!h=X7tYQ5Q_)>{)IZN&zcGH-w6#mO z>1)ZM(8=`9<@oKp1)e$wsGr~S(TC#DBSF46)UFW!aD7Z|mfG>Yw(E;P{GRUnsuzLE zc|2k3@&@!;4+P?@GKJ+YM4!EWvqJH3J*(!Lz#$@eNjsfPYV2wkVx!JCQXO<{SaJIz z`Dg7@L@D92*Xvb0u{o@=h%v}?3uaXh%SWYk;Z%XM41$~Yr%JmxCyx8)+3Po;8Z~r1 zzG~`e+sdZ;xDXS0hhiGZR5*BIe5&!eD~^eU?1SSIhdTc>mSA`<0+JhfaG4Cczq_qY zNf*m&gsa=6XaZOq%*mN1oDN}0^9J|9p^1h)qS7u$|ELlxlt)F`%f6@4L-o0Ne+tiD zzo`hAA$I8!y-EK(Sc1_xD`gR55b?x9!PCgq@5h(5xi_+iDS=PtU>BU-Cr_cXYlnn;KYa8u+T}SFME0-i^#;20gUDC%x^7{q5BIeX4!?hr^SPvUO(zrR z2>jFdE+SPD@0g$jK1xut?b=YBl3fx)32Ht#_jk9j`{{G_x1CR)gY>~EV~9S5B9KFO zwb0KYr_bp{LZQ`T_V%B{{W2j!aAN2~+bb3`dflRY4>lfOw)nb0ayJIW;fsDLPAq*? zf0NopZIdJyPIahVzQMyeO8A*12xIC){UgywWmn20mQ#Xp=c2@7gi3Kz(9ehNZL6OjQk?lnq5hZV4RUEo%^nfA)AUmF>qq6 zE3#c1y2+6eBQ-UBVl!<+YESdEN(|0aES%KrN^X-Qi&ZKH?6KP=N-$Fo;agi- z7lcxrZPO>lU52KU>r$LrAwc2uFcrI!S%aBw0-_Z=Xb`E62AOIi(~2FwICD}W2DfV^ zI5f$o0N(mk*HjDaqJPu%>Mp%K#nByLZVD%sU9^7nI*QgmNPREVYZj+}8PrCaX#x)#gmh+S96$S&BnXz;^^V1wf5o z=b{fUWsLqo+6*|_m0W`P4&%D-TWd7)|I_;(3`t3aQbSOttYK}*je%1on8hxWf3Wdu zwUsq?%@hGAS+6)V$31a42A*8k6_&HL7o`(nvYGVJ`I%FKHf{t1kTaU8Q+8pMQS4fy znKzOT4!sD)grll=g`=0Pu}%J=#6%tlR3AzX!1yv}=Pt6c<_1l45x(n*lw-wz7`* zq{1nNBW;c5CU9ceCB@+wyvHuOUF*SNii7J-&LHkguB?R$QrAbtjCR3EZWqx+k@ulx zD{;y)Eu2_(1>)ca2rvEWjkCP3kTS6M?1-o*BJyO9b5$@JW zuOIt*^`)h|zhcw%iGh<7ERSLtXU#Z`ZgOO4R`A_h$Q1^(ge*YV^>Hcb6VtAw5-e8j z;N!RN7NLvXm^iWQ%C(g@OPYx19h-Aw)Yy$RhmM64%dYI7Y?pWqmTJx4jFWLT31_1i z&8ab?vwyN(Hk`bRn2_YU$lE8*jAluVUH)BZ?O+uXITRuOAsT@^52{n7IKMAjZv~$B(L~H~HBXhbrc{uGX^&$5gQ12gkL&+O%{k{t>`@eSoe; zvyLU}Tcg>;Xx8=m9SR3EB~4o4S1 zwo#h<*(DCSebs#`o;W-fee_Yy1WfJK;`2s&G=?)<`9oY-yOhhLODrE8Q$zXU@R834 zhi(d}Y8i*>LmS&wpV;k%qawc#-p4<5w2}HbhF!7r(J`!b?WL^IjDVpvnz8tJXpQC? z4xJ|l;Ly=Vg3~Pu*!lFi?w^MBiQQg!ZJRBSb^7qmut~e9KGNFUl6c-R0jjt_J_jV} zDeRCM&4^Q8oWsrgQ@DA53Omb!=u&;SP7<7${z*}vY*#qWj_LgXmHWF}(E&--Z(`tN zeb%c_XienUIH}o1u}nBlN2Nk)^{S=`p*UHe&C+KZ?V{666OL06bZNF{oQ(6>ah!^v kr&6mo>$6$1cdvEP)Px#7*I@9MMrQ<|NsC0|NsC0|NsC0|NsByyu1Ja0I%Nl zwEzGB26R$RQvd=11`8D?esTr?00ZwyL_t(|+U=c9ZtE}%gq7kI+U5v3LQf@cxiYWc zHtB2ZMz-}sas-$2w{1w~@cgwSvzXHPIXynP5;-U4A&Y)(ICvO-w&KD``+S$KK! zzh_bvAs&@qBIrH-ZutcQ>C`_g|3n}S`HSlR&ZAuUYuuXr1A?pQ^UtZ`OoAHRV&&s6 zLCWyWD9|V2%=Y%7WsDJ-VBw+mx0)YYO zYl2k$I|0EO(A`F zodh}pR7jvBK)D230u)Q2B|xbJdIA(mpeI0?1eyXANuVh}i3GX=6i5(N1t^d}S%7Z| z2r0l_0^A55OAysNa4?4Y9XJ?60|9n>U?ITn7_t=rAv>@$hBh78>4A{|+hb@5z{n14 z_P|Vltsa;HFtP(1J&1M!Y)!dwp+4=~#T ztcTzd5datD2>k5<;{j%CfYlJh0RU1$_JHvKvpvA{1c)F2hK|5@58wcVoWV7~i~yMM z0F1l@Yk-uH*8m7W$V>2?LeK~d0l>&h@H>UD85{zDMgYK#z|S=}HvkU+0Gz?cJv=)A z;Q@d%__&7-00v+OzyhQ@Kym;FZ~zAYp6Lr{-xc$Mqa05rx6jUxbHUuq2w0DrYRIskgX zAq)TjUUG>803a5fXq;6q%(5GgwC)F4cw7Kn0(#>TvGlrHJpO=h-2xV$X{^m_`{j2= z8ZhM6|IG~$2y6kt!+B6x+kg<%2qo_YgLY!EHNzpO8_t#^655Z*(h`csG{rKq1=|6L zU|+I#D{D9&*Bs9RVBa|z?N4Z95lLW^Oa}U-7TAOu7^M=}D)z{%R^2T3(5_e6F8J86 zSlKYSz_MA@GP=aHTGceW$hKS2HoVNZT+uka(7IjCI=Nz+mi-7wpX!><(D$&O7alm=wrc z<(`mDk)+X%m{F1XxAve_nVi$`5gMar#nNuCwFLhYho!P^LtWgjPU3N_3|v--o#vXz zX_esZSRA^o7CoMcJkM0uj6RRq-1TMVxqA3}1cdvEP)Px#7*I@9MMrQ<|NsC0|NsC0|NsC0|NsBJ=DYv^0J}8W z>i_@%26R$RQvd=11`8D?esTr?00ZwyL_t(|+U=c9ZtE}%gq7kI+U5v3LQf@cxiYWc zHtB2ZMz-}sas-$2w{1w~@cgwSvzXHPIXynP5;-U4A&Y)(ICvO-w&KD``+S$KK! zzh_bvAs&@qBIrH-ZutcQ>C`_g|3n}S`HSlR&ZAuUYuuXr1A?pQ^UtZ`OoAHRV&&s6 zLCWyWD9|V2%=Y%7WsDJ-VBw+mx0)YYO zYl2k$I|0EO(A`F zodh}pR7jvBK)D230u)Q2B|xbJdIA(mpeI0?1eyXANuVh}i3GX=6i5(N1t^d}S%7Z| z2r0l_0^A55OAysNa4?4Y9XJ?60|9n>U?ITn7_t=rAv>@$hBh78>4A{|+hb@5z{n14 z_P|Vltsa;HFtP(1J&1M!Y)!dwp+4=~#T ztcTzd5datD2>k5<;{j%CfYlJh0RU1$_JHvKvpvA{1c)F2hK|5@58wcVoWV7~i~yMM z0F1l@Yk-uH*8m7W$V>2?LeK~d0l>&h@H>UD85{zDMgYK#z|S=}HvkU+0Gz?cJv=)A z;Q@d%__&7-00v+OzyhQ@Kym;FZ~zAYp6Lr{-xc$Mqa05rx6jUxbHUuq2w0DrYRIskgX zAq)TjUUG>803a5fXq;6q%(5GgwC)F4cw7Kn0(#>TvGlrHJpO=h-2xV$X{^m_`{j2= z8ZhM6|IG~$2y6kt!+B6x+kg<%2qo_YgLY!EHNzpO8_t#^655Z*(h`csG{rKq1=|6L zU|+I#D{D9&*Bs9RVBa|z?N4Z95lLW^Oa}U-7TAOu7^M=}D)z{%R^2T3(5_e6F8J86 zSlKYSz_MA@GP=aHTGceW$hKS2HoVNZT+uka(7IjCI=Nz+mi-7wpX!><(D$&O7alm=wrc z<(`mDk)+X%m{F1XxAve_nVi$`5gMar#nNuCwFLhYho!P^LtWgjPU3N_3|v--o#vXz zX_esZSRA^o7CoMcJkM0uj6RRq-1TMVxqA3}1cdvEP)Px#7*I@9MMrQ<|NsC0|NsC0|NsC0|Ns900079p=P%zI zNdN!<26R$RQvd=11`8D?esTr?00ZwyL_t(|+U=d&aqBP)MCr^8zg>b$NJ;pDIuP5> zjh)0&Oi6qISk4G6AUIlpo{TN*hR|>#XHPIXynP5;-U4A&Y)ao}wnA9+KD``+S$KK! zzh_nzAs&@qBIrH-ZutcQ>C`_g|3n}S`HSlR&ZAuUYuuXr1A?pQ^G~Vb%z_%+V&&s6 zLCWyWD9|V2%r-UPrsDJ-VBw+mx0)YYO zYl2k$I|0EO(A`F zodh}pR7jvBK)D230u)Q2B|xbJdIA(mpeI0?1eyXANuVh}i3GX=6i5(N1t^d}S%5DI z2r0l_0^A55OAysNa4?4Y9XJ?60|9n>U?ITn7_t=rAv>@$hBh78>4A{|+hb@5z{n14 z_P|Vltsa;HFtP(1J&1M!Y)!dwp+4=~vR ztcTzd5datD2>k5<;{hgXfYlJh0RU1$_JHvKlRd!v1c)F2hK|5j58wcVoWV7~gaDZF z0F1l@Yk-uH*8m7W$V>2?LeK~d0l>&h@H>UD85{zDMgYK#!1pycHvkU+0Gz?cJv=)A z;Q@d%__&7-00v+OzyhQ@Kym;FZ~zAYp7}q(Dq1x&?~Ob$qFLy_$J`v3n zWrTxDghWk+{c zN;Sr6iG^ylrfP{ap(|RAWrEc@0`^3r<+=j?Itk|PfWg=uFW8$e*d4IgS-(4Cvb+9I z#%p7Jk)+X%m{F1XxAve_nVi$`5gMar#nNuCwFEzj!%|tdp)T%MC-FE|1}-baPIFD< zv`X-HEDqgPiyqHJo@c6SMxV!Q?)ozGTs{0f^3e&}2VDN&E<(c}`~*z=S{)ZLKi>cV N002ovPDHLkV1oaP=ZF9R From 791964737266afb2db52a284e0a39ba6300aafb0 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 12:30:59 -0700 Subject: [PATCH 55/82] 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 56/82] 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 57/82] 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 58/82] 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 18d9827256afc5da06400cc2632264c7bc0262af Mon Sep 17 00:00:00 2001 From: fin444 Date: Sat, 23 Jul 2022 17:50:06 -0400 Subject: [PATCH 59/82] compress connectors atlas --- media/atree/connectors.png | Bin 4186 -> 1824 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/media/atree/connectors.png b/media/atree/connectors.png index be2f56a6af1792a5cf11acd4fe37ad79fab86582..99c9aa90281f2f9e12832bfa655381803af6593c 100644 GIT binary patch delta 1786 zcmV#Fbq_)(KhP+;UXb+45lRDyf7lDI;0>mU(*GW05yd zf1OyNjDY{JHz1PLLRMLCD{rlH&bT^v&igi_Wpu6%IwK&E-6FKf1qk# zxlbKv3jq#m<_sbAEv1(suD3GLh^wh;$k`_RZ>< zW+%vo`;L!f<~g#imG$U!YfjoqH*47ny0=Pe4o{IKN)~k>)kxI5t+Wo<{KXWL+lb zgJTf+IjRm_QvIBo!_Me!N8sqn5s;MB;HI!4Z9%f;7F?&gNj8td+`_*g3bjFzxdnSq zt<4;(Mw(@ywD|oFDA@!|E-9&b2|3pcTNFz59FheP4 zBoaQkX4phLU(dOtV?pk2K@KUbdB^$FZi~gFBUpoxT2iHvNC{+AGg?Nw1Hpei*@MON zP2Lc2MnLfiDXe+N2$Ow3SsGCz>zYAX^a8>s*NnFWQ219C-x`Vu{K^~yAmh}pK&jOV zPFdEo9-78;WZm3GKq{@Df7!lw*@@4lrJP-^B1R%|h`^ywqV&D{7({~8R5L5b|ElOk zi5o{E*hPixM-el8%_rZ}N=H1*MIzW~s+^BRFtv`GN)1vq7m1)#H+9rqVjMZ%u>)hD zIgUh-YB87^jwr@4OsW zI%1g*!8mo-A6|}|vvNE>iQY;5DOs^(9=})Wq++XewOx%PK&EzE{e;k~(VIw3ae>03 z1qN^0=L`;+lStr51y&k?1#{`yyVb=(KwuD4l|-hL8vP;|CzR#TgVA&7tPO(@_K<>_ zb%7}=?$`qwdLRHrf6u^i3X8+clZg;-)Klk$%`6$53()2gC`Z5!e?Vv7GP*JAN^!1Jk&CIF z*sky$h?G*+~6G zWT_6F>WCAOFC%+I*8k8ZKV+rvx$N;J!v)0Dl9~mnWj6T{D}B#pFVVw?H1nREK1NnN zMFzUOQ8~_4f1va2ZR%1Jw5B)=Q++-d=aMoUv8dE|jR_lgLH^33WD5X0Gyve21soV0 zqrYYARa2f1bylTCTwf^oGo}Mrdp-ES?lYbopcn@PS!Y0p2})rvQfl(lje2SX#xQsf0_waL5OOZw$6oy&05tAS1Fju| z_rMYEMfcd?skiE>85jkHfO5Z%5iY*;3JrrYNO4TX2)b;(^Hv9)>X9@podP+VUe$~v zu~+zQND8I)G`e4VBrHk(OvdIrw>3c4FiA{dUO5bzYOT_mf cfu2kK4;uV|P5DYrdjJ3c07*qoM6N<$g8be?&Hw-a delta 4165 zcmV-L5W4T64%#4)7=H)`0001#Mmw$m00D$)LqkwWLqi~Na&Km7Y-IodD3N`UJxIeq z9K~N#r6QFM78P;GP@OD@ia1IYi(sL&6nNgNw7S4z7YA z_yOYRW=_we!cF3PjK&;2?2l)T9RpGZ8%bi*RvAfDN@bk6(4VOEk9;&bA0gDyz? z$aUG}H_ki6e@tQNECMS>e3JS*_Gq>z@3D!MwJT z<~q$0#Ib|~l7A2(qlPjnun?tHBgI6D_G2FYVaJ~&mrSlQ7&#VDg$l{>ga5(rZq35f zq?;6s0o^aQ{V@szc7bNyw!e>UyLkfmpMfi_?XNa~*-z5zZ7p&Hgtmc;>$WEE0hc?# z(3371k|X(P3WWmjen#Jv1Nv`)-Zi(k);>-jfDCoDd{zS-90FrS%3k+)cTZ<;|DI{} z_X9i`a*_RyeZc?#00v@9M??Vs0RI60puMM)00009a7bBm001r{001r{0eGc9b^rhX z2XskIMF-{w7Y`OPtTaMnkv=DX4l+qZK~#9!?Oi`>TU!zz8G)`$8fCZ18W)c=Mqral zr1B>as4?U33)5%$$Gs{LZvsgXHk&#iE?gq3Cu20O0G@mzD(Q`0cxY#kc+ubS76Y zJNqccL7e~qP%jDA;n9ml@8lJrPXGS(mlkA+E`!0##cVbM01&qojUNE8w%5+4I;&e0 zN#MlLBbF^$%*iz`%PP4-aPZ&QL7QYJyFSZflx|Vfl4V^u8em{6r&Eh^1h4`4pj|r!3n)>je zPxrYh88Fj};Rue0qeXdfUVWz+jsO7Quq+q6N1)jFywC(d9DHtn%tli6XteQc(~x;t zf~rp}h9ejN7%_OmN~Sz9aeSX6eO4?SiSX&XP1?G|n3p9S9=)g~00uh$oCh!c3o4`f ztaq}i&|z6F`1AP4n6{rw;C z=O4dozjPz3f=8K9?DL-+Qd!~NZ@ zF#vckLlbK{nE=4|ZPxPQTpUPWufDVfgO`h5uLt;kMVDxQMvS6Z6ia^`^!q<_?e{BP zsejP_s%K!L*=+jOKdL%7+VNboL<>nWo>*L8lO3kS;%!UqFva` zWwLIxSm~`N6X=lN(svZ}IlW%5<|x~=kz!KEU!Q$|4hf>r=_ii*d;8Df|Nr~%s$Z6R zo1QZ-OMr`ib0|osLw(m_zO}W9Pm*!@>EvgaP9{)9N-|Rd`HUoVYQ{TDTVkoE@{(B# zZ6~nAc5RA?L9qMesWM1xBMAm;%^?8Q@QEiBl!?H8OAYT91?)a~x{_2b(}~)ekLW^^ zD&zzQAI0wPZfkzzJ*KHa5u?P$Bl>dx?Cn3VVe>YB!=SYV5O0s`$yL=U;*8^3(XJuu zBpx%=SHJ!CA1e+`tn0H6m495@NR{k99SGv+^i<)r`N+VN%@j2B-+Vp5104U4-=hJb zQViF5_zd4(6u*CX^kM--mvtw+bJnj{EKqgSujtJ>4mFF1PrbnJGvDGndO)*WYU(*x)ZScozY8RU;q#^cL>)?n~*p<4%f;Q%ZO%?4D6;M7nW3w&eB z7YEm2m|%RW>MFCdkKZ>{$o_$;18V2Q*dA$Omu!=Ci*=xYCcI7ZQK>Bv)k$&jy6NJ) zwh1D^8ILbp-J+=JBMI>F__D?IktRyFD5_sa(oM2lvib+o?Q1Lwux)4Ap6>gq7lF!oJYnnd2J~7F1mdhRh2<|qpS^ywLh*1ttLB=(AtHH6JDp5w z>}nTcqs}){9dvD2ar+|qXYEseL@D92*Xvb0u{o@=h%v}?3uaXh%SWYk;Z%XM41$~Y zr%JmxCyx8)+3Po;8Z~r1zG~`e+sdZ;xDXS0hhiGZR5*BIe5&!eD~^eU?1SSIhdTc> zmSA`<0+JhfaG4Cczq_qYNf*m&gsa=6XaZOq%*mN1oDN}0^9J|9p^1inJ)+VsNB^i2 zE0jk?*~`AC(L?pQd4CGeUcadbm?3uQ61_?PJXnI!IV)umV-WGgLc!C>)$hlbwYfL4 zh$(?j=U^9{-6v0>vut=ir}x3pUERh{S?d_Y)IWUmGTP-i6-4&0>-7e@^MlA&^15ze zsSo$H4-UV7lJmKwc1iK7}HXLwB{%&mpJJ=|w`J)noSdpTqq!AwqCs=tJ8p7BhO?qI?fF z9$&Wjx zl{w92SJx-Sa0E|(BQT@Oi*uMQxB5e-^_wi#5iEvd*1?cXL7&)6+oIcz(s6{W3D<#> znq5hZV4RUEo%^nfA)AUmF>qq6E3#c1y2+6eBQ-UBVl!<+YESdEN(|0aES%KrN^X-Q zi&ZKH?6KP=N-$Fo;agi-7lcxrZPO>lU52KU>r$M5S|LE;^e`2>l39b9ZUUke zJ7^H8js}@(BGZZ;zBqGIA_li>B{($6rU2ghRM%7s?4p0u_3AFYJ;l)-U~UR0mR+=d z^*V~yKS+X6MzgIZGXI<=n=YADQ>iHnP8yUZ99q*^Rr}cmhxdXib}Y4vzueaOhbF5^ zAJyhe%-Yj`s*zcWLr=hW1ULmijbG=Y4=-hm{z2LdINFt5g82^Py6;qnE9*P5z<8L>>rKA4(47 zl_-5gReRdT_;$hJ1Wn}L+1@*<^r1!Xr;`ahd;P|msImN$T!Pt3$nu)N_&0vCoxcS1 zsnNU=;GQ_TI=vicWryd}=NgGrWfv8#f0o>|YlA)%7g^DgVtFc?B==pId~@S5+Ny9k zV|==QoZg#~ES7&#lNO%?>*lw-wz7`*q{1nNBW;c5CU9ceCB@+wyvHuOUF*SNii7J- z&LHkguB?R$QrAbtjCR3EZWqx+k@ulxD{;y)Eu2_(1>)ca2rvEWjkCP3kTS{q@-gQ7^v^eQ*gO)hC8sO-Vk<(Xgm? z#3V<7C=PB|gyO`~Ck4B5f<02fDG~10Nv|LKdiABHyT4-7^@)L#6D*Hn8E4Hnjc#&e zX;$#vTgVj#w1g}`*!6KK=@Zkgq!KJv?cn3L?-rqp-IzGB?8>#3H%pp`=N+4KW7ODx zjWvgkg%iuJ?4N9xcny|n&EJfZaW)BOqZrMpF{878vRyWuyo;ESH zn11G?paf^GIQ8y>qhfqZ+AB6rsGq5SK9nY9!fET6q{`hB#pn2Y)s3qvrY+JJxZ{q8 zBW+J&Vn$1GC?QbAj(%tyo3CB`%#%ynUcHlg$6>-z1u_3V=l!YtgH#q<9NOZ?6$d}( zwWDn~ST5MLz1otCNmRe_VcH&$`pQ1FjFrr2P?IUGx+rv;disG93o8s^En^gaN&uOAsT@^52{n7IKMAjZv~$B(L~H~HBX zhbrc{uGX^&$5gQ12gkL&+O%|kD*h3`e0_kfMzfA3>szDQ#Aw#_`W+7(ThVeG4lJ>F z?PB`>jwcS?48Wr7u6{DO4UQ{2diw;K@Kekbt``IN9xqa1rDxNqz7Jc+l%>+#C z)#CF;dNhVJTlqs=Si6+Vqf0Cw98*L2;_#8r2ZwG7sA?I9>O&jbRiD^@?S-QvzYpHW zKXkN_`ZHPqe`@37w0ZG+wV&G(b)~iowP2|`(so6!bOgK(Qr9x`; zs-_8{I9Z>~(q|j(qSH(hj#CkIX|`vajPuxWoQj~QQmZ%XvswCNy8!+IRz>3rB(_~} P00000NkvXXu0mjf$JQTO From 1e699f223bedcc487ed4d5bcdd04a1133ffe32c7 Mon Sep 17 00:00:00 2001 From: fin444 Date: Sat, 23 Jul 2022 18:10:44 -0400 Subject: [PATCH 60/82] atlas atree icons --- js/atree.js | 35 ++++++++++++++----------- media/atree/icons.png | Bin 0 -> 2891 bytes media/atree/node_0.png | Bin 1658 -> 0 bytes media/atree/node_0_blocked.png | Bin 231 -> 0 bytes media/atree/node_0_selected.png | Bin 266 -> 0 bytes media/atree/node_1.png | Bin 1691 -> 0 bytes media/atree/node_1_blocked.png | Bin 254 -> 0 bytes media/atree/node_1_selected.png | Bin 313 -> 0 bytes media/atree/node_2.png | Bin 1719 -> 0 bytes media/atree/node_2_blocked.png | Bin 276 -> 0 bytes media/atree/node_2_selected.png | Bin 328 -> 0 bytes media/atree/node_3.png | Bin 1758 -> 0 bytes media/atree/node_3_blocked.png | Bin 309 -> 0 bytes media/atree/node_3_selected.png | Bin 385 -> 0 bytes media/atree/node_archer.png | Bin 1685 -> 0 bytes media/atree/node_archer_blocked.png | Bin 267 -> 0 bytes media/atree/node_archer_selected.png | Bin 297 -> 0 bytes media/atree/node_assassin.png | Bin 1680 -> 0 bytes media/atree/node_assassin_blocked.png | Bin 260 -> 0 bytes media/atree/node_assassin_selected.png | Bin 291 -> 0 bytes media/atree/node_mage.png | Bin 1682 -> 0 bytes media/atree/node_mage_blocked.png | Bin 263 -> 0 bytes media/atree/node_mage_selected.png | Bin 295 -> 0 bytes media/atree/node_shaman.png | Bin 1685 -> 0 bytes media/atree/node_shaman_blocked.png | Bin 264 -> 0 bytes media/atree/node_shaman_selected.png | Bin 297 -> 0 bytes media/atree/node_warrior.png | Bin 1679 -> 0 bytes media/atree/node_warrior_blocked.png | Bin 261 -> 0 bytes media/atree/node_warrior_selected.png | Bin 294 -> 0 bytes 29 files changed, 19 insertions(+), 16 deletions(-) create mode 100644 media/atree/icons.png delete mode 100644 media/atree/node_0.png delete mode 100644 media/atree/node_0_blocked.png delete mode 100644 media/atree/node_0_selected.png delete mode 100644 media/atree/node_1.png delete mode 100644 media/atree/node_1_blocked.png delete mode 100644 media/atree/node_1_selected.png delete mode 100644 media/atree/node_2.png delete mode 100644 media/atree/node_2_blocked.png delete mode 100644 media/atree/node_2_selected.png delete mode 100644 media/atree/node_3.png delete mode 100644 media/atree/node_3_blocked.png delete mode 100644 media/atree/node_3_selected.png delete mode 100644 media/atree/node_archer.png delete mode 100644 media/atree/node_archer_blocked.png delete mode 100644 media/atree/node_archer_selected.png delete mode 100644 media/atree/node_assassin.png delete mode 100644 media/atree/node_assassin_blocked.png delete mode 100644 media/atree/node_assassin_selected.png delete mode 100644 media/atree/node_mage.png delete mode 100644 media/atree/node_mage_blocked.png delete mode 100644 media/atree/node_mage_selected.png delete mode 100644 media/atree/node_shaman.png delete mode 100644 media/atree/node_shaman_blocked.png delete mode 100644 media/atree/node_shaman_selected.png delete mode 100644 media/atree/node_warrior.png delete mode 100644 media/atree/node_warrior_blocked.png delete mode 100644 media/atree/node_warrior_selected.png diff --git a/js/atree.js b/js/atree.js index e8dc914..7222688 100644 --- a/js/atree.js +++ b/js/atree.js @@ -372,11 +372,11 @@ const atree_validate = new (class extends ComputeNode { const abil = node.ability; if (atree_state.get(abil.id).active) { atree_to_add.push([node, 'not reachable', false]); - atree_state.get(abil.id).img.src = '../media/atree/' + abil.display.icon + '_selected.png'; + atree_state.get(abil.id).img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[abil.display.icon], 2], [9, 3]); } else { atree_not_present.push(abil.id); - atree_state.get(abil.id).img.src = '../media/atree/' + abil.display.icon + '_blocked.png'; + atree_state.get(abil.id).img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[abil.display.icon], 0], [9, 3]); } } @@ -425,7 +425,7 @@ const atree_validate = new (class extends ComputeNode { const node = atree_state.get(node_id); const [success, hard_error, reason] = abil_can_activate(node, atree_state, reachable, archetype_count, ap_left); if (success) { - node.img.src = '../media/atree/'+node.ability.display.icon+'.png'; + node.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[node.ability.display.icon], 1], [9, 3]); } } @@ -973,7 +973,6 @@ function render_AT(UI_elem, list_elem, tree) { const parent_id = parent_abil.id; let connect_elem = document.createElement("div"); - // connect_elem.style = "background-size: cover; width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated;"; connect_elem.style = "width: 112.5%; height: 112.5%; position: absolute; top: -5.55%; left: -5.55%; image-rendering: pixelated; background-image: url('../media/atree/connectors.png'); background-size: 1200% 400%;" // connect up for (let i = ability.display.row - 1; i > parent_abil.display.row; i--) { @@ -1010,16 +1009,8 @@ function render_AT(UI_elem, list_elem, tree) { // create node let node_elem = document.createElement('div'); - let icon = ability.display.icon; - if (icon === undefined) { - icon = "node"; - } - let node_img = document.createElement('img'); - node_img.src = '../media/atree/'+icon+'.png'; - node_img.style = "width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated; z-index: 1;"; - node_elem.appendChild(node_img); - - node_wrap.img = node_img; + node_wrap.img = make_elem("div", [], {style: "width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated; z-index: 1; background-image: url('../media/atree/icons.png'); background-size: 900% 300%;"}) + node_elem.appendChild(node_wrap.img); // create hitbox // this is necessary since images exceed the size of their square, but should only be interactible within that square @@ -1242,11 +1233,11 @@ function atree_set_state(node_wrapper, new_state) { } if (new_state) { node_wrapper.active = true; - node_wrapper.elem.children[0].src = "../media/atree/" + icon + "_selected.png"; + node_wrapper.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[icon], 2], [9, 3]); } else { node_wrapper.active = false; - node_wrapper.elem.children[0].src = "../media/atree/" + icon + ".png"; + node_wrapper.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[icon], 1], [9, 3]); } let atree_connectors_map = node_wrapper.all_connectors_ref; for (const parent of node_wrapper.parents) { @@ -1275,6 +1266,18 @@ const atreeConnectorAtlasPositions = { "1011": {"0000": [5, 2], "1011": [6, 2], "1010": [7, 2], "1001": [8, 2], "0011": [9, 2]}, "1111": {"0000": [0, 3], "1111": [1, 3], "1110": [2, 3], "1101": [3, 3], "1100": [4, 3], "1011": [5, 3], "1010": [6, 3], "1001": [7, 3], "0111": [8, 3], "0110": [9, 3], "0101": [10, 3], "0011": [11, 3]} } +// just has the x position, y is based on state +const atreeNodeAtlasPositions = { + "node_0": 0, + "node_1": 1, + "node_2": 2, + "node_3": 3, + "node_archer": 4, + "node_warrior": 5, + "node_mage": 6, + "node_assassin": 7, + "node_shaman": 8 +} function atlasBGPositionCalc(pos, atlasSize) { // https://css-tricks.com/focusing-background-image-precise-location-percentages/ // p = (c + 0.5/z - 0.5) * z/(z - 1) + 0.5 diff --git a/media/atree/icons.png b/media/atree/icons.png new file mode 100644 index 0000000000000000000000000000000000000000..fcbc48d78c0e338190c7ab98299ea428629fd437 GIT binary patch literal 2891 zcmX|D2{_bS8=pbOIx`_#_>VHSD?5?=8AHZCYD95Oqhh48O(@1TGO|lIZi!JzSxYKg z$XX<$7)5qM_C4b=-*oTueCK)2d(L~#d(Q7&pL1^E9j!%$WQ8CQh^P(D@+1TTMRDin z1bDeLF^G7HJMj5n954{bi!|YXNc*@vH29>o1*Ghg+$@)op;)<5u>M!BT)awwV1q7_ zC>JlFLVYP@l(mfm-Zcg;#T60^z?}((Kr|2k?$EFTvk>lLBHo^0WgTD-C@88Eb<8bn z!B{$xHFC7%6&kH_L{nQ4P(Z)aLl^0Yp~a9=NUVyQt(G>&$_lHA-Lh`7G}ARb`iHHd z-M2DZyTkBqMMXU!70#s<<6|b~7M2`to4R{U9&TlTG!s4Qij`>ZVcI!45%9KWtx0Dw zxMQZK&IETO9cBBHC!i{L>d{+H{Pgf|<0vN`PeIIoeD#JvgrsdOF@&&zg|mY02aQG0 z6O_ruNmM8b`Kig1!&xd->L#V3>E-hwGiCC}Dyd)|`piUKQj$l|hbc1xL>J~8xwj;O z?nj*4o^BVEljW2oL6lBFvh9BYuR8eb5*uPx5ZcFOF+!AmEvYKvNx&8|K0jZDC2f+S zqNBeD<#~?q1XX)ePkc2?HFrT70+t$}vZP<@iI)35)d_<}`olU9^&is6{_b8eUPAIM z-}oC8U4^30dC*llXTd`vifUX}K$n6g2Fmbuumuep{R&ARRTc8+A*Ybi7IS5V(}%9t zMUz(Ip-n0C-YwCuoDh{YRXoWa-E}u2k|#F?Yb^DmZ5-qYeUwDF%n``h_+lkbhd*$m z1_&WXY|?JOi0Tee&wM8H1#Z8k!Ph0EnVbRutZb1bMAN!LYKLYiL75_jcqil&oKq}h z{;?N7A?IFUfZr*;dqovq;ogk{TUl9ITU%s~dn_ck5gaRjfAhrg%}1uFUpVYO0|wkw zC2>q;xLF&{T5GO$;aA6R2iIN}3%glb_-yk)v+UJ`sKYt}mdJB=@^7|~vhjYvN8X?d zD6jYX`O@e#1flsh~;iqh^s<4*^W)-p$gv?ejGf z8jY;6D+4XMqU{?pqSmXQcQZwuiUrDL7^9cwg%^$}%s?;8VWcBP@FEYR7vJ5LUv7j7 zlqRV0&%Gt#BXRo^B;U|7JEgI)VIft`*CgnBJm292<&+7wm{Hqk4R3*Ibyb0;#rNyb z@DEAU&|z=Q8zTGJ%ggHoaf$KyJFsRO$g)I4{JVnq%2$@io4&ROu~ILOzwix5I)1c5 zsO)I_){R5{YU*Bh>guXY+X-aV3F~}y9=&ZIn)od#8wLMDHm8Fahx8v<5hJDz=7#O& z$m7Ff{52?NhuX`IZN(SD-FwsuCO$==zauKO4w-58Kr2zn77V$yNv~_il;qc*Pv|An z@KN-q{JG56f9F#~oUX{W3n{1Er*QsC4GrXnR9g1zBOP98)=XHxr!2ovd+xq!uA_EU^v?MXK z%8vi2@oWu=T<8A8IGE%eHPe(lJfe2yF>L61i^f62%lCj?hssgR3PRGa+XHvjPt3I} zM`y3YwJcB5hG(c4$Ns$c9WIi@iPJLW&uz@oVqJg-eL!dZTis_Xz!^ESGr*lsk6wbR zbF>Oj)r!c1J?MkI9TT}7cBDBk@$@O#|dWP`gzgWk} zZ{73b|1?WGy*XU+x;PFbSJzcnJ8xi;TD=-Zx?QMvXAebFL7wz?cHZXA!k2OzGx8*2 zzJ@ElZV2GXny#&_o%S(OXEP3zEcF+M*T#=nQJFuyUw-!>jxgi}*{I5#-NC`Zi0;=) zvo!M6EV81N?MQQN$#`YccoB2({F2WAQE(!Z%@`SFDY#IXtjqm#JFYGO<)z0xv_=MC z!!-Cm0u)b7p|G6KJyD5_;}Q+GmTZh=-C4s;*n(zt%MQQF~vK5AxV7s zXfANY{jRO0`(3y9Hhmr=?j4zVnXRSGe~XRMjU4<)?BO6ilveEEtA`vX3wBfv*4Jnd zsLaycg)q940}!{Lea%4!*9$vh49P!0%DKCak&ZcMh`qa60VaqF7~9T-%DT0xML#pT z?o+{Osx}HyoTD*o7gM|61QgHEn30Q1{qBiYw?Xpu&{bw!S%ZIiz8esiF@5C(-@?{I zFk#zw)3tZ0_j%cp+Alu)ajOc`qgrwpZv4r)3#CPfCh>Z(^#YaIb{lFeEVhn`Naz}M zV8Jp%nVZGz2Tf<_WlJQE?U*L0W<)nrXkcz&ti!`Yi+|Es(UO%z$s}f>dcj(VK z$IS~7iTvhYXKBno}kzZYZc~7t9#DT);ApirHKb1 zPWk=&ossp?S=u2f^-erMxI2+hj|U_uJ@(K0U~0mbH!!lpGqm2#S0L`4I~9MKr|v@v z_v28M&2R+P>CC97h*fLU1XrC7&ztoiZoIo6rp8s_^T1Iy{OzvG@kset6DnRJ{%?>7 zD23s;;_At2W*S&3vd`a-vNJtPi-mW%0guO0KwJ}*n*P213(V>d4Js9{_O2d$>H}#Z zK1HyL3#6StA*fWOPqJrSTiBEFvh-I@GpH&jp zutcCm<~$Bh1bT_)T=3u4Hu6%_dx!gB8!`-o*KE{>Rtsu6MPMJB!EDtw;JW6H{!L95 zcl%F9IYMmN9N-pk#oI!}Pgs7i&`n_nW5RX?j571&&P5dE#TEU zEy=y}j&yokl0F8wex_8^KJv^07ofA~V6}#UxYmDJ6E$B$dnq_o!|M_0c5G*VxrywJ zS91wt%Xz^h{>2kIfutYFb`4BfILGGScc96&jI&o@Iz?|-EuiiV_>B4+u1V3ii>Ez; b1Up9bmlT*j%G$qw!w?%QN6RvcbFu#eK$%jC literal 0 HcmV?d00001 diff --git a/media/atree/node_0.png b/media/atree/node_0.png deleted file mode 100644 index a3ed2157fb48bc68a7e7d06e918ccf9b37a54200..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1658 zcmah}U1%It6rN}*ZDK0MeP|`b$<)}W%+CL0XWX^fWVgvmHf}egMtsSgnLC>yJ3r1$ zvYR}a(n?wseenkoL@0;|6+!etM10VqV5|7zn;=*y3cmPQiRaG#xP^cNcjn$R-}%nD z-#zzSs;w-JjXXF)QPfyvsZ@tAO~&xu@ZK{T*WfeUC{~LU^~r0ax6u(;55@JxdFtx* ziCeIktSuYm#c+9g`t(DSQ*4%>n}15vpO~939UL57`{~DX#tXM^UjLN1CH0k6YVPJQ z4n-ZAca61Vt-7pRftN*gVB&1s3jsw@`7`YhS(`YaP26z(0`u1wUoo_67ntXiDqjs3 z@P@mz8{yU66~o%yv^1MJ^W@k_zO4g;hZ97%y`~@Q?E;e$>o6x~j-gXXvRPo(sx^8c zh%hZ@aG@(Uiu$2@T$fJ{>7gno%c0caw0E%#J6mmkA=RA*O zoucEUybaFXTn?fys?zYwU4Y#6Zx(nOla1(m~iy@lO54BjS z*7|6&>xS!vsRtN(F`l)$PD? zZ9Sdl6eM6pR#Hf7$SQtuz|=K1T{^9G9a)_%#AqAaOxI{_Aisg389*I&VD2GjE%T}-DVoOS za!@964#7-=Q|CcGi&qpRI#SO+4xFTgB3x{MY9J1jT`CSe(>;$zd&t%XCSrp?EU&Ty z0x>iY2IUKgzwofAqtnBl^_lc%-VC z;`qAp+04fq%jf?<8AJU$qe$ZyF7b~YyXVc%KbU@eYWPB#{kc5$#=Yxzy?puWTPOF5 z-yRPaG8ccyFJF9pf_eDuiOKyxkDo3ViogKZ;dTZ}hn%b$} V|I$D2eRDwCd!@Wmx;npp{$Hz3_s9SM diff --git a/media/atree/node_0_blocked.png b/media/atree/node_0_blocked.png deleted file mode 100644 index 4f423290c615cfdd7f9db2386be22945c368c7b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv(Ey(iS0L@}@9*H`Wo2utt7o99 zsxB|5c;j4ACQyR0B*-tA!Qt7BG$5zJ)5S5Q;?`0Bt&E2qczC`wG9FslTWEocY?D&&?OMiC*mC(+NB;CbD?`<24N{)+$ZaG|oP~RqN`Brfna*S0MfW|Nr9`FT`KFZ@y-$ zT~m8tNVJ2KmxGgwrIod=o`I^W`t%hU`+({gOM?7@862M7NCR@Fc)B=-RNP8lpv}SS z`gF6DH2VUs85ZmdJ~aEz@tx?}e=nBlN{hgXsI67jP7S6vvL`N>P{w^{ zN<#AbtEtxEI)-MgoIBpk(_L}n;?pL98(WJbAD_F*!I=C$ve$R>@&j8puvNd03fxlE zoylFOU3<4ugHjuguL5 zyFVQJ1B~(VLN!0v)(H;zFFI^KEmTqkx1Y)1Gc974>A71gs3z2m)7Om{zM5Z}D-*t1}5%mKl~~ zIF1Gc?QhrtYSXqq(IM&5sMyy$(+y0=CPP|ObJl_k1$lH5wA@mu&u;r&9Y7JLja()X zXBo>1vyRYykY9)3ZY~F+{pyB`nF{uuHBZC&b!-O{y>MOY$GU4?Gpa(@7~I4bzJJA za8X5fG*efiPeYWkC~7rYLn5LDp_Zai0v~B(jh| z8e&tlz^9V5APG8+bOX^c&vGm$^GHfcz4%8w6Iu^7_vaJx=)j{HhLq$bk>+K@(*jEB zw2X9_mJHz6B^hZc$V1nZla6O0*fP^XbQshJ-$%-jn6a=}8cno_!^j1igVBNw2|6=p$(F`a)UI2<|(kct8fTr9^atf+8eHNh%e3O;C7QrI5Y(M@CH|De%P zBH>DR_O)R8u=+;d-8~>n_|!gE*V#15sMi&wbxQEjI@YPKQ)?i*j$s%;A9i5o0eh{B zNhyJ`K(k3%rUh)&=o$xG&+~dMfhCT|5(v|Y_Z=f>ArI&3pc;q+Z5N3{PIdR=L=V|& z;81K3h-O84pFkAJ?5iWqgok~9ZE5Bp89KOqLn7kncwqv81#!Kh7Fzwmh;0zSgR$rR z{3i<|bI2_`;SsM=I*|kq1r;QSaSVCuV4wtJNswPKgTu2MX+X|&PZ!6Kid%aFwlX?7^0=}e$eJUycK_3ijeA~C zO!?1SU?KTndAIHADN$!@O*RO93uvw9KdaugSNcUq=8}644&9uUmX|Pd)5%*M<_7HV z9@%HyTOqNSclZBnhp?Pm&(^1^X=Lm&`}RrpN=vuvdrOHw4%>WwPJa3G|K>U` zpEb+O*KDuIUkP6ovdWta8l?mcMG_-Kx?`?5FJc2u90QBug8 zR$YEkD8F~>?Md7ZncV$KtLN@z6KTjexp(ss&)ey5&5Bi`{TAFRDqlaj>wVk~2IsWOpnctkvn&5nPuOJhi6Q%qC1tfIx}=M}gAxK~XJ&>sw*u6{1- HoD!MrsBNa{b&di*_nIh zJKsI$JLjHxH9MBt)c#OAK@gkLBgq`x$?$4f5C5;^3rlcoDI_upf|xtH@fK=@^*TS7 z8YIqr)%80py0fGC;gmbNZQEmyJlst)+^)erL(I@>YGIGG_x6Fm_NUO!o}C*Wy!2V< z8RW*siCw>aZxBT5pqZZtCNiUn=2#5U9ThVb%LNoc^bb^Aq)p<0RB^$yg$MV|2NiC*R13Ndh_g55PuyBCLidC|Gr4pyA#0orzW|ktW zkYF-SO=PmC04+C@X|mgXT?bHv ztss|;FdS=HVboQ$9}G`}b3K;3qW%1gi`g9ZoheVl!_(Lfwl>^#t?BDdd8KL=y2j!X zwgBeCZjt6zsdOgWM2A@yOv|l$fWl2wU>g5vb4NVkn`-!t&B3k7cL%bOX9xr_l%%6g zh4G}5aVp$Y(H+gymFlA?8L}?w9L-~cqeUE%X~fAoE%8Fk5JW?kB(1@dw*3Iv8V-4Y znK6L`^P&Wv9C&Gcv?!?tt#X`3%YCsZ7GqIWL~_Ib3D1PqL#4IxggiR%7#fyw1VIRb z6s1KG$YO#Z(;|w=Sc?i=OzopcT~l^Do`s-friBWab?pL0hRQ05Y&uTy3|C)fODHe^ z3jJ-`x>NS+_PlA~@c@O=MWm?2OJY=ra&jLhh;_tM*z=*cLb3?Q2s}lG$}12&NQlC= z1J`Ow%8-Xq;COk*DaENU3NrMmz01Ji&{2SrD8RtQ@w~!G3NPg&oWl1h(J0Ny3fBNT zx@pY(AGCUuNci>F>N;Zju=`BYTt6V=_=Pp5y0K)E)m~SSR!hN0(^#kKMy-hK0)}A# zeOQB;cd4~1t40i|P!s{{v?%KWRNWBhm@M(Sgj8ORpoYKi7(p3%I8gxAKpbehsyJj% zy&k;{WVwh#u|Xi3ljt=9Q6#%2kA5~h>}zxDXYVFM4Yy`UR5@x^m_V=szs67tSIxnQ zZ4khNvA23w8i0|x!5w+pCy0&rhu1pd#K}%DUQ8zw`JOB9AKP*7;q2z&#IuK1Pc2?u z@z>p0Jhbg)b>Qmtwj*zMpSC~w`kBtXUwwW3a~DtQ%jD(* zAAP%}WAis1%cb7QcZp*^zH_MeSFiItb0K*2(vI2LCER-b_{r(Z@3oyN3SGafA5C2T zF12uL`-zE#zfX&=y?A`Ad%5%HD_36Xdi+ewjg=2ZPyI3X0D<=^`B z&3}$8(px@!qisIV%+KC#yY@ithIRJZ{LKZqZI)_n|Dm`q{4k`4$CBp;pFjLBsGcXk diff --git a/media/atree/node_2_blocked.png b/media/atree/node_2_blocked.png deleted file mode 100644 index ca9586e307b7735366af921e8b41eb28c3e6af4a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv(Ey(iS0L@+e|Rk-pFI&fZv$wHub)j#?l*Ve-c%a;j@t<|p|y^c@#Ges#h8 z#AY|K=h(hUKZH~0K7xhy3f#&PjaC)X#2nFXp3`dC?W8$Q&n zkbA%D5bvR_XZJccglTH+`FQiZJr`FIFH??x4wK2|1t03qzkdDGc-y9er^Q+2Z+tp_ zu-V=>*(n_KW!m+_qB7-24;0Mou!~@s`!DcKaMNjqoy>lU%kqOf?9~JO4n;hf!+W%q Yx6duAC`mP{6X-PtPgg&ebxsLQ04|b+MgRZ+ diff --git a/media/atree/node_3.png b/media/atree/node_3.png deleted file mode 100644 index 71f7c673ff0970887861ae592b8cee3af1f35cc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1758 zcmah~YiJZ#6dq$t@e#BXqLpYT6RcX8o#*cCj9KF*yC!S1Nl4aeM8Uf=cXlW4&WtmY z>?X8WrKJxlwNxww1uK*)EtVFsQmNWn?4MTsRi%~+EefL4AJW0gbr;l4YQ`yL*Rxp+EG5TCz0{{fl<_AGa( zr;9j#vGo=h%Ln^1$sW6J#fp`5h;4gr`MRzR-78mbVAw~=`)5kyC4*+%LP?2%cVGt3xu_w-qcG_)AC zDV%20b~nx&y^{_ep6t)4lRH#dqdM0%&+8~Fz)-{w$ArrTa2snR5{t2&158J0=<9`X#uPqK?b-u@twK{zuh@m7bbzL>JxQ$^?(fHoikijXTczYURRJ>DZxeKSfi>=HIK|3hG77G zSb-T&*lWyb91^2pTH*wO76mp-M=@*^mUtY|bvdi4AWS9RwREq9930PqY9J1@T_6s* zs=6PmYsgX_`(lGYG#jC32t<+0j5<0P|FF-jt%G@z3>DmrArWv?yfA^lg1FjH^R4<| z#3l&fz}P##?9etCnRD&l5tkt5KjUAsh^d21!1+fi5znl;bm%><|NOc|$&%afXqnt{ zvyjo>3ja?#!U+*?sNZa7e3n0?>#ZFt+ZsDI=pJ( z8^8b9+nzhUq~w1pE%yNeb2w5_%@XQ diff --git a/media/atree/node_3_blocked.png b/media/atree/node_3_blocked.png deleted file mode 100644 index 544241d16e7015dc3aed3dcf85841809147b3392..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 309 zcmV-50m}Y~P)YaU=`fI?7UGq?i6NDt(g zZePGIOq1{Bwsd#d0`w2$$3OY<56(`Q1kmLOdEIAO)jA3r%EC9YgH|BQ`CujDaMQS*Oq|$&+e`t z^Jmpq?hm8xeHCLfUP`oAYKP=t==4T3WdDAjNLr+51P0bhH;|vu2sfc0`S86e^k9ea f5fOzMmBa!7l8j&6*nxT500000NkvXXu0mjfPVbyv diff --git a/media/atree/node_archer.png b/media/atree/node_archer.png deleted file mode 100644 index 5f00770569034e34ce62fb9c00f00fc342107d87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1685 zcmah}TWB0*6rPv{Y|?0IwFaqioEn=J=eo1A*KmS?DPmXoA-_=f0RA+WPGX-y&+#6cqxvx+>3$G2uq1+HfoqW0D8fpW(C72o; zrcQjb?N>0m^Am;9F>j)`cL&P}_ukX9Yp>Y*w%Ge=Y;gFY#l^jUkbrP%a+(^v^1Vq> zZNpY!CY;GlsJd%&$Z$2xRcsGX6qOpNcu1eaA+6z}<)oRbAAHQvmXT)m#B)N<8^N>I z__B|umnRGQ@|>PDn1Kg7+fx-47;GFOx?-1{K&_;ih**Vh;^rATf`oHvW+s=XM_eD% zGADBaJ6f?8B?d@nI^`RtI+fX7BLOST%!Z+-@_e~m=E^b7^^3fiOeT3j;w6a%1RE?l zA*!%Wu)RuBqsibv_bo59T!$vKNOKp$Gy{256STctuEFjEH61_^zJfen z^of&(lEg}kRd52cvaacDzb407NyKJCNhA#k;W|&&2}0!PnD78IX90<92r`m1jWvvT zf|X@cX0?QgSUIjEK@t=s>xp{&!@dQrhf2-)5FP_~lE@TMLe^O^hWlCBltdQA6_bt2 zhAGLSCWr~(F?4me>)Qyn%(77t^PW>=Xrin-l+UIai4$sOzJx*(pwQozW4Ps@<}X+_ zo(>U_PE_KGq{xaW%Tg>Z0ewXDDE0&BEkY&=TufqUqPz;pgM^5*9fU?DsUto{q3ai1 zx0Gf`Fim2r|8j6R3>2aa3NdgAlB5cXDk%j~P-B8B%B+x3g*wnhT#B?M>@8%)iq&myOYVHiLkR$`FN-Zs)0Drc9A%AUu{2j){*5|OvDC( zSRiZ?h@ttWI#N72?9H{M`1NF{;+lp;#8LIa1Of}<>O+lKjlqZ=5Wt7A*LAY^5sb`@ z-uPnyMRjZ;cMJ9U;cjpq&t`@SeczsbC4I|h^rrn^UX1fssM9MK4+_Tp?T4xPo8H^= z+dr#Z_Q-4M7l#J^PG8@-fT+t$zdUhy?a0}4M;ZUs7w7+a;K2TUEmz+Ca2Kn-8pBe`a{~_MgAH^J&W2xNU3S-4~uC P^FKQ}nK?21)U*ErQV3aLFs&(54Y|c&N3_9ZWnO!Xr#;W05-M2grCOZXLcID zU}8Ly&wu^Uj-_0DHBmM#Ru9U>)|jbl1lj*l`t_eBPUtcP`%R1xq z=47Ejlm8#unKBuE^Lb2TioIu(9=rdy5c}jA&o49y=uViLA=%3CH%n!v>d}qYf$nAS MboFyt=akR{000+aSO5S3 diff --git a/media/atree/node_archer_selected.png b/media/atree/node_archer_selected.png deleted file mode 100644 index e48bb682675a6ecf255e114de3eea3079140df6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvxd5LKS0EjK?Y{Y%t*Qr&RaY6> zHMMKS8#*|7>FOD%s;c*VmBc!NX4zB1xgG7w#O|5njA#h zwD}u2*$cGZ@`@`gyw)V_&~q;#o4Y(ix8wab?~M%8-k+8~6!H7sTmf(Ew_Yl_OGCfh zKd+F&StT{oUuv3+0Q&>RlRU|{3a!sE2^Z|Vd571<{xwr9zs1@+jfp22=iC&T7yM7r zW$$n1n1=P0!Dk+x`(QD-iRoqFdLHJV7pGM0Eq3_KpU!lE_sCz~DPcmBzW(9d@%rcf qMkbDo)&&}F0*hFU+)M)a85kDL^_*3zxN#}a6AYfNelF{r5}E*aDQ!jo diff --git a/media/atree/node_assassin.png b/media/atree/node_assassin.png deleted file mode 100644 index 62ffcd40ad8f1f64add94bdecc635b92a5da4a1d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1680 zcmah}YiJx*6rN}zBsCQbN)XX;N^C67&U0rn?dcQ<2p9+{c! zZlb8IzaokWR*I!q#RpQbSZHZ6id7L2tOYf;zpM(Hil9G~{;{Cv&OS^b;KJRRbLKnW zIrqEgp5@8$kFK)Yr+Q4oJvLl1k ziLdVb6^!o5vE1;8H`dd$la2BB+?0&GbBT?0X!Nwt?t9Ho=^lFlch;?`;ZjPZNNH~{dW-^oXkn3Yw zj>$2e9j;nskpU8#PWWa)&!+a&Nx(`nvtj7z99OASVihUo`bAFAG>zj$P83-{u)(4e zqAKeIJ8C3#niLKU-||Asb!bA1^6o;IWT1{(fwq^)G})b?t^+8-RguRDF`lz+Qgwt5 z!r?Lm*K64l9pn~0%w=)lF8Br>E@LO$(Fiwugl4LdbY`-N zCc7?LwiiW!!cA0Y75>xax_Zc$sQgB92y60PhivSV06`2rx=&$nyp(%Y2?i8Zua92yz|?nw;;;H+a%c5F*FGga?>o7Lce?pNIrSWi?fh zSy|Nt7Rg}73knjoxR8%yz7ap+ThMx_w7DL_V-g-sGgQE`DmDtNj0%0MCLzQMT3m{& z1}~eaz|f|l?{R$_!I4=uDq_xaiVRJZ)dwciNk)u8vdEk)p|Ai@=x@t0-AYjR=PVmf zg@{NeC~-wpWLRonA20XS5f5QMfZifx0w0q^h9=7EP&`P8NZUbZv?YDW$0&6Doa>g7 z3`t9qnA*1tTn-b3D1|}{T)ZgiyrPRrPT+NkhZmMtb-n?1O{=i@f6(YE(eO*u&UMrZ zAp2s|UB4hxcz%)*7Zlq zPwZbCY1{tV^RLXbeLo?Ut*=wB9}?d9@dN7R`B!tFy?gHQ%7u5%ZhUv@Q2UiLC!hNL zCbaSCEjPTc7M^a|_3f=)+1BZc>dpmk{pvsMF9=swxogzQ58bD_jvaf8jQ;fSc3sUpG65AtI4E>z>cX`^j?UtKhdtTx4{=7+?+!Zs`Q*KQ4zI|C%;`Qdq zDQ5pauze8?n8xIL&n7)~|IgqC$9KkC6kNDdRHNJ!8Gd*wUC&52X$Cr!!PC{xWt~$( F69DB=U?czl diff --git a/media/atree/node_assassin_selected.png b/media/atree/node_assassin_selected.png deleted file mode 100644 index 7d88a0f319ca9fab906f2fb3cf65217c49ff4a26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 291 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvxd5LKS0EjK?Y{Y%t*Qr&RaY6> zHMMKS8#*|7>FOD%s;c*VmpY-4mpUl zX|owjVt=6ZLRqZCg|}7Rpz9FZO3gXNuMd5?Z5Do{UGx6(_-Qrg?v|&Yx#hQAFtYq& z+OPNN24T(f+@4Kto0W4!P(vX)af)t%mJh?{*B-i4K7_oeV)*d8G4ZOx^GZj{xAIDR zSQ1$Kej6Dd4_R1H;i0ggzsjEZYoO;Rp?iWt8YfuH8;aN`sXBf8^^Zm6XI-(v0?P~e j9~4};Q+hHM$T2V&xA{)$o9R*kbUuTptDnm{r-UW|di-oI diff --git a/media/atree/node_mage.png b/media/atree/node_mage.png deleted file mode 100644 index 4086888dee2d7167e7ff1119f7e0d9109a5d50a0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1682 zcmah}TWB0*6rMB*G&e=W5=yP()X*51o$Jod4!b6s>}Io?jmu_R(}LK4X8ze7vU71} zlHJ6DZG(s+)C+wPvDKHx3N3;@Y0bL?hsR#wMs5frSGbAE=SSC0Z-oItac-WNxO>|mh~7!F zv=A)hXBEw{B1m^s9I0C_pa>!{UU!kUhyzl^Wz$YlJ70fGk*1!cUW(?~ygP*}=FF;x z=U3-S+UlYf*QxR6hWZnA1sE(GAhK>%ZC|M;sRpqE@1dKa$Oa@>Oi~N^0y*V)m=q&o zgrzfebD5`rgd`K5ZYag{bc+P6BvlClS7Df1trn>X5yvYtTs$6USf1f|8W6O+sG>WXsVj|F z)j(2IkMp!H$|5aB<2o&KJf>wa7Ufk@HVhWEd2+TNAX~#B4=_heAdw7B<0Mw4W4tQR zq7aSIaUqInO%w!KM7*YRd^`R{&xF=P)!q4oJUZ}TIWDlgAVMBeoEBx3qY;NCS_cAM z(_~fD42sk>W!mv91Y2fWsEircE>mQvtdc6^k`y0dTV|n(0t2AX-=?iQHNWLAnHHW8 zP$(TIMI~MmB_S%vaaNXEh~wDvp|?UZj*SSAeW<(w$%BL_Y&!^Tl%z~~7zK`3a-3?C z3bP=?nC7=U91a}?D2)OPTrAHktfcT#iDMN3{!yBZDQp|;=%%sqf6&HJBH@>4?(2-{ z!|E#?ck6)6<5zdNTF$CTHhNt_TC)TnEn}T(IkgJ1%NT|M^kEZb?y=V@##j^#fsTo~ zM2or}r;!}hX_bv(Rf7gzAP~(; z^e%xYlG#;9f(Z}%?%EQ}UNSUsyM{!Aqv?eS1Qx`#hgxWL1|zmX01w9AojVubfRWkf z&YbWGV&L)c>LNb;Xc(O9xpb;D`r}vcB_CO12d8iSav>{ESnn!t4sMV)`$mtR**x~z z>z@rg^JOvn&4cZGTjSc?;QdWu=brZV_3MZFPW-Wc{P#@i^L@QLFTWq%_vgeDXS;_M z%jYkh-k9$>FuHT=+zb2mqcQ1&jlPrDrY`@w)IIi&e@(3wDoJMjc3FJ#^5Kg5o40*T z-gs=aD|zOV`(2kN$G8i%Q$PQ8_tOI>fB5I(Ps3{;Ke+km*#3jVTi@Nd5)S`dW-fho I^3=J10m&*4t^fc4 diff --git a/media/atree/node_mage_blocked.png b/media/atree/node_mage_blocked.png deleted file mode 100644 index 15d26fca4d874e09d5067656110b63df2d929ebd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv(Ey(iS0L@+3 zHMMKS8#*|7>FOD%s;c*VmjzonjAzN zwD}u2*$cGRUaw#@zZO-%#B)(PC-))WTGog6%a%t7oc{l5ra|%<<8ZIDsV3YL&CGRI z{i~B&TD)-Cw4V#qLdBB!T_*Tl@Z#fhZ{tg_eizR9@Gd{+Dk&y?^Mx~u88?)5wEt^n zpTGFFC3E$fzsLT03H*Gco-$!!L_4pC^HL$T%7#bsWuF@x2&pV!Jc0=>ZC>FVdQ&MBb@0LLtAx&QzG diff --git a/media/atree/node_shaman.png b/media/atree/node_shaman.png deleted file mode 100644 index 4c88259cbccafce83bc00865ce0480fa2ed62668..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1685 zcmah}U2GIp6rN&9w6u*1(JBPS!D36Co!_1Aj=RvGUD_qxy4h~9#6-9=b7wnt=f|1b z?zT|_))(RfK^`br6JIpZDya{U7#|w6M4qaV7aoj}_ydNA`e>9y&+MN|(!@#T=brh_ zchC9Gx#vu7VzjH{=?;pbx-w&_JiO`fZhr`#rwhez;MHCn$_`P~=Vy1^N84fD7UV~V zsmmLCeuqU*ZoH5l^~QU9pJOBZGyC=)JR$U6lX^c928WOKExvvybRhYONow%7TP8(q zAGQipWGXwZ>aHC@hO6O7#r6P2QHjG959u?Q&>AjUPLkRDa*d%aBgwoJ&GK1q1W#LI z3qGD)m?-EAGkV-$4j=03NK{l{urWb&#V$F4T1hfhVimqaGsn%JkIeVCyFc}*kIlv zsKPqI{u)W0CWQmtw>)CG4js}W&7CDl2I8m%XnWaglidmGI)EZv1$mqh;W^t5qpqR@ zlAZ(SdMsO_gTlOrxjYWsSzpKLIqZ=A4R=Ft`g*f|shWkMbGU?UfCaFd(A;V?lg%~J zVb(><_NpGBa1%u=^FM7Kh$sA04ZpEDxHb76KsNFWfgpyOa`o9To=hsqgqx~{t6PRz z{fx^oDT)n^RWws#WzAGrO^FID;&sUoktB$U(BR290YQ$ALmps`SU@sh7@8tT5*t-w z;2#$>7Rjc@nmm#aQcM$za>M^c--6adrPg>t9s_uE1#5x^RTnV^9v;V7P0}Pb7S*Cs zRFoAX7Gr2bSC6>9ji6+fjf$A_oFYSq%Bn-TOp*~Je0`ZKAz}g)`rC30w;a^%1mXQS&^ghm>i1@)Dg$9A3$$~WC95J4$KFmUmrsPc*`Dg}X8C0>=IEI**~4X|ri=KTLbt4E23D^aWK zm=(b8^G$R8fK1}oT1<6g$)c;ht|GmbLV)J5!PJfVG;)d<_y;e|llx^6tNPkvERZDd!1cZzr@A8*_C!RGa^l{PZ5boIa@9((@!J8^e#>cTGRX7_R|#(i5r6 I!zbVR7wbO~KmY&$ diff --git a/media/atree/node_shaman_blocked.png b/media/atree/node_shaman_blocked.png deleted file mode 100644 index 49ae36619f8f987872b68eff7895a6e94d742154..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 264 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv(Ey(iS0L@+3 zHMMKS8#*|7>FOD%s;c*VmBc!NX4zS7YzBD6-3w)#Q7UI z*+2MNZGXrl@!YC_NlGa1!p()XYxs`*-PtbQEh5zigWyA?s91V z=KH>T&Ueq8S5wpDeLeT~P!!ddn24w0PW#ucPWXQ@lfMeLUHMotMo|~f^!|goVBO)S z$496O-yXaPi~iJ9W^CM^8XSC(4e$>fKJ@T$Vems?@QO4%GFd7e|H~(M>FF72c=N{` zMRkoBnOSc(Ii+E%7(lv}C4oxO1{6g_hAK9~^TeaGByX5e=FiVBGqj;cnPZ_OpR`BG zoH4QJkeS8l3|^eas?H2O*4GoMXrNFe9-=G7g6V3NC{q*G;Mosz3|)hG^HF9tnW9H6 zhtR=5Fu=286{93FAVSj-N6%^L_|b+4tfI`E=h+&^mCNNoSqfNAo)c76<#>@3MHUdO zTQxmYVNG|SF4B;R6Bj#%?HQIy`?4r&EqGA|@~9_Rw3Eq}y6HB207tkAvN<8ZbH$>c zbq(!$VW~w&f(!{kE98AVa#PkN5bRD<2_JUKWRiR^!6i5+ZF6<_>wi-_) zQ!TV#b>1l2H3m4`LU~5+KX2~H$A42xzqvWkT6%XNn|1m?Fhh%5c)`yn5sxzdrkZYH zL)U7LSWyu#2r8=t#T*+{NQgx!C$XxogjF086p>e&ItkPDkco+}1IhsdL`X1)B!U%I z!IHuTLsAf^LYU2laaauLIe{mn$$!Ezp!HCpJs)332OU|!Vpf$gs}dFRAVHl~LJH4{ zga}y9VP4Wh46S4BsO1z99GOu>dBWLdo}qnbwOA?^9;V zqex~vuOE+@W|AW>(B^rK_ z`ngURF6>@yg&QBp40*0C)Cd*~y4LF&!u1kdR3bXl2;wq;Vb(HId~x;+qWy zvAoQ-8N|?BTOAS3|Jd7Wi*P&HP{*|miJC?|3KIxcz-taQf7Kd{!~_Ez7<=b$efc_! z%x-()X_umU_xo1|wf0s&1m8=-E+;d|6hehFoci-7MkaC|{Uis3I=SCI1ic zz2)_}arDSPoKVR{jcYZ?`wQk>MB2sb1&n{oD$Qu)8NE`;!JZ1-VZx? z1YN#!ss2c-O5tGGbN zHMMKS8#*|7>FOD%s;c*Vm80`b2ZyVUwh6ivJ5Tvng7mVKJcoq z;uZggphPAM=5GbooA(QK?2%Mp*5ti>&OvMH2`zn_RrMB+8P_@7c;9e@Q!)0Oe53cd o^=wQj3*HM)o7lZ3civ@bMKj-SS^nB$pbr>4UHx3vIVCg!06v~>IRF3v From de6108f187bc44cd00e3189b3a2685d24d6c5b00 Mon Sep 17 00:00:00 2001 From: fin444 Date: Sat, 23 Jul 2022 18:14:03 -0400 Subject: [PATCH 61/82] remove unnecessary div stacking in atree --- js/atree.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/atree.js b/js/atree.js index 7222688..0033921 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1008,7 +1008,7 @@ function render_AT(UI_elem, list_elem, tree) { } // create node - let node_elem = document.createElement('div'); + let node_elem = document.getElementById("atree-row-" + ability.display.row).children[ability.display.col]; node_wrap.img = make_elem("div", [], {style: "width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated; z-index: 1; background-image: url('../media/atree/icons.png'); background-size: 900% 300%;"}) node_elem.appendChild(node_wrap.img); @@ -1048,8 +1048,6 @@ function render_AT(UI_elem, list_elem, tree) { delete node_wrap.tooltip_elem; } }); - - document.getElementById("atree-row-" + ability.display.row).children[ability.display.col].appendChild(node_elem); }; atree_render_connection(atree_connectors_map); From ae4b8d44e695782493bf3818cb275d256d35b0fc Mon Sep 17 00:00:00 2001 From: hppeng Date: Sat, 23 Jul 2022 20:20:16 -0700 Subject: [PATCH 62/82] 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 63/82] 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 64/82] 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 65/82] 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 336762ffb013997d64a8a311274bc59867fe5895 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sun, 24 Jul 2022 12:35:06 -0700 Subject: [PATCH 66/82] Compactify UI - remove optimize str/dex button - cram all the equip inputs together - highlight sharing buttons --- builder/index_full.html | 61 +++++++++++++++++------------------------ css/sq2bs.css | 27 ++++++++++++------ js/builder_graph.js | 14 ++++------ 3 files changed, 49 insertions(+), 53 deletions(-) diff --git a/builder/index_full.html b/builder/index_full.html index fcf508e..5145110 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -36,20 +36,20 @@
WB DiscordWB Discord -
+
Join the discord today to suggest new features, submit bug reports, and hangout/talk to devs!
-
+
-
+
-
+
-
+
- +
@@ -74,7 +74,7 @@
-
+
@@ -94,14 +94,13 @@
-
-
+
@@ -128,7 +127,7 @@
-
+
@@ -154,7 +153,7 @@
-
+
@@ -181,7 +180,7 @@
-
+
@@ -208,7 +207,7 @@
-
+
@@ -235,7 +234,7 @@
-
+
@@ -261,7 +260,7 @@
-
+
@@ -288,28 +287,22 @@
-
+
-
-
+
+
Level:
-
+
-
- +
+
-
-
-
- -
-
- -
-
+
+ +
@@ -390,12 +383,9 @@
-
- -
-
+
@@ -408,8 +398,7 @@
-
- +
diff --git a/css/sq2bs.css b/css/sq2bs.css index 59e4e99..c5ac672 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -7,7 +7,6 @@ } /* builder containers */ - .slider { -webkit-appearance: none; background: #AAAAAA; @@ -46,7 +45,6 @@ input[type=range]:focus { outline: none; /* Removes the border. */ } - /* equipment field specifics */ /* inputs and dropdowns */ .form-control { @@ -174,11 +172,11 @@ input.equipment-input { } .scaled-item-icon { - width: 8rem; + width: 6rem; } .scaled-item-icon img { - width: 6.5rem; + width: 5.5rem; } .scaled-bckgrd { @@ -190,10 +188,18 @@ input.equipment-input { width: 6.5rem; } +.overall-box { + max-width: 95%; +} + @media screen and (min-width: 1200px) and (max-width: 1400px) { :root { --scaled-fontsize: 1rem; } + .overall-box { + padding-left: var(--sidebar-width); + max-width: 100%; + } .scaled-font { font-size: 1rem; } @@ -219,11 +225,11 @@ input.equipment-input { } .scaled-item-icon { - width: 3.2rem; + width: 2.6rem; } .scaled-item-icon img { - width: 2.8rem; + width: 2.2rem; } .scaled-bckgrd { @@ -248,6 +254,11 @@ input.equipment-input { :root { --scaled-fontsize: 1rem; } + .overall-box { + padding-left: var(--sidebar-width); + max-width: 100%; + } + .scaled-font { font-size: 1rem; } @@ -273,11 +284,11 @@ input.equipment-input { } .scaled-item-icon { - width: 4rem; + width: 3.2rem; } .scaled-item-icon img { - width: 3.5rem; + width: 2.7rem; } .scaled-bckgrd { diff --git a/js/builder_graph.js b/js/builder_graph.js index b2ed8cb..cc0255c 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -702,7 +702,7 @@ class DisplayBuildWarningsNode extends ComputeNode { input_map.get('def'), input_map.get('agi') ]; - let skp_effects = ["% more damage dealt.","% chance to crit.","% spell cost reduction.","% less damage taken.","% chance to dodge."]; + let skp_effects = ["% damage","% crit","% cost red.","% resist","% dodge"]; let total_assigned = 0; for (let i in skp_order){ //big bren const assigned = skillpoints[i] - base_totals[i] + min_assigned[i] @@ -724,20 +724,16 @@ class DisplayBuildWarningsNode extends ComputeNode { let summarybox = document.getElementById("summary-box"); summarybox.textContent = ""; - let skpRow = document.createElement("p"); - let remainingSkp = document.createElement("p"); - remainingSkp.classList.add("scaled-font"); - let remainingSkpTitle = document.createElement("b"); - remainingSkpTitle.textContent = "Assigned " + total_assigned + " skillpoints. Remaining skillpoints: "; + let remainingSkp = make_elem("p", ['scaled-font', 'my-0']); + let remainingSkpTitle = make_elem("b", [], { textContent: "Assigned " + total_assigned + " skillpoints. Remaining skillpoints: " }); let remainingSkpContent = document.createElement("b"); remainingSkpContent.textContent = "" + (levelToSkillPoints(build.level) - total_assigned); remainingSkpContent.classList.add(levelToSkillPoints(build.level) - total_assigned < 0 ? "negative" : "positive"); - remainingSkp.appendChild(remainingSkpTitle); - remainingSkp.appendChild(remainingSkpContent); + remainingSkp.append(remainingSkpTitle); + remainingSkp.append(remainingSkpContent); - summarybox.append(skpRow); summarybox.append(remainingSkp); if(total_assigned > levelToSkillPoints(build.level)){ let skpWarning = document.createElement("span"); From a009e07587ecd80ebfe9e940d77a01789d5632cb Mon Sep 17 00:00:00 2001 From: fin444 Date: Sun, 24 Jul 2022 17:31:23 -0400 Subject: [PATCH 67/82] atlas for item textures --- builder/index.html | 2 +- builder/index_full.html | 34 ++++++++++++------------- crafter/index.html | 4 +-- dev/index.html | 2 +- items_adv/items_2_help.html | 2 +- js/builder_graph.js | 3 ++- js/crafter.js | 11 ++++++-- js/display.js | 17 ++++++++++--- js/icons.js | 22 ++++++++++------ js/sq2icons.js | 34 ------------------------- media/items/common.png | Bin 0 -> 988 bytes media/items/new.png | Bin 0 -> 27938 bytes media/items/new/generic-armorTome.png | Bin 1745 -> 0 bytes media/items/new/generic-boots.png | Bin 3628 -> 0 bytes media/items/new/generic-bow.png | Bin 3120 -> 0 bytes media/items/new/generic-bracelet.png | Bin 3281 -> 0 bytes media/items/new/generic-chestplate.png | Bin 3411 -> 0 bytes media/items/new/generic-dagger.png | Bin 2876 -> 0 bytes media/items/new/generic-food.png | Bin 521 -> 0 bytes media/items/new/generic-guildTome.png | Bin 1745 -> 0 bytes media/items/new/generic-helmet.png | Bin 3417 -> 0 bytes media/items/new/generic-leggings.png | Bin 3206 -> 0 bytes media/items/new/generic-necklace.png | Bin 3625 -> 0 bytes media/items/new/generic-potion.png | Bin 308 -> 0 bytes media/items/new/generic-relik.png | Bin 3378 -> 0 bytes media/items/new/generic-ring.png | Bin 3770 -> 0 bytes media/items/new/generic-scroll.png | Bin 324 -> 0 bytes media/items/new/generic-spear.png | Bin 2561 -> 0 bytes media/items/new/generic-sword.png | Bin 345 -> 0 bytes media/items/new/generic-wand.png | Bin 2945 -> 0 bytes media/items/new/generic-weaponTome.png | Bin 1745 -> 0 bytes media/items/new/palette.png | Bin 223 -> 0 bytes media/items/old.png | Bin 0 -> 2025 bytes media/items/old/generic-armorTome.png | Bin 1885 -> 0 bytes media/items/old/generic-boots.png | Bin 418 -> 0 bytes media/items/old/generic-bow.png | Bin 588 -> 0 bytes media/items/old/generic-bracelet.png | Bin 677 -> 0 bytes media/items/old/generic-chestplate.png | Bin 484 -> 0 bytes media/items/old/generic-dagger.png | Bin 559 -> 0 bytes media/items/old/generic-food.png | Bin 930 -> 0 bytes media/items/old/generic-guildTome.png | Bin 1885 -> 0 bytes media/items/old/generic-helmet.png | Bin 395 -> 0 bytes media/items/old/generic-leggings.png | Bin 411 -> 0 bytes media/items/old/generic-necklace.png | Bin 682 -> 0 bytes media/items/old/generic-potion.png | Bin 650 -> 0 bytes media/items/old/generic-relik.png | Bin 713 -> 0 bytes media/items/old/generic-ring.png | Bin 622 -> 0 bytes media/items/old/generic-scroll.png | Bin 705 -> 0 bytes media/items/old/generic-spear.png | Bin 596 -> 0 bytes media/items/old/generic-sword.png | Bin 828 -> 0 bytes media/items/old/generic-wand.png | Bin 568 -> 0 bytes media/items/old/generic-weaponTome.png | Bin 1885 -> 0 bytes 52 files changed, 61 insertions(+), 70 deletions(-) delete mode 100644 js/sq2icons.js create mode 100644 media/items/common.png create mode 100644 media/items/new.png delete mode 100644 media/items/new/generic-armorTome.png delete mode 100644 media/items/new/generic-boots.png delete mode 100644 media/items/new/generic-bow.png delete mode 100644 media/items/new/generic-bracelet.png delete mode 100644 media/items/new/generic-chestplate.png delete mode 100644 media/items/new/generic-dagger.png delete mode 100644 media/items/new/generic-food.png delete mode 100644 media/items/new/generic-guildTome.png delete mode 100644 media/items/new/generic-helmet.png delete mode 100644 media/items/new/generic-leggings.png delete mode 100644 media/items/new/generic-necklace.png delete mode 100644 media/items/new/generic-potion.png delete mode 100644 media/items/new/generic-relik.png delete mode 100644 media/items/new/generic-ring.png delete mode 100644 media/items/new/generic-scroll.png delete mode 100644 media/items/new/generic-spear.png delete mode 100644 media/items/new/generic-sword.png delete mode 100644 media/items/new/generic-wand.png delete mode 100644 media/items/new/generic-weaponTome.png delete mode 100644 media/items/new/palette.png create mode 100644 media/items/old.png delete mode 100644 media/items/old/generic-armorTome.png delete mode 100644 media/items/old/generic-boots.png delete mode 100644 media/items/old/generic-bow.png delete mode 100644 media/items/old/generic-bracelet.png delete mode 100644 media/items/old/generic-chestplate.png delete mode 100644 media/items/old/generic-dagger.png delete mode 100644 media/items/old/generic-food.png delete mode 100644 media/items/old/generic-guildTome.png delete mode 100644 media/items/old/generic-helmet.png delete mode 100644 media/items/old/generic-leggings.png delete mode 100644 media/items/old/generic-necklace.png delete mode 100644 media/items/old/generic-potion.png delete mode 100644 media/items/old/generic-relik.png delete mode 100644 media/items/old/generic-ring.png delete mode 100644 media/items/old/generic-scroll.png delete mode 100644 media/items/old/generic-spear.png delete mode 100644 media/items/old/generic-sword.png delete mode 100644 media/items/old/generic-wand.png delete mode 100644 media/items/old/generic-weaponTome.png diff --git a/builder/index.html b/builder/index.html index 37b62f6..eec6e2b 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.

\ No newline at end of file + 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 diff --git a/builder/index_full.html b/builder/index_full.html index fcf508e..4e7d217 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -49,7 +49,7 @@
- +
@@ -76,7 +76,7 @@
- +
@@ -103,7 +103,7 @@
- +
@@ -130,7 +130,7 @@
- +
@@ -156,7 +156,7 @@
- +
@@ -183,7 +183,7 @@
- +
@@ -210,7 +210,7 @@
- +
@@ -237,7 +237,7 @@
- +
@@ -263,7 +263,7 @@
- +
@@ -620,7 +620,7 @@
- +
@@ -644,7 +644,7 @@
- +
@@ -668,7 +668,7 @@
- +
@@ -692,7 +692,7 @@
- +
@@ -716,7 +716,7 @@
- +
@@ -740,7 +740,7 @@
- +
@@ -764,7 +764,7 @@
- +
@@ -1262,7 +1262,7 @@ - + diff --git a/crafter/index.html b/crafter/index.html index 20e4a4c..34cacf7 100644 --- a/crafter/index.html +++ b/crafter/index.html @@ -39,7 +39,7 @@
- +
@@ -283,7 +283,7 @@ - + diff --git a/dev/index.html b/dev/index.html index 0ee432b..9aea30c 100644 --- a/dev/index.html +++ b/dev/index.html @@ -959,7 +959,7 @@
-->
- + diff --git a/items_adv/items_2_help.html b/items_adv/items_2_help.html index 9e89d9d..4736c14 100644 --- a/items_adv/items_2_help.html +++ b/items_adv/items_2_help.html @@ -221,6 +221,6 @@ docsFns.append(genDocEntry(entry[0], entry[1], null, entry[2])); } - + diff --git a/js/builder_graph.js b/js/builder_graph.js index 093f367..ff51b64 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -307,7 +307,8 @@ class WeaponInputDisplayNode extends ComputeNode { const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element const type = item.statMap.get('type'); - this.image.setAttribute('src', '../media/items/new/generic-'+type+'.png'); + this.image.style.backgroundPosition = itemBGPositions[type]; + let dps = get_base_dps(item.statMap); if (isNaN(dps)) { dps = dps[1]; diff --git a/js/crafter.js b/js/crafter.js index 865b740..4c19efe 100644 --- a/js/crafter.js +++ b/js/crafter.js @@ -345,9 +345,16 @@ function toggleMaterial(buttonId) { function updateCraftedImage() { let input = document.getElementById("recipe-choice"); if (all_types.includes(input.value)) { - document.getElementById("recipe-img").src = "../media/items/" + (newIcons ? "new/":"old/") + "generic-" + input.value.toLowerCase() + ".png"; + let img = document.getElementById("recipe-img"); + if (["potion", "scroll", "food"].includes(input.value.toLowerCase())) { + img.style.backgroundImage = "url('../media/items/common.png')"; + img.style.backgroundSize = "500% 100%"; + } else { + img.style.backgroundImage = "url('../media/items/" + (newIcons ? "new.png')" : "old.png')"); + img.style.backgroundSize = "1200% 100%"; + } + img.style.backgroundPosition = itemBGPositions[input.value.toLowerCase()] } - } /* Reset all fields diff --git a/js/display.js b/js/display.js index cfc064f..48eefb8 100644 --- a/js/display.js +++ b/js/display.js @@ -1,3 +1,7 @@ +const itemBGPositions = {"bow": "0 0", "spear": "9.090909090909088% 0", "wand": "18.181818181818183% 0", "dagger": "27.27272727272727% 0", "relik": "36.36363636363637% 0", + "helmet": "45.45454545454546% 0", "chestplate": "54.54545454545454% 0", "leggings": "63.63636363636363% 0", "boots": "72.72727272727272% 0", + "ring": "81.81818181818181% 0", "bracelet": "90.90909090909092% 0", "necklace": "100% 0", + "potion": "25% 0", "scroll": "50% 0", "food": "75% 0"}; function apply_elemental_format(p_elem, id, suffix) { suffix = (typeof suffix !== 'undefined') ? suffix : ""; @@ -286,11 +290,18 @@ function displayExpandedItem(item, parent_id){ parent_div.appendChild(nolink_row); if (item.has("type")) { - let img = make_elem("img", [], { - src: "../media/items/" + (newIcons ? "new/":"old/") + "generic-" + item.get("type") + ".png", + let img = make_elem("div", [], { alt: item.get("type"), - style: " z=index: 1; position: relative;" + style: "z-index: 1; position: relative; image-rendering: pixelated; width: 50%; height: 50%; background-position: " + itemBGPositions[item.get("type")] + ";" }); + if (["potion", "scroll", "food"].includes(item.get("type"))) { + img.style.backgroundImage = "url('../media/items/common.png')"; + img.style.backgroundSize = "500% 100%"; + } else { + img.style.backgroundImage = "url('../media/items/" + (newIcons ? "new.png')" : "old.png')"); + img.style.backgroundSize = "1200% 100%"; + } + let container = make_elem("div"); let bckgrd = make_elem("div", ["col", "px-0", "d-flex", "align-items-center", "justify-content-center", 'scaled-bckgrd'], { // , "no-collapse" diff --git a/js/icons.js b/js/icons.js index a796942..ddf9ef0 100644 --- a/js/icons.js +++ b/js/icons.js @@ -1,33 +1,39 @@ //which icons to use let window_storage = window.localStorage; +console.log(window_storage); icon_state_stored = window_storage.getItem("newicons"); newIcons = true; if (icon_state_stored === "false") {toggleIcons()} + /** Toggle icons on the ENTIRE page. * */ -function toggleIcons() { + function toggleIcons() { newIcons = !newIcons; - let imgs = document.getElementsByTagName("IMG"); + let imgs = document.getElementsByTagName("img"); + let divs = document.getElementsByTagName("div"); let favicon = document.querySelector("link[rel~='icon']"); - let toggleiconbutton = document.getElementById("toggle-icon-button"); if (newIcons) { //switch to new favicon.href = favicon.href.replace("media/icons/old","media/icons/new"); for (const img of imgs) { if (img.src.includes("media/icons/old")) {img.src = img.src.replace("media/icons/old","media/icons/new");} - if (img.src.includes("media/items/old")) {img.src = img.src.replace("media/items/old","media/items/new");} } - toggleiconbutton.textContent = "Use Old Icons"; + for (const div of divs) { + if (div.style.backgroundImage.includes("media/items/old")) {div.style.backgroundImage = div.style.backgroundImage.replace("media/items/old","media/items/new");} + } + //toggleiconbutton.textContent = "Use Old Icons"; window_storage.setItem("newicons","true"); } else { //switch to old favicon.href = favicon.href.replace("media/icons/new","media/icons/old"); for (const img of imgs) { if (img.src.includes("media/icons/new")) {img.src = img.src.replace("media/icons/new","media/icons/old");} - if (img.src.includes("media/items/new")) {img.src = img.src.replace("media/items/new","media/items/old");} } - toggleiconbutton.textContent = "Use New Icons"; + for (const div of divs) { + if (div.style.backgroundImage.includes("media/items/new")) {div.style.backgroundImage = div.style.backgroundImage.replace("media/items/new","media/items/old");} + } + //toggleiconbutton.textContent = "Use New Icons"; window_storage.setItem("newicons","false"); - } + } } \ No newline at end of file diff --git a/js/sq2icons.js b/js/sq2icons.js deleted file mode 100644 index 96b97b8..0000000 --- a/js/sq2icons.js +++ /dev/null @@ -1,34 +0,0 @@ -//which icons to use -let window_storage = window.localStorage; -console.log(window_storage); -icon_state_stored = window_storage.getItem("newicons"); -newIcons = true; -if (icon_state_stored === "false") {toggleIcons()} - - -/** Toggle icons on the ENTIRE page. - * - */ - function toggleIcons() { - newIcons = !newIcons; - let imgs = document.getElementsByTagName("IMG"); - let favicon = document.querySelector("link[rel~='icon']"); - - if (newIcons) { //switch to new - favicon.href = favicon.href.replace("media/icons/old","media/icons/new"); - for (const img of imgs) { - if (img.src.includes("media/icons/old")) {img.src = img.src.replace("media/icons/old","media/icons/new");} - if (img.src.includes("media/items/old")) {img.src = img.src.replace("media/items/old","media/items/new");} - } - //toggleiconbutton.textContent = "Use Old Icons"; - window_storage.setItem("newicons","true"); - } else { //switch to old - favicon.href = favicon.href.replace("media/icons/new","media/icons/old"); - for (const img of imgs) { - if (img.src.includes("media/icons/new")) {img.src = img.src.replace("media/icons/new","media/icons/old");} - if (img.src.includes("media/items/new")) {img.src = img.src.replace("media/items/new","media/items/old");} - } - //toggleiconbutton.textContent = "Use New Icons"; - window_storage.setItem("newicons","false"); - } -} \ No newline at end of file diff --git a/media/items/common.png b/media/items/common.png new file mode 100644 index 0000000000000000000000000000000000000000..417c2ec5e06dcadbf56328fe93deaa18e889a467 GIT binary patch literal 988 zcmV<210(#2P)Px#8FWQhbVF}#ZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X z4i^9b010qNS#tmYE+YT{E+YYWr9XB6009(GOjJcja7+m(7DYxu(bL96L_~FVZzf7L z7#J8aVM6BU+ALK$9x`f!gnh%sxg+8XAC-v%ks5e?%joQ6)Gc6*C(Ex@tfF|Mb4TzE>{*PI?0W*Z}MA z`9XJ0x@$jWIw2o10D(mSpHU@iYimPPXqJ|i+~VP}Y5?o&>pnaQ$X+C&(c*4QKiDxIP zyXULA=YK;ZATt1dLnD1dBV;)td3kx0@?R=Rt?;JV@P&VH461B`%*gbAR;|((tAY@vI>O*@j`*NYyMZ_M6T4B(>6^E`;NW!U#wZP5#lxS1%LP&ETV6pqF%HJhMjlB+|Osx zsfZ8o1JCms)oLngjsXQii3Th29)xkh`QkP5}Sf2q%x7~+nf5( zL*Mn;I~9uKO|+nes~?;7U4I1C&91s#3KoS3T(Ky?$wB5R#NC6uc3pRugUDiCM92Z~ zd#km&9sRl=-gLWHwd*!9UxK*LxsuKqShRF7i0c-3Tn;*P*C5(N0L$~RwOMc0!`gKX z(pEq$nS#^#0XsY<7|RtFp0N~Yh1oH&ZH?}l^3SjZ>CAwewdr^eWllMKbp%H@6UnX& zsx~dohFxemD%*yGWwK1dK?l<26JXUDhw<^zpSJ-SbFr{Hrtbh^u~c=34;T!>!I$}b zUM{CI%q>Uz_vl^$@eTbYWBz4lo9&1)i!?*JoX8Uw6%qND8|ydvBt1tCB?pKA0000< KMNUMnLSTa3v9?73 literal 0 HcmV?d00001 diff --git a/media/items/new.png b/media/items/new.png new file mode 100644 index 0000000000000000000000000000000000000000..9a498f6be28b1b7f073c10734205940b6cf210fd GIT binary patch literal 27938 zcmV)vK$X9VP)Px#8FWQhbVF}#ZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X z4i^9b010qNS#tmYE+YT{E+YYWr9XB600R0@OjJcja7@L|(uR|ph?SiH0001NXS%DJ zS3)d@l$=#)Z37AnIi*ke_3*{e(*^(o5)2WClbito0fmy90|Nt_k$|g=Dpo-%6crUz zKPd?Y1cQ*60BU9+A0R+LKnMv54-XK=(bRv8lvZhOSZi>9e}4=N4G|F$Qavcd&e4I6 zmIVa_CM6{s932h{2TnUDxvH62Sy_CEkcpR{P*6~enV?QqTSH1tH#|T(D;zK|Fa`$* zv%bT)!^e1rjbLD43JMB(hmT@&c^4QNCL9uGaCadjCUk;{E-Wo~go|-;aV0A*T5NKe zj(x(+&ownQJ}(|eH6t4t8X*`D6%PthSzkp@Q*C~PuDQNRNl9^hgB&0sDJdyHM@cIn z6`-uLIzU4yFEM3hWo~(Zzsk*AZ**#Vfh{yQX>)pyo1>(#wqJ2}N>f*5c6?`eelj>a zLoy*45esy6c9EW?yvE8E93L$(G&Lt0b%2Mdw7Eq^MF3`D92E^qI3*q;Bvn;bm!qnE zijr1dV`ynn0SgEKH#80v7h-I3Lp?PB zSW^*XTL3{m03;(jHZa7tr)y(asG5peQ%W;aM39AbK0G}DEh|xDXYJ?U%Dt~lMLttY zM7*w^e0+URUSn}+TsEIgM@cp)R!TH4D(2qRN@_YkO*|f5QXw515f~fZ*2{r}g}||) zg?Vd$b!Y%kO*%zMsEsy4JwcF@f-RO$cy@Tu#JAPTzKfKSZ(mDfZgirQh1kx+myv8l zLPI8THJy-Ic5Y#$jzbC{4lRa27lK@RaAkUDQ$}_@9at%4Q9KB9W2=lQIZ!_qMIcXG zG%iIrC1Wo?jYbbI7A>IOQ~&?~0d!JMQvg8b*k%9#X@5yXK~#9!?VSmD6xWruq52w{ zp3trCPSjE(snZf_NiBhq&;mk2LLec)VigjIMPe75Sj1{Jv14|F0Xu-P@fK_cyxWN# zFNq!7v7L$Sc6?Nzs`ZuKHN4tFw+15#I4b@f~4e&?L; z^yzbB-B{v6Xx)vAaAVzAH`a~y#ao#O*5n)4;l{eLZmb*Yi?$*NMWYDKxp5_KtQ+e~ zx?Z2~MSDlHGH_hDH6gDx81XAQZRFNr6TW00T?R_upO?CQ8!EbS8{b$r)|YUto8tv~ zd13i$GR9{PUvT^9{Dy`{khmfVc)0~gzoJD~W-a(aeF~!wXWSRd?;$jzKdjVk3At7` z){S*zeWBLH2%)nIUj)|Cnv5%3hh6O5cQZIMmwyZCg|B_|=>r)kBmUP!-sx+$uNkp_ z?DVx~heW+vRDbSa^{~U!+`_tQ`<7^E__IqL zdiF*Po#eG(*5sn7ZZ9_Z3$_2_o2Ocb3ep3(LppO+4OacAb7P_IAUdUIpP zr$kKGw9GFzr}xa=p+WM|9ZNr6ssi@jeTh2SCp?Z%7Zr}5+&;JbM8(FF8Ph~a|8*3V zUW@>i(xu<19(}30h>k&ZfwO;S*NqZ+FMZx)9BUH1DjR3Y=(_nv$0%@;qthn)7!uesfJ1L(2R=a)J)y?1IkMsFP-LDnmp zF?rVLzx?mX>m#MTWHh(vWY>xEm1VonT)uw!%?2sV* z_{VViPb^#5SRCZ=3f9gZcWn2{iNarZBqEOH@tiSvx09@t6#l;(Ph6@0Yl)-x0G_>P z_is<_&$QC^BY%?K35iXjf#)85@g6mtVcipnJA%$YYx}dV)HK*WOxZsJp=4e5D+)EE z@VOWMc-QmywG76BJzP8&abaQuf2@o3K7+g^70eAwrtEv}$( zS@YbEfUpr8`DJ5;MCbN5E+1^$@|A73m%_3p6C=d}MJ>>EATm?%CajLa`olSfK#g%DRqr&=zKPL6y$} z%l8RevfSKCe|*9NelBEf++9t13^~OA=vKkF69Mm+2hksF;OTteyaLUX)5eJAA$|S; z7CYi8ivs1jSqWwbS!zl*c40(+UV757!*z3JB`GPlZVpaE57|F7)n-(gq}?+@k80uk ztDk)Dd*2o%=y*vv*-C<@t?kJH^bmLY3-|P+ubW9Y{i@q-C*TX98JeeT>Lx!*RvCLC zYFkF24Btn9u<&(Je0Ln=|AfDAIJp%5hn>OZnwZQ&1bv}$$BEsu3w#6*u#?_v_2Ix{ z>*Nz*pD!4meQae#TO|+a!eRCfejf-MMa{*OK+YkPLIAZxh3eq-rSKig_!8iG=le=J z1AvHXk^_YV}-8j#%Um=M894@k0&Je>b#S#PI#9(yW6#LAY;!R5C z>~@s?yb{iT|C8_C_LZ-Qe7@&2Dva|0HE3I^?US9F6hK2s-D|qdLcddg_w8T(_WP%Z zymRwA_L79qq@q2!w0X%A&~v>Nu+fK5S>ltUgkKJa;nxVm41QyFo$b4ar?bDU{Cb$< zlwfEKSqM-FEe)s05q`nJvW>a6#o>D7-SLDRJ3C4`*YCP8fByXSh9{~D@Y_IxrxsSPljx> zcgVb{_KDShdy*860D6vBVow2_e}v)u6`9ZdZtjhVF~o}H|VAi69@9r`nm=LGYSoZ~V) zo){uHsVpaBmi^z0Ox!0tK&~%^R7WU*c!r01R8{oMzBUa(HA%S*kpCmXDhbZ8zVUq# zVc&@xl&>RXUxH4G2K|!T{hXk0z{BYKzxoMAGdbVe{$7xyPklPX7NFtbL-{cC##+96 zsb7=*p__^30vm-OaeeEezWP0q4Wi*_6c%XH=x6668%^UFjNefSqj z&dr~HZheUmeREu6S-qb%ftQ8aHuH2|zojaFpmHs@qK5D`gXMq8geKba#A7`?orQ;T z>H1ygF3exPrFF|LhgB5a5fhI*cPasMXgLyH~`QCe{c@r5w<0~XRlco`9{q`&JlKI^4$+#a2Bhiq&F9e`>LLWCT z=6qX5GtXxnKl24FFS^|}%DyvEI<*WZZ#v2{3ylI&r5wB0$zZh6=M->Rx}~WvbvS&jn|?aeP&4!`ou{|#@4|)$7{Q^;4kCWrMv%X3R<$?0Q=9}#P0k-AnGqy(oLUp?f z6m%|GKfkrRdp;|m5i0jNeZJ-5I|HhAcM3ru7d%sMy>S?i&lXl^s}|1#2evv`u)+Tj z#L$1S>c-<`BA!9b!U~USSqVKr=-EeI8*LtUyyx^neNCOkk!r_#JT^*ZYEb=VF}V$^ zcqYWa)+!0q66KZ`YxYR|f1MA+9lR24W80LWvEliFKSUDh!jplbWB0E`q}Cu4)qE9$ z>HD|Q;^%(1MC0Bh#w0=aACYK4f8ut(_o)G&6{<8e60&RVMgcT$oRnc0I{Vk|pPH9S zZidw9j3-*>A1B_B>laDf!vSSq@(&VKT`>D%an2x<4E+*>G|e)eOLi?E)kKbv&!^`g zIKGao0nPc8kCA~}q%S?^8&{9aUtloul2EC$n?J{|lf}p5TS^$gfsY4gocR~X=Z%mW zF<7Iz-Lm#@thqA+Ax6TjgvG@--3l}`t%V)Q&T1LC`Lff!UD8Y$!9q{75-(> z@=|kP9da&&g=t~QJ`{(S+)G~X+1L_;1kaDW8A+^18kFwhHP8AB7uDSf}OluT<@X&!4pcXoRMlJbO~7N`Im`38dVA|OTlgT1(uC}iZdKQR$m}LU)<(6H%dikvaJ@Q;4*}EnqHWb7|>e= zO7Cz{r&b*j| z5%x=vLPBWvVq=eIPM8$U2nCJ#i?-OPTaX$|BfBt}WyK_I{ z`TUdHjQD)B;KadvwKG*VNz~SSa`DJGnX_Xd13~%ev>7Z(LWRJwMdq`F=c)@OtiXE0 zn_=;Bkpc|og>DU<@&9Zp#KS-78z`*4x_q8r=p6;V70}Hs)%WvW%%v>_YVQj zU%dtRoZ$8pW#{!g6upI{2_D@YqrT=W+5SA<~+E5@=*zL*}`78o7ziOAA?`@Z<$dQRc zc$Zr;Y9OVCZ{XM0%YYtl4QTO22DWOS9}cW@RELaiZG;YBg+&aYc|O|>p9Mk(bK})G z!1h6D6ji7!ERa{-;e>P@?{T>*gz#BeO4(Gke7)Vrlhal$bcW|7>{?2etMiegO4yH9 z&Oqo8i8LHELic1xsELiqXkyT+t_1((<}4H|5YO61RNk83+y!`s_&F4Jr?qw|JFipc zy@OMPr+!4|Gf2?!W+w|{lb{m{=+kcZcL;t@nedrkFR&MJfY0a}b3pU?Kk$prOEp%i zSt@liykhxhsWxMjKkA5`FRss7n~O}*3eAenlB$8!D(is)ph597mHY&Wqsq8A8^4He zrNL(mS?p@~`}smy9pQ76ZS`3^%tp%!0mEQcG+5=Gs4KzSwJ7A3UM?4TLq%~iG#kjscUvX>UBijg}ofX!EM(CJi zy|fQ@ANza`M+yF4hr(k9yir5BA4a03y1F{&?A=QPfu+0E6({AfO2IYW>Gm{^yb)s` z#o;r=&$)^Be^+Y`zqwgX5z6^8S%Qwg3VJ#XOGEQ4lBQ!52WT)DeSzom->da!RlN!y zMcXLih@iFRkDgTWkjX%2O+NipmSpH)e2*Sd2pp2O(bQ@)u5xhBm1Yqoio$M^TTbV5 z->-{G1yJ5^wrj#=b|Rn`oinmT1xt^S^f0~-+l`D;@VRQe(-|Y6%VN2c6n;G3th$a9 zWtV3c2eI}O99JYfo9a-}I2_vfg2m8qaiXIx%Nw`BD)9LYLEh+A;Q2^NOlOZP?KZH5 z&{sS~@JuXiRVO3?(iiMB6=qmkCn2<144e;=OV!rWa=fLbW%Zbx0Rsk590bOr3Z2>M z^?LC_*DL#0ien9-3z2v4TQ=~#X+}uqbHW{02WvX7KLmFDy`rB^B|+CDpbB~u#R&QmjCmcjCqgSmYk6zhx>g?B98^DGitC8jISbXP3%|JF=41Q1+G@PA&4k@x z8uX20#46S?f04XJ+ErrM&n-DYOaH13p}Uv>eb_S%dPhn}iGi~O=)MM^c6@yYoOy!PZXdJyWOwy21&pAhKA3& z^F8&vhZ)dwtQ3y^sZh%uFe#N5EMzSul?iZ@a*7HLF=@1=Gq#xWfN`D>LSMi`sR5t+ z=64EFxRYCmzb1j(DYqA_js{|LIv<`TttP=AcZU8UBZP~p&dKrfsFK+E>?~l9G9)&8 zE9;idJZ3N>;DDf99iTt|HXob0v`(79WycI?uoyopl;B15>Pgw4U%gVaX~J z`UiPFD+DcjfOhbS!q+VTy;}lwPXIlLpK~&x2h7ym5QS)_Cbzr{-*=hvUJGT(guWgV zGxqrXFW-98O;7)rP25=PMIo8bhZD|cxI}9;T>0qRx6%3B@3puoIg%7ZiA29&=FX z+hN#cf)K7h?)*Ak;pn@lRQ{&;4iss<>G;us{)tbBW2w$9KWF+*7SgQ}kr!80ZIRN0 zRk8CKzttUVI^9+=Y~In{d@#%zwadd!z7jgT7NE+o^e6hC3mP(K zsiS8YRB$e6Saznl`OLD00{(w%LuiINj{7{GWth*}XL7#X2pa0_EoA6SR4*k5o#(OU zJPZY1F$$qGP?;Lf#qCJ5bDM)s%11{rIB!mf`X2*6-*nTr{)+|AV4f5Dj>PAe`XmL= z8c5vx07lnuf1tzF{a0houb4~FQX4dMMQk?$bXFqHc9`4!jsc&w@-x{oxZTW}(qS~j zqWfqnE`Bym5T}l{zQUOhMeqT1Nw?gU5;LgVh|3@v47Tn8=9XCWc)9wnhwA#@Sit>$xcu3lK?!p40mU5=)V##8LVHeBVgxI|9 zkqzv=VU-^w^S#_|_Bj+#o?}jEsL((o(k#YIT3%rk3JY=Ce4Ay@M&d6w(IAArg8Vov zEHwzAo7Ov&goYf{?76Dh;(_+-LC#JI+z#3XVmzspEfI_C`ksrA&$#W8A(Mq zI@cdrU*dFV$7*4Drw%$3rjbM@x2uUa2x+PswdGt1tyVWUyP2(07V4k*{NQ|%&)xdM zZy|JUUfOolrC-OC)}+FZ&vdyyFb^R;p4~=#?#t@EEv;o12L6LlsM;w48WPqK92P|0 zpoP$NxZ*>3B`atiTS%lhykMQ}9e<|x+B1W064s!%@36!(iimu!@y_a#loimI6{NmM ziJ$wO`Y-|G2>sisk>z0F)AFt{2rbvf-nyxX2*JRPW{`B7p3j20s@rWNv2(?O&>%36 zHRW?E!`zrm*yiz)fe=7fopZ#+D+r;N8HCVLREZB&vWU*-b9w-A!Ex<8qbv9BTgXml z{tM-sNIU;5(x!4mR5)54aRPdom!(j~`-JohrMtF_TEusjQ$zm%0W^uATa`9@i_Y== z6xyrwgqLB;E_j3D{uHR+XcFa(^;9E%uAys#0?J4Cwhx=IVBgXWBA`_)pbb#lxbS+`vMDAc3&MFkIW)oP2-fIs@dEU_oj2s{P=-Q0ivT(x&WP>A-&}iT&qmsUK?og1x#ZhDO4|&B z{|$Jdoct&6_=C&JyI?AokJJC1l^WhbJAZ`s302TIh+b40@A(!-tsUK=E0nhh0%uRf zcz`C_!GkqK;;0DP%q@7Y5%_vjclP<+}PhMb=@xT|irk9EGA=68Z7HM8`#;GLg`2!nF$Vk+F0Y zp%uK49wkkb&1G$h&>85?Zz}i<>)p2uQ-jgW$qGK#c#}0Q7n}Y1$1)K5=8tOP7FlYj z62@5Bi+Y4{oAjIn@cHyDG=rq?(c)(^@9MNYK!aXnM(DH|R&^dTEJd?SB#&2a?Yrng z+;}G4DhK`45V~Ffv{(l%JAPDcSugENDacRZ)Oj@4H?olq=rcl&5LbL(i0@o+oX+Bx zgbz68ejAK_VaL3s!rYH!D*5vh`ya{GZDRSv#x5>J0}K&l3rq zFH$9v9gs3y6;=@%e(7;j5!&McT$UK|xo@}a$770>$N>!mD;2fVbqIILquere2%XF4 z2c?T}JCZm za{TMfYW?}mccSr|=urs_(Q%CcAH!KIfUc48^Vvf+u%pG#{Q7FTO+Z69U_$8BDHctX zL#+osqB>a^b*%4nIuinDC>b40eHv5}zOGkg3A9JKMTGd$qnee<5W14Dualt2ui@%db$w@*iTFrKB#$yY&#owiJ{wlRxq&pi8_9!@|m3chiYKq9|xIe>08-{gux^&zLz;c(cEZD|t6PE=VS#HN5elOz=w zdaxakMVib-8_Cu|P?Lr60My6BZlMl(w*cs`i+na3mT28<4)R2UGC`>0Gf|(LvA8kU ztVl1VI(xuspMuaS=C1u5{eS3^Dz92LWkZK20wQGSN}_~BN;LpOQaL{T&ef=m>C2`^J4=Znw+o{@GYxC(Kpi+6ZvjcVd&nR825)9Q<01~*%72j= zp)CMC-SV5O44@OYIHM4nH^Fc?h&xmq(ZY!od_o zJ4mg7_16|$qF`fjL2W>-FCcO7N+;n$xddn)&rS2`@5UFhx|bz^V|}+l{0z(ux0~U) z&x0=40WRhIfC1UZ)qq}V4Co9`A;67P^%*d_HJ01U+BFGfE#wJJb|kzV4XWe`{R(cf zuTXxt!KG#;T?jQQ3Za<+oeS-QH&NH1r=JulGzF&y37#Pm6Zm}BYgzuJjUoo+>={vP z(br}FD-NC?c#agbCdB0&e1c4drI@+F0ifg4za#D;Z}QYt8;qLq`JStG6%M`{C{{v4 zxnU-=0-ewhI%p6=<4#=s#VBpkTJ$G=0Ykz?loI7SlJ)82Er~nh7dV{GGYntb*O4ED zl}@QS#-xCxLI8AyAjEv#!Y*X9AHB{XaHL2Aht3!ZhtKCX7>XNY0lt@U&ecG;Nnxpy z!vT?ZyCIsk`>UmXL(;X;PXv`9y&@)9Qeu&9?uYKN_?)2?nxG(;bdNxtN!$a{^-+3-$V2k z-o#1JqEX%LhBbB=&_hsMRV?qh(;uZ7*nQ7Xe}-q%3+e7yTI(ZdTTFybU1NDWB`1J3 z4xy!@(pEl%?k-6hpRp*?m`iE$LnO<;o?vndOB`;wX0y0)kk)NSlhWaoBEUL`H%z$zQgbzzvH}xsl}`$x;dkd60s0Ct z;Mirv=Yi%^;>|vgeGImCkw*E`DNo%v=Sp=HvMcUWEO%*Zrc z(et3+`|_}|P>=?s)sI%L{0O)opBIfyQRAN?70=f*`wCt2-3T$y0o~4xp z{sC$6PLY~LG^i(hUTIM*N9M3_TyPQwbWX7hXwEQ#e#vthLeC?MjN@l}jfA#TXb8`U z*OYLo<*2?7ndbBHrI``b=2PxJ0v3sMX-12~dVCHk*}nqqDN_3&C4Rn!qR4;tY&xmj z5Nr9S{ZZg^dJ_383DAaw#>_~Z|8#&VL8l2hLgXD`y8Dkq=eZ&p*!BArGoSB)CY4yL zR%&7*v~`gk3IvmcM}rVL19kX#OaA#dfZCEgfrGq>WArLJ>_SAWlIEN9{opZ%5E@I} zxeVK}LefCN8-S3QINvBgSx4^Q$*4|Y7-ClKu*2eGe&4mBM-f14o%?Wg9YD6jvJRw! z<9c{&xYd%zVXQ%e0mnG)fXg`hR1|4Z>k#@PDhkUVUj?y+gJDk)0~duAo1@twt0o`G zwaOu;2TTIgA=9^|qe=@t&w)G$EIB_kS>p4nmC*@FHxW7=$%$Wm z)ONyIC?rm=xG-we{AAJ@gR`9uXuM^`^9WnbOYFFb^&DHIUc|5~97Y^K&PkfGp-oUQ zB-oAOtm1N$dTC)5WSM`=`>d`kn@Z>j2?I1OMiva*%x4u2jiQ)$5q`>J*S_n;b4`p-O%FDLy!^W5P49A@ z;Zj=oO0}FG1)%A5&>qh|JT|?rnZOZCpNd#|&M^LJINCv?0X|pQK~#=96jB&GJC8BU z8{#D~{==DR`jv_j9;J>r`j9c7@6;D3WO@~Rem!}7hBJ9c_l_upPT06sxP^xr=Ln6v z2!-hKlUNTc8ra>;5I+m`8=rzv|J67z?sS`k1}#3E1PJQZYtM|Q+1U^SA`}9dFpr5&^Hwg_pid3qR zXpL2oT|7g*C&&hN-(!uRA9>I1ekty&Ym?BHMRq7R>`a~r3?cMM{p~*z)dzcr&M5|d z{aaCpW1=ot5TVLOren=yxtnT8ahKqJWRRY8C?aCgO2}6On)*2{HFrCe0%#%!SCwk{ zyzHoJ1HM0`8-SH^NX)Wvy#eZNQ2yYt2v=lMU&!$5W0pcL8nQ5 zgvLq2v`tYIqt-Ln?SAi5Rz3^y^NXkLxQrU6rR@>g(yO2NKqoUrNA-n9(eu5faL}DN z#;e@UOy2%poXDBURB6X#I69d$$OxLneCw)e-ZG@h%CH)|?IIJ3M_n6P zZa>oK9Tvw&trB}xQn-U)Gp!?mCj(E2tuog)pwe!6%mq3u8VByn2yB)KUB-79iXZ4@ zEJ(9N&~lQ{tf_v1SMp}R<6SDDpQ7p;83Lc5Og5jTHgC<+_Y_V|Pe`d9LR0Ae6Qe~1 zWQ_s3&UzV(>}G)8O) z>4kPlT@JyObTid%JVJV|tqA~u?4CI&5@Z4N6D)upP1-2=`s@5sYsrF0B2alTughx)+32MDkMdiuM)m-eO=@GY<%8Brez5^!T|$Th?USBx7+2?rrY@fXkLIeU$Hw? zF=-rFC<@J%k$h&KS^z^Vh*p-_nE^V2#!6fEx1Of+S!XZt5|a5`lWac2sSJ6N^3HCZ ztYzqsL;!jgU4oXoGYSPwNZY=#7CsiX_<5QeFEyV}-$gMhP1Q`1};%H-(1L*ajH*|Mu>o?k%^bO&4oGqef=cEGu zMFH^@ItltEj|U40)&fW0{9Q4B$}Dvp{AH}+RSoS`ET}_~l{4EaEfKA3R51bc1g~Ea z5B~UDG(PJLG!H}k{MBCLvmXuF4$(d3(XmN0joP0Gi6et<_N-8sbI~?krQP=FAT0*^ zu<|*5h>Fl)U?&(PG4uHkxwiYe11MTF`M%M*KZP}xsT?|O`!>sZ^FU>_GsV0|!y?pm za6Sta*w=H)3Qvq5Mplh&;|0_#tED)`nd1V6VIcTjidipO7p$Fal zu-@}u6q0BLh?Svj946$`E8#<~mLka;BJf}UgLmXWS9Vn8lL`+gfrR^UNvBhkAGcmuF**EG8XRf6|cil zO_%}D1(k@weykAf6)O=DOMHH=7x-Mm^O^GSxM|SC!W693?IWfSfo|_epM(H<3f)IELy;r!D}N?!1b~aZ z3L9{Y&uHpdQKFdUPNx~zneh4k7uRy z4A^VQxP@wq`OR~Iv&1>Y&(xPT zj?8C&^7))A@mVjC54sbkPj8w!V(eMJtugVYYdBqkh7OcjN*KsfuX*v=hKruty^X}H z+kwzH9-S;2*q!>VlFzhpxRU*b+ii1h`9)~Qymip6x88mCQ{Q~%v6r8{^G<=(|NXXP2pcIm zWM-@?`257XFi*3&RT3Kbtm8nT_o~F_+@$k4g3_nT@9iyhcz^4i$~}96W^IM&67(AN0L@%9 zBTp2cqxJ^Y+~;-+0?GCnxJ>SNV@GOr;P1IU)2?XFg)$WHqk+3VN(C}Awcy% z{|$Bho3{FSQ#ya0v*ye)DIE#$1xLo>#Btsg$B58)WHu>^U2U#&6oe@JmeNFI)YF_*Fzj~TOSMfN3lGd$5a-@%E7C9cSOo&nHZLW*@bAN5)`wvje9 z>(ACgT_MuBUwE>>qq^4m$4%Q*Hn<+ItzLxnHKl|D5e(e#`8Me=gVpE7g{U1MM0(9QI^r-wWG#}H6t>D$j9*ymFpf4bEvlt zMT!ZZzxK7S{R0p>*hcQkJt&YPpVAvUvS=IZOyVjiT)VkOshtp-u6Ou!LeCo6VEvK_&}l=rZ(lQI)BbtW*UkVz$tcl15-Pq-#A6>H zK;wefpux{^tHrOX8FDyhZDojl$KX}7@mNr(=!+v^=xbP!oxOMo_9)|m2g}>ABxI;4 zvUPex-P}6yHd|={RpwrAp;g6V$qsy^EYC{gF>6!l!tL3@7O13C!{>2k<5M(ipUZVw zQ3Z`3hNKWWMfWNm&ql@Na+Iz=vg^Y9~9eW64%#8SK1ZaJl zFf}zbEe-xZZ|GD*Hx5+ia~?8d-eM_K;^-B04dS;oJ8Z6%R2amv!$XA8MGF(qx8mS9 zLiq5?I;-Y`;V9Q<4cr3?O13k+fpR85L+g}v8njGt=rYTnu8o?ssmL{UIG^Gl9n8$OOdQD48k1QXxC_gb?c4QTMJgnPOKY7v#dt&UsB7$`g)7>C&rz)fQm$9#b2RCEo~F}Zw19S@@rgdDK@~LE zh|bdOZ%`~I)ZmFUUHQUK>J9A7^o_3;+MhpI1f7_J;s&&`U1d5Q9N4J;kQr4Q<$Jb) zim)DeZ@9#~kYl#rFq$2l3C&!&vlCWjx4Fn#N6TcYjgWg>axEJVS*H?8F|mW8zK{QD z%ZhF1F_Qz!HFmn^D@pEs5WB)LU{a6=^jQL{lab~ zpTG9C-(e-GQXsT6?OTE93A)6Aup-Fl5wMB+4Fp$?TOafLHDUMYN;!V^CT~8hjFoh4 zOZ9ivY`Obd+#|GECFrSMO29TUmcGTqZnw&>^xj*D0mnDk@`JZPlZ#!!9lT7QGUW51 z7yu2DG@Z~WRA5dVMLH;_hXU~63gvgz{IxpF*tLN4t#F6p52Bs8EylV-b)=;ghnkWZ z=p@6@n^^%p*Als6p9(Gv=(2pHW^F2Rjh&v)wU0Bl5K2->N@KPX(702D;~I{t=NNiC z7H_$9*On?t?C4$}#|M7U62Vj22 zl$v1a39p|JdyZW-U(YgTWZVeDSL`HY-iaqsk%;R~GEq*N5^7(5&yM^p}BElWG zbbxxz1obULzCmX@#2m>XgO53C?3|ew(d9#GWPQUM>hpQV92) zNSpan1yfLIXUf-b7BU5NMKD30O`8$2zUaA@h0SU}XEK@Jjbpp*_*NB@#~EDQI%&5F zL$A0v+EkP&LM@+dlt7D8iRz&}AiJ0VdV?C!S3I80ET5DVM>oxnRpoFrdpzryo{6}x z@fZK7KXp$Bt9oU zKUhfNbLu>easN}u*7y=Wdla(xo>3>lrmjs$7r8D+C=j}zGJZDZ^B>RJw%@>BXAhb2 z*$B}8X4&_>->QpgnQ!z{trr7Y{;H45g({Q!=o~XurZg#mY zsuhkRgKMgLCY9_WorXBXKGX#Ph_HBtN9G;A8|Q!y#V1N6e`mM(QkAJ*}{>i z!yz=fIvZxvsRTA0#?$pSX+EM{fzOXTaMc?~I-lpD^eL3Vu#f2gZKDD?16}*mKmY!p z%t>n?LFc8j^xQH9J8rk$>f_#Tv+()NA@=!vyWF6X*a#Y%U;EYOs)O;gI|r-6!OPG- ze)Nh12fMy8n!DMwG=T$OIMWZZIZ^hb!Ab^+gO`EX0X^Cp(C`bJy^Mf1ZB@a4UMzP& zES>QJr-judYEpY&!UnKGKho2*# zwZ{EV+0h*aBk%74JpX*n4C)YXZl_MN^4e=gFnX;T+&N zBWOG%&95St1)w>N!Xe1ed|e)VYl*}}iC5~cK(5)DtBeYcP%oUH({q17TG$1cR zX3BeI!luY_OHq{JN?SFaI8_?-1Z5+c@t&g+G3A8KTUCe&h|-LaJiHvSwW%1T2yqF= zQ5z*3d;qPgu@lTVu-TGI2IePuJ0w7p`zU8sLxI6LJI*a4)pqM+2%uT4I7Xv7xNm>` z4>Uf1?PtFuiNcVinbx#x@9RqtMT1|*q*bd|@cW0o)Hxry^xZtarC+NGx)ppz$>;M( z6xH(?vUC{;J*?WU|I`LHg#a2tXp>+V>6}T_17i~;anO!&Z@=4s&&Kw3V2@;9`8R1G zlmY$2SR-gm=yYYazYtwFlOzhVbqF4iz3O;vadBhI>czCb3>%BkhcLX1&wLsRgcCw% zoL^%Z4Jb{RV@wi`wl@8A5Qn4DjG2aN^CLH_0B!MJO{S^HPW^G#K=T3g`2my&dWR-} z-s$mNS3Xe0s5@tMwT~V}A0a|?mHikxJk7dI1$K&!hI|G><3!NWr<82@rVVTc(Esry`r-c>h0xG> zGMz5ULyjj2P%~{+acFuHEjv|As{0;y zJsvhl5!$MOE_b=Eg95D$pmTck0d$|qq=-X)zdedg*6|<}(VaY@ZR^mNJs!)1FscNF z=#UYgc^SGoB!z*4b5Urf*99lSgucaa`rtj!!N~6zlziGKN9EkzZ$16)+ut<+bQ;r) zmDKHL6)xNWokPYE^lICHUS-ymSZ-EZ0iD!|D&inY@M!D%>oNnN%N1pIP&b`oWv;}9 z7%TlvTU8vy?Ez^jP8>0{sX!XgD1ct+a=p%cbGlp|oL+$*u-c~&puq~-Q>%QxKBZQc zBbmvnPN;Mg(V^{D+ikQ~I1t_^9{SzS3;|7KXyrIb2%?w1Vse|;(<=H+YwV^dJ6l9P zKl0Igy};+g6h5Z`pNI3}hhK@Dhu8sKhyG7Q&kz4eC&}{#c!K*sJx4e?VP^;;2UUhn zz4xx0jqQ=H*gp>P(+Z%8*C;0Qf4z0b9r(Eaj}GX0Q`rbTbOw?vTTqrsCn2}kHlTBY zCh)39X1h?dJ8?5)eF5v|Gr~3CmhBNU6^$w#PU|{t$WOAFoEMt)z2LVsQL%3fkfs`w zH(PJGIU)8&38=B#>pI$?nC2~g;Kh^xy3c1G&q3AuZBR#`OTv_*JD$+3CARiTyT#sPFV+cuz$3++##zD|Yd{}l zc%^-cR_~20hi*eJF+PoJ%+2(Q6t*?vQIYA-7GxQ2PKdox3N?bZlOp6D|9!eW)hb#5 z-DfmuBvjB>n_85jXg#5~IBf7aoMEXz7ZQ)7UzqawXV}=TC!!RVA%9k3bdwiRYdE|H zHXK3;hx81qsq9TY!#I->G(L}(p8YO`s`?BwH(_vy%${Ff(_9hc|K^~Z20b>_kU`r} zVoM88yVI#x|K0~~*7Nz1_pq&hEZ6cH-{P$x^POah$|eC^tE;bAegN?S~ zw%xu2ZCYq|*-V1YK%wdc(b-`*$6IrUEo2~o(kzL=!x_i2mM$Q-XM&B>ItzbkU#=n) z-)iB!w+x%24lB&Oou*8*Cqm%>wK}Z!8RbD+ORuH&c=oB^?{V#oGN~m!3lv+|XJPsYQ&4Ac{qXHU~de#`47<2F;7iu%wwfme)VgU3QBaZl>Ai`9FZcCg54a8yq zG#;p8IWku1`B}koJLi>z>Phvx*eduW1@@ewJ`xLLLem*?tavd-Nv<-!$ z!*vwO=?YfR0%+RHcs!Fey+eArY;l9`6EDGpZra8CF@sN%m7s*ONYDA9Lx+Cx4;n`Q z=YM|fXaD#Qc=nY;{Ok^^%M_?GM;U!5=rt-RQw7kkXH~w+^ZAdx!Do<|sqyn3r2@n^ ztB`*@#tKe^{-lJ@Kl@eY3Id>Sdbij3j0x@DMC~bmKtt#Uz#b_^V=8!PUsI7euoL^) z&r?fVsek^V5ulj~jaybo(mEHay^Ih&CI&#~7Q1! zZTdljbZoNc9*;jGuh;MQd*NR?%$^LJ{fgq!!N|YaEPTi9$mCV=%c>lG+g+|@Ml~Gl z3I~jeZ3clu_r%5uG_@HKESfdPYoHWEjL}u$J20WUnTze_SO(A`Qtd8Qdj8^f|M)ZD zGG1T9aK7c&hg5B#8f_V>5V|gD-}NhWr%~wkoNBE=zg{Wx**iYze9kc7^8{6ljlL;G z(5!&YL`PMon%YV`A@w-u$8Q4&t}G_|8pCbaO+55XQO<{rig5}J!L7YLubmd~*M z{QrKaXEf|GM*D%#X-tIfKZXA&GKobl6%xKlF#tN-z}$m#Hkb}vgVtv*fq>>LhqvxA zEku@<(y;#oi^Q?fL|mJO{B3g&9NgSky?Nod17-VsCNHSo1DFrE_3bM=FmB=I>c-6n z56p!*GK$WJHkYf~Sm9X5cwZ8oL@#iV5)Nt{&JVnDm^VFPDLTmC9O@XFwUlF}$Mb=e zz=7L89i`F>9{Tk!?)n{Gzxef`Lr!Hd!Po2rwBN^xV*Rsl@^949JCQ&O*ujIlzrTjhItwhT7-Q(O{AU5mD#zZY zV!axSV!~!Ke~dj=4)%5d-DQ;}e2{ceS|0F>0??Kg&iF4)(vw-Gh%V2i z*SYU8a6MK9&=VAVMpu%~=NjO1DuvI3wb8I&YF2rf8PJ;1)lg{{Q2qV%cgYLB-D`ZF z1$_P~<#+<2MSG<5`1nlnc1ZSl%0goeD!u#P@hzd$19}T#-N}FAHLQe&kzhQaLqP*W zyV_Xz3|T^I($T^x3Fej^Oj!8LlqDQaWL--TT-J;=v0PoqYZO0wNu{@A7fgK0Z|dGs zB5AXeRvp(tx=aIT?a-^*RXK_=38l-c7BwvzwR{(D^zgMy?hXrFuH8mH9Br(C-s{=` zxxk=a@q&ro+DR(v5L)^~Fdpeu^^=Zk-X5;yV4G2BZDYsJc|FpNbB|S9j+D^u71b?J zuG{~B%u!UXw6?q5KuS5AXWT@{|I)>1)@u@>!Dwa#~w*n5DcqM)Q}AM-2bg_sY>!57OYqz zY=ll-BUH{88Ws~Aj|tGLr~!G3v!KT8bD4u8wF!%$;Z;(uTit1&p-L7&U$-@PO4DDW z(VtKHNTtF+Veyl!ebr+~Xt{VvF=yO*q7B~#&(G`?=X>yrb}kZMv zuRfW}pT%S}-H^}y|4Y@=GU!>cKahdYsj$-#y`f3BH?{F^Nlbt?@=JQcbQ)wODoSJ# z2N|kj?mRx34E46;?J@Q)hyfF6YEyMA2A^d)C4~Tn6)0M?H-eC1 z0vJYJ8TVxH(_j}!@iXxGaMJl)1bj|q;h0s%{HaD6N8zLysIQcT#UnB7O&EDYi9BuQ237_HK z6m6j&Rv7h|uPk&;t#W`ZG$K|)gMRuf-}3%reV%X=qZ_Zy^&sfaQYnfNp|L&E)p(Co zh)zGxdo3Z9h1Qzzx&OOrKr2eji_8d}nl^PT;90ig$n`hULTE0gDmwslfip;Nfi~Ya zbR`zhT$@G1ND)jhVtAc}b^(3D;7h=($RyOoXckj?Qk`&1j!+jNH4ZOV_J@`2) z?e@t0BPEWK_47wnZ7ETfZyOC$Nzo0dGOVxL0Qv^kkfRrmdpL8MM3pCWY=P?Lf=O(I z22sMYU8S7CWfb8OrOrh>oV!OYzp(4vg)OaBRm%1kN21#j2<<~t*#WKep~^5MbZXj~ZGQEj$4s!Yq;&tq4CpXr3@zt8Z$1?hG}gpO z9HMN%ZM5hm4G}B?>`4zFfs~my4*<{8vzfQ)LHM6qua9 zGy!X!%T;CoXeJ37qU;^DbUqUwXwy~~mB``f993#4a_9&RB8No?&EUZybo1}xr_x^N z6lCp^(o%;ppB-mn(nxF2Hd7zyVcx74ZsGYH=!N=?t+x1#Wl_OJ^I?WjM6wR;{qG;D zEA7x@qV7r%{gx(AxXI>7TE?|U&1WM*=dF#c!CQSty&$%|-1E*1Q$F(wkNlogvk(jj zotigg2HvS@>L5Gl?b$101$2<2m#jp?%};z~V#=UfRxBYyVz>&6FIpBOpuI>H0>=vI z(L_;kI_9^YGkS@hY@rN>;5tiXy0ldp??bk2wejPO!+%v!NhEl_kC2)pWSQpuI27qY zeVy+(h0nN$u*|%YS}k%c-(pzFfnQF2)3o-@KWFv~Zk*;}C?iIGxaP|T;`sRj!?T^N zp2}DNoq=Ygnv`(t^wx-cj-ce%KZCK&{#5;g0-2OF`M)UudN})Gb|UnDzf@J)A(!kf zjS;QR6OQnsok=*`i=aP$Q{yj3CG=1rbbJAP9V)y>Y)CwHSDtCA?~ZS22Bxd(8w)9f zP8+&u22DsqSu~q{E>=Jn=p$$c_CvQQEyM!}<1XUxt-3Ve(rWCH#+6$DI=}|#%^E;E zV+8b8VS5JpWR~oD#a@%wU7xb_?uR4P{hGh1r1LBN1=a^ z^PQ)}y|{wIG6+{ya+Fj7a)U-URkr$(1G+@3$)zeN^e|-ON23T~eP6b^Jz*ehy^SDJ zvBNo=W?Tb3T;lV0dV|lyDSRHf7MVBlJ}Us)j!DHQNR=vtN;`B-F|ZF1t;`dS@Fr?Z ztXg%D^MjUzp5b=KlcL;;YVMNw{OP^sr5JB%0eww%ZRcnRotidu{}6hfVGkID1XS}!K01&RKcIQ9h-@5;ab*^Ou4e}H?TG;Nc;eY(ez?^N%T^eXqHI`G_C5L* zHyFPLPUhhkXd^;rmq8In3eAE}gJ%ezH((hfxP-!IY?5T{RmqX)S35K@)>ka z7p}Cs^-h~PJcN$^UQuZW>gl$(-j>Pq^t*DN5UxZrwD(W+@v}Lh;}JOg-;sPhp8t1? zQn?>%-Vt2et!g4D2#pIj(uMKyl;c)VvV@#-RZM`Mq%N}q$pOFiZu8{B)QOxhe zFV*4*y4eEIBT*$wlCZ%mZu%GiZIUDmFibQQFZgO+T2Ts7wE3(-R1fiqGYasdK=(5R}AyApj|~ak#&sfUe7;4=!9-i?l9IbGVx5> z?eSb>5=lEmKzEli#m}|1>QQ4hpqM_?Ab>_*lq>Psn|%HGK^mWDSh;&*pSD4_zHIy4 z1L)fSN`QXqr;i2TId#X|n&9!K?-IYLWOzf}PUkZan%ecf{cIeBj-clxf#V)4KKFlH z3+RV659ccqp>g4cF`nVWi3D|ocBI5u2R%mhQVql++MB z_7Yo}U87gLtc-wej~&osWR(b;o7-85T{61$qwWfz}#?C&E0gbKl6BP{;d5|B1CAwP0Q5!V-);~VFxL)76@KXp;P?cyNxa8&atGoMpOJfoex@-T{MOKk|D zg}OQuWeqnI9-^=*CP23+GmgY>snM#9uunp~lH}*fDo9FN0(ur(Cm{fOnk_(Am`NO_ zE0`^}%i|>BWYuR$l7s}%Jx19nwGD`#$Kmif*g~Z# z_DHIJ-_^!ajO8hm>rJ-g!`$xRY9m4~E>Jwf&Na0fT;YOxPf;IcKs)E>TTTJs(}ND* zlI&`1-5Sd@Q-o+XxBFI$yY#$9F?9CJys99!&Q(4d91n~9)ZAOJek7N8BhIK(8O@jA3x zI)O<(>>ygBD&y*~3cw4-C`b1Oh~P!$2&T{gP1lbXR1iA5KE}N%0O1t|HE|rfnY71q zLXs{@tNKO8>zkTJbz0-uai}FHrw3p7@i76K=9RR` ztB9X-y_rep^F^e0rDozYju113$8^jELNUiLMH0PzhYr!;M3K>}e6EC|XF8!rxZS5? zI#>W*y_u2EX(OWkr?h~kI0Ztv&Dpbn=g93AcUK(^9$YMC9Fvs7t`F~z$3Pol1$y1; z{@xf*ql!atTH_xnIV@Ei3(Vc@ptYHZqM$)9kSYO98R_dO_7OL`5Pjz}R92ut zAa_RPDTBOc%mK{_rEug5^f-f+L?LmxDrn=bXl*JV?Az<&*M2j{hD+n^wb{msoDBLf+Z5UhkF|0KMADY3!Du<1HAm`gC$pQ5=AF z$WF!hU$ULVZ#2tdOK0i_jRlj%nld|6Ko`IxVvG;_LDTo&h;ogU^6?7wRdfdH6uX{G zRA+v9idU%fw0!yYMTmvzfNpR}6>=Xu*xu%n*5lUil zUAXy8eHUGD1P#zXAg4#!tU@h~JLB=N*0SrBPM$P3FFvQb1z6zPHJ!H}= zO@oFiXjj+H_g$*Bp=X;;?b(m!waW%z4 zMn7oYJi8H>PtXmsLWUy^gAFTmxPnMB9FoppI11565*`YMt6QW{H(M?O5$2j=i9@eJ zgTkRf^W%HFW?pU}x-*x;^|UNDtc5%8Z^jIDBf$HOwqu9b&k-VsuM#6s)+UA6%PaJvG*Bid2wiURZ56 zYBEtp(Cd$5lcUcJb}5k{z4k&vRd%*&E={|nW``)_5QFDejafWN0n%*o*KrL^-j0fy2bNWH!b)-a!so~27-tw7IbMGrX6yDk?Kvr(yJJ^3cE%{_p~vXi za?Cq_i~gifdh8^4LbU9+CU(a1MlJtdaMFS9W@o+pdNYo^88V-}6Fx6K`+I}WFdRS} z_;ts3zokkRP91{$FF*6xwL~WgP5C@b{;45TQb`x}n*Gyfq~pwCJdV)Nqj^WFHJ|su zXYouz0X-bH(3GvPk6HwqjsKHv)aNbXfVVEo@nPqlkmWmo(LxO|@tJQ;Q@))`@IqWW z1E8NU?#GiVQm$);#u@Cwo1~bvK8(YRK&M{3oy`ZJiy% z3>7wwLxJZ*wJW6db?QVFMi~dqNYj2*-{j-x7qWVX&tp?{^$IbSbjPC24pH?{O3A{T zo_-v@Kbb6r3ikOt$S6Ok?C=`qR<4Zu;?2QY@p&xa#W19+vb*(}xI~^1%@o?F8SE{8 zeP6-rl5%@3b44y{AY!V+$_iS#!(&Jj`tAT1DT@={EJ4NbI=goAU6|s>MTZWe!)hP zN@z1YD~eTCABsJIhEAd(8bEL7HaRT*jP zXkYmXb$cpKfL`HbQ#ktIO1q8%+wwC-1;=rCLk+sm`f?l17~~eqfZito`mo9~U!5To z@z&_9^&=w(PUuysRi~-2d0OyzOH0f7;|-0~#XaG0LC{CaD4eRMaYWIeYggllH(S=N zvlp*E&R@XVfEchqon13$5JLNok6E#JQVwIK&Lk2(_kjGoA*LH_mdA5Y;k8k^r3oW? zmm}P=n3g8wE1}hOcIWLBaEMnfOH=Hw)HWQx28G^^YoIr0#Tw6N*wN|22N4yd&aAs^yK=bzy;x+ zp5o%-o}L1q*sWjPCMRTIWMG)yN{IWob69h~Ijc$e-8hgpCdPP!UGZcnYu+43MiE4x zD}j=}98Hm+m?gXrdjW@Z$<>JiHJ+8lDp=r%&1#gVfYvSPH$>mK3;6ut=fmeAy~O9y z$UA~&hb$xulK^N_ePcrMuJLp$K5r9Sg1~x8^#<>bo6n$eY}Wg6z>VD~-NUbZTwjTi ztQ`HbAaff2BY$A&%vXp4%@bDorNy`|Ai(+wA-^5heoog%b7^rk`6~Jxo0-B)Vb8I3@MaH z@N^z$H1i5txfioJ$nxq&EridmeX$Fbo{WRacTjSn3S2Ups^)hd3OB4;oUI4+E@hov zxX@D+)7R<=UEr)L-B5bzt&BaD1$hG1HvirSg!tJ%x>xv|rss2@SNME8#hi&>PhyHb zi9(ph`UMTJ6k*ui)GI4|p+0!A->T&*#EtC~iC5D}1Jj-(m@g|JjEgb0yrw?yB4Uj3J+s*OQZp&YBn4 z-Fw&luZb3vswz9e=LB46YBMoM1~HW_%>_P~74Q!a;hY=kMpT$ejKP1<#hw=j*U^fw zEqOx@f+ijJ5j;D?U2L^QJ5deQv0t8>2ldp!Tv?wn=%ooxQWjvJKvt6pcwwj}QrA|0 za$-kE$Ha+y>)YxAp{%Ii>y@>mk-B`BEGv2a(X3DaUSRJ;@(L&61tK+3;kQ*0i(v>Y z)N(+YF53dnL85M8r;fSt-C|cf9!*_x=>;rwfYPyiJ+9c`AZb}0R>auy)4Dx2K8vpX zYB~q2S8ED}- zxxl}Fyhh@299iC4)xD@`(WosKc6DmTxgJqEB*k81P$2`_=_{yi8KZk9k%@@)1}#Rc zfF7X1W*!&T)EwMs?aQe8uPiAAA>4BKXMA& zbUf-8tL)?s?>iGDHlau@h0qW}hY&;RBoIAFpxPtLnqvxJe5`LGvUweHn=PeQg}lLQ z&kf=m_Z`S(Zdu|ZV$~Ukl^zjzFv$T$Kpdjg*(ppuv1T0%vE7mr_B=Rz)=O6kivpFE zfuh1IFU=bM;2!pGvz=e(+r4RomJ6bN1>xF;^GiTum;|U6ufe3%M0@7(>{^$Adu*M@ zQ#4M$9V+cyziZcp`CGOu-&LZuZzZeQdKfGwa zI)J|G)yn9)W1SjOID9*2@^awkohWe6ZB?09#6TYilq$`j(I%sltM&EOA<5;8nnMI z!F=8wXV9r~OM(FUu2-Yc*OUL@?$l4Kh337&-np}&L4}?;gAs^zNjfIfH9xD2pKt0N zK4ZggV-5P=PfrO}{`Wrz@v>ZHH|U{jiJL-s5!+!<$|$&v)`J$Xz`@Ba&$w*Xf&ZY) zZ~KG#457;MFy}N9IyCYIv}QOC@jwr+tg*AF8i@i*i{^sGny)SXQiqhA2X)BJ)oQvd zaF6v&^u+`8I+trVXM*SyHKmDP60n-knQK^jG=X@=5ueACaXD;ckRg?aD_OnJ$yn9sfO;YRqwelC30H>fas96g*0s^pDTVTqT)-2s~&|Hykx>lZ5bixaK%fGQy7o3#bdX~$EO zI)H)z+WLh9be~~BSYtvllN3`yC0K7=U&n`aCSdB)X4t%-xYkm z`BA8%Lg=wUV*6l1yGRG48X^FLXQ&*-0HM!Vh#Z-q^6~9&-0{^dwZ0TWG466vjL&iy z@{Iz`BBE0q1|~t-OA1OPJRc}R$mY}PGZd(nBR3h)*^^e+@&zGv>VTY|YeF6wK{cOq zmSEy=6^ZtQNzmgT`b%nYV4PwFLx8kX#`6v=ZtP9`&RC6TRqMN6>u451D?TdA7V1{J4YzdtYYx!)rJK!#8TjoSwkU1b?Ubu-UnFdpI#DZb5J$aIPYs`oj? z+6z3el|-1$JG?07BsTU}36zEPQS_2aQfBbDjS94n9Z3-(VEO*L)V7n;2DSX z1knc;7HB))9g?v>Uvq)0%riWR*s&L)0I6bEx2H^Mz#sLvPy&L^@$xtLH+Mbh?XcsQB7G;=^>;9*z6s;`o#xPme_NBd{XwL#bcJVRENculZEwOw4l!ybh%td zmo``;T2eW9ZNrtcDlvj+9iwRlJ10Gfsp!1|nGNjab*NhGEYDs{)MsqBk^o&Q6Acjx z&hGuN_xKEe9--#*z>gxC$O3x=ah$0=Io z;Ek-p5%l5~>3huuFLy*^#4`!3yhXdIkl5TFrG(_r(YxbVP{g@1b$PH0-p1fQU)Tll z@X?vI1kv=GJDJYo_~6-<)FLq+(VmRvV+R{e>MAG4UI4AzlA{Q3K3dSQdd1=uOR5Q; z7j`A)V;hdr1wjAiIlsS8?*V$s=fvmfhI~$L^CVPp4AS(c^v+Htm8w7ABZtrTK(BY9 z82RCqye|)F-maM_LfU8Q>5P_gPM-+pr6I3TOL%NT2P#@wD~ElK;ObQ^VKI2-xY=_9 z2%$K(brayXbGyzItEyMH#^#BD+d1@4%3D{yOpTO+gENb~sJDtwV_e`3Ek@A<(n?G# z5`-e1_a^-f?fLmM55K0BHy^k>ZsF!y-J`NOVSMg`lf0;Xp=KClJ4#R+!Dz`X>78EW zvr6KC{NUkUI_xm%air&SlFj>YmQXY^9dzq6u3q7@L6u$F6f#DZU!Pt@vVBe=O12k@ z;IMJB{5p|44j4jkB)ZJY8Y?#vIOitP|CJBtH(oB_)U{ZI&W&X|u(w{Eu{wDQMC+E8 zH=h}|Y}vRoWpg(M{3bCu)?U0d_3bMUJh5!qvL|-$Yp<{I#va4>;=o-=w2XTF2b$Ii^%ezm+)1X3s8n<7U3rJ?~j-W)2Qv(G&A%wsP<`|zEB=U(A6v^Y@{q1&^I?gmy#bjo37A-q>w^G_2Q-nn?w8D)`m+!tj{W z${{J9UOHb&5l7kxEUrFx4=+DQlh&KV0%@i9rFMl7A!Wv_WW5C*ppkZ9bPCA|1{dxl zv2y~1ZgGP;xkiR9!((Pvh62vXJM-j3(HPP@@Q&g7?CM~!@!;h*%9pkYaPD0?OY4(8 z!|wa}DK8Q>QhtGrbHnn7(lPy5AySqC>fJu*dc9t@U4l`oUIrg>N-#xtUXf^KnbPuU)OqF zP%-$mLHWPl-}!}jho3AM{?eR`D_e&p#|rME^k7Z!3(rZ$i?XO3pTiywy1ds=_}oj< zSf8EaBjb1W;sYsDu2}&xr=<>^I%ULIKdGKa=$${j`Q8`0K%lp-5t$8;#gB9;9M$^Z#=5a?tQ+gb dy0H?m{y)^fV@hDKwhaIP002ovPDHLkV1hihED`_! literal 0 HcmV?d00001 diff --git a/media/items/new/generic-armorTome.png b/media/items/new/generic-armorTome.png deleted file mode 100644 index ba0833b630b6caef56323297304536d102d133bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1745 zcmV;?1}^!DP)Px*i%CR5RCwC$Ti;I|MHJqd-Mv&>qhKj;p(agCjMf4Mqt!&?Ut!`K(YEs7kF*cQ z7aujICYtogU}K<>nD|fl2N<=FdN`R3a}Zt7t#prfnk(m$NuW`#EG!hp`t&Cfj0HS2?pfaqZ_AWB4|{t!}2(AuS@5Parv$J zo5~~LQAPk;nk{PCw=u41GNnQvxGIemT~MpzxT2-nSb;l~=YU5-2Xu6Gy3H15%O=>` zmruV+NKg_9E*o30|61B#zVs!XcVzj&p$muxhtj@Yr|Vk)-tk|r5tIRxn>Y8y37!M? zJ3&3x!nfJN?EAH_@$u{qOQwr;ofhO)urOG<{tqE4qG;g40yshgX?9<>^a$APg6{6F zhCW_}WnX-40IV#}bE_&Vl^xD2hj?GVOZS`GY5&JBKhwgJ^|b$K_#z=qKauwDocj=n zIFk0y51d5G5HTXs^+tGXd3Hg01ndU^RVXyJBeQv(IY7()zI~55!9gf0f>ezR7{pjv z!QG*S0!fA7wull**e2FvW11&n{opxZ7aee{hvK-)DYuO{{z}96Z89b21VZ-OLS%t0 z0VzOt=T_Q3o)G(=AAB2#sil3}GsU#OtDa2z&%XMR*5QaFlC>(L3C(}~>NU(yKj>Cz zPI&}0;sBddaNMuM!frbyx8HgICQv#?G&xL`0gYFq!>9-$2M9v=ypv?Y3yPo*FmWAR zp{?~Cup(LU-**8NA|A^eu(Gg(`Dk3aK91)oj{wO5)(T%MM3KnL+2zzOdALc8xK7G^A%u!0j}WQ8VMSA=Xb2W^-AFo89vnwyxS z9Y@yJ(M@sKhP0EFrHZip>guXMRBLPNjtkhR2f!9U0GBFSS|~bLWPJwL8=PORkTMKm zX!dok8IE559#E(2-+JRsm|lAXq#F~4A<}Znw-1Gph@-5aj0wa}8YkJFeVr|Dkmu`Q zuX+K#iusM@8K6g?19S#qdTxyCxeo)$0WN22<)Z-WCW!jT$5F7$s!C#74XGDFX zhOvu6sUwW64I1d3SVtZKo5?(DZ9Vc`Ute#Z@R=V*uZVGZxr_=8nRMvF$0F{pudmBW z5=_IR{WU(`@VN5XV6GmpkshL^28*)A z3|O3ZS}D1cG2%TdvaDukWG=vc$n}4I{f}&t*_`7zN2h$Xnjf66Q7V@YbD=!0a=O5C zz%H$|o4)Z;@VS${r-YyykXFI38M=X2HAzvpLU?JfZ)z{fj_U4qRA&%P_h{5~SY z^C$nD6wxI^7{-<9Isa~OPaLpihqA=qNEXd0D(+jftkJP{H?U2?%5nBZ3CMzxmbom~ z3c2pEkrp=870gZHeHI`*2kiBR_9EUT;?9%(QYVa!ToH=!>Tkab%XS_wB0HqLfA8!W z;k!AK4<;uk1)_r7`Gwgz|D9k{IUwJ{T%2do&)@oHKFx2DBPDeM*9W-Lr&UACs*Hnd zQx%-&fc;Kzw2O2C$LSaPPKkQJ%D=1FX)RcrIb&jCVn?Jc&dfFSe;Pao>>EPh0B0J1 zlfynAWK~)0e3l$E4%p89KO5jV;6YD#uO=vL$BHjQLM|_FwvT%RG@ApqPRMUwPx&08mU+MMrQ<0RaNW(bR>Kn#Iu5h?Sj&lbeT>oB#j- zRcLKiX>Np(nS+p+0RjRbARs0tCO|+yR%mTtU|lD0|W#L3k*_HQdeqkN=ix-6B7pr z2pAe16BHK2&(daheUYA}e2S4xRarSXIZ;_&gO8UZCMXpb7!3^#DJ(8|g^XQYT^b!8 z5E2tAE-`)o71qKNU3I+xTbbp3j zZ*;c7#d3j&j+>&w&Cq9feo$9jL`zR@d4DS~GH`o=FfcGcMM@104;UC2fR2_xM@u_F zMSO^mZEbA`2?`Jp5O#uzBq%CHMMZIOaamzzGBPq~XlO`CNL6WWthl{mba|AasJ_X~ zmZPeltg@%GxUajwae;`jyurQ5%!-$vbApLzd4F4Na*LRtNKaH>Xl-?XhhArGS6^gd zYj8$JMjag;Co3%>BqnQhdv<|{4i6A>euSB&tYC3>z{}5|t+SM%r=6;=xWmVzueFAh zn|g_mrLngc85&MiS|cMPJwrzyA|y09Jz!~XTV!cDKSCrYDRF#*TVrWAJV0o2cu-JK zAS5MUUtc;vLmnU^5)>76b#+l$U1o1}Jv}{pijjMJdt_u}WOaL*rmd;9x?*#AkDR2l zzru=xb$yJJZFqjNzQSK zeSLjFNK0#Vd@waPPgh(sI6EvbGJ1uLMom#KG&VIlJwr)NA|)sf4-bWsnQeD{A0Hn` zPg8t|j}Q?OR#sLwJU?=MglBPgc!Y~@dVrp)vADy?iI$yfdxB5-k;%=GN{xbOY7^}%Mondf-&xfG51WXx{t%s9ooQAR#aDftU35z|QS{H^dGx5jIgU6%?PBV9#A977^3op)lL}1_-jOw#{{0x9q5IvgjFxG5?Ya12M}$$o<8P?&vK|^*gp~ zt=nv~3PS>X+x`z~cJve>qwU*oZl87Vbo!YITy3No8y_v!HJd9%0MqeXbnjxH-N zVp3I^pM5%Su7y#e;Q)viV7TH_%iMXNewJB9iRhZBLwU@~ZHLp|&!-io;=B1(@RaT; zsLB`bwC2lyKW*2xN*;YE5qB`cjLz6Pe@}XAIR=9P{fJUKfw#^ZI!y1GXH!$4?NXF3aIBr-dV3sdb*62H~tw#J9fgrSmS3sBs6{nwoWVf=P6JPGj9kP zf|>l+Z0b=Widt2u0BnxNrjADTG4zlEd)(~laE`=KLqgC1H3DEYHmsc{ljJc$0r>k6 z99$vaBmS2WPaFIX(^{v{;LsP~WuOZD9by@mD980kRsdc?;pIdvLDvO5UmFaa_+sn0 zME}1d0cXL-h-E!5r>qSp>5mGr%KVF8$MezkI$mQ=!yqV-zLr!%&SJ(896 zWtIlRyE>ASQ3^Dy;xVzPg6WDbtAno)|5s3luBVC?de&bF)F7r<0&t_K0f$?rqQXI( z4?N*Qw4kY9@csYvoAUWKWuqJ{*+FvLC#f>Dxv6*DJ}Q{iQWq=E);0DQnl z3!-U-s)7U!aO&!bQ{7~O!psK{KnC`OqqJzd)#`$F@)`i_j}X3pbE2B!9B*QJR!}Km_jlT<25#C6%wRn@P&*gX4j+)a{Ay>NOU-w<>ZoS6G*|* z9y(+8&d{DFW3mc|M}zj(2BM_S>+Fpr2T0QHErsqbl}4=#mhc@5Fqq6z?SYjUHA@O5E}2tkpW zqWVaH`)G1U27xOZM}Rp*TeDBTkN|(7>6tmMxR@37o~EeneE!hsDqy>&i{En%*b8=R z8m~p%2rYsZP43;=>4Q%p=_HlW13Ht>A8agU(i#e5k!zj5>Xt1q;Oy3nA-k zlE$d?Kc;Kv<$X#Ww4bE^J6p|s?9H$WNu0KYiZBxMY>Cun zQ}>?uZE4Q0)k}sq9EpN%PPjH|aXn5~{x_!k^MK~l7yRB(%3*t*fcLhVBpr68xb(u< z-g@3lyhyr!F=dnMOEqE@uT3p0Dd}}-65iUIYm7!?(S<2t&fuv|z^P8pUrP!#Vw%a8 zzJ=?1l-->6)}{$;!K`njy2<>zo5h_q*+bTx(_bBHLc@J7m!71hK5lRVZjfnAKZZd~ zEB#Vfp?@1M2<^qTX7sxye(nGv-yoKr1!6CcYgVD3u+ms8=JFKU0sOfW@aHn%>nwk4 zX&8TRwWLMJwqw5uaYSZ&_!5bo^)jB;x^u06 z!7x$+JQ9L)#5`3qLtREKGFvDzj$NpY<8VWg44lMe1mk1qdbt&(ubNX}trpn)YSoRF zB+UGAVK?9k@GTxVb`Wl^wUw1yGwOqz{NN6MV9J}xE6B*irr(eh>rz=xzd;Nn;x>F831neP}p7=BV)12a~dL?iQm z%F#P(036`Q9)JPLCD#UX*wy0G{EHdI2bN$$De@=B@#X>e!J-_CMS^ojj~3C{6meJ_ zJQxnQo~~cgxtb!0p-iJqqQaIR#7VR9u|o;C)Tl&$vaSZ#F_CxQYUBfaL}TAVOJavK zGTTFo!h+I=D&d-tshK@ivB75D<80{}MrHCzLQzP!I9|s%t`~@h)1r_KV`alkCeu5i z@67bWb*7}jwqJbf;bUflA;qLP;d2-9*`^ibC-g@n<*!cm_}5%}{d%$Alo?m9ZcKS2 zY>-7yBf`&jNle|^$FKFibvZN^O;iAleZ6-r_mYl0>U3uB2}g1mS4p21C0R~UX$mi3 zn$}weg_WnAJb5yue2{(ve>>+$t8?=JxN|$w1<>@lcN^|g`0R(HLqH`o+?|{5!q~{$ zcNDr3o&Z7i#^Wcd^DTPky1^0{xxD+lw7$Et`43EvNd_LnUyC$v&fe8GZC>}~k%7o1 zP8PD{SD!fEXb%F#?*uvuU)5CRCD;6(DJ~ZkXI>ukJHhG{h}hNe?;W;5t0)1)7T;p8`&jh)RQB;7RANK$1U<2 y@#LtOE+dDz{I$+Q4tJBA+~g)VxyeocKl(2nCUXo+NS;jq0000Px&08mU+MMrQ<1q1{G0|HV$DF6Tf0s;YrgE)oz9HYpo8DjR8OX-haIPdq4neSH-Z5fv2`IXO9IW@bMyA5v0M zNl8fz3kpI#HXa@xAt50~Mn)wiC1qYx9TpB45(_yi9AaW(O-Da%W?GPkcRoHoK`|jT zCmJgt6-G59T3T8U3rc%NH-*BU{!8iN=ijNMnXA0IWlo!O>byibZlQ88yF=b9#cdw zFeDc#9~3Pj7EntbVpfcUbTTd}Eh;61du@GnW(sFuK}|bXQAh=9WLs5BCL9u7 zS4~n(LjXfSAQul|T2KH;L?9Rs0AgKlXj_efaR3kx08L5&URnTAPH|~nYh+k8F)DCh zON@VQH#03cH7|>QZH9er78DXGCL)1(Yk+rY9~~Nca%CbQ92yuEe|BhfZebu?QBFoO z2xwtAQ9&7CRt9NeC|FAoWLrx}HD+H_TvkgZ8xmAbMF2cGCRt4s5)J@1G+$XxPdg|8 zMnYUjG5|3z05viID=7diD*z)R0393wTvq{BQUDhf09jTY8WuV>FfS}8gL`ZzB_J3U z6B!p2DpyK0Q$$8eH#|>16=GQ%UsN_yLUwCgY+z6$92G}7DrQwdSyM?3W?m^F8Utx# z9$r&0RYomFIaow5iF|5PO+-XXIZi<>2M`WILNE&x5EEiqM>Qm1T2D_&K^|LBN=Gvp zEhSe;H~=UnNJBdS4GaJzBLF8R02C92d1wF{7-(Kl02mhlARhn{5sZLtJU201M=~%h zCo?cADkvi%9~&Yc9M9e|Hvj+t0d!JMQvg8b*k%9#010qNS#tmY3lRVS3lRZ-WM7d0 z00^u}L_t(&-tF3Fd=p0&0Px+_dn%T-DwZtEvfSh%7jVH1H*6Cdo4DH;5)zC71Ez$Q z0!c_HAqj*KAfyopq+Qx2x%A%a_1=5$z1Q4mXCIJ)cm+Fw`$w=19_g|k}`vg3-jVOy99Mj z^cgjg2l)v`RnFwfrbYeR2J#T=;(^X1C_1*)=ryw%#&HnhFuOd0AuqGmq?zqdIbcm`iG}37PvGIgDWm6?& zFtiP5*bzku42*Q+4QgG=p-O0ANTzn^%3+;eoi1f@C8V<~oD8_0;i($G^zAgAPNya+ zTOrN@M@_V-s_*kl2&zjt=7xog1<{PxKNB6g=nLnly{h_B8(3J2|3biD{5%S@%Hx*R zwKk|=RaYVY>fpoQoi*w}r>vgigly*4MJRn~saE@y-LsqCd<6GLsd|YG=Ci5=eCZ2B z)oQQ&)QoFam6=DnME6?1+RLgA@ueSIqm{<}pV&GB+U0Fc-N&eUtqnR@)gm0bCRHns zs~=i1BMOy^srs}TTbOeg$DZ}8T5amR_bES9+Jx6rHEo|2nY+YxIDBJ(O56uNX;Mlg zz9?&2-P4NAtZF*^{-z++n^>PUMNA~V*IPyJ*pwovSDA4ctJ(m6d@WQBf558TQ9DS* zzF}Im;t;Ev0k6EOjWANb{zw>FD9z1#o2h!CSr}neo%r$*ZN!oKqaVli0*5zN1EX+cT4KI zQ%ovZJdgSJ8;?93L4D)(@E)ZXeCh(bnW=d}L*I0*-F;=a`seW8b3Sf4rK2j(q>?(* z6|i46edNIq_0?Cx_Y_%p@=i%Tk5%P(tPa}qe?0i{9{CH@hyIred{t6&O`gDh5I}uq!?@?H>FsI>Y;{T~xhngJ5GlRfDp@&}QYn zPy5uRzr(OU+~!x`Vpcgf90=b`?!I4EUn~tvm~?#mcBgnH%!y$r~YblPP4#?@Nwn&(UTy0DIC=W?IQGpn2cRS~;xQk~blP%4DH zLc2v_=lPPl{5Z0AYh?Af6iz2r{OqYx3~7xD1mQT1b@{*08pAaV4--nqKi_*Y?3l%j zx5%;XM0X75!v%;d6}MF52q8NZ;Z|AwCuYQ;l5(7{d=%3k!a9BG?Ypoc7L_DawemSn zXYeFD4R2j0sh7VUquK%`waO>nb_m?MIqiQxPg396h3PS=q)i=AJRVSW1-)c#_6@T7 zZ-`Nyhh@sAU6}?kNL@hHJ5OR;Y^wKcPx0{7m=}2J(Q03CuB4uNH)fTro<8L#YY0eV zGf&l&Q)jR}MwP4{kK*c4#2Iz2k}rF!9FZE7W~Ngyp)!5J z7W&l-E{cmf4=`6T*nBzIf&i8Mpf)&IhvL;)wE?8B7>ar8#pOOVD;_FIs2z&Idg#G- zG4GPqd(Os5%?9OiyomN@jl6X~RX3kyKa>s)HczkoWW85`-GcdXdc|?{{dlPyz=UEN zOTmr^)~h5{z3IKUshk-)O^U&isxXAs3)3X^=pFINVY-h2k6!6LOVW55n!ildP4!R_ zHH6$q;t(^-b2;JaaFkvC{ZZ|+t`BUN2z)&zACp2%5oH*EFjqS$romom>o}* zD+ZxPp+EuHu1!mf>RmyDk-vQbXuU+frgIA&T-@16+uAB5vHC6toh)Av%vh!}BM0lh z9JFCCmjE_GBUO#y^j!`*v4cwlyCc%8r*f_Dnl1q|EU|kd1na((US0jf#y2NIC40TF zqO9_`eV2naOwbpT8PFA4l&haSBpsQm_n9#(oAVBylQv7vN-|`rHk&%6vIE+oBwFG_=th zY}$S?ZeN=!){DS*!CY^!X&2jtVlL5a;Mvg4YOg8^3IDDdVLTw%zv*;KdPKgEOFTOu zts7q&FIms?bqQBVQJygQzIdH`LRa3y^IQ^!8AkQfXpE zk)vbMXq+4{BvtjcQ)M290c~88hsFEpMmv}E(QUDea37BUtMOmO``3nbuVpX*0000< KMNUMnLSTaQeJM!* diff --git a/media/items/new/generic-bracelet.png b/media/items/new/generic-bracelet.png deleted file mode 100644 index 4683abe38f0efd21d0e03f96be859c83d8f1447f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3281 zcmV;?3@-DDP)Px%@lZ@uMMrQ<#n94RS7aWC>nsb7Qo2agdmY!E?Z;zX!psTV?NK8aWO<8MjZGD5Nv$?Oj zzh!oOxWmV_z{G=)n7+x(m7%DXqN$#$u!NDB85A0MhK+D~fqjXQxx~k#ue7kcz_!7~ z!OYK{sjt4t%~M!jV|034SX;Nk#w{x`J~=(DxV?{@qp7sHevFfsqpGX6yLxtcp{=qn zE;M3ka3vrle~pwI6&e>27J`nJthc;eZgZ}=zNN9YiI$yPZE{&`aWgYHvc1A;dx2$P zWj#MdKtf21n4o8Gc353xP)koJCM;4-Q5X{#9vUD+JwhTLA~P;B6%Q3ABPcpGIbd>k zr?a?dd4GV8m3)eklAorkwYq_hmTP>1v%bS8B`Rrhc`q$9wZFtiLq|VBM;;j;Ha0x5 zyun*wXM2W@Ra#+gcYYoj9(HqfXmEFFad*;J4j1WZFYS?J3n-Og0o<{TF*XKFF*ab+iD{;H2%SJEM+ohb93+I6Bfy2^(k|sL zyf?glcA*oq26*Q8<2!J{m{=F_ul`((isR@dSY0q6j}5`-!=;U z7_Q@Z7u8`6@VFmiN)0&D^TwbnVObSI_Iw|0gzwXVxoJj1Qn-v$cnii;4Zz$<#2m6Mm{K;N;W#i5R>uw(F6LBcL3ajkwwvR<_J#XdSkI+zRoGd z`SL?NmpggGj*xS$iO7(mI;Zq=0JzjzxK%cneou0=8w`T?0NfE2`4@nHU}T@fVI@*` z)(DW(G+T#t0p7;zvW6u~gWD)mhjjtwBa}XitR>4j?S@lKQ0oHx6C-C@DM)r~x-p;* z>*7>WftWliOOqnTcrG0cFkUN14@M$%&Y|?!faIG=;982_gm4^W%VX%s=(T2;W0GMi z1$hLLzl4yNi>lVA2t4j1%P^3ejIYuZ9S_t0i_qB;s+La~3qv|)bP2#=gfbIYEisfn zB{G?)D2{kv#IfK(I*(gA4HL{Uw-eVWz&Eh%J6O8^@byrXIVRdhP!!-iMrKiCfgrUe zmM8B;m(#+X&-&s6p$epcO}0tnN6B1@)oZ* ztEX~_ehXIN>Iap@1hXt_Z8y!7XO~9+7IOw@4T@yr-KLpu-G;lRF3WG-?ZRwEN7I=m zvZpA665~#Vi0_D1a&>sg0Q4%(Pagbn{SX z34s~w?|K64(Vhp_b8TZqD?2xaz`O=hny(3J{tMuSRGnO#PjX(WN+IhS$0wh{Ov7qMCJVdJTL2$OhuvTk<Sn6`+g?G@Q9%22I`3})-jr>}WTgp?-}hz^pb=-3s#>_tZnZ8y!bQo~6&=j&5*PF0 zLDtzwGUucs9xg1xnN3%BUe($Rl$xBl%MnVNO@wCjSICEY*2%K(>#(l6g)5ZQensWEqzvAF{{F76uEviPPMKIS{Bb1F4R7Or5td}t$VJG>bqD95`qe;bC zE;gBVk}vaJOEVrN=?sM#u}&5U-6iZSjWs%B5T;T3d~X6=3cQ%+#JiGL=Fp(I9%-7{ z#5y%fvIQFb%s=yOH@{7`Cg6JKY6b6(8uI7>9MS4ePlLf3;>&H;S~seAi3UBjUZQBCBcI|wZ(Wx*Ey#YfK(v{? znQe|kN#m%_EAb!O*UCCt-G8{+P4wNs7N&+Vd*~Txko%1m)l-L6&5G*kCj`O>QBhZo zatTr=KS?@VMS_N%8gReY;8Ql$rgL7_*v!LRMKgcau)18wM zu|@p;nR3a?JIq~?S_$wAxmVcBi?~yen4;>9oR4~nyEaq>7N{jHuw9&Q_Er`y?pyXN zl2d8*tY&9Jd`Vwkd0FN{`HBqq&}-%|f*k_beOR3oqb6)D^VWCfwN-m%yX;;`t1E=- zsQ{22sb>dG>gbu3*YVbLN~A_(j*)d4xF7#|8J353uWt!xP)Ty3(r7Fo9;nNx+&xrA zqkLXABo|?uc}IJDe&Eq-vBh-e+)%HD z%H`PdX~Na;Px%{ZLF)MMrQ<#?aG+lA4B-oK8X6igHaRRXGY$_BWp8y76crE= z5;;CWT4QMv5)-Vqyso*vpR2K%rK^&krlqmA!pzUP!^p$U(2JO$xWmVKh>yh1(Q$!@ zqOP=ehK+uVlTcS&YIS>egNijZH3|v}c!Y~lSzbjIZ*_c%kw;EaX=!OHE-)}OHy$A) zO;uV|U1Dx|fKpOY93LS!JUB|Sq%Co3&{e0(S?E^~f`W@ct%ZF75xk;&54r?a?^oTH$tvY)H6iI$za z#>uO;ykc~Du)DvTr>-(GGE`JlNKaEmOiw*MJzr>UPgh(bCMN>}1SlvdDlRc@d4GeD zmlYQoSz>2kX>TKP3vB=Z00DGTPE!Ct=GbNc000SaNLh0L01FWS01FWTe`H^g000Tn zNklX4S#XgYy*+GdB2(eLb|}NuesqLjY9)QosN}J z)2GgVFfZ@t68Ix!Fu)~-W0>8B2tf>nyk`ZUBj?6k+<)gbn*9l2+%lJh9r(iTr0E9I z$J|}KhdJ&&2mnrFIK(_086k<`Ny$%$Sx3;VTH#QB!!2UF?R$ua66rb_3C?a&UPAzy zZP=_2<2I3zJl!yv^TdeJ+|mSakFR?Zsu+PfZFYnqLN@Aq#qlfyctjE0h<%J6!i^0P zhDh2}V6q%FIdV7pkbeNyp_I!WOp;USz-No2E&}+yB6tgl>R;jZz4$(!=;oPP{19Td zd0QJ`EeS|&$5RFw6H|NP-)8RQ+Zi7Nh*AXSV%wlexQm(8R5NzTC$&J{Dkn$5FgFRP zBo9{h_m6jZz&#bgtB_!7%6%~1X9Z%3y;HBqVjJKDZjwI3Ai!jCNqWc^##@c&nncuNL;i_G7y5pB!kvpi90`%kU!Uh^fTTEF;K zSO>T%yQgqUax(?^EqXaXg8=sRZ{%FrDnNHCWZtmFO4(nM^*yQw-Ef;O-?SS!HG=za zPk>|!{vD)bae}EMWzH3TpFWk9lkuY1aC@RW6`Qbjyc2OM1$SkBTd;K|bSJAv`r{t3 zEVO4H^lXjNu+8h%^6Zk)ul>`kn#zNjFC=g_ZJI>pY=rm+KZPTb@-dh7S$-({qq?yV zj89}x>wgO%wtooVR|W7iamf*P(})>A$!A%X_0uCVBDw2Si>*-rM?s05e30K&?&Q2l zJ9hdvmv^|ZoEEWN2P*}SfXrCZ-7kJg!E`F$o3HFC0X3N8{2Ii+k8g<+8LX-FBWi1^ z^1i^P!#q2yQC9&hCFlT)=|?+f3f`TBxNr%c?TM@5ei2;Fe>#betGt0>;}Yjw&4K&m zYc)1Px9Jo-C45}sn)OyO{pk$17=EjtOjLd{e1@j8V1u+tl)^BxFq$1nNt44##SEJ) z?E>o=uHD2u8hUt=mSWAzK+tk$vnQG82)X9=p&B`~QJ!W(!q@F(X=aTV80zd{2C~AQ zeP@L{ZNrK6@h~ge_W+F{`$*rTL>;4LPt_>SdHs&_y9v&FI(r|UuC1pj702q%W)~Kk z3K+g$blLZ$nhaOYAYnB%lJ6iJ%O?Txb2NhNWpiYfV-sIAnFewEanU|JrPT?!2YmP! zSQD}WJgoI<`w>T)7Wr zFp@~+ah{sGh}3?fl`4@d)@*R{IYuaf#*|k$9LEmF(~R`xOXq0CDPS>i^?Dt)M%Iq# z$P-8Yn|2x#pa@HkB{>bc&8AOl)mJpP;TBf*=Z8CF6mrNv8xp2}7 zeBR9IlL1`>Sgr+}#^~f?x3$f=>lZv!uZ+)GqQTTSxK`>F)b>&Es%kJk#;w;ao81bT zs=;GmNW5OzEIJYBD#N=tXx0nNt<(hOOPhLywb~n~Xn=S1JH{|K#4}pp8#YK;r{h`a zlz1u)D4pR-s(xoB^pa{P1AM^fr!n`s2Jk68Pc&HxYNHFFNY5iOs#O_Xj{t1YGq*=? zsEn>s$Xu-FNgRz->EypdlUp~9NrB@%mEaPnwQ+h1PD0*M7h8YT_n7Y53_nx{9;+`H zeV{Jg1GsI|ZEvE{)fnKa-BXIur#w*BZ$Cr9&8nhn1fOt)9Mnvq#bg;o&Jrk16}S{& zxG{9F>j*irIY_jiB30n;>j7qe)SI3aEpv#*L)DtPI#g4$JSb zIs`DgV6Wg_6Y;ZyMD-@Ppza)z{b}&rGKa|I;p7rFSMjD@p51N?dRabd5yOiAGlSG3 zF2LCiVcjLz*nSq1w-n(0_+z!%UJQ(@4~jb{gIYJv!?l!SE4--|jBR})hzZ5cbC`Uk z0_VwD*{V;-$&hnV`=&6+LmpnH@FKHm7zLJ5v2vOB%0o`Vp<~AR3DP{H6KQNrSqCM;C zFU+F2I3d0=%J~O2w$EXr)`yt@=d-k!*|S=iGM-^5mP_2Ep#UPva)8e+qQFWEX7)_o zjCl;pzn{3XO0&K~gl%3Ha0!#lEc&(_3FBm1vNifwUbO$DfhGmW-}4f|%p&&40TGLq zYz1xc>{GPAmX?J$e+Kt4bN>MxJD9g};>Z;Mr6IgH?gY@ZNP08r!!}pS&AdmtzCg}* zhX8a6?X5FTI$_9A@!h0Rjy6B-q3+!un=WC8uLe!UV!w$2MpwnR*7~qTiYPpPL~Q)B zQOeg38ic%!9agtgd`&Cf##M-W?gHuQrM*6Fn2PHM^+MikC7fDk^Lp8{hiLqCnRFqB z{p{OiE@86!F_Azx3@64~Q`L9c+wnV*J^{6$7x9eIg z4mr)<562K%vS@Tlc$D?M5o_9p*~I2XWWMT=8=G%H`%q<(2G$Q# pwEe#T9rX^cU;XOczN+dZ{{xuoLccYSSxW!_002ovPDHLkV1fm^Km-5) diff --git a/media/items/new/generic-dagger.png b/media/items/new/generic-dagger.png deleted file mode 100644 index dadc4c1dcd128375b39e172cbd21997dd8e2b6e7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2876 zcmV-C3&Zq@P)Px&08mU+MMrQBysey8K`ROb2Ew$Z!Ly_F@ah6dMmj1T0!v6WCK?tE3S3!QFDfh+5E4#G zOtGSpzObJ)QbXO<%JlE)TSqa;y{`B3?gC0j4F(2GNJ=p+E&)$W4+;zt3JD}1AsQ1D zIW;$whj}U@A+Dg1JvA|^oQ*CfCFkJS^6loou%MlddR|I25)2N+x2Wmj+VSh;%)qkG z#J62ZGvL?F+tSC@%fQ&q!UhEgR6r^|E+0TI9|jB#OgSb~{U8m*s?WMN{Skb+Z5LnR<0G%zwpJ~s+0Vwgsa!`g)XKi(+|$#@yw=RY&ce0x?&t$GG`Fai@9E;~=HKJo z(zmOfU`#gB$h(bvY1z-jnu>UpgmTNju`X6fLNOpQBN!nT5CsPcE+G~k6Al4ONCHGc zB^eSa920?cYNVEkL_0TgXI%s#B4SujkAijt9UcW17dI#y0A*l&dV5JXC4hc^77q|b zJU1E;3{FHpNINnEDJdi!97se)PfSi$IST{2@SWZVuI3;{= zW@lt&0zN!&Wm|@NZf;^(e{yI7LO%l`A%k~p0%~P5EGcJPR4pbWU{y|9P)JWkK#F~F zUsX*R5)zSwc$J8Hd3Sh`gm+X*L?0R)BODt*JU%TbDtdT%F)1cYLOv=bCv0hIshf*J zK0rY@HKdk@D_Bb0(#MN>W|)U`k$-L6)5ycNrn07(=it|xh<4-K(YLLj!L_KAgK@jB zqR_;*`19^EN;@`4In$!yEdT%j0d!JMQvg8b*k%9#010qNS#tmY3lRVS3lRZ-WM7d0 z00+29L_t(&-tF6WSQAMU0Pq-m$tEO#Ac7Q8KtROPLy@AOBK9sSpkkwlf})^c@7=Ta z^X$E!_3XWzz4zYh_1j+_wk4OW6HkwW)c;OkHI#&MAoQSbXtdw zCBP6aMXDL1k@YZF_fR(}<(7TrX8OIThhEkhX~i1Yz`E@_nznw^+Mr@;6vZ9_uonmB zW6GVi>KsXm%FGfpLqq{E-$(;^&8ueJbsN`YL_4a~#&Hjz24gZ1bk|bP=Jaz^Qz9K8 zk}c^5x*I_hO(hKaCO{XaBziA$r<-7&^~X<%4c4l8v)C2Jd*~^^pq^6Asobc)TTSwq z`j0-=Q!SW5*=)@x0Cj4MnAWN6n6Z^ddQ{OD=c8(Ct>L#=>&DdV3-CNzcyQUuF{8aj zO(Z|#NntrR0hC}z_6DexDUc&Z7stX*9Hn5c2k6L*ybthrs5r`*M&xA43a0^dU}gf; z93nimeiI5QY}=y@mlGiHf$-!?zZj8o^R^G40kih8Gf|1^CB7ZAjL5NC>C2PZjhP7$ zeqJP7>T$ApKB+Qfct+bc9J~$*kMwMXlitk>hA0%5Bv#wDG{8CGiP~5ra*A;pJi=(( z4glqKk(`LHrFS!vG+&3!a#jFknozm4W9=}q3QqEq?^uh8841c4VzHd!jgt$tCKV=n zCkwM8z+16kF06u+!KS1-LkVuO$pC<1Vkrr(hmli*jhB-DYYjlCT=Eq_U9prjZi{9lViy3$vOa6+39C+j_|Bq*Bs! z6sZG4fBMywYXbDRE0&UxI60oyXXbdxG|{2JP)f#OyQ z3*=R^DZ<6f?q*PCPH%tFZ8gHX$4Ir#=15we5_HN#5D@N(3XkvbYxP8sRl z9UT$GQWA`jO$s41pUY~5`lC|PPk7L%dhaC-J9a3l)lV%a`=C?Nug{l~ zKuC+b3f% zK!643by&pVs7n2l|l~OSX_0 z6J|@u`JU9Qe#*iN8Fa8*#Tmz(Kk!>aGI_?*t4kLEKNFK{_?MneiWA%YYKo+olig1IKPy6C8G2tqTj2?`R+B!>H`(B!j(r!YdYsw6^VR@vichamxsD9 zi6fn-A~ep~@-Jes`5-I`W%d3{u1PC^(vLK~W#$>7w@|O%htUmmX@n9- z`h!ZE?=JO_f7_HF`vKzrC9dh8!g*aJlURN_g!*ddFwGZ4^z;12IbFw)JOE%HrqPt7 zpd#5lHH9IGPSp0DH7H7cLrjAUguCYxI))#C9m^vT`Uwebfzn{l-AXvlj68_e(m|ss z3~kt;_AZuRbLcN6spuY*AX$F2C?#nqYPQWdw-+9V(OP086-^XRZStcJfNhvY^FgS8 z-uYBsbV8(qM)TpQd~%!V#2V25NN7TYd=wRH`)VXo6BbXbGAAP#-0jobne1%Oe_4iz`kH%+H-p^Iw=0C{-5w%mpyVBk!U2)hg?5F|4aUi-X4FwSI0GCo zv@6DFnf8go?_)9PLnYnw+Z9Q(-8P}!vgIK%ZiE4r(#d0z3$i$VP1}}Qw0McXPPm9H z!F-fqXe|#)-(THoU%yobjt?0V+s4O+I7(Z*cMZV4*Cyx7iHIa;AD--OoT-EekL)5h z6_CklXkrhWoS0%YfPM0O=kYo|s$s}6KZB`-C%*Jo! z2^$;J?c=JjmbnGf3^qSXg~Dp)W?r$uNgr#HI{-FFN2#$s$sbJi8c(c^&r)lWico-Q z1p_RCiB<5Qh{Nf;5gI18S{v(<{5ZQ}?}&}nNq#*qU}jfaYm@xDa`Cc+Tu}rhYI2gN zUC!IJTUR<40m(Nx$rmqlJw0vjhRs{zlZ%8DzNA+q-_Px#jZjQfMMrQ{Gfkgm5JUFpx0J&*CcXxN6ot#)R9cP~c|L>Q0 zczDc(U-qjBxM@DZ!NK;w3Ei}wFDxm4LnD4eBYi_7WH}+sgkIdTn@C1Mz`($Hd3hi+ z0Nk>ip`V^cYyy31+UNiP00DGTPE!Ct=GbNc009k2L_t(o!|m6}Zo)tiMNtwUjG4$h zl6g-4|MPOM)D^W%K-s#;+1RxEy+z5kOsDg2r5-kMia1}V0s~tOJ8(UFftw;Q!3_r3 z!#2FWa+obIxPu!F7`!MfiuFS*9cIf5?lCCb+{dKix@!*d1Pg;~dBFod5JPg~C*I(B z6nf1)`xb6mrRsb9np4IbbOU5t^Tz?vKBJ}j2iLo+x>x00pc z78`|SG0Z18Ov5oWSu(;UvJ?z4gD*)-VwiEXAOfR?ECsUU3sF+@#oPx*i%CR5RCwC$Ti;I|MHJqd-Mv&>qhKj;p(agCjMf4Mqt!&?Ut!`K(YEs7kF*cQ z7aujICYtogU}K<>nD|fl2N<=FdN`R3a}Zt7t#prfnk(m$NuW`#EG!hp`t&Cfj0HS2?pfaqZ_AWB4|{t!}2(AuS@5Parv$J zo5~~LQAPk;nk{PCw=u41GNnQvxGIemT~MpzxT2-nSb;l~=YU5-2Xu6Gy3H15%O=>` zmruV+NKg_9E*o30|61B#zVs!XcVzj&p$muxhtj@Yr|Vk)-tk|r5tIRxn>Y8y37!M? zJ3&3x!nfJN?EAH_@$u{qOQwr;ofhO)urOG<{tqE4qG;g40yshgX?9<>^a$APg6{6F zhCW_}WnX-40IV#}bE_&Vl^xD2hj?GVOZS`GY5&JBKhwgJ^|b$K_#z=qKauwDocj=n zIFk0y51d5G5HTXs^+tGXd3Hg01ndU^RVXyJBeQv(IY7()zI~55!9gf0f>ezR7{pjv z!QG*S0!fA7wull**e2FvW11&n{opxZ7aee{hvK-)DYuO{{z}96Z89b21VZ-OLS%t0 z0VzOt=T_Q3o)G(=AAB2#sil3}GsU#OtDa2z&%XMR*5QaFlC>(L3C(}~>NU(yKj>Cz zPI&}0;sBddaNMuM!frbyx8HgICQv#?G&xL`0gYFq!>9-$2M9v=ypv?Y3yPo*FmWAR zp{?~Cup(LU-**8NA|A^eu(Gg(`Dk3aK91)oj{wO5)(T%MM3KnL+2zzOdALc8xK7G^A%u!0j}WQ8VMSA=Xb2W^-AFo89vnwyxS z9Y@yJ(M@sKhP0EFrHZip>guXMRBLPNjtkhR2f!9U0GBFSS|~bLWPJwL8=PORkTMKm zX!dok8IE559#E(2-+JRsm|lAXq#F~4A<}Znw-1Gph@-5aj0wa}8YkJFeVr|Dkmu`Q zuX+K#iusM@8K6g?19S#qdTxyCxeo)$0WN22<)Z-WCW!jT$5F7$s!C#74XGDFX zhOvu6sUwW64I1d3SVtZKo5?(DZ9Vc`Ute#Z@R=V*uZVGZxr_=8nRMvF$0F{pudmBW z5=_IR{WU(`@VN5XV6GmpkshL^28*)A z3|O3ZS}D1cG2%TdvaDukWG=vc$n}4I{f}&t*_`7zN2h$Xnjf66Q7V@YbD=!0a=O5C zz%H$|o4)Z;@VS${r-YyykXFI38M=X2HAzvpLU?JfZ)z{fj_U4qRA&%P_h{5~SY z^C$nD6wxI^7{-<9Isa~OPaLpihqA=qNEXd0D(+jftkJP{H?U2?%5nBZ3CMzxmbom~ z3c2pEkrp=870gZHeHI`*2kiBR_9EUT;?9%(QYVa!ToH=!>Tkab%XS_wB0HqLfA8!W z;k!AK4<;uk1)_r7`Gwgz|D9k{IUwJ{T%2do&)@oHKFx2DBPDeM*9W-Lr&UACs*Hnd zQx%-&fc;Kzw2O2C$LSaPPKkQJ%D=1FX)RcrIb&jCVn?Jc&dfFSe;Pao>>EPh0B0J1 zlfynAWK~)0e3l$E4%p89KO5jV;6YD#uO=vL$BHjQLM|_FwvT%RG@ApqPRMUwPx%`cO<%MMrQ90s@4QnZ?i2hLf9!m7P^+ZHJVc z00011X>Ny;oIpT8hm@NpCMFdX6@Pz!5D*YqSy{%=(}9ncP*6~Uke6!et?XVTW)i9g^Xcxd4-ah4Gj&Eo~6Xj z(Oz(Me~pxhmY#cwkadKM1qKEP2?}Ixbhg38TyJz)Y;js`a(#=EU~zXxPErpL5f&L5 zQCVGff{8IUIUpb)H$6Z#Iz0vl2foS8jhdpBqN&5p&}4OcR%mT=f{9XOX-!pH0|NvS z6&48#3m+mRb%2L(aByvRel0RJd4-J`85t-nE<{UD1O){hAtJoT%e~0UrLnfHxxRjk zlfcW)xx>d=Y;k;wkz;jwd54d2euX0@DS?iaLPM_RgC;60 zdxwq+3k-gXl3;3YW@ct3F@1@VY)oaB`0ofZh(!HD=#t)4i7FeHJhlep{=vJ#mSZJxNU`Ffv?jb5dGgDl|7#TwzpZYg1cba)F3CM@kzWAUi=tX>@u+Lqjk$ zH*R=;V{LOJCn-QiN-s4x7aJXgk(yUmS12ebKR-WPWNKPtX+1!D0qa6QDbOLUSl;tLt$ZIMpaoG8yiSZQ&U`F9v&W7 zUt}mTGc+_bc!P^9EG%|~iwg}6Atxz9P*f^2HF|n_NLgKce0*?wf?Hc#XL5H53JP^~ zbto$?U1n>(l67DJ0004WQchCl!bCY389Q63jwl_WJyMn$=KwalQCc$6Axp+V89r# z3Fn;SIos#6&pBPrIp=&=bvr`rzV-LEL-SZx5q?8T`esm;87*@J6cxb|#c{9j;&6y=*vTlKdqh1h!IFy^g z+VD^Omnq16%f>i>_lY(r{acbjrKCg@jdUzefgv56UmxCHv|#^52HxC}s02^Dh8Y%kOxHHw9m+eHXmS_0JW1WSeb#7)z^0oaNd4f>>|DoH*$z#QrhriN)|OH>cpRq z03?W34pF@||3^ff_@xnnl!+R|C{7(2nljNXOrlZ>0&!%B3UG!=6pt@d)80rBCI4m+ zb>d>MiX((c$(&^n#Ut8+GD1W*`w(^F$q|HDWXqZRr@O2hb zlsk_LDS$P;>IuGmthb|{W)t5ULaxo0`h@Z_#vsuwtg+eV#_+RBgN|rKaxY&inKmk^ zrADB1x^Y#~ExY&%Ubw+c6gLyjy#%atr2%c##cXZRNeMOb9qHqFLF$2&sHf>144udIn^@j9Wd?TGx^MVr_IFR(l z9Ggp~FpW7r)pf%jzU!_?Q1Sw9NaP2~^={16d5k$(i`+MiOXH8VMfRd7{FLwE#di0Q zwjy7Xk}TbITMoyfbbkMl-zbOUHvZJ&^+VeBhIu>2SpA%AS^RW#sazt8pJj8>nh2!G z1JgcMAEi=?O7*xt&dT*i7(yur-7j!+kcVm|lhPQpirPC<$lL9C*>(eeb$P%)Ch=0O zWYRbwN^ns~>n`uh&vHChR4_wua4UCaHQs~TYKmPKOZWR+ts-2teU7pZRq%8XlkPLB zEqzkvzHgQ0#P5Bu^ zNtOFLFDT7b!}#{Dwu8=*zEQ95)77 z`H$%LEAp!$M(!Z6-yCK!5F+#}X=YoE=?9RzMQtJ^$A zbS^-z&WGj9fXX%JLutMQ2$Yt29kpOH!-)voW(u>~Ggjh@o|MKu?cJb($E`k~q62O* zg?YWlP*darRIT_t`X4NBvKE6JQ<(93hZLmEYmR3U3UMvm0aktfrPMop+S8=vdbICx zGAk7kGmbmX>b-g0Pm@qH{?!{Z(z1e;{NhbudTf(kmA-kEZWs^y9uUUj&wSHDn9pt{ z5Yg{gtksfg;{e{YFnVoph`G$}4t`Y;bQ%6h*^jAe@9|7Rs&W$=eWQh#@Z5M;n+iaw ztft>lvog1BR-l%00oTV`yYm=_z&` zeEyka&%QoO+3n9i_q3vD`#jBqO108>EM3@^u~kcz+u7rrbLjx?7b8D-?YjpglyF^L zv(EWb>8s?aFaEJZ$_J{ha?)J|nF9pF#*T`-p445XtZU$_MRnx zo=6;0<{alPFJ6eDIjEp6A2Q;zUgededvBgARh_~#ZvO{P^DP(T z*Y^Q*aIBMd1N7mzxvoVmlSl>NCVn&8MQloAR@Z(08-Z|Xoc!o~ttyJQ%5Tcs*B=vE)~iIC{5l|YQVtO%)`@Re^8L3Dt!_w@^N+)QbVNZv_M=_7 zQAO4e$;^u1CphFxPuAY8-xnEA7?Wz}OHYT9Fo(X)Y8_Xz7xGl2i1Hbb^l8;A-If5G zv+kllN2pLc0EtK`CUCg^mu9OYr6-7>Hd|%8xJg~J)fu@mr>Z>R^v|I zaLZ{LWDZrk))ja59iago85>-~rjpINR@RbP|gj8{givxl6$t6*3H>;95BC v%8@9qsS}nAYhQj;xRdYeChd1c{_o|#=P61uHR%ks00000NkvXXu0mjfTc;|u diff --git a/media/items/new/generic-leggings.png b/media/items/new/generic-leggings.png deleted file mode 100644 index 845fa016a14db630780334f2a19fac5bf5bf60aa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3206 zcmV;140-d3P)Px%?odorMMrQD zkeF(8dmtbnfQ^+fFfa!Q2v=%vJwrwW1qBHT3NSP`XmWWA3=LIiZfbggLrP9cN=gk4 z4H_LD1qKFka&p7Y(UPC0jhdocZF603bb5)9IX^;yj+J(Sh%z=g9w8$lB_|UU76SwX zae;`w%FUXltxi^3N>WxzQC3M%RECqBUteE5LPZ%H9e9I^W^i^bEiFGqNLF8D5fT$z zWovzjkO~V6SYc*0Iz1~dF%J+CaC?FS0|a`7jU^~5Eip8Ii<1Th2PiBrDJdyxYHEy` zpsl&SmZGVDj+Kd)p25t|pRBUF#mQ`Zf_aCIP*_}pke6|QhjW67P*+@0Szbj;P;P#O zYju2GW^7quW@Kb!Wp8v^ZE{9UP*Pf6H8nLG8ygiC7dbvcb%cu@9UV74Kv!2+4i6A> zeuZv%e;gkn78n{~Yj6Pq0v{tJEHE=DD=r=$9wR0wVPRoiU0uS>(YV9MvAn^ty~2u@ zpQW+3w7d4FVfdtPvMOjB5Th>w1Zlt@ogVRLwUijiPxZ$U^)eTtDrO;SWlPe4aX zQ(Is;IXQHHh9@d4Qc_Y44h~{;dR=B~7#J8@V`yVzV^dsUaeRYCMMWbcBU@x?WNvd! zO-*BMav&om6&DzHf{7+6EH5uFc6N3)Ha2^QjzdF3k)5TRsIIob#h$9Ls<*t0n4hP! zxR0EqskOV5pr^3Az@eL; z{I7r|7B&Qt%y-ZH(|A8NGPEishpR5M?sllt>tnT2hOyB#a{sbY~1&bn<~4&^2# zMoOeh=v`ZLy>zL1+4yydcz(*NR3fE5MAol(N}o$u^ba|REnDcmSxrg+8rnym1f|Uv z0So2P%}Yl>ZaEn>tqR;oW)f_m4*QIT zWH^l&v!hhCB{!iB1?3bS=+l~w>`z9#_9@vOQjPD0G&BzKT2Y6k?#hUoktrjF+XK=8 zW+8WJ0<@+*Mi}<#Mz*(WByC@foLqpu)MszeE!2>9jntv>MX1S5gaOx+4ln6@gH7z1 zf5>V?Omz?xA((DhNxW9xVM1NP?qx*Had z$TxZnV{Vc8R?3(S+EK{7AJ);N!s?(~o{N5FRrRQl36M6ESZxBK%msebZk-7)m$GVR%TyOeakrC-LB0{yvfJt&nh0zF2f11=riO z=@VPG3o_Vgmn#>?><>v?WLIeHL9LQh0a~dhW{NiGgHR`-6rEWOFyw92@a_;Wdq5kU znH%V-e-3K9oDeX3!CKTB<+@GG0XxsU2%{z7{T;3hE3v(Es``n4+9*-WbI|}8K0SpSj|=X3MD`j z%z{?IBm631IfB_wKZL}=d+`Y7|KTJD*%aD-E?&;GI-|q^B^|L8|AS>5=0;TLBhG)( zSc+Q(lPj~b8u&+Shge5nzYc(f2s;b7OgF2BM9cXfzm7Z@6m>=PurS=pmT|9#3kW;! z;xgC6y$EJczmA8Y0>S*4%ghsQIQnnh{5ssQ2EnZ6GJ&13RkR<*p;F(?0_L5zm>b1R z(%~zG&zyr8_eXwaQ`Fq@6AM5`L;%e)F)I-5GluXgT!1OI{B|R3z+6muVWa2@OvF53 z@}Uc&dY&e;T3E_s?za^a+)%HoT|_xSs^eAi0M&@xbcZP>^hcaqq;v2fk2xLThn-Ea zZxEurx&prBF+a2wv-2>uysDn%omg0zAgsVTm~z?sxGROBVUZWXb>7xB6Q&#{QV;9H zGKXnbw<0m;>@3XOuH~G}HbHhDgo>jk=AD>wxCzv9N|Tbo2<9pivj8)k{#7jl?GS*a;hG2O)Mgjr8svAGz$@wW0llG%;J zOkhl*onM=nw_@g&_ch52-U$d5?_TkfK#Y>jy% zhRK`TM$j1JLvOg?J~UJ0Lto5b7H>H+%A+&g zXdlwf<>BM)aeiKrrp0DX($;e(Zhtxs-tJ&|C4qCa=jP9Rr_)&$v{$%sXjGZgxz9oK z=VD%MQXXDKMl4}w5)}_9))*gFc99Owma4jrQ=1Uxb>W%gsD@aNHQr9;Aji`V&PA$P z!Mm){ZmC0yFO{iyQ&rP(b%L~;b!bO#svqMq&xB>RV;Y>dtLo{X8Y~QRqElx|l@KTT z0uXxCEi@Hmd3yVqyo<02sRq-L$Gh;;_FG6Di=2LD;7;NL&i%tb^$wHhCF8J2u2Lo9 z_RcG{xec5h?q(loL&~05y~84U=DirnmGLC1;cCr?dYaCH%fj4YIm(!qvx)hdd$zxy zp0h&faM0DH$k=!qR=j%qnPCI;IAe@XkEu2d{Z+6kds9)4w>WWEzf{hMmAZmj;LSeTI=FK2K16%b<|Y zv>vp46L&k!(k`efkAs|yARAlm%rteFMpD9R5IhQ9;4?u-m05_f&zeGwFNcW zOXKrfSb7|Bh`(JCNBr0{=Uj^yV;qu%Z}tv`ys=4k9_l41%5|7TKWK#s+v}zw)$5em4vt%_!*QnulS4+nqBy{ z*4Y5K$G=Shps3%`&n*{RQuh<}zd`8220%GikZwH!c&5)OUTx>)ubX~REm_&5V9Jc@ z^z`Z(lMf849Kd-eO`)6giygZT*Fk9VDy s6X;*$77p3+Y`Px%`cO<%MMrQ<6%`eKe}6zgK!}x{tBfke&(c+BZHJVc z00011X>NRok63GPg_4>G2?`(}AP^7`5fT%Jl$$CqF@KGeWp8zGaBvF@4Gs?wc7cdV zP*p=pPB1VqDJdxj2nY!Z3K<(63JVM&B_~8uRwgDU4Gj)iSy>$+BCCuogOHehijs+z zo&^R5866&ZhK&~*8+wS3ij)l`U}b@hl{q;% zS72oW0|XQo7;SxnCo3*bUu11xUQAkfyA|@z3Jw23?b*GItdWn#jk!ZHT#i6aUtGB$Apr^3Az?!D5rLnfa%FUmT zQ>3r8t+~F7n4g!CY>ktRjFga}k4!Z{Ln|{iCoM0WkX$J-Gbt@EJwr!7O;KEBYjc8$ zO;uT2WNK@5d@nRNI!8)cV`yx5eIp|yae;?fYHw3yXqS;|y~oS7zr?@E&9J+_j+Ba) zqN$saUXzk`kesAbTVRu*r!zc1jFXF=kXD_KSR5Z9RAgy6L`N$%HyzPcre});}eZP0kJ?GqW?tKh%Q*O#l`Tvrv zdBamy9{lEbG_oXl#Qy>;iNdUgh5H_>%nqQxqDt(JOcozBa%Go@WSn<# zVmL=6wz3mZZH*j?N2Wzb@L1bV8XAI!CGFy98Jq?%!+LBaL`2Uo=D3RDQCBYhIUi9& zZ4x7*V>yis_CvDO;8e&+AQ!Vl!Uv%z?PZDV1rV1ME^=70hRKdkgK@fJ=0V|ja=E#t*MO*j2j-7&BNb(G1Hwx(m^lt{6G^N zT=D$M>gq}y}RF=hSl6!h-A{mDBDIt;SZgX^zQ><>d3lVZAYHiD=VuP{@j-!|0h~M9|4S%n7P$(h*=4R zGShiLrRW40q;k>Om?%A17)pmSG*&;z!yrTQ9d06?zbvT!k&&X2FjGkk-%AsDL+q2E z3LwiUJ_V%kUmu`sX;$)heCV-Co;L^a4W-1f)z{j6djIz zoRSKZAR~2@m@hq5p+N?H6vj~Z83+^bxaJ`ube1$MghxsaTaX5UP`xE%J9RgM5S;)6 zDSJH*Phe>LRuS4LC>q5ZRzeng^$m9)ES4@iXE31*b1N*D6^$uG&WoS{5t_+AYaH)B z5;8WzARU)LA8K`hd4_rZUio$fUYLY`OC2phv$3LnK1f*cx+_4g(vhVQCo%5?(!R$*HZ6AmN+p-{o0c2k9WQG#ldK4# z&~N}Dm!uL;l(Z};G%xD_W=qU5rp!sOFkCio5`0POmZs18A6Nm|9!krEYB28)03MW> z51W@&OCc>r*5)y|4>uwJ=t6mk@r+z>l@%0856gUS2{ znu}%1Cy8{B#E~+~l1j&lEhZY0zKheVnCBM4iqV;keoHEy6Kpb3%A2iVN|Tv72WQ_q z(k-Y`?&It;8E7ifLI(rv=GPf3DxKqPGtsDeRn=UY4Nb5>Tv1yI)pRWr1{c|8qMD|j zA5-=VA1Nv0P?J>xsZy2HdI3?B4VueT`B{GpskXO6Qu!FW?ORW6?1w%-Cy#pwn&ry3 z^@3l&@E8jVWg{iRe!IvK;0-58hokpH2%6If*BMgzQjNuuF%jD8R;bcN=3RESP(;@) z6_5fnyc3p^XIc0cst6>nH5hpE~rP6+8>|2@SFf2 zVB}GULe`Z@y$lYd$6J+9lA6KZ5^ z-gyU0#tJ~XM%DgESG3?w+q`XyTj&7BT5ZTeGg^iE{mG#(>rPAUsj!zC-KwE}xPgYvUS&>FoW~t55b5%UnfS0N>TO@4u`Pg0yAkD?5HviM{0($J8~)Z!4D;i+#%a zAVlB3Td!JJHcC7Pz*1he@yJw!!s6(??#QpszU`y;ztkJEDFB!ItF>%h0aj-^cwdU0 zoF`%XmHqn7XP)`-lc&#@`!u`3>Wx`!-#KDT3jVVY4%!G4cJ<+(JpW6J4Q~QPWnid! z&5hqdtGXl3Dg*Il)9()V=+R@!$+a)!>48}D9cX0VJ|9X!@*Y^$Bt*?OT6*xZ>i*|f z|AsXULfU6@aMFD@)q2^?f=+awQ@8h!WXdZiTV7xL@=JL}CmMQN?O}+T z-)FZM!0P0Rq%c$+=Cw$~+oxdsi4#+vV-04M)!%9l1AE<~us_bNe}&iZaLdc9H@tLe z?TaU$eeIZm7a=j&YG=Z19`xdK0B!?8-oJXi;6ZuEjvK19+o1Ch#G0+p@@cc@45X3r26d-;;c1vOW^uQ(QF4L zwbVJ}ekWK8wjY<96w`u&&x1^7_+GraL7c zuAsYms@!@=ca?`A15EcyfIlg3Z_^^DwR6O<-HpU2kCk{Sox4e;s%tv_x!_ti8&+(W zI?36iG80Uz!@c%DQFVp>a=up0D%H?)IH>_S}g4^_gv2tBjJRkMWDa_X_k@!X4k3XNC5WZ~G v$a-7NdN)yJ>B)REvQ&E8nYk%9MJfLUs$nSP6-UjJ00000NkvXXu0mjfk^g?} diff --git a/media/items/new/generic-potion.png b/media/items/new/generic-potion.png deleted file mode 100644 index 53c29d0fe8582613d7ade1dd0b13128b85b1a17e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 308 zcmV-40n7f0P)m_uBm>Kh$KCM9x`ee7#Q5*;s5{tLsV#&Hx|@wNjgqQtGnl`y63sM z!w>)f00DGTPE!Ct=GbNc0068>L_t(o!{wLV4#FS|M$v8lO`X2~%i5Eaq#=U1yOwh^ zNc)`&(vgr-gR7GE;#@%RsqB(C7ZA7!4~6w#k|2VkunL4(k0>}5j40TIMPWUXzz)%3 z=pH8L0vc9@KpvuQiE}|dyh-2^Az*(d_OrnEt0ahkhN<8s%!Y#yT>$3>)T0Y%x>TU{ z^AMd2D2^_;3pGg&(-T!tO5Q?wku<|W1op96qx-e$NALj$3_fwgv6aaH0000Px&08mU+MMrQ<0BUAbKPdzQ0y(8mx~rO2K`H=jXIDZj z00013Kr2!{CsoEiEko zVqHmZJWFai07*qbFdq>O2mo1C02C7-7Y}G?Xc!U;3=0Xlsh3toEd^?0c6N3EIW_=4 zJOB<201*)x6AU024@P-EUP?3oZDWLoPU?PEAEINOC+bn^Q8LQ2-_-V@^3{ zQav;$8URB;01yuVAs?EGc|SitH8U#!H8WLJRi>AP08veFaBu(?6--4wKsz)oDJ1}E zXdjDOOJ_M$OfM`}NlsxlOk_77T~Z5YU=w3nc4JSYlY%`?Jw-`3IV&4AoJ^^ihp?cJ z03sn^Of~>SK>$5EVqsxTO-%q87oCoN04XLWZZ!ZN9U>kY0tp5vB_RME8*F4*s+)=$ z7ZjF>dtg{k78Me3XIwZ?Kq{A25PM)ldp|Q-Luyw;QB^V`T2B~YR!~?o4`p3XRWlTT zUK4*_L5D<6UN&x8Mi_NhK!`;?kw->uIz&o1KaNKtj#w^KMoDfvZ(K+|lt~YKU`Ka8 zp^<;6mxcpEJ}g}?B~C*eQYU(6Q!8jPTt_lxQ9DvbIW34nA6_n6MK1t4I21h|T2o36 zEEOPKEFobnR8B=HbvPMIBxqn(R7N(4eQ$niR{;zQXI@oCKsh8K9f^K%S5QcJZeoIW zYDGUd9~~JnEhsxSF$GVtaR2}S0d!JMQvg8b*k%9#010qNS#tmY3lRVS3lRZ-WM7d0 z012*1L_t(&-qo6AbQ@O|fUTM6X|6_=WspIVNr_@xmdp$>$Lz#*6W3wKZK#1JO_L_g zw%J0cX#?dhl$mkcE;BPTGc#}Z&5U4XH1h`JXwTk1KF3G)r~BUJ`_j^k2*CQZ|AAxx zmcG<;odBh!041sB=7HPCqM;yEr5FrQ#$Z7~aHf>o0dAH9GuiFXn_7h%5f4VL=~U{R z0j1@PAZRF*!g~fNq?jn#>qwbx*8}ZEOpH9`NR>Z3AsADbBe#@7eJZ#G08>Z=W~iMs zRHOi$4((!vIh`wMSe%mJfuvxDssTtr@bKg_a-lkPl9v=^m{-_`62J^ws7Wr!SPH!4 znG7E8E=ED}S3@!3&(^04P@rir7wZ6OC?znHy&2L;xf>vqv(wMAERJ>kW)ya~6uFGO zE1-0U5mo7neO?yvcZ71xSRzgj$_jG{!y^x#^-iAZ&M9*t6txUfU{QKdAp569!E(2xJq;Y{=u%;c#Z81Ofz|sX(rV`L!E%rl=G_ySmP(g&biR7j4*?M7{CF1Tv%P z=;rIpDiT=(Ja5LCV$xum%(@{X2{6tUt)|GRHrc`-leeYpvDeavFx z#llP0MB7C-Pj1|``$vnEWcin5$IVtcgaaxr8JID|-IHaL3-<-KUaJg#j}**yI!fcW zqkrC740{u~yllBf5xi)H6im7NL$xiHzQ&x*0S~Qv#_WV=Rk${r3ix26aUn$EZkb}U z%k@U{Krvv`fq{_9~ZZiSK#@4M# z&Vc7{CU9+6sTh}5a%`l@%fV*IoFs8o!CIM;@(~B?INNR{a%~?|2ER!&MN^eD+(ZZ* zr@}<8?W<pgeA_W@-vrK=`EL!N{wF3$W)4$S97j`+^c9XZU{ z?Q6fH46Z5HM|QQ#w+VT0V_O1oq-k>3(ZQ34?XgN{?dKK2-vhT!a(1gMh}FZG5Tbcv zThru*qk}i{RflxI_Gu;VvR?s&^paQ0DieUcBjGSdd^$oDM7sE~U$R^Y{0z4Y&_`zS z3qjJx-2yN+xJpD!zlkelWiv|q`wuCBf5WdKyhvvsM?-;>9FeLMLRhU(T7!J(iGos21OA|J$w}9iHR$lgFor!Zi`v;{O4~uLiPgQ3`}Xaryn7k=6y2o#F%7*S0W=L%H<0wWAQ=Lzl$EU^}*{jT;g6?*3O!f zUfj5tj19TQjj+^}BrF$j&PTx8zO2Ee z?k~-hx099)iA~u6&>j!>4r4KSxa1IQdfVHyxVRPB)Fv+pA64iE*Yg>tU$Z;?_i4Z_ol4N!1RJgbKGxdg8(y; z&ps?U>51LuxfS5>lO5?NKcu5`L8&)cCXRvm*NP`#n*8wL`^W2kO-FLQ#G5Q_gGnxj zNllOa(&N?Ex}Qfh6MK_oWEIRNwZ$U6*s@>xR5cgIU!|ko6pxg1CZ_+=*N+r|`}Jx* zan=2qBa6JrGCXGT*<&2sg4DThua1-mb#Gw(;@)JL95enbO(HV@wW{UDBQdVk`a1ud zXs>X^796flB)2;ofKs&=B5?%_Phw^}a9hP-@(7h`3L^hI?m# zJ(ftgnn{w28*r6JYUl?K#}r6y zQyb1K&>CFnEipdlp18XE&(hHWsPKMxVYc9-3SesLxmb;F-FF`1-BA%F7dAvSfWi}3 zYSaNQyd2^F;k66#dOSnPsHrlp^AP%}x|e#R1DOSt2IxfcK?T)PicKjU&eq{x>MyV` z?+X$&?nZGUg|f@1%DRPxAi&9gy#7~7*S(Mey?$;Jh**DaWoPTOBfbJ{7KWN>7fA9T z)Z(q254h?01oesdlYo-63nos{D!zEUz921S(rPx%`cO<%MMrQGB`OX zE-+ctVRCpdIX-81es+b8C^0o#W^8vJe2NvNM)S+pOfnQ>Y2CHahy$Mv2JGemb^5dN*4hT~N@l$Cy1uK%V z1+D~muM19%$O%*gnthu@4e6ZHUL;5RrpZLJQ6tolPQ;YNF>*+#2oxXY8ojgW?W;Q$ zUYW70$>B@uX}_Vtn7C4Qs@d!)YHFTQIeT88frYU_L6VHIzwcl z>$SOK<`)KC4pLcRli3$EzZ`}dM-IiABgPREi>^J_CrD>MDDn|h{N>($co#>qw@o50 z*fn2^D;zaz+m1JVW)ecn0lsb!2~bYlio>{b#!OG%z}ee&H2u(JD0>ll%&1TRd%mb~ z^ukeUUhJsK9douCUom98^fExa3-Cl55$V`IOHG_v`Q0Li*$)%e%h!wu{Wic!N#q-< z%qg5T_f@}ulF*3;nBM~EE9K6ZScTYU+xD$y{|z$-0bKNrJSY0~?RjqE>vLS@P8ohw zxG$mDu|x3Z%;w$AO1j35X>u_OoU(H&|I`Y7#0T@PtkN}C3FWBftt=j*7^lsmWj=Za zF_yTJFC3_de9gh!twc+<<+XkAL0g_JS^QZm)O+Si8H-gG%8|S>nh8t~IdbUBj&NtA z+?bVjObgXQePu3Qmjt=HSynl_!a+$z!3M1u8BghNA64&r(#P)r+-KKVd%EyfIx3`C z##Zj6?#0OVNVtk~Bl!KpkFPm<=BCW_P|BfSumd_2%JWGI%#jw!z&E}}6&aWlL0CO| z={DT>P!yfznMfQ;YJ>#lei=eOTqM=Inb&qxiTw%iA~iM}5X!2~_JHCqC9nbt(4RPE z(d*I@si29pohGLP)+1IR)NVSsR1L-78p&V=Lxhc#pJp*-M{TD?a!`b~4jtedh?`*L z_gYj?{I&jcrsCNJ;{H6df>Om^Snc&punwRAadkXz&G2MiqBDtS@y8Zz6VvCaL+{tY z;Y_a*TMLkf%;R~UFHTZ&*Ma>roywFwYpx(GGxqxqykI>Xs7mIT(YjCy-y80; zqnU_Mrb%G(dllz0;`uVbHwn^JDIn*)szav!4Pc$`E=o*W!Kz|pp^Uu62L$oYnj;jw zffc&!S&vuPlfIDe0kk2mlpuLiriw{fpZMq%NIv11Aq4Y^ON-2ZV5E;a1F#C2YeZ&A zJ?Cap>X2N4%tb<>oi$pE%=_HXsUrd+aH(w(nfyEQ_QIj;M%coVX}*Sgu0Gp!XO7Q} zojCw<5Xv@5%xbwTaOfz&Mn*X>yT)M8?s8}r$@&MzkRt$ILg*8##M~1tF%h~Au!bdb z0nVV=McRxVY4A9AL3oZ?N+Dc|lEsJOzxt#uocJ&#{Y497g9@)|gBfY`yzwl+)5x46 zGfk-qQ@2zGkmgeO?IK)*Di>*FPBMI!BMUCNSY}%HDa;>hpAiPmP*Em!ZJ#+BmBz0j z#BjF9$;^^^nRyIg7`@V(&2xi-cDX#6c>wPllu5$L9pDu^AU+nMp90*~^j*$0u`=Si zH-D!mGSm)XMi0rFaPs_O!lbpD0LLYnj)n7^9iGfnejLmJj^Irt%FV>v8AolYhXEXu z3*(}q-JZxmKQ0QV08B+_g4NAzC0i)v=-^%``c}jr&kFZC=aKok8_Boeq9FX`(=;;O z3x(3-^#$nXhigwEl&EqoU%XUgc4(OHg`!8MIsLd#!ZCUVarG+K@=@93V%Ju#>7m>i zq-Xk*K++DZ%384yA^qu7ok3dU9{_%3{JNDKR8r&A%(ybb)Sj}L8N~T_fhF}*d(}wZ zT1$>^no|ZdgZx}4lFVe22a~TCiswXH1|ho49RFpOdLntDnb#ErfX`Sm(<1yxT2bcG zC=Ig?>2JZ@n{^l0rYN(Hr|8t)_9cKbiIG9+{;W;0JI>O|G=)+w`v6{H$vk18omD;O zG*Ansxv*;xNF5t-*R0mvxXuQyJUKIxHbX8 zUqGnVszJW{d&(LohhhfP57!Qd+`+gU?AOYywoqC|awukGt#Q}B2rvkHb}UbcroNPk zhhnPCj{tsYIA>SmoUM(cC2b_7m0rzq?Fz%L-2%68yPi~~lbK1Axdz}KtJaP*$_$2Z z+%(3dXp#I_EPkc#DQ5vTF~Vt!_j)_xwvFKY4i4tx5-qYSoBFtr~G1KdidBTEi2Ud{a%;6IGCJz_v+0$yo&kytYHNWLbT@xtn5M%rT6 z{=_E}Z}z#k`XEc4K9(eBX`YpPU@G&L4`vT6GF*6vA2ZgfN1E_a7d=6J1Ub3UnLqN% z941^DpTau{%Bt2A@iIZo#wH%(W9UrWkUsBy{KGE1;E{=v2O8exWLjz+!_>#6%nD^LgHf|v||C^7I13~Q`8j%zOMlcC;8m%wE z%$wS;+@BIGy+^T&;~!jRwUv!zUbI}qe=(hDYgE$w{<^gd?iV-C&xlhI*Ir|y68UNY zxttlA5yDj~HJ$o7Ps|0bo*#Fc|DX^e=v?tK}DuSa4m z*~ozZL3tLHnYF4dq-|A}$2(LmI(5R>{iYHok#EIY32N`}eg5GKfP5;`6UHTGm(`C; zX)#%OFJ>CIRC@d3wP^mEUgKq4^wR9ieM?HmA8d(=<9%33Ync$rOT32B({su6>spc6TPThG+?P#5i~&Jqp++aCzO|%oarOSH;wV#`jE~w| z7OfBsjR&cqCm0v0idM-i(TT}PnfoRz$tWE=zO^)!#8G^;?dK@y#{jpH7pi`s1pjQY z5Q)f^6Va*R(@)9O3F5p?2GZDQd1P*9$6fJ0+B==heHs|SR4OA1dCbeefKU6gG;M|q zOkzr6rMZvJ5~ZoS9Gg$7;@;)`1*aOG*<()+M)XbhHg~E3mmLyETY3d_)rOJ*TN`zR zSd~A^q*b%707*qoM6N<$f{(rJX8-^I diff --git a/media/items/new/generic-scroll.png b/media/items/new/generic-scroll.png deleted file mode 100644 index ed4e8fda318cff138650b954a6b56c1f49de55d1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 324 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0J3?w7mbKU|emUKs7M+SzC{oH>NS%G}U;vjb? zhIQv;UIICa0X`wF?gc)FkM5j0t3f8R)#O^pnc}zW-D1GLD zxax1l{_hKSZf<;0e}a3}R;Oh*f4j82T4bY_;x@z8;5M7_HsibPK}t8ASVFE|cU$^E z@6ek*^?Q1uwt5OuEu}oW+C$Vj7AVPo30>>3mvEkshl0pGABw5<;=4b06w`LVEZ#odBm_eD7NKV|+f`4Gnn T7q4ib`x!i4{an^LB{Ts5F$;ln diff --git a/media/items/new/generic-spear.png b/media/items/new/generic-spear.png deleted file mode 100644 index 89c46ab707c730a0f5801929adcf2db95e8c8e7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2561 zcmV+c3jXzpP)Px&08mU+MMrQ<1OoyQ5fCsiFuJRn`StKsK`U26EC6h0 z0000~KPnX!6;eJa1_T2O2nHb`A-t}gQBhGYA{Ksrehmr+KtMnyCME`HV=EvPx2Tv6 z4Gl{;B{elQM>ZrdBo_c^V*qMpO*$qD3JL&ZUtwWkaBy%51_VSiBD<`c_w(&39uyG` z2qqm900jkkd3jGfC?p#aBN`D!G$TbtMK&oL1_cFLT3P^JSvxEpDJdzorj`f>13peY z_3-NW^zJbw7&t2&02C7t3kOIyBmfBs9UUD&FdwFwih*`&1!`p1&B65V=~+ZB!?mUG z>*O^j8UPj*06{(*6b%pz2N@C!08UC24+<6#3mp~?03IC~7Zm_vT>uRXuc46)3kf

dd?dJexVE{=*05viv9uxo? z8302-02mhlM??TCDF7xU84?SvpO0N#T_GMDQcFTTE*@=US#EA_Usq265Dyd*5C9`0 zb825pMLvdmZ%s{2R!>JiFCafTGt9uUNk}yfW?tgj(L_r)zsS zQApj?$u&|#G(HuLq9D5Eh|DYA&`W2 zc5Pu}TT%cwHI;~Z03;%7V^}~sG&nOY9UB-H6%wSEh@6jsd2nPJ7!@}%EV87N08&q} zqmw^6G#nZij)HYrQc6ifJgS_HFf1nkC?|PuWS^3QA|D(yFe^PbF#sGJ05C2+Jw20$ zdL$tpCnO=Cl7vr5LVjJxkpKVy0d!JMQvg8b*k%9#010qNS#tmY3lRVS3lRZ-WM7d0 z00w#{&kf0$1hvM$gmbSDM zDNx)UN~ycMySux)`^>D(%$*3kXZE3A&qKcCWqvtV&%HAS!+$tdghGgdfO(D}xFaY4 zTtrm76SM#IPxar+|3s+HV3aGlhWV$e7ZjU>s9Fa7xU|F+iQ{H{_w~st$&=zVqVxfc zuKbREa(MZ-aVB{z#!@{*X@J_^U;O&3dz79KW0vWXXAo@fy>sx*F($3}gF^&8S%6s| zeX6Fy222W*ewhh9#t<-5Je$Dw#L&;f-rM1P9klbaiJPqUlX5 z7CQ${`>^%nuB#C|A!^pU{)cHCy6DifT(y+oxK%YJ!LGP;k~{CW$(ptRo<|w+r8Hps z27ALxn!Z2^)#QK&1rAGTuJe-pF7c3`e~d(;CBT-Ov>V8g7TAUl#fM)|qD7jf6(Wsf z;{eyq%!kBsm@cOI?qqTNT;nCLlueuCMBQn{a5K;I=5P*$PR`gzvwNliukcPZTrl@bBWSIQ?4Te`KNeyIg_($qR=fwb zO_N5Di!52KTm^q1YT6VGG4meuL1_f7a%H(ewbGv;nw>xr?+NpLao!QsVO)D9S^N{t z?2G{Ny(ZuPZUMdCN%mEdrUfZ9v(pHBD_)LX6c=`*)RzotswSH$L(RMroha@lC3i5S zX+N2{n^#8vHDY&O9LA8v^AS&C7QvRFLisiQf^T6-Q&j_1`DI0BCpCJnMwTYiNwU4O z3os%?jZT=XVVBt^zaYoE|wRzzL zF~#MlXNlV?-5CYgnd~wxeOUCS1vB@Fpf!iCl#R!rREsBKdN9p9kRxnVcW2JFSein` z%7OH#5P|G%7E3c|EbUprino$2&7wjzm`-`-JKLg;m~$C4iSqCV47RZ7Il7|JC`+|8 znW=MaGG`H@@z~y#Men~&ooPh|-FyMcUwWQJQ}0okZ6nD{4v`7`Gmo<9)Vq`&+L@zj z+d@QE2v2H~1+;jw$#FtJ>)g<3TwJ6kM2`yO(dpp%abF0!E-5X^l>cU^7P$zD%ta)%@lz&Ymll{JPO&KGxrOAnuXvxGg*$*cqs6)+uZ4&8Prlz7-+rS>%uO-%u0bY zw}=!IeZyrQ^XHnj2w=$}jbvfP5!bpf&yP|w5!}EQlj6GIs!>Mye%vfLBU0@9t!-SU zuQzQg!1ZFtp-l`A2eOB`Ooy*)EK7D8+T@4?zIXMfZ*Nhi0B1@H>q5OaT~ZhNb_=x^ zNMgtlur_z8acp#Q>TkYH&orM%Lpo6Z>q7XH<{WTZWb^-ix^%Smg**g=Gvx4=wU{H+ zr!o5?xL7sWcDQ1Trj8sylboU-Y0x4w)mwBxNJGF$PG7PkL)M~DU-B|FnNUvkB}|L6 zOvog9H+u$I*6RCxC6LRIk-C#1Y+qUfOjbmqPG2%lO}38I=gUfO{gkUgR_aMcvy((1 zb^SPZ3Tl}w?RtD~sA$=|K$F4%%2JZ~b`%-(He(fJyA0}!W-YUqiZmMZH%padq9Fk0 zfk2arw$0BVzQAuJtf)=!j@aJ~0STZyymVlA$E=aMdtdav#Ea{HEjtmSN`?>!lvI6;x#X;^) z4C~IxyaaMo0(?ST-3xr2oSXy&1#jNG`Tzg_{rmT4XJ=2JK3!RYIm1`N-I%v4UCFw5 z$wiRnk|4ie28U-i(tw;}o-U3d8Ta1aJji>5Hz8~B zY5(&*rz}4)DK$DXciZW0Y#bajBCl^<$H2%K{CXLXl(cg=V3{45UMHjQ;CwTWyuyQj zYv$W-D0uUjf$?=yx#+7EtQ-;IJP#NCna3L6r&rw2aMbbnOpE$`j4W%|(oSFXtS@3< zPx&08mU+MMrQ15!RIQ$H$ye}54T2v0mH0|EgsFfdCvB?JQkR6i;X3kNYJ7!?o-2?hi- zCmJgt6-r7<5D*Xn0|8M*FfAe$U|?WLHzYYL93mMIQ9daEYi4zIbr~5M4rN|GPCZjZ zF9~R23JMA}H8n#sAxt?YA{r4V91~4CCkqG#0BU6y5ep0n23lHLMMXsdYGq1DH3Vv8 zPDU~v77h&x20JVrJS`q3CME?00#;U5DJdy9qfQMC4L6}p850a9aW!UUW-?So5M*3G zFdsN78z~A3LOms2?b6&CmS0ZEiEkt4F(Da1R-2eP)0EaX<`y%T187ZOF1Sw zD;<1%d;n5T0162l6%HsK6CM{20YE(fU047iA4o_@2?+@k6B8FkAuNJEQBhGkIyx*@ zNgiEOGgCwgXJ9Z@M;2jMB3n-+8WAm-Q~)I#GY~NsZ*OlK6%H6lA|G8W07gS59upJ}2@x|G0R;mvjYBDVIu9%rPEJl6 zQYSN&M+zVh2NVe%S1EIIa~5G(Cs|BEO*=H8Q7=_T2y|pCS4k*YOgT_M18-&qUs7FN zT?7IFE0w09sZ6G%_?(L<31f0ZvLp zKP*Q_M++hlBV{lRClVuQF%2mbKR-VuZ8Ie$B`=9VNO3$AJ{=@$G9_;`HJV8Y8Vn#9 z4{K{{WMpJBmq;TcBUs073IG5A0d!JMQvg8b*k%9#010qNS#tmY3lRVS3lRZ-WM7d0 z00;d^L_t(&-tC)pd=qCF$CEU<`=v=5X_~fFU^N(pm6jS%p%e-gU{EMjaUYDK8#2al z*v4Q2+t9&`xx2f&ySuyZyzR&Z#hfepu{3j&_qD(x| zHK2Ihzk;kqs7!q3lH|P_GQnkxkIhMs-?X`~socT^)3s1O3KR6aC?>tt5t}onTT({L zB>PHdu<|Lx3_~wdNzEKSRP?sCwX;X1$LE#3Y%dB@K1wMv87njSaAMMDE>Fv;Aj&Uj z@+6ANAEk^LjcUHDqPIELjvdvI04Ovq;`s>0QLW6pM}eCaDU%R2IMY~|Jrpp9z{BEBex3p*FoAMNruDaWQiAgo zF}qO;IAQ04D)<;W<9uAY9ffjCE9cKROUi3ytYInOUwx}{;Wm{b1USgWan%k#y7=K8(*ROoQYn{ zt&oQjm~*7~h(dy1hFK_?pP?1X4VQbssd8O*0*0ySPNG9!-;v{y>mc-#;9@SelLJ_CH{l}IVr!?kGtDUuBL-Od$uZ;XFtD2TgfMLf$z9o^YqR5XR%SZoc}XI( z9?tQyCEn)2jZDa%a8rzDY7s*y3N!VxOluK_GLF|YciPIu5CWGjf0SkBW3GzsT>FSO zgj}$PIm{i2sAXghraW$x=uV&^-27?5Wo*T^vcG(%Lys>>V%=E8R&4Eh>dDyG*R+__ zZ~OWpkCyEosR}tq%VtV93wkoTvx4%x{%+q&WG*c9{M1+2ImS#$rn|Fam>q(02PJ*S z7m|*JO-s@POwxz<)NpJJ$=`mtoPv!Mu&J|#4qVW|VvWxy#25vg?HHP~?0yYEE!_St zk4yIuvnp6N?m*>oda@_`A9gF-4_H&qOhPp16i5oa*U8}!6EG>&ec)jv9aWoQ4 z^fM|sQdd_7${HIhKhTg>SrS8b{n9rzlDC4EhSjw7@q7Mw;u_8%3$1 zyt9x+!+-@cW2Mx>M<%^+X_b#Te`!cn7PAQU7v#EDC&QK0X;^lqQIacy6^%yoyIU4F z7R9Q%drOetNWgm!-%P;D*kBQQ@M zq!v5(fKSBIAnRT()VkDHuY7G=D)NO|(0xs4 z7@4MVY*VvWPREMx0+_AKh<-~Bn#~34-?`8WxU0k)M&14UXt$CfglKy0ZB_p1aw%bM z@!B(M{JDIvJN}k?& zy%ihl$<5^3#DM}el)+g<)aO1#}KIuSGTnv z9)r#vD3zh!{Oo+`(>axq(eU{1N+G}R`+U&FfcnU}aMG?Wvp?>m8M7W}pik1DeL^zx!)BbOI#YId?{9BheB}p+ z)I3hwkuqO0EN>EXM1AB$w9tolM*?~+B2B&eh9$MYA&0y~r-?+Ph<+vPDAd5FzFLqt zOYT!rXoDoR-~j!Wbb(gLy>Qa65Hnk}LXs0Ro|>4}janf|VqQf>+BO60v_fW3Yk}=| z;16w(#WEiZ+a>_T8d-J-?V~52kIMz)2Mk@xlecKQrW1f2I?V)@SSs>Q?T|tX6nq7( z&jW7PX(=hFY*=n>v)bbHCU4SM^El`GbJMwa00000NkvXXu0mjf<%hbU diff --git a/media/items/new/generic-weaponTome.png b/media/items/new/generic-weaponTome.png deleted file mode 100644 index ba0833b630b6caef56323297304536d102d133bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1745 zcmV;?1}^!DP)Px*i%CR5RCwC$Ti;I|MHJqd-Mv&>qhKj;p(agCjMf4Mqt!&?Ut!`K(YEs7kF*cQ z7aujICYtogU}K<>nD|fl2N<=FdN`R3a}Zt7t#prfnk(m$NuW`#EG!hp`t&Cfj0HS2?pfaqZ_AWB4|{t!}2(AuS@5Parv$J zo5~~LQAPk;nk{PCw=u41GNnQvxGIemT~MpzxT2-nSb;l~=YU5-2Xu6Gy3H15%O=>` zmruV+NKg_9E*o30|61B#zVs!XcVzj&p$muxhtj@Yr|Vk)-tk|r5tIRxn>Y8y37!M? zJ3&3x!nfJN?EAH_@$u{qOQwr;ofhO)urOG<{tqE4qG;g40yshgX?9<>^a$APg6{6F zhCW_}WnX-40IV#}bE_&Vl^xD2hj?GVOZS`GY5&JBKhwgJ^|b$K_#z=qKauwDocj=n zIFk0y51d5G5HTXs^+tGXd3Hg01ndU^RVXyJBeQv(IY7()zI~55!9gf0f>ezR7{pjv z!QG*S0!fA7wull**e2FvW11&n{opxZ7aee{hvK-)DYuO{{z}96Z89b21VZ-OLS%t0 z0VzOt=T_Q3o)G(=AAB2#sil3}GsU#OtDa2z&%XMR*5QaFlC>(L3C(}~>NU(yKj>Cz zPI&}0;sBddaNMuM!frbyx8HgICQv#?G&xL`0gYFq!>9-$2M9v=ypv?Y3yPo*FmWAR zp{?~Cup(LU-**8NA|A^eu(Gg(`Dk3aK91)oj{wO5)(T%MM3KnL+2zzOdALc8xK7G^A%u!0j}WQ8VMSA=Xb2W^-AFo89vnwyxS z9Y@yJ(M@sKhP0EFrHZip>guXMRBLPNjtkhR2f!9U0GBFSS|~bLWPJwL8=PORkTMKm zX!dok8IE559#E(2-+JRsm|lAXq#F~4A<}Znw-1Gph@-5aj0wa}8YkJFeVr|Dkmu`Q zuX+K#iusM@8K6g?19S#qdTxyCxeo)$0WN22<)Z-WCW!jT$5F7$s!C#74XGDFX zhOvu6sUwW64I1d3SVtZKo5?(DZ9Vc`Ute#Z@R=V*uZVGZxr_=8nRMvF$0F{pudmBW z5=_IR{WU(`@VN5XV6GmpkshL^28*)A z3|O3ZS}D1cG2%TdvaDukWG=vc$n}4I{f}&t*_`7zN2h$Xnjf66Q7V@YbD=!0a=O5C zz%H$|o4)Z;@VS${r-YyykXFI38M=X2HAzvpLU?JfZ)z{fj_U4qRA&%P_h{5~SY z^C$nD6wxI^7{-<9Isa~OPaLpihqA=qNEXd0D(+jftkJP{H?U2?%5nBZ3CMzxmbom~ z3c2pEkrp=870gZHeHI`*2kiBR_9EUT;?9%(QYVa!ToH=!>Tkab%XS_wB0HqLfA8!W z;k!AK4<;uk1)_r7`Gwgz|D9k{IUwJ{T%2do&)@oHKFx2DBPDeM*9W-Lr&UACs*Hnd zQx%-&fc;Kzw2O2C$LSaPPKkQJ%D=1FX)RcrIb&jCVn?Jc&dfFSe;Pao>>EPh0B0J1 zlfynAWK~)0e3l$E4%p89KO5jV;6YD#uO=vL$BHjQLM|_FwvT%RG@ApqPRMUw}#?mH35W11i^2nd2qB3SfI z;A{gMxpFz6vY-MCI1E$5xM2`<^Q^IM2Mpw8`!_ME(DgpMcR)Z(88K4Y-qci4niQgC zh;~RtN%k^{RBX?T;6@4yO>KaaQ93JjKLio5OMBUYdP)`q8I(kFq8ZF|j&rmy)DuI% zS_67S%&>Fw-p=ye;EGD-dVxjtvIR7j=JCJva0=bS(HbmMe+Gqs7ID3{GYJB!n;^_B zYg-V<9~b6{QAp?^_57@UT4oMrJy zY-v1_6Pn^_n;6dn_w;eW5Zzt<@F+i5lqb$ck-~6f3us<;hs6vtKROEULv})oI7A}O zMz%F5+y^V-c*W4%ft4TVM8u&$ssJ|>KgbD$rzQ!^{27N+7_LsZ7@7xI%|BG8ii89# zYER-8z=sj-uxtT8nu(7SCd4xCeP1S|5spe&X`+~>tCdH0u|RCo)e7JYa8N3hJv}`r z6w2P-9<(45iNO6&o;-<0qrv3CRKYYH9Ua5N!$~9(nM_8xdS5t|4XT)%oBITYt_`LS z4?f9EP1Ni4=Z<7&96w9vZf==}n zULupp08#)8Trh1XhYZFG`du5$2qxMmafs_f=oA7*0lo?x2EbG(qE%I#I)5}LO(X1bc}LL0qFIl7 zOaIKb-GF+0$9H#e=HCIyljRi^FTKc_Jv~452dr7hwdv2YNW4_XeVYFAy7$qditK+= z=HAu~zT4CIeuE|`}=i^k5bIo`n$g*%3j@JnV0uk=QMY`s<9q#Y=lnNp66P$-)*Qa>8?ob zsM?pQba_uLye#QrCM+Q8eMj7Mfe$_@`IN;uU2w+e=&;`nOd$|VIYt!$5!5r7+fLP2QM^NG0*7uA?n%r-RmeqZQ0g^k=|7H+2^if zQ=2sJ-}Glj>9P+OTi66$%G+jsj`h=R*0RD-esW#(*Y1BINo=QyKh&gY1+=XWvJ}_4 z8wJ6FdRVWE|9L_C2lHipYwx>@o@q4Z-!54kYt4OJe#=)^-Y=%N*LI#_pjh`Ay~YtJ zjUo!c8cSbgsI%&Ly>&-MUcxbrqG^Q+j?34-4aF72<*n9VGi&&)8FubFrQzr3HSDP9 z=~7JoN~q8yX>Y(k~cOT4sw6dX_AH|G4GgnB=#_VTZaa&Tr-qu}+K&k>*#3yaPYVM^`L+5{u|G zTEzDkoR6sA8d-fmt;-7ie0qKtcewMefhv!yzBR3QKh^rrRYgf*WlGz zAhCuiRE0a7{#A2YxaB~)Dq1Bq!MluXSIMgg<%)s6cIAA*BUPnLdb)LtX7$^&pIlS> zai1E_d)*yAK!pTwXN!k`BQ|j3)EgJbPuCpNi4W|$>Z`PwD^NFl?wFjA*PME3mEV8p zSJQyo4vSaWFU&OY_g8uwjhLG?iMor)gV8UEn{TX$yZPqWs%MvXZ)!7?j8JxqUs#=N z9loA4HHS*CKTnA-AH^#Ybq3P8vYKbrH62x{V{sj4Kb$~OCQ$+7q#@OKuX6t6=S!Px+7fD1xRCt{2TU%=#RTTdA%$%fZMH8Fma#BGMM5}G2qE%4*6@qU;+u8>&v=8Eo zkBTTL^hsioL@a`T!XF@Np+Y4j+O)Z}xm8o!=H$%G_F;YB9A)Yp=Zz(55!Esm$c=H3Pl<10De2gXSGv3IGUU?Xz>!yUOzhvzCXVd(A-X5&%Hz zOc4T~Z}))-JVCrC^S3o%uO~Rz*Xx_rC*1mDFCDis61JGlr?m81oswro>fiyO!tOWb zuI~sF+8VIe6G+mMXv%ue@>*b`bo_;{S=m{KwL0sav6@z_K6bm~3`(y7JKo0L{yq;h zBrM6s+}h`kzW@M8qydF~DgAul?*ahMpZmnxy-9xf^jRwh`v3s-y7lj*@{a#>2>=jL zQLbO#9wwAt19pr7^@{DGY+DkR?XQK+>$5LX6I~^!8$*7Dj8W3{zW@MnWZuAs9RL95 zY@j&M%>Pc7Z4GGEp<3;4YU4FZ_URXo0RZAcyQt>UTv_eT)8E(c*!Rhw0DxbA{J|KD zR{;Ruk9-OMs0R-M0A4@!j`ffB0|1^pcG$*CZ7Fe(dH{$x?c&V*rkK#yfL0x9jL;-U zp?RI&p^?cO0AgyQ6Xm?{D>hE7_@Naa+hhCx zNABRD`Edp8Lg|Jde;&Yk3`nv_&c4iB`qnArDX z+aUun2XH~f%I*OGKtLF;MOF?Ow8k(SuS;ix0z(nw0}fm#Rs?BtPD`%=83x3Z2%O*?*t$ zBfsy=_B|LOa#~@)%KS3Nv+~sCan9p%^Ou$y7?3LaYCF>rS(DD?GC9}c9G=8Uu3xME zBG1@9^(M)ftliatm6%ZBsW8d-vVO%}qBH?%{;c4G{Ce6N;JHHqZTUd=Bi6!*YIfoZ z03hM1ueWM`I1OzlmzE6^B>7vnXtNx*tE+2M1{(PQ%7Pl8R7Gc}d54szzJ&b~w%=T` z$S|a!W$Vfrj-CJ77RvswzWfTfVEfsWyAn_oh9>DWvGex6kmwpK^J06Ha7VS132jJd zFI$)76Q1+6!&{FRXsaAQNi_oF5ykL%nK zzW=u6;hqCI27+~Wg1iS{|K(--J_B#f zLrGs483oX={h2FMxzVPsT(jXQaZg5k+SUL7K$K=SA{#4oAX@6&E=-VjmklP0>9x~r z4_w~=28FmF;J89@SCDW;wwmbfP!|o%59m69AXTB}N>hYYVmJtdd3lT~Ek!Qkj&Lhx zmgWI8BsnxRWM%H;2k)K%(8vIN^o8Z@6esiyTAU!G?dj>U@u?FFj2k53l?98{r2(o} zd30pN>gjFfre^>Eo|<#@>J%4Z>!?=ytv@Aw>hxOxfH+pp2)XsOH9)rQH#odGqPlD_ z(YUghUZQe7k&`Xij>s^8MTVvTr!T_sJl6-D3 zVZ2ibc!p@c?DEjMqgwZ1{;u!nk)zg;HuLS+H@WiSP4m-rYQ*WY?*VA|{nb^=?`N4L zibmdJ?8~pLOpUlUmG|S)2-$R%XAv-h9X@d~H-7QE-^a(B)(g{0uL0}s1tQvHr|R#uL0YBBNP_=yn=qc z_04Qrx5$w&0{mrc&(E_wJ;@a?CP?!6f!&VaO0NMsekXXK-{J)M>8FlboS=Nb%HMWR z5OA-B+QN*9iHWA;O4AmmcV^?QsPr1J<9C9N7~qrUZ*pYw$g;9l%%1mcaBsg+eqy(& z^ct}1_SG{ukdvJvzDyHHLiN42@m5rN4cPVn3+V1pcZQk&F1#`NuTbeVpiOORQ@QCM XBdfB_Hut4b00000NkvXXu0mjfq9(Rx diff --git a/media/items/old/generic-boots.png b/media/items/old/generic-boots.png deleted file mode 100644 index e74bc1b85f4be3938ebd76e263365aaf965039ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 418 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%zV?13PLn`LH zz4I{hkb^|S!)+yu=>;stTQ|Sp*wv)Gh5Lz4rv9FwdC!-(J$drRK`;+4XkF=6ZX-+#Y) zy?p=iNbjhx-Cui_t<=0cQC2`$LCwLZVFts-%-{*) ztBb2weZ9d57336{ZN_SA89upU>(?G6QJ7I+WoGr_CRVJqcJu%5n+0U~?$tRxCHQg~ z*eU}E!haSW-L z^LEx=Z)QhL48BL|yy`9QM83au{@3D9cT`GO|Mh%T^||%R%O^`d);+Rz;C0}3xcuGl zfLZ=?`K)>GjvJrbdFp!4|Ce7X=D!fU&zQv!#W3r@@rE;}q)tYd_&tBPbbIyVudPMR zS2}NStjv{s{^88~cd{=xJLrQ{O5IOB@WUwf^!YQYCq7=kJ?Z1GkmX*lb{}uk_uY1; z_(*w!RD)QebiO1=;-TXFl(E&j50Auc>~``FDRh&wYLy zw8Q8;)Dcq0%b4zOKArmVqwuyX@?Q|9nX-MTt>Kdw4wBu~9{yc(#eIZ9rLqU^?>~Ng z(UO1fZTBpI8FXFZfbn_Fus>(Nyg--|Id{I%y1zfoEgkpIcURuWe1%~PgUPy5hWOXw zr|!?ovv`3p^>USY{kr_>d;HPQETIATxTfas1o^zKXYaoso>$rTgD-&j0@H;ZpLWmi no!s+$o7u^a8`9^&Ox^FVGXIg_{QO8@@?h|E^>bP0l+XkKs>2v6 diff --git a/media/items/old/generic-bracelet.png b/media/items/old/generic-bracelet.png deleted file mode 100644 index 3dc5df29370efcdffe37f29d0727777e434b1584..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 677 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-HD>V2by2aSW-L z^LF;d&O;6YZRW>A1!}IdY+;NJ$T`Tx^7gRWnge1g+ZM2DNPN=U_P}<|#M$#x)GwYm zzwxuJrOHj7!{_!J&%SD@oU`cD@xOKdUvy7WseH{^InVu9?Agvm_aE-tCG*8Ti7~$s>{@)dgbC%PeS3a$7n$IZ4u#GtlQY(nsA#;9}s$CKY5 zh}fN-AbUYPC-ZIQy&bH-j<=Sh<>tszGSN}Er^>^Qft-F*@Z#q>7 zGd=4y!Jo+cM4@(F@of%$t9$`$%EVbC&pnOb5yudf(SHoLJeF zpUrfICFc9ayaT1Orq6;c`(cq|^6$LBxA!YJQ|n`!_A*~8J@@#t)HeAK2S9p#lX+KI vr$2wV_CIIY+|M1E2bj4TZZjT!@QJx7^Fz<2gC3iK>5jqE)z4*}Q$iB}??pA& diff --git a/media/items/old/generic-chestplate.png b/media/items/old/generic-chestplate.png deleted file mode 100644 index 0f90a4cc0ab50cbd9398177d0eef7efdea17fd3b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 484 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%z=Xts~hE&XX zd-q{(vw?s^VpJ((n1ObM=(1GSum(|yg^~;GLc?$FS+MWDx~K4J|1f{Oz-6A3R6Hjw z`Tr#Oi}aMBebLv?f9|PEc`@r=uI+r~_?Z313}+Y&m=EwUc>izhU)FJATkgv1@zYeR zG`3#Lm@9i-*mLb=Sq8YG-(7MqOkHj67RsD`eZACl{q?BDnj0-;cQPliHApg~G0b30 zcqlR@)XUS>{uh6UNvY21OLO!VeUH6vx>c^r8lnKC@>(ue*Rok}N<=!BExx$Ocz)a+ zMzAA57H!yn=jUyk$qScFiQ9D9Z>?$7iQi50jzAn~%&_Kme&uvLTRL+WVvYk8B;0H7xaxQi3@mf;lPzETVyi zof<7MNg^Wht*zIJnaU&c9;v+hxhpY$+R2A!_BkoK2F5Jw%{?$}_vttNXTQ&ue!XCO znbC*&w_iV4x%48_2Hp)XQ=|}Ao+Pwet%S4Pi)2uS~uN;tLW$dsRx!WsX5{rT+o-p{fNSQDfZK0klYxNWAr&B-P| zwMPqlXHNfK-wBlxuHcP`p4a5Fe6pd${J4mXv;5QUwd6iiJy+f!){xua`(XEhx6RN0 z9}Hw$5+f|N_x$XFeau@Ja+q_N<}<6cJu2XP(Oq)jM}gJD-@h-;RK5SP#*p7C1EKxy zedeIz?hR@#-r@#!*3(#Y-}60vA9vyFxjjdI@?8M=le0#A!p#09zY_nfoW)dI_4S4I z{nzf6D^#^%o_cNSkhV{|Yi7NrcEh)I#T)whJ9anM_?Ksrbm6q&l&hPx&TuDShRCt{2o8LL97qJnNXY>@5fOcXR@;#D;;FlX2igG70=ZU?yK zxCYz_1t8~JYA~mZ)C%Cj`ZnN|*h|a)mlIROLqyvD(k$Bd$7X=(I$?Am4L!Pk1c(4| zJHRd58gQHBeCSAvr9GXulVsjj71fD^XcEf=J5pWQq+LW5&__L zfLj?g;1#6!u!X+P5@Vr_XDdc)(BcdlwAsNad{>1)8Tu- zpXULkcOGQdj{p$>ZU?v}cQ^YW=dVV3!9aV~2TXJPOZ92sj`nuo7dOrT`wFaMPS*)^ z9YAxuft(|RqIdDa+&RFequA{F5g-D`?Li zezkZ6cxtQ!*lwNhh`j&TXvkFYCzpUry(GtfIr}8Y&ffJSKm>r>0d8gN2?heVC+Kg- zv$e$;{6=RRsR>S1QLq3UCdUr-jd_mxi;bGV*9S99#JRv`i2!grz%AMD$9ca@!JLj8 zBTy4gT)>#=WLl@+`qK8U*#H0l07*qoM6N<$ Ef+Px+7fD1xRCt{2TU%=#RTTdA%$%fZMH8Fma#BGMM5}G2qE%4*6@qU;+u8>&v=8Eo zkBTTL^hsioL@a`T!XF@Np+Y4j+O)Z}xm8o!=H$%G_F;YB9A)Yp=Zz(55!Esm$c=H3Pl<10De2gXSGv3IGUU?Xz>!yUOzhvzCXVd(A-X5&%Hz zOc4T~Z}))-JVCrC^S3o%uO~Rz*Xx_rC*1mDFCDis61JGlr?m81oswro>fiyO!tOWb zuI~sF+8VIe6G+mMXv%ue@>*b`bo_;{S=m{KwL0sav6@z_K6bm~3`(y7JKo0L{yq;h zBrM6s+}h`kzW@M8qydF~DgAul?*ahMpZmnxy-9xf^jRwh`v3s-y7lj*@{a#>2>=jL zQLbO#9wwAt19pr7^@{DGY+DkR?XQK+>$5LX6I~^!8$*7Dj8W3{zW@MnWZuAs9RL95 zY@j&M%>Pc7Z4GGEp<3;4YU4FZ_URXo0RZAcyQt>UTv_eT)8E(c*!Rhw0DxbA{J|KD zR{;Ruk9-OMs0R-M0A4@!j`ffB0|1^pcG$*CZ7Fe(dH{$x?c&V*rkK#yfL0x9jL;-U zp?RI&p^?cO0AgyQ6Xm?{D>hE7_@Naa+hhCx zNABRD`Edp8Lg|Jde;&Yk3`nv_&c4iB`qnArDX z+aUun2XH~f%I*OGKtLF;MOF?Ow8k(SuS;ix0z(nw0}fm#Rs?BtPD`%=83x3Z2%O*?*t$ zBfsy=_B|LOa#~@)%KS3Nv+~sCan9p%^Ou$y7?3LaYCF>rS(DD?GC9}c9G=8Uu3xME zBG1@9^(M)ftliatm6%ZBsW8d-vVO%}qBH?%{;c4G{Ce6N;JHHqZTUd=Bi6!*YIfoZ z03hM1ueWM`I1OzlmzE6^B>7vnXtNx*tE+2M1{(PQ%7Pl8R7Gc}d54szzJ&b~w%=T` z$S|a!W$Vfrj-CJ77RvswzWfTfVEfsWyAn_oh9>DWvGex6kmwpK^J06Ha7VS132jJd zFI$)76Q1+6!&{FRXsaAQNi_oF5ykL%nK zzW=u6;hqCI27+~Wg1iS{|K(--J_B#f zLrGs483oX={h2FMxzVPsT(jXQaZg5k+SUL7K$K=SA{#4oAX@6&E=-VjmklP0>9x~r z4_w~=28FmF;J89@SCDW;wwmbfP!|o%59m69AXTB}N>hYYVmJtdd3lT~Ek!Qkj&Lhx zmgWI8BsnxRWM%H;2k)K%(8vIN^o8Z@6esiyTAU!G?dj>U@u?FFj2k53l?98{r2(o} zd30pN>gjFfre^>Eo|<#@>J%4Z>!?=ytv@Aw>hxOxfH+pp2)XsOH9)rQH#odGqPlD_ z(YUghUZQe7k&`Xij>s^8MTVvTr!T_sJl6-D3 zVZ2ibc!p@c?DEjMqgwZ1{;u!nk)zg;HuLS+H@WiSP4m-rYQ*WY?*VA|{nb^=?`N4L zibmdJ?8~pLOpUlUmG|S)2-$R%XAv-h9X@d~H-7QE-^a(B)(g{0uL0}s1tQvHr|R#uL0YBBNP_=yn=qc z_04Qrx5$w&0{mrc&(E_wJ;@a?CP?!6f!&VaO0NMsekXXK-{J)M>8FlboS=Nb%HMWR z5OA-B+QN*9iHWA;O4AmmcV^?QsPr1J<9C9N7~qrUZ*pYw$g;9l%%1mcaBsg+eqy(& z^ct}1_SG{ukdvJvzDyHHLiN42@m5rN4cPVn3+V1pcZQk&F1#`NuTbeVpiOORQ@QCM XBdfB_Hut4b00000NkvXXu0mjfq9(Rx diff --git a/media/items/old/generic-helmet.png b/media/items/old/generic-helmet.png deleted file mode 100644 index c085f9d388281a5d95ccb4cb528cbf29e4cd4f28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%zT|HeKLn`LH zz4I`$*+J&m!!0F@;THr;#M(=ySv0MC!0~o@kVf3Y2WMutJ^z`}B=^tall!DQc|cQu z;KQkVLE>`9KYo7mW7oR=xKrCt?5*&RnIg~B!YQEUFoPj+di|&A%jTv=>g|13C=>dA z{<4){E-n3jf{#O3!KcB1@em6~_BYOW>$hKO<4gb5-hVA#`sn5|WowwEu)-VVy$$!H ze63Yuug{fRKesPxBQsDFRQD`j$F29DYx-J$wlTM?Ke;W}_uSk-!FAOH&+xa4}=H diff --git a/media/items/old/generic-necklace.png b/media/items/old/generic-necklace.png deleted file mode 100644 index 6f7d81ac0ac587ba2f01bd7e6d374e7772d36ad7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 682 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-HD>U`p|HaSW-L z^LEy5Z)QhSZ zIpUh&zrl_fZ2020j9*QgOu-D;J=`pm20o{oH)7JGs3Ier5DH^H=Omp9j-*qA^Y5Cn-`qxUOV|) z-22<|@$>Gp3tmR<+p5Yp>)mIq2eN8=SJ$w=Hg;e-@Rq^c&2~YIUUQ$@;#;%iC1x|$ zK6tcm{S18CNjio zh&XJ2e%*1o?cbaG{>dr_t%+-%_MYiJ)Q;y2UdQi9z6demw3>dpQE#f(4u+SKUT*`1 z0}dZu^>266ANdcE@DN_buHtz%_{Bc|h0j|Q4*e^B0`u4G0NaLlpSL`Fxlg|P=%E?E zh1Z;C;AGg&d?(}k)hOQndy9=PFL?i%Rbs=|&1+5FzW-g?>Z)A-!rC)fY2vS^YoTge z-ZGX3`}E|$&1wF7_NwXRm&ZK#KR5!zp+SLzNj+YmY}K4ko%Slg#K++2>gTe~DWM4f DsKP?9 diff --git a/media/items/old/generic-potion.png b/media/items/old/generic-potion.png deleted file mode 100644 index 93b4b7e4d6b40aad93961830bb732f2da5c9349f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 650 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Ea{HEjtmSN`)Ym%PG(?Wa`bd@ z45^s&cJ@Yn=RlET@vb~BJti(Cf}GrrJ!@PH_BdW@JaXY;d}5kl^Afhs1dV3BSsGSb zRM|YugEGCNy*d0lunSY*zUGTNGhZ!+t|Ju;|tViy@wr*D}s;w#Md6AH@KCief zQDWb@yhYE`pLK-2<^NF5$O<-h+I7azZ!ea7yqGfQ#qO9Wsr#3oDqGe1f9F0Tmt1~6 z;5XL;mIb^E0>3d_t={(~O6}L%y$)L}+Cw{Ro!)S+l+LP5t?hlG^_+i+ts_+F#yxxj z&mTDG@4a{JmgAQ%N7j_=dGVC{;?d(W7w5+p+0TsGY~#@QP4ob#gS10(wSR$mjqjIN zZa3adm=?k3b8A;T%$U2(M=az2XCFkN7~5b=(&?D?H| zXPDwU%;(Pcb$pv0?2`XJUNE;jR$<@wzt1LI=?~qqp23gd7K2nOzrg;jEB}30|JL$v zU*e)}|C00mtvlWUBS@>vVato@=h-#DJ}vyyb0Pn5dP~kBkOM#STDs0ZGe@rEH8628 Nc)I$ztaD0e0sv6KEQtUB diff --git a/media/items/old/generic-relik.png b/media/items/old/generic-relik.png deleted file mode 100644 index 0593e151aedaab1ad1a735cbf5fcc726ee8267f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 713 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-HD>U~2YsaSW-L z^LEy5@7akW$L!xbcX#nhan8uP61G~?X<m1GD`ttEmf%hJQnY9y*0Jxn@bLwy z{e|5hMHhhdKf88~aV_)T2bHf&grDs0+`d5l@#O{6e=S;Y_uOYcm`jSb@lBBXKljMT z5TWO9Jv?Pf3bwF)Ir7|of%Nf>={B6dKK_)xXAD!EcZb<&?~9+CBY2K^*G^qft+kQ; z#MZz4bDb}Q@^?GT|FetX?yntETP{~RZIer^VFd?5;a>3%+xKkvT2qtD`m6KKdvE@8 zdUedTAz|#l_UN%#nHjUb@3-MT@Y}qsFjn!sY?wL!8XuT_Mcc$by!zQ2!muUA{EcqS zuk|->Nw3m>du;uA;hyyjz6{n3W|7w!qc5g@2nhb|?f?1DlQ-cPKJn;Zxy^Zgdgu<$ z>$X+qFNDDAUdk!h?%&%d_s#0OH~%#E53}bjek}as@5`P#Z68PB1AGm>VfVl8&)WRA z?f7eR%TG3r^W--eK!bTn?Tf3Q7b_oL@Or)-yY6?sa?!`y4q!c1`U>x#sYpJny#2Z9 icM~Ms7ih$+W3ah=LfbM=tOl4i89ZJ6T-G@yGywo^sZ4bM diff --git a/media/items/old/generic-ring.png b/media/items/old/generic-ring.png deleted file mode 100644 index 744ba7f4b669d6b511fae84cf753ec48d669e1eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 622 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-HD>VAAk(aSW-L z^LExoZ>KB*7MdOA32HjtL=YP-Bf9&x6&$jc`_bZPdwtRlC{C;+Z0E;6CeL0d? znzS_N=ha>}HKl|HpC89s?vFSzdnU_$@1;U~R%`xlb@Sf*&rpaVk9|kxFYUv%%!(_1 z9{ixv)6duHuz%Wp2YZ`mQ@&09D3R+m?e|UpE$10H8MZUuxw4jh#??PbC2U`EzsY_1 zch4+i7ypOvY>xi=>zm7V-`!T#^i5KM@j+RG^ljUQcW-?|s&D(T-V#;SOIx@=o>(#edAE3x9d` zifgY+Tfna)2er@elC8_XZKe=}4a zbFX$<+j2}f;e5h+{v|=yPsFc$n!CUiPx%dr3q=RCt{2o6jpmQ547D$kvpJ#7?Xz`~eaQDG?XZx9D?8^BGjZbuyRL&F24y|}34hfLBV zeoe=`M-IRo<(U(#j{tE1w*lPv<^UY?ef>RwFTyeDy6;4nm6aM9c7OjsbU2(x^ytVG z(KR(y&_7J{*;&jpCs-c=;s9;~xY4cy3JVL2+Ex9L=jRuqam-^*LAExxjlP${`UnsQ za2vplb`C(+RyT-_MDmHQs;(sZ^duJeK71a*_aVJ~-GS?WzZ_wG1c(E;4d6yQ2Via9 z-q9M^AL{_qwE%*3LS0=g(SEhQ3hN_49KdY=H`+NMesx21XIC51m?L&~_OmeSdtHFv zt8e(00|MWdNF<03g+5b+^${Qr;5LAppd3Kv(P(s!%(FNqah}KZe75@os1d9SmY3G# zTtEkL0Jj0$WV|1MV^THmXS-j3YY)sZs{I5%td9V30Jj0$_~wB5xkaLzTN;UuonH`* zwYll~-?VPP9Q6A7X7s%j)<=LifZG6W(m6nN?+?%4A0M9rb++K0pXr&2!2Yi5X7nBF zBS0L$Z2&jv9H1I=IIrV8teUq~cYg5vAML@l0@nT>_XM@DJ_5u6+y-!y-Y08nZooED z7vP>-rt5EAu(nt2``_K35?x+VPxb&04~|K@oC|y*4&XL`8|`y}^_AH_^*=($=;Q*P nV`x2ReFTUDxD5~lLEz*AgVB+(1aSW-L z^ET?Bc5|VG8E^2-O( zlMQQ}ZJ7nK7@`@Z=gnqLd6xevbwxkVHzxfnyBgfxln*?utxwiwynpitUjXwBrW+sb zNGb@McHYkZs7qkOqmzlT^V4hC zS1{%<=3IE*aCK?si9dO)#<4$LI_FMRe^C2=`+@W8-o5_i2X*AJ`R5snwyocHZGqgG z^v3!U9%lZYUPgQGG?}@{P$h1MpEJz-`JzJN)$NtR4^$`q+`caF!TFcA;il41cdR?l zX!QBh%(-Xw%(=_1*7oq%z5xC`|8BDO+9yJtVqwSp#7@6{x3}zE=IytyKds$A<4)#_ zHAztED|7W{R_;76ewzQl_sy)oiruwgUflL`%kJ~H&wh(*|0uhFZ3F9ukJ;iAe*dXI zy{82#@UXmke!dw@{l1+UH$Ls(5qJOj+(XbH{K3|&)7defRk$9QOc*>}{an^LB{Ts5 DH_I3` diff --git a/media/items/old/generic-sword.png b/media/items/old/generic-sword.png deleted file mode 100644 index 33174276e8640c111fc4d993576b1c34a4d2027a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 828 zcmeAS@N?(olHy`uVBq!ia0vp^3qY8K8Aw(>tdav#Ea{HEjtmSN`?>!lvI6-E$sR$z z3=CCj3=9n|3=F@3LJcn%7)lKo7+xhXFj&oCU=S~uvn$XBD4`PI6XFV_U0huL|Nk!` zA+c}Yz8g1gWM^kjn>NkUOfeHw>ZbQ+fkJ0IT^vI)?!CQ!koS;*fXl@#4%}NFh-EZ_k)rMe zrn3uYI)`;mVvcK>^z?tU&eKf&X>Suxl+Bv{je+rWqu9A%Uq&XTby4E192^xZ9x^a~ zXV6=-`q#69hK6?ba$6aN2mA-mrtiD1Q)4EhkP!P}nbX^?42-Xv6z@#^zxl!Wd&ztP z8!TSz5&ryM+TlP}!ivI}r8*7=COvTOJ>_H5Ruu{qT(EX|mFD`bEBQnPHV8<}J}s@c z#?_IT>7VY4)zSZ?I5;B2b3QXLGG4D@UK(|lBfi#bKG0vPC9V-ADTyViR>?)FK#IZ0 zz{pV7z)087BE-PV%FxKlz);)3z{rktgKw}lS^|`^Gd9& z0)R@384Q>I->r|P#uH?Um6b=0MeiXQq^7fRyaAig^uG zB8jBLH#0Z2q_QBD0qiRMg1mJ5O<{g$=JodA?GMUo2*@?=QM%t;0MUB4u^K)(d!%bX%$K%^U47#f%wn;V)K7+6{u YngI>4ls@kn2Q+}e)78&qol`;+0Ck)ZuK)l5 diff --git a/media/items/old/generic-wand.png b/media/items/old/generic-wand.png deleted file mode 100644 index 2aa60f51b412978b849645082292f667e0a5bf61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 568 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zKY6-1hE&XX zJA0!Sv!jUX=3QZ8njr!#j&EFAridv?yj7Z}`R1tp2mYKt%y0iPuGPH~#-ZZksgTq) zK_Kj8*G7Y`ZTG}aD7<-h_s6}Laca!dPwzIKe7AGDWN{yV`9Akv^JvB^>C;u;m)i<9 zFWY#CCxJWR@y`8|^irOs9?L$Fx`9o?aep>jv|0bLMx zDc@v4pY>-UsO6o1DjQzs-2Z)~W53#*%1)?Ki|Y-GgXD~AC+%)JqnDR+xZ>XG!+*LH zgtE$>slKv401l2bkAMA?OW9NKoA2@RP@7lvEVe5q+ui;z3N^TJ9&^gGr?z`@vcK5w z-LiNe^BIP13}()iQ_FKyKK-q}^8VE%H)zoOd35d7iR#i%_U4c0!JY8q)4#p1>;Bd| cLlxCA+)J4mvxea-D2*_9y85}Sb4q9e0GzG`eEPx+7fD1xRCt{2TU%=#RTTdA%$%fZMH8Fma#BGMM5}G2qE%4*6@qU;+u8>&v=8Eo zkBTTL^hsioL@a`T!XF@Np+Y4j+O)Z}xm8o!=H$%G_F;YB9A)Yp=Zz(55!Esm$c=H3Pl<10De2gXSGv3IGUU?Xz>!yUOzhvzCXVd(A-X5&%Hz zOc4T~Z}))-JVCrC^S3o%uO~Rz*Xx_rC*1mDFCDis61JGlr?m81oswro>fiyO!tOWb zuI~sF+8VIe6G+mMXv%ue@>*b`bo_;{S=m{KwL0sav6@z_K6bm~3`(y7JKo0L{yq;h zBrM6s+}h`kzW@M8qydF~DgAul?*ahMpZmnxy-9xf^jRwh`v3s-y7lj*@{a#>2>=jL zQLbO#9wwAt19pr7^@{DGY+DkR?XQK+>$5LX6I~^!8$*7Dj8W3{zW@MnWZuAs9RL95 zY@j&M%>Pc7Z4GGEp<3;4YU4FZ_URXo0RZAcyQt>UTv_eT)8E(c*!Rhw0DxbA{J|KD zR{;Ruk9-OMs0R-M0A4@!j`ffB0|1^pcG$*CZ7Fe(dH{$x?c&V*rkK#yfL0x9jL;-U zp?RI&p^?cO0AgyQ6Xm?{D>hE7_@Naa+hhCx zNABRD`Edp8Lg|Jde;&Yk3`nv_&c4iB`qnArDX z+aUun2XH~f%I*OGKtLF;MOF?Ow8k(SuS;ix0z(nw0}fm#Rs?BtPD`%=83x3Z2%O*?*t$ zBfsy=_B|LOa#~@)%KS3Nv+~sCan9p%^Ou$y7?3LaYCF>rS(DD?GC9}c9G=8Uu3xME zBG1@9^(M)ftliatm6%ZBsW8d-vVO%}qBH?%{;c4G{Ce6N;JHHqZTUd=Bi6!*YIfoZ z03hM1ueWM`I1OzlmzE6^B>7vnXtNx*tE+2M1{(PQ%7Pl8R7Gc}d54szzJ&b~w%=T` z$S|a!W$Vfrj-CJ77RvswzWfTfVEfsWyAn_oh9>DWvGex6kmwpK^J06Ha7VS132jJd zFI$)76Q1+6!&{FRXsaAQNi_oF5ykL%nK zzW=u6;hqCI27+~Wg1iS{|K(--J_B#f zLrGs483oX={h2FMxzVPsT(jXQaZg5k+SUL7K$K=SA{#4oAX@6&E=-VjmklP0>9x~r z4_w~=28FmF;J89@SCDW;wwmbfP!|o%59m69AXTB}N>hYYVmJtdd3lT~Ek!Qkj&Lhx zmgWI8BsnxRWM%H;2k)K%(8vIN^o8Z@6esiyTAU!G?dj>U@u?FFj2k53l?98{r2(o} zd30pN>gjFfre^>Eo|<#@>J%4Z>!?=ytv@Aw>hxOxfH+pp2)XsOH9)rQH#odGqPlD_ z(YUghUZQe7k&`Xij>s^8MTVvTr!T_sJl6-D3 zVZ2ibc!p@c?DEjMqgwZ1{;u!nk)zg;HuLS+H@WiSP4m-rYQ*WY?*VA|{nb^=?`N4L zibmdJ?8~pLOpUlUmG|S)2-$R%XAv-h9X@d~H-7QE-^a(B)(g{0uL0}s1tQvHr|R#uL0YBBNP_=yn=qc z_04Qrx5$w&0{mrc&(E_wJ;@a?CP?!6f!&VaO0NMsekXXK-{J)M>8FlboS=Nb%HMWR z5OA-B+QN*9iHWA;O4AmmcV^?QsPr1J<9C9N7~qrUZ*pYw$g;9l%%1mcaBsg+eqy(& z^ct}1_SG{ukdvJvzDyHHLiN42@m5rN4cPVn3+V1pcZQk&F1#`NuTbeVpiOORQ@QCM XBdfB_Hut4b00000NkvXXu0mjfq9(Rx From 60376aa9c5b31d94bcb41831af183b808c0048c0 Mon Sep 17 00:00:00 2001 From: dr-carlos Date: Mon, 25 Jul 2022 15:38:30 +1000 Subject: [PATCH 68/82] Add red outline to errors --- css/sq2bs.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/css/sq2bs.css b/css/sq2bs.css index 59e4e99..a40b162 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -102,12 +102,15 @@ input.equipment-input { font-weight: bold; background-color: hsl(0, 0%, 21%) !important; border-radius: 0.375rem !important; - border-color: rgba(33, 37, 41, 1) !important; min-height: calc(1.2 * var(--scaled-fontsize) + 2px); padding: 0rem 0.5rem; font-size: var(--scaled-fontsize); } +input.equipment-input:not(.is-invalid) { + border-color: rgba(33, 37, 41, 1) !important; +} + .my-container { position: fixed; /* Stay in place */ left: var(--sidebar-width); From e47673ef17e6bbcb4d4a933ad11d057e0029ce21 Mon Sep 17 00:00:00 2001 From: dr-carlos Date: Mon, 25 Jul 2022 15:42:51 +1000 Subject: [PATCH 69/82] Add powder input error detection --- js/builder_graph.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/js/builder_graph.js b/js/builder_graph.js index 73caa07..f5956a6 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -445,7 +445,6 @@ class PowderInputNode extends InputNode { compute_func(input_map) { // TODO: haha improve efficiency to O(n) dumb - // also, error handling is missing let input = this.input_field.value.trim(); let powdering = []; let errorederrors = []; @@ -453,12 +452,27 @@ class PowderInputNode extends InputNode { let first = input.slice(0, 2); let powder = powderIDs.get(first); if (powder === undefined) { - return null; + if (first.length > 0) + errorederrors.push(first); + else + break; } else { powdering.push(powder); } input = input.slice(2); } + + if (this.input_field.getAttribute("placeholder") != null) { + let placeholder = this.input_field.getAttribute("placeholder"); + if (placeholder.includes(" slots") && parseInt(placeholder[0]) < powdering.length) + errorederrors.push("Too many powders: " + powdering.length); + } + + if (errorederrors.length) + this.input_field.classList.add("is-invalid"); + else + this.input_field.classList.remove("is-invalid"); + return powdering; } } From 30035dc732195dcf280dee5ae594beac34eda2f6 Mon Sep 17 00:00:00 2001 From: hppeng Date: Sun, 24 Jul 2022 09:05:57 -0700 Subject: [PATCH 70/82] 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 f441236531b7dff030c4b1e7b09856a05e35e844 Mon Sep 17 00:00:00 2001 From: hppeng Date: Mon, 25 Jul 2022 00:15:16 -0700 Subject: [PATCH 71/82] Bump vertical spacing a bit, make weapon powder input consistent with other equips --- builder/index_full.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/index_full.html b/builder/index_full.html index 5145110..31a2019 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -45,7 +45,7 @@

-
+
@@ -260,7 +260,7 @@
-
+
From dbc69ab8742edb86e2ed27dd2cb96684b2a7ec9a Mon Sep 17 00:00:00 2001 From: hppeng Date: Mon, 25 Jul 2022 00:41:02 -0700 Subject: [PATCH 72/82] Compactify level/reset/copy box, touch up mobile UI --- builder/index_full.html | 10 ++++++---- css/sq2bs.css | 27 +++++++++++++++++++-------- 2 files changed, 25 insertions(+), 12 deletions(-) diff --git a/builder/index_full.html b/builder/index_full.html index 31a2019..1280b6e 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -45,7 +45,7 @@
-
+
@@ -286,7 +286,7 @@
-
+
@@ -301,8 +301,10 @@
- - + +
diff --git a/css/sq2bs.css b/css/sq2bs.css index c5ac672..1e5751f 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -106,11 +106,9 @@ input.equipment-input { font-size: var(--scaled-fontsize); } -.my-container { - position: fixed; /* Stay in place */ - left: var(--sidebar-width); - overflow-y: scroll; - height: 100%; +.equipment-input { + --bs-gutter-y: 1rem; + --bs-gutter-x: 3rem } .text-right { @@ -176,7 +174,7 @@ input.equipment-input { } .scaled-item-icon img { - width: 5.5rem; + width: 6rem; } .scaled-bckgrd { @@ -185,7 +183,7 @@ input.equipment-input { } .scaled-bckgrd img { - width: 6.5rem; + width: 7rem; } .overall-box { @@ -200,6 +198,13 @@ input.equipment-input { padding-left: var(--sidebar-width); max-width: 100%; } + .equipment-input { + --bs-gutter-y: 0.5rem; + --bs-gutter-x: 1.5rem; + } + .level-input { + margin-top: 0 + } .scaled-font { font-size: 1rem; } @@ -258,7 +263,13 @@ input.equipment-input { padding-left: var(--sidebar-width); max-width: 100%; } - + .equipment-input { + --bs-gutter-y: 0.5rem; + --bs-gutter-x: 1.5rem + } + .level-input { + margin-top: 0 + } .scaled-font { font-size: 1rem; } From 74b1d480faeffc839b90880504beab3f9fbf502b Mon Sep 17 00:00:00 2001 From: hppeng Date: Mon, 25 Jul 2022 08:58:41 -0700 Subject: [PATCH 73/82] 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); From 9d5339b2550b8ff51e82ad9bb4ff7621be06db69 Mon Sep 17 00:00:00 2001 From: fin444 Date: Mon, 25 Jul 2022 12:00:43 -0400 Subject: [PATCH 74/82] potential fix for atree image misalignment --- js/atree.js | 24 +++++++++++++----------- media/atree/connectors.png | Bin 1824 -> 4539 bytes media/atree/icons.png | Bin 2891 -> 9996 bytes 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/js/atree.js b/js/atree.js index 0033921..e43e743 100644 --- a/js/atree.js +++ b/js/atree.js @@ -372,11 +372,11 @@ const atree_validate = new (class extends ComputeNode { const abil = node.ability; if (atree_state.get(abil.id).active) { atree_to_add.push([node, 'not reachable', false]); - atree_state.get(abil.id).img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[abil.display.icon], 2], [9, 3]); + atree_state.get(abil.id).img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[abil.display.icon], 2], atreeNodeAtlasSize); } else { atree_not_present.push(abil.id); - atree_state.get(abil.id).img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[abil.display.icon], 0], [9, 3]); + atree_state.get(abil.id).img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[abil.display.icon], 0], atreeNodeAtlasSize); } } @@ -425,7 +425,7 @@ const atree_validate = new (class extends ComputeNode { const node = atree_state.get(node_id); const [success, hard_error, reason] = abil_can_activate(node, atree_state, reachable, archetype_count, ap_left); if (success) { - node.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[node.ability.display.icon], 1], [9, 3]); + node.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[node.ability.display.icon], 1], atreeNodeAtlasSize); } } @@ -973,7 +973,7 @@ function render_AT(UI_elem, list_elem, tree) { const parent_id = parent_abil.id; let connect_elem = document.createElement("div"); - connect_elem.style = "width: 112.5%; height: 112.5%; position: absolute; top: -5.55%; left: -5.55%; image-rendering: pixelated; background-image: url('../media/atree/connectors.png'); background-size: 1200% 400%;" + connect_elem.style = "width: 112.5%; height: 112.5%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); image-rendering: pixelated; background-image: url('../media/atree/connectors.png'); background-size: 1700% 500%;" // connect up for (let i = ability.display.row - 1; i > parent_abil.display.row; i--) { const coord = i + "," + ability.display.col; @@ -1009,7 +1009,7 @@ function render_AT(UI_elem, list_elem, tree) { // create node let node_elem = document.getElementById("atree-row-" + ability.display.row).children[ability.display.col]; - node_wrap.img = make_elem("div", [], {style: "width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated; z-index: 1; background-image: url('../media/atree/icons.png'); background-size: 900% 300%;"}) + node_wrap.img = make_elem("div", [], {style: "width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated; z-index: 1; background-image: url('../media/atree/icons.png'); background-size: 1700% 500%;"}) node_elem.appendChild(node_wrap.img); // create hitbox @@ -1231,11 +1231,11 @@ function atree_set_state(node_wrapper, new_state) { } if (new_state) { node_wrapper.active = true; - node_wrapper.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[icon], 2], [9, 3]); + node_wrapper.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[icon], 2], atreeNodeAtlasSize); } else { node_wrapper.active = false; - node_wrapper.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[icon], 1], [9, 3]); + node_wrapper.img.style.backgroundPosition = atlasBGPositionCalc([atreeNodeAtlasPositions[icon], 1], atreeNodeAtlasSize); } let atree_connectors_map = node_wrapper.all_connectors_ref; for (const parent of node_wrapper.parents) { @@ -1264,6 +1264,7 @@ const atreeConnectorAtlasPositions = { "1011": {"0000": [5, 2], "1011": [6, 2], "1010": [7, 2], "1001": [8, 2], "0011": [9, 2]}, "1111": {"0000": [0, 3], "1111": [1, 3], "1110": [2, 3], "1101": [3, 3], "1100": [4, 3], "1011": [5, 3], "1010": [6, 3], "1001": [7, 3], "0111": [8, 3], "0110": [9, 3], "0101": [10, 3], "0011": [11, 3]} } +const atreeConnectorAtlasSize = [17, 5] // just has the x position, y is based on state const atreeNodeAtlasPositions = { "node_0": 0, @@ -1276,6 +1277,7 @@ const atreeNodeAtlasPositions = { "node_assassin": 7, "node_shaman": 8 } +const atreeNodeAtlasSize = [17, 5] function atlasBGPositionCalc(pos, atlasSize) { // https://css-tricks.com/focusing-background-image-precise-location-percentages/ // p = (c + 0.5/z - 0.5) * z/(z - 1) + 0.5 @@ -1293,7 +1295,7 @@ function atree_render_connection(atree_connectors_map) { let connector_elem = connector_info.connector; set_connector_type(connector_info); connector_info.highlight = [0, 0, 0, 0]; - connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[connector_info.type]["0000"], [12, 4]); + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[connector_info.type]["0000"], atreeConnectorAtlasSize); let target_elem = document.getElementById("atree-row-" + i.split(",")[0]).children[i.split(",")[1]]; if (target_elem.children.length != 0) { // janky special case... @@ -1345,15 +1347,15 @@ function atree_set_edge(atree_connectors_map, parent, child, state) { for (let i = 0; i < 4; i++) { render += highlight_state[i] === 0 ? "0" : "1"; } - connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype][render], [12, 4]); + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype][render], atreeConnectorAtlasSize); continue; } else { // lol bad overloading, [0] is just the whole state highlight_state[0] += state_delta; if (highlight_state[0] > 0) { - connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype][ctype], [12, 4]); + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype][ctype], atreeConnectorAtlasSize); } else { - connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype]["0000"], [12, 4]); + connector_elem.style.backgroundPosition = atlasBGPositionCalc(atreeConnectorAtlasPositions[ctype]["0000"], atreeConnectorAtlasSize); } } } diff --git a/media/atree/connectors.png b/media/atree/connectors.png index 99c9aa90281f2f9e12832bfa655381803af6593c..ba0f6c9567d002b64f755a67f659f4b923ebe779 100644 GIT binary patch literal 4539 zcmbtXhdUcw)Q@_#_TD2!5nF94c2ub}_6}ae-ZM6B)oKN)U9_sy3PEY5)|=WRR8dqB zp;WE3s8wJ3eSgAt?{n{SpYuHT+;g6De!p{WhWR~XCVGB)006*batC4w08lAW&W^NK zDZ3W;!flEm)z{F_+{DmOI3z6C%QpZ407&L0k0O|PMaD@Ge?<+4w;w9rf1U1 zTlS0EO9rOe3Yp1Y+?QZ7$;^7W;ux~;f&IQhY^Z-wFHD=5tZ_?Is`F09tgLB&P@m*PD*}d?j zY!~rhrCty_L2;=$T|K=PH0iSSnBU*$g$@P?7Cs_sFNq*Q~#!TKYC*3SFT|u z%dKU<>t?HDO_U<0SNc6w@PylH1c%znsLpnRlKz!!YOH#9FPt}2RwP9XGW7bzV|rPL z@5~*=+{%lhw4|W}(6BhVp7C}zjr9wIu=ACqeVkM4P0dw_RCm3(tiYtlfIj$hhmM^+ zkHw&Jz#s1wQ~$GiCbtdruUMxnL8^qs-u_4@^l|d2klTt$A>(lFxk{=56;k(Q@CemK zhaRD1(aHaM4U68RPRDL4X6BSBQAAVRdmOH{BZ<&!l4VogM3%TPE4gkpC_`9f(uXLj*!fO#GP@`)b*Z8OzuQyZsl~6={5k~eAhQWb> zh@c37VHo1y2!y9_v~Pruu(1i$+%AQg2LNEnGlA$^BNukySUDOs7gXv5! zYC_<0x0Mat2Ch8KU&b-7{9U;t$fm3t4o~PbMA4Qy1%vvLW)4lp5Xds7JIWmyr4#=Q z{Hx=&*4xUd;ZPNpK?vkSXn#mxP*)l0Y%jy(^jP=LR}o>&_Ks!f?U!t977?z)2ZoT% zrh=7u52p8ph{hEYHsiW>KoFY%kCBu+6#08OUi2SfPe5}U#|zF^h@Su$WQgP@HLzAp za7O}9ou2OO8nHlhvez;)eB;iR#1@xsbX#Wx@~m97^JwXjS5UYGMIz5X>;qm80am8u zjQ}X~p}()2&7|&x^AO%jO6Q|=v>w^&3S1(|%bZReR3jR6(G-uFa(eiz8b7RcQXsaO?LzjU#B@h|Yt(o=L_ z#G?Xq)ozQ2GpFaRL2q1K8}PyPhxl^Q8d_0-5HRwyNX!w(ksVPvo|&hne~F>zOOm!oo@Bvw3< zMrq;V#IG%jZzCLxR@N(92~}TD_Cu9!X;!-w*qmZCw3vu=Y`|%{jKMNkPynck5*dfU z(sqOW(4>>?a1akq7F{b0sWlsz}YT$sGooxc;Z z`e&D0IngGyA&B+eKaEO7pNfZVFUG8|KcI^2$A+O$=Vf4m40X$Hm{r&aRbm3UxYNBw ztt((%I_lz3;B-0ZQn|Fy_X}p3kB4SzUJ7CG1+m*H-4U6DsK!lqC$nln=JEZr#64lQ)iDUIvFHIgjs0GJHCAPtP2t!aXAx~2xEt9_xCPBqwvzg`IYNHM55o z<*UMPQU0xu>z&Jwq|IOpiCOs+ak^q|Vf1S@wu_U&J(nw<_nmu>8y{L)-<68tK6DZh zJn!f<-ESQ6LZ(ZEiIjnS18lrFIyhr8*QdDVJp{dz^@p5=g!kU6ZplWF<3nR&rslsU zs$(0cX%1MSBuBXPzBuBC{iM2&K@76&ajKas@zgyc?0jwGzWp*(>X+UFRVCUkF(-bx#PE_9;;Slw>2V*#z^{wxf4VekqkAxUi6?jFRHS47R+{(X8xjkZn$^gROkw z?=L6qF69!L*OGIn!t2VdY*)kXt2+ox8?fPDqB6LyJHOH!N~Wo~EShe=TjICvvH! za8W^8)H8kfjkhm_ZRl_iR+|bKV}>z#$T-v>#uHaUG9Fy}uKZ&wwvwxO?~&0Tt;OY1 zHCg^Shlgji<&yf_s!TCnWp-=oK^P&y3H#+LBzJIesY%)c{r<+;!QRP&($BmB3HGt0 z;v+20qJ;(6fy|ilLLG!hNhD%@IKW9m&4#gaq=W~isb7QM*_h77!WYocZ{9mAIc7FF zjrSGdEwh0ZIS0RaS^ZX{Y`i3ZQAl3Lu-(zMut=s=I=-~_bAXJz=a13}iAS;QxT_Nv zOMzQ{IZ)T@uHD)u^w4p=S&7H;<(QDN84j6;#`OFZt50^wVD32c z;%`;Hd4T`ugEheg-0vKtsFd&wgX(v-kUeLv47eR9lYft9jV#dOT1;Q+Eb1Mt#vG8j zB5OFzn%+I!|Lj6n17{1!Zcx(g&7_YS zyqYPSkFVJ)E}ZGW-9Jlv}P1+u?M_{=-o@?fpzPi zIY^>(>Px@eM&N!)I6Ea)NtO^5m#UiA=OfdCDUi&NA+#h=jKfw6^r6{o&X?ketD&!d z;-d^m^YSYh^bS5J!DnaLcq;2GO3{UhU91QZK_YVDyoRbN-yu&yK2n~lJ7Mc-AilH4 zcMGaYW7j_c(4?(3}kzTEB5{w+Qd|7;SAgH88qruOR0k3L+e0R)p z{Ti}lb5oUm@szso=Xuw7^ymll&aREKRpB_g4vqzv7}^OtG})a2I!UXCdOJf4Le84Y z_kQsb6*b3C_W`i|k9q0OW+z0V{<~dX>B9r7i&7=63Q&E_P|x%}?Kau^u$|RDh|lge z{O^dN_oXOx0W~)Z=Kic}&x@Z)7p)xl8})^hN^W5@3MQ_;O8bnoY-6wwbo0K<`?r&t z=O=A8X*Kn%8eB{CHN*jE`EDBTzv5gLdYsTW-%;NrRN8alfdbL607R$@%=1$~+APhT z$ZXCw>i5x&8HZ8bm)$K~FNgiN7C2!eQB*MVA+?UL_mFzuVu0Gof4goK_%G-%#m!nI z2@*&gy2aA)aZN8!fY5tiUM|kT7L%_cwP)2BT1Cl4dD69=D~|G>ff0f<)*htt7dqK+vziudKc9K$$6w*J~nyx$F2jxN4{p>9_V}S z9aaigfx$5e32jy+IemDOatohy>#h0=*>*Tl`z z<)Xb$gLm%Ek`SU?X)bF;w_1Sy5yUr-uk)a`NO-RzMesQ*uD&Ok#>KHESBQ(+oXKH``P-c!i8#$KyhrEg9Wk=PvL>}@q^G5uN?1~pN(n|e4@hen6-^Egm zieWVrnr;q+52xQSji=WVYzCSh-T20odY9$E?bm_3;ttjPSyyiydNd$y2(W8=S zJjjVhE9nM4zP3}s!qO}(a-(D^E<7n(;P83lRuLyS-Mjl>Q`>TM!`BHX#&iDBQPz|F z2k&GAjInSP8pBFh%k<`26jy*@?Hc+Gs>`}U* delta 1808 zcmV+r2k-d1BcKjGiBL{Q4GJ0x0000DNk~Le0002k0000;1Oos70A^?=od5s;1ZP1_ zK>z@;j|==^1poj50drDELIAGL9O;wn0VjU|32;bRa{vG?BLDy{BLR4&KXw2B02okA zR7FQ{OeG~JH>|ZbHaI?lhb=BJU)JA1LQ2cMA2R>|00DGTPE!Ct=GbNc00v)4L_t(o z!?jsWZ`(K&G@$5SAvSs^1f3mFg0HniXRi@tV(&u0^A;}PzrXL3w)Nr4bxH)y_+62PMlo?pDN=T|(9gS>N1p zRMy$@VC^cYge)l|S^AcFdfH==H&B0_SfPx7|FAb8lGQ?1S#K+Et#i(}I(N?dHlt;9 zt`0gQAj`b}K(Zcdpa+p0N_SyPD(_{M?oh(7UE9eD1scbDpZRv zCiHR5EQY^PzhKO!l?To1;B4e-vrWq@V)7cFZ$Or5a}Kyd$Q?YGwfI`VgSmf3-;eGm zJTCl^mIi9DL#GpJbVXYX)7S+}2x@K16G=-Zd)*P$cMA(y!%{W?&J|JE(p4Xqk7IYD z1+!Rlwm&oadg4-l3Yl%QlRYDN4=@sctK~Z!XhtyhPv~o{?`&!5ljw9^y6ZPF?JP6H zM~stx;}rboSy;m+NL(YGoYG1ie9cT*y4r}GpPW{L7ZBO5YM89cB_94$9yAwoK zN~UvufaB73@f|Xe>@X~LI$cFolk7VXKvaXf&=yYpN+DbQT*$TS1N^1^J zktIqNbs*J9)V$=)59t4}r6XaCkyIm##Pcr4cF_NdZ2Q#E6J(>cO6Px<@!4i|M5`lS zz$o=J+2|V|!8rAGWcr>)@bzR}Cg+1=5cxT(4qa0HoSMVV=xs;f=*kh0l+@s+upw=L6Nxydrz&+9IHl}WuUb9{SGME1WYa|sd))G*9=<}PZDZW z;TvG~l3ueOA{i^>3#xxQMqV&ODQ6@SKDlPtL_A;5xuau2?ruR2DXe+N`O|KT#iS!x zgOOTNrIAPpWK=U+M!N&Se?8fQ#q&+x5O797@d+ucdB+HoeLq)Lmj6Io`1YW1l&WM38KLA9=ZF{pK}ytdL{zP3DUiiSHdbP9B-Z zr1)+}n!BBo<79v2fFl^EmWl7Y99KGGnGeA@b=MzWj+?V`JU)ruN&P8Vv1A^Djy0#X&$|5L1;z zrj#1}A{Zx><6r#MF|S z1*v5=`4KC9&t)&s!-q8Uo}4~LRy;)py1Y?2&Q*V)^X+ZwQWLbMI1E#LJ{aecG90m} z)Od{v8+bwf%A#Zo06R1Q;Fkp)7#yT~b(CHx>kRx=3IQwi20e96&e7cfx(~krVycQ60F5bsp{T=``?oI=)9fSA45$;9z*x;$R>ZutR1%-fezm5?uzVr$WgEB~Q zOvMPgY`*hW2c7DXG%cM1Ih$V9j3cpE_-#lErS>$sUwb4nabq@0#gpU`PyLYZo=EBc yRxPs04_WDZE_;bhe#lDSbJ? ze4j={0PY2|C$<0p^43;HMqNophS|l<*~-?z5&*bj{A0uwTcqx^8IL@dyHDn&?%JuI z`~dl$=+VnIRy{7qw>k_ek1hf^NR{4)Wh@xD?3#byTv+^85LCcS1V@O7KDk$|_ztUl z?V;IIk?oF}*HJazh{0UmF_LiHd@I^KAC=x!owfz;K$>7CNbmFBQL2qLlBXRL;(mU0 zVfznu+yf$w?mF`~a#9ZP&6XgAkvYN-lMf_ZKYwI@d-BDnH|;v5q?@7FX@vWb=^N{i z2o<{&5tRqG#q_pKbojLv?=2#~+Qso$80v^PyXtTYj#qOAm~s^tX8wHPPUHH3eH`?@TO5Wc4nCLHR^x~mZ<8>zS_RQqn3an7p0B?Y@Uo%Hx-XxVXg z<|!O#`u(fEVw__f3&na)0W853(nSBZlU-k*jNJq`GiC6^&v`C0s$UJOGT54`<7>rt z!3*i4rTHOnf`FlL8Uo5};x+Sz?$R*=B<5|Q8c{mro(OJq-T^v;>UQ6XT#rp$aQL^V z3$Czr;=3#@x(6~B&10OwH-A8WQp=l!T@M2g>LSZw^+gG!!aZNBzI&Wl-WvOyoTA=P zCeA6}8ezXwJKht<(S1K(LvscIkWu8OUa;ouja4ij`Z_d~LK?Spg+OYDBw3#MCYkT> z#zu0n%_m)*+}KV#D6^!v_*98oDcS?0;=~xlwPy=$YNm1oQ+)XN!7n@%&w}`eQBjwR9a%fZA^B_B zgX$ZuLE}gMG~wteQ7Gp=3>;lM(yvcJc?LpqbxFOAnC2Yuh*oi1N9f?N7jWTk{58W| z?S85~>(-ZtyWfs!h11}sC@Se|zYrpiAwl0IZn?<(rl3ojc93tqPQ_Y%qeZHfx1?eF zHiy+GzS~ddO32*7xQ4SliIoK)qiK)UOp>GOFB#Xc z$aswTW429$*Rz+w(S)&$Rw@WQIdLM;V6EHDsvcC#)uPHXRBfclx$V&R6bpP>ce7zIV`7i-u zJCvMNol)wJ`6k`Tg`^bGJph-LBdxX+XK#ek5;4;knbF-|W-UB(yT2{qWn`C}NzsaJ zZ^hFH^^TDrnrQX$7?r2?w3Dxkgyx)6AL-1TWWXq2{=Q~|E+7ybVbwEkRdTKp@WU^Z%RmLlXJB0He#g9$1i=J`Lpp(HKIypwwn>la!(*k< zv=<4y!qZoYX%?|deVav-8M6+XIbyDKB>(E9ATD~mQ{gXP%AAw{cS$6-)_GRSP+D*5 zz0#TZVnYA&m6+tk#fQ^Dbf}k#>G#>jqnv52+ZJ_b8v4G#&exRL?^fhAX^Hq)`rIdC zcvZD5^^Bpn0v!!huz&U!?WWuvuUpqyY&V?!4zhdh;9!MksH#?2qj>DJRi@#;Hab7q zOO*JvhK~lNiQ+jQmBgl6kJ$_6YKF8b`zP4FGbf3VFXLx|S2nEoIIkVXLNQ=0$A9r^ zS`T9(bUMt)u7r4J@1*5di!Oa%IQ4jn`KrVD;grT`($P{p8^g<27JkyKKEAWLRacq^ z+eGoOqac7~n`x#~>qD8~l5V&Kztqo4nO0uj8k-_t5;OGmZ zV;?Jpo8oz{Xpki0>d!RxV3cPqr|(Kg1V3|^qLmg#6SLqaLhcoRQy-zN?uvdu1gN}F znG_XI5bE+UnUFs{FH?K}CCmU#=B04LaWpY2UA`_kevtx}rxWm$+w@zvjm1+|L**Tx zD#@{sHZNSN!t0-H45fya1i4_f1dk)sX=79vPO`$*b_@vot5m=mR$k6flFaKXSVEc3M ztWkSH-o}@nbSA0QrxxFQojj|0EMOt_4@xyHVZh|eJc?VZnTDT#!&cVr>fw- zk#jkBhu0d6p|ntjf-2MA`E9+#{;{T{84Zm9;o#We%}4EUM?>$7DPe!xAo&bmnW;~G zn^e*^QrmXYVDR=|ymqZvD@Coc#TJ#+xXEt$#oS9s(ku|;{l%rA>|Wr=Ndid_(W+eYroI+%*)up)X+*G-J-&@A|yDrJp%WKdyM zbq!KyUaLNJNt&DEmP=6S+--JxkTq;OyLF_|0OjBsNw@m&n=8NYyQr!Ag@y^ZP#u#0 z>ipRs<>8sLOyG|3HYWXpHyrw%c!sms`qk(BC@FVAri5rT8RfY!OzJZfuNxN`@#~d$ z#G81qP~PFVK_YCQ?M;eXmLmt z`9&mgL)?kQ(`!?nM8>nZzk;>D)JbS}VpPb)3$|F4WAglHDKgHH;c*;~U@mTV)pja6 zWst|^(A|iLrIi|&mCe1;fQbe5z=LgZ?5VT4X418j1Sioo0XZXwQ}@K^n!1UH2W4}< zByNvIFXTP@Wjevah?;2g!gIygm7p7Nmw&d+&H+L zB8h>|cnRk$=KkaU*JQ+laOXYul(_pGP0Cc+)-u3kZ^($xauRw{QNPlyT=}AToHKY3 zaq}tE6w!)Q^ujIK>D+xxv_ardpu&v4u6b3Sr7J=Gam9TO#8>`I@!iIsvyA)iB={d- z`1i+XZBfyq%tK9mVwT|OGkiuPPo^aD3une4Rd6tZ%tjSNYLl@fL_5-Wg6Yiv=9vyH z^Coqr#MQY45~=L|iKrKozK^R_yjwnYz~kNun`d0=Z2Uztzpk^Dw7r!Bq`2vyhRTwVvbfc z;_CLykr6TDp$A~$OD?7Wv!-{nyzs&4CxrnRSfA8I0bVij^c2+286}9DKw9_M{Baid zRJ2Nl;gB2aYDb?2-#_WHh~DI5ec8j+Qs5N~iddaIiE&lP&AsQTac7Zmvm>&Qqh3ChB^w zB+)K|Q;PSBXTm~65M1*?Y-N#1**?#o9x|{bzjPX&t|tc(4{D8)HF9>G&*_dSKDDtG zLp15lZ?b9v3|Rzb_ZHGSg-F}`ipDlBNM2oGQEjRm_Ak|b?>?HX03sg<_LJ>>EdI@`?yD6A(oBj!xJ-7!U&^HLh?^$8*;h!b)Z48{tVD0Ufi!&gjyE_ z0?<$Xed7TW#O_@lZ;zwY?F!hUn__x`ok zmq(2(Vivyy-Zlkg=|R3R-z4Q)GJXAr@0~}b0xiHNH3T3sc`)}W!nPGDl|yw@kxXb^ z4le(PflM&t74Vc$HNAx_4D_G3g z`k!B6!q`8g=NnAtH|UZQLBktRYwmsUI8f^i&4KZj6Iqe&1HE1ZcfAIbMC$>-AKzR^ z3snz*IB|&Kl+X1Z?iM+RjzIy$Y3a=uTj%y9pR1zRYtphU33{PPMeeP<>XiHrYp)Oc zlk8yl0Nfo#0M{xFWcv6mcc5E<6ae!p8hA-r+B+gYW0uh*d}2C$JNR&cExYjBSJ5@* z^4|+lV;hKt4Q-j__QH|`vDC}IMbH|Nk-l^H0>rm(oi zZkou&JwpJTv<;{&^A}-92DQh_EuJ7M1kJDOO=@soIkfz{~Kl+@}%EpN2>! zL|K`~Yo`onlUhGp7AGEQ-T#_L0`5Kzi5MD(f{Eu*RaHO|IygHQIpjjakfq~`9(cr) zXm_7;qH-`N*1;W{^JdX~T=!ueGQ5d%=GZ~UxPkFTOGyGbAMQ&6Npy0E!^WRlYfQI? zL!+OMen7>lObx_%@Y~|7*GSovA;~QWfJsN#TL|29`XQOCnzSdq$+wL)n}DeCho|4Z~h> zP4503bToVxZPRD7sb&FfAsH2U z(1UPHY}D=_;re&R#gM5kxvvEtVymF^yE!F?S$YPH&^#HZ_@R(yyBhh?2 zx$DN!69H8Nd#U>cn-8~UaFN>%m0m6E1Y^$kj{k!5kSoIbkUmIG8|yA1>P(jQghHx3 z-BOhR54d#VOK0rK%k9VQbu&a(TYa~N#Rok;`0hd7@^cD{>;FB=aZQ!LQS#7p>1|A= z9r?Y`HO$&e;QcVl`e3`{=Ghr<@qaV zySpn*{TyDYPW||fT8t^$9tBtAhhfY$CPz<45qq?07M6NjfwT!K_gl1#^uMP!1_&Fj z*{JunwdDlZ_P~Kgs;UP2$4qAJZudgrKtgYe@+^-$YV^#4u=iN{2AG^ae!AQt?{O** zo*(XXt-wSkAnR;!@hzT=ONR`@CzWCosAyY;K=*2(djQMM+UA)nfU|yidP}Yj#X) z5y;-os6W(6h0R8|l?zl&do=@kW#}WYe9rXa4h<0g6!M(yHY54fDR$x!N4K6_Rk6agmBPObJ)AER}5|CPNm8@ik-s-wOF)g;nlNQ@wD0ik=FR?f)OPikP_ zz$1|~;S+_S{>&b@F6ZWnXU%bDz^i%*qfcc=IGq9}x-TCHGD}EgiW*L#`4P~{2I$Oj zdccBwzb8DiK}0+w{AXH7aN+yYI8HfVW<3`vL1W{)6qFvUCxGQ1aJ?;l*xs~uRTdr%vp z>Ue)aY)6EfHs;OD!KN=y<@pm;q#e~k;#L(jftgRTKkxG!3(6ReY;!Ldj&YNL%jOra z7_bx7>9SS5&gL`~xiNa^wp{ZOgQ+IqONUQjjRq%F2X)3$DfUgGCz1`&y`jcoyy0wDZ*$ijzbt!gwg#X!fbrK%$i}C0`Ee{(N95Iuc>)RWneq9*@5JJ6v> zum_^uucT^BR@cUM`hPvZfk4@g15TOYczBG2sb!#4ISi`q1q+qzf_eOUS<-YFo?ET-VuPrzlM!_)W5$l zoU93G;BK0qYXABKyKNfB=&Lr1E6>loKfS`X^CUviXo6#;qW;%N(5W~1j8lmBY3J(~ zs=EJc)Nn3b6MVw~RfTL7#M2|Y<jvbeSWtBqiug+4A!)|`mq*S1wkE}^R zOuH>~qgh&`&V|F%o6!r!_M041JAU}$CpDJ6kB$#b4tcO7S2_og&C2`<$L?~?v=v)3 z_FJv?f+Gq@&8R>EQ}5L7R!{bis8WbP6h)Svs915SfRl@`zv;?%Ry>V- ziKX~@qku1OcQ8{DOIh`!z94R_fiQf}1b6Wc>60M7IXD%V<}cV5tBLs}L?S=_gsUVx zD;IER$-!beeqh?})nfW7p6i70@h7yVL`AY4ojETTW=;4mZV5ZKvzaF5Dv*LGXd~oh zdec=vj_yWF8rtt0d5p(%(fP_NQ_W~{jrG*6GQ8)?RTM?SBR%A0;mRTGF+w(3kIG;F zOP|>On?7;%n!B}y{+B{2N7G6k>N0Y_tVR;VK@OCSopEOYSRT_;z4uwv=|$+_DPPo+ zsJ{@HmSPr9QGHY_w@J@ z>c%}+y&W9gf94RHQil)Znlj^N_XGgD|B&t*Jr9KsdZOia(&xDi{LeP*Z=4UFRr4e#S8e)mA+luDqb?i*q&qLv z7Mz;Y$&m*;jPibdMA%&(Y&2F1})|3w{p3nm1xIG#K$S%+eZAsMA2_(Put138{ehZG2@*_#ej*W#3uFaXkJxN znA_L08B=Bchf?W2T6l$ONU48JbY)dwk%h5@3MRW)MOSneTz{<^LAz;qb1Ek=`Lh+h zvE?%LSJAgiqWGz>5 z9Il&s^z{e03!q*Gfa~w@fyR_jI+x#)g?Z`R&RBA-ny34Oh&d(hrCn!jX9%#`^YTPe zJ0PM66%Z&pk1zP}vB})D$HD|TEtsDY9CL7Y&*{6f5!lsn(vQSS)-7Xyi{Vc~#I%v91-XRT^s4)p_ucnS%soY!eGIY#Kh$ra5`bGsh&Dm-VG!Zg2xAj@ zY=Pr~`&mz17<3|)qL~CK-Cy_F=S-Ddh04+rd;|wFyY2ZQC)4jMxp|~(t*!~Z4&>$) zR){8}`+GW@{5loY;9s>N9ulXNV75U3?4eHBR@p;Rol`HZ_}u+9ejIl?o-RK{tBk41 zxBY6Ve|gjKoPxB8%P8S#NMybjpuP&8!v`iU<%Qz#hdfuJ`S>WnDz4zpj2Jxg=ltb3v96rY1n<##X6vejz6Y%c?#sKaZasXs^PY+eJj?7-JlJMq8DjUC{k$U z{jxK=#C;A7E(8mY3M-RY`9nKt7WdXf)OTU3LmAM>ea@;rf z5F4s=GgUc#GMy!xa~_L7L``LPy|ubBgCqqdHr|M2;U1scsjRnPh})P6JgTDQah&ZM zPA{jGyXW#~B~gMUQ;HPnU|sixQ6sDi^iZ2x!2XSti+15XR2Vg=xe9ufHe!zVrwNi? zjAS2)l0AD*L-195JQuYrM!N2|f0z69?!K$#3(%K`Njd};e1@0woB_4J%amlH1A*%` zKz#($;_#NcO=9^tLQ7{1I$cFbF+1h36{19vKi@pty)ZiVf0G+xi~c^arIvSJwqR;-=i!N z1P_KE{dGrLDG30d_Sm&`dwjDJKSULex7vho>0VJ8azy0YMzlqft^SnI(=jv`sI2r? zTUy9CO%o?I3|59j!BB- zLFv}hXxM0)_dZ=>gyCoL{nhMJvcRGlExf~i=&jdYcab4ll<}3i3$4kv_FD=!b~8TQ zsudA+P)<;@;b1pD;LI=*-zv6d+$V*jHVV*;8;z)6n;R9NN_nvK+xfx~Gkip=f{4dp zbd2k^VHapmE&(RcYxL17ic*Z>ZCcT&Kfel$++$T3e($#O0}Er`A?lj1pV#S<$-{%=LcgOJw@@5UoQi6a~hW92ijC8^k1akJYX5&jc+!s z5IhEdsz((x%*6cO56WQv4@Nu85Su#OQnx1+kE#6=ymq1UKUdk4LUPcd=6lYflRT$s z#ijH-9FDj+4JfdjgRMbAxkdx>uTg_-KAqL%#qv*KLegZCGvLhrerJiEc}NxKc$3S0 z(QV+CzRUDYTP>)^EXjF)*V|=Y7Z!|J_Iz z32#f3>8|aDt+#W=p1RWA6k0G|f$N{%IR{v_0R@9^Cna1xE0k%zgwH zkt7y#h**3@lhEh0Vh;Z&7L(#z6}x(v+`rC-dYqZzE_U{z>-^RBhK78GfO66g$H3NL z#kJxqRU(Yt{w+9S>SSr=G5$cM&&+3^RN^mi>7oS1KIx`_8{6-nulbuL@j3r|mqec|ZG%8D4EE9?`7#Z267q7&qq^u>C zEo3c{QH&xxA^S39Jmx>W_xb$q=X1}!_jAv^-|sp1oX(K8G4KFYc{e2eiNU*UDbOaQYG>EzumiAyQoyZzFQt}FoRz0kxqXa0T-|3@^ zbS2OdNExJ+s=B?l4%f!UO3P}~w#nLD&+Nz__C^lh%IqBu!Ml}|^hH#;7gtPEP^4z}ug(C7r=wkD8ge5Il@^RUAv6fNJ2$M{l|D z)5E{HlTYAILM(oK^?^V{WbLdmgz$ldGr}GROvKO=ABw!O6pP#SFk~Pgx)iv0K@;yg*foi>}$G@7VTDYQ& z0BcQ9MLMAMc*}j?>V!dKgJE5W#t&I!e|N70KOy;+fBX%yo?_AGJm@N&yWlBBrI^$e z(5W)8#Gw8B9UNh!#(+Z7M>WMfdgw`{tmRx;;q<}lbiHEl9|@R~Q&@Qs7=ug?EHc zB(l7!&;IDv8Eq%1%e#zYTQl;`b5Fi8H%f%gABq-S_x@(3ESoYt1{JPg zI>6*>2{c^AJ(N%|DyKOWG_8HqEEel2gz4P9Svt3Mu0~3;ku`RCphZu-oxNY&cJ=d4 zrnqylQ2Bnw=*4-_g~N(7&`a`EjBJz`UhHA?;=8*F%Z*T>(gbzExwj;I6n1Zd^cz}c zr>s?McxYAgH7WWo-*-4cC1rvmVca%a!(U)lT~(lE`TaUH;zJT8Y}iNZhS*-t^71-C zQfhqu4y@S@vMd!D|E?gu@|896roa6GE18$aUie2KaUX3Es@ppLb>k4~UrpWX&Rt!V zY1=`pI#J!PE~B?C!V33FnTSler5L$L%NqQ7(80eF$!}f}4P99@I6*v>a;^MX+Fv0-8}-qFZl01RhE+LG1&^4_){y+_Jf4_@ zkbI~!P07O}>Zc#WhOW109x%Fe57=?49L204qyxG=v1bA#+{$uvcRSq5^0e&uhKjMA z&%58@VoBUMZ8O2##w=~td3f*#bk@IFex?GPkvBgL-1+qAC8#z>s{qw(h%DHHKG@rV z5vn_2@Fql_dgCq|Qv~{5@zpVXgwS~Ym~HB=6mxP7V8L8GUU1`MDnY-?Zkryp73D?X zj9l45n^zJCHSTj|$hHr*uXSpw&o!fp&@QJg-_v>U8NyreLLDQ&bvHop(=6@O#&F5& z;yBQ+x~{s~g^fvS^==sHcBSB5JeACZ`O@Dx_*hVzMK9(yX5>l5e2q|g-4Mu^HC_?hw zOU5gk#*3JP=azg2h{6+L9LC5fOVO3WWL@f?+jesW$S*zbp*1rAJD%YYmHAsyPiATF zsZ{|{gdMn6n#Rm8bkO5bo6a;={i0V7Y=}>eIkXZ^SjQA^_k|`28I}71-XD1+T zFXx(*F18nT*aVWlkCbzF9U~ia)`)6#ccTJK5EnABp9zz5Z&i+cK zJjVpPy0$QA?1AO`Cm!v3;TZ1zSLQF@KjUQa0Z8l!=Sh)Hj2*wc6c^I`Y~z!~Bs)!5 z(_s`S(z_eqCYR8WDJ#bnqJ5`TaGf^0kkp{|3;rt;iYq$D$adN<3yg2&uRM`1#Tk}e zO(g|!75GaK5-evYI|W+W?ZupqD!ywA^=rZM#7OnJYkS{BwN@p>xNXy)bB|dRA`%5H zzRuE^t?oc?u|*e!g4=3c4$X4#%CXKn2bpB+&(G1uSGGBf=Ypq%*q9(#K8S6nJ^dWnsZ8=j%{ZoC4q?>s2@OMG=7Qh0?#Q8ohy ztkap)r-)Ts)C7-D2i5ClJ%}Ce?uV)KID8&B!hyftaXl8L5Nk@oOU3^U5&`9KEKgq} zS>0UIih}IB8bIEjo~6aYJKTZCV<{lEi9$*LUjGGV^M@vdf>(c64?gvUv=E;nIK>6B zE}sw-3eq>(D@Bh5V@o4vX$EyYFyU|pLSit2gNmU-odIRZNuDLK91i2NYQmZo5oplBw(1!2oO8$ErWT90{U@Uw zA+c-$@bb9gZ6V?(EWhUV7nnMx<_qitJ-Qr`NFzV}Pe{c2@hBiLR37|zE~wUKMM=;8 zX~;oMWpA!yR&|$VX>sT3d2i|?J41_85L(B4hHr6Dd#SS_IJ4)~5 Date: Mon, 25 Jul 2022 13:52:20 -0400 Subject: [PATCH 75/82] compress new atlases --- media/atree/connectors.png | Bin 4539 -> 1912 bytes media/atree/icons.png | Bin 9996 -> 3229 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/media/atree/connectors.png b/media/atree/connectors.png index ba0f6c9567d002b64f755a67f659f4b923ebe779..b68ce89276dc7cd25c30b4ac0cf53a3e68351935 100644 GIT binary patch delta 1875 zcmV-Z2dwzJBlr%G7$yV*0002VILCDW000DMK}|sb0I`n?{9y$E0004VQb$4nuFf3k zlk5Q}e*g(^NLh0L04^f{04^f|c%?sf0000OP)t-sM{rCwHaI?lhb1K^H>|ZSE-+u# z-#|i2{5K^%00001bW%=J06^y0W&i*Nw@E}nRA}DqT1}7QI20r;<&J|Qt`ie_uLBmE zdt~L@A+q+~ihN#X4*dOnUp5Va9s(J9SHc=ie^+PT)yYHD5ja7AEdoO?rN z9o9e(VzkWkfm)I~Cx4P&X7FR)HZu2qI5X#*aqY%AYi;d)XRU$u14pygcX8CK7&0GYd7? zp$Y7Zu&^zLiAW9Xp;oobI?Zliwwe>K9}3p9gcU6S>~rFyGM&F2K0@;yt((G{z4~S7 zX2lhM7iOw8JGDpf>fuU!kINnHi|J5iK;#z;q?Bt^rs&htgym^IZjWiBm?nHIe{niy zyo;t;`L4p9xZ;w`R}AuY#eGUY{2>5@l#-8g>aOn|w~-{?cfjmTW=MEIWD=O&^el33 zH}smvy~;*ryOT&0BHNqxvm2W_!|e3Q;UY8pKxR!VGu?z|eA4FOsW1C;Gs{EG@^Q?P zz$~hdG(@6?OJ?qb>myp)Q-v{-e}>5T%JEY|)04qIFq=M(#~Eh5B}*@_=0lqb!>cg- z0rXOjW!Bp)BIu{Sh*{V?Blu!wjS<ttV;%2 z-3jpTTyy894#IiGGPQ&&e-rp=Gy`D9sh^%wlL?%mlw&by3&)XlaU21isN4uQXEHZC zJ^*KO*!U2!5{W{7W_BW=JNS|Xk! z`L-sY^42)^*2;P*f50<{sazs=Yg%*)U87LI`c4-JK$$V{egP?{S=X4N;)V@9OH&1) z?igrJVX+@$&P1|qf=^p%1{MLx)&-=n0JR&LpfoX5vSc^ZR~)f=;rN2Dqs*CTT4O3L zBAY>HiCaa27i!k85ZTX!8BAGC!vm-m9I2Ti)QrOn-O#<7e=Ak6Pm3<>0qDOlMKu{j z;3qS~j~NZGGQEfq`tks3#$g6>8{JR>Sr4ca(5RWAug02849;_r8@hg*1bbiUw-hecz{*mkb4W;H9qYiFZWEUyXiD_jrBUn zo*m7(y~cVSWY3P~++HJ72T9pKsB)j}*`Dp$A)f8op6%J5?b-f6?OzGTOgrkkoF@PP N002ovPDHLkV1n;!b}0Y= literal 4539 zcmbtXhdUcw)Q@_#_TD2!5nF94c2ub}_6}ae-ZM6B)oKN)U9_sy3PEY5)|=WRR8dqB zp;WE3s8wJ3eSgAt?{n{SpYuHT+;g6De!p{WhWR~XCVGB)006*batC4w08lAW&W^NK zDZ3W;!flEm)z{F_+{DmOI3z6C%QpZ407&L0k0O|PMaD@Ge?<+4w;w9rf1U1 zTlS0EO9rOe3Yp1Y+?QZ7$;^7W;ux~;f&IQhY^Z-wFHD=5tZ_?Is`F09tgLB&P@m*PD*}d?j zY!~rhrCty_L2;=$T|K=PH0iSSnBU*$g$@P?7Cs_sFNq*Q~#!TKYC*3SFT|u z%dKU<>t?HDO_U<0SNc6w@PylH1c%znsLpnRlKz!!YOH#9FPt}2RwP9XGW7bzV|rPL z@5~*=+{%lhw4|W}(6BhVp7C}zjr9wIu=ACqeVkM4P0dw_RCm3(tiYtlfIj$hhmM^+ zkHw&Jz#s1wQ~$GiCbtdruUMxnL8^qs-u_4@^l|d2klTt$A>(lFxk{=56;k(Q@CemK zhaRD1(aHaM4U68RPRDL4X6BSBQAAVRdmOH{BZ<&!l4VogM3%TPE4gkpC_`9f(uXLj*!fO#GP@`)b*Z8OzuQyZsl~6={5k~eAhQWb> zh@c37VHo1y2!y9_v~Pruu(1i$+%AQg2LNEnGlA$^BNukySUDOs7gXv5! zYC_<0x0Mat2Ch8KU&b-7{9U;t$fm3t4o~PbMA4Qy1%vvLW)4lp5Xds7JIWmyr4#=Q z{Hx=&*4xUd;ZPNpK?vkSXn#mxP*)l0Y%jy(^jP=LR}o>&_Ks!f?U!t977?z)2ZoT% zrh=7u52p8ph{hEYHsiW>KoFY%kCBu+6#08OUi2SfPe5}U#|zF^h@Su$WQgP@HLzAp za7O}9ou2OO8nHlhvez;)eB;iR#1@xsbX#Wx@~m97^JwXjS5UYGMIz5X>;qm80am8u zjQ}X~p}()2&7|&x^AO%jO6Q|=v>w^&3S1(|%bZReR3jR6(G-uFa(eiz8b7RcQXsaO?LzjU#B@h|Yt(o=L_ z#G?Xq)ozQ2GpFaRL2q1K8}PyPhxl^Q8d_0-5HRwyNX!w(ksVPvo|&hne~F>zOOm!oo@Bvw3< zMrq;V#IG%jZzCLxR@N(92~}TD_Cu9!X;!-w*qmZCw3vu=Y`|%{jKMNkPynck5*dfU z(sqOW(4>>?a1akq7F{b0sWlsz}YT$sGooxc;Z z`e&D0IngGyA&B+eKaEO7pNfZVFUG8|KcI^2$A+O$=Vf4m40X$Hm{r&aRbm3UxYNBw ztt((%I_lz3;B-0ZQn|Fy_X}p3kB4SzUJ7CG1+m*H-4U6DsK!lqC$nln=JEZr#64lQ)iDUIvFHIgjs0GJHCAPtP2t!aXAx~2xEt9_xCPBqwvzg`IYNHM55o z<*UMPQU0xu>z&Jwq|IOpiCOs+ak^q|Vf1S@wu_U&J(nw<_nmu>8y{L)-<68tK6DZh zJn!f<-ESQ6LZ(ZEiIjnS18lrFIyhr8*QdDVJp{dz^@p5=g!kU6ZplWF<3nR&rslsU zs$(0cX%1MSBuBXPzBuBC{iM2&K@76&ajKas@zgyc?0jwGzWp*(>X+UFRVCUkF(-bx#PE_9;;Slw>2V*#z^{wxf4VekqkAxUi6?jFRHS47R+{(X8xjkZn$^gROkw z?=L6qF69!L*OGIn!t2VdY*)kXt2+ox8?fPDqB6LyJHOH!N~Wo~EShe=TjICvvH! za8W^8)H8kfjkhm_ZRl_iR+|bKV}>z#$T-v>#uHaUG9Fy}uKZ&wwvwxO?~&0Tt;OY1 zHCg^Shlgji<&yf_s!TCnWp-=oK^P&y3H#+LBzJIesY%)c{r<+;!QRP&($BmB3HGt0 z;v+20qJ;(6fy|ilLLG!hNhD%@IKW9m&4#gaq=W~isb7QM*_h77!WYocZ{9mAIc7FF zjrSGdEwh0ZIS0RaS^ZX{Y`i3ZQAl3Lu-(zMut=s=I=-~_bAXJz=a13}iAS;QxT_Nv zOMzQ{IZ)T@uHD)u^w4p=S&7H;<(QDN84j6;#`OFZt50^wVD32c z;%`;Hd4T`ugEheg-0vKtsFd&wgX(v-kUeLv47eR9lYft9jV#dOT1;Q+Eb1Mt#vG8j zB5OFzn%+I!|Lj6n17{1!Zcx(g&7_YS zyqYPSkFVJ)E}ZGW-9Jlv}P1+u?M_{=-o@?fpzPi zIY^>(>Px@eM&N!)I6Ea)NtO^5m#UiA=OfdCDUi&NA+#h=jKfw6^r6{o&X?ketD&!d z;-d^m^YSYh^bS5J!DnaLcq;2GO3{UhU91QZK_YVDyoRbN-yu&yK2n~lJ7Mc-AilH4 zcMGaYW7j_c(4?(3}kzTEB5{w+Qd|7;SAgH88qruOR0k3L+e0R)p z{Ti}lb5oUm@szso=Xuw7^ymll&aREKRpB_g4vqzv7}^OtG})a2I!UXCdOJf4Le84Y z_kQsb6*b3C_W`i|k9q0OW+z0V{<~dX>B9r7i&7=63Q&E_P|x%}?Kau^u$|RDh|lge z{O^dN_oXOx0W~)Z=Kic}&x@Z)7p)xl8})^hN^W5@3MQ_;O8bnoY-6wwbo0K<`?r&t z=O=A8X*Kn%8eB{CHN*jE`EDBTzv5gLdYsTW-%;NrRN8alfdbL607R$@%=1$~+APhT z$ZXCw>i5x&8HZ8bm)$K~FNgiN7C2!eQB*MVA+?UL_mFzuVu0Gof4goK_%G-%#m!nI z2@*&gy2aA)aZN8!fY5tiUM|kT7L%_cwP)2BT1Cl4dD69=D~|G>ff0f<)*htt7dqK+vziudKc9K$$6w*J~nyx$F2jxN4{p>9_V}S z9aaigfx$5e32jy+IemDOatohy>#h0=*>*Tl`z z<)Xb$gLm%Ek`SU?X)bF;w_1Sy5yUr-uk)a`NO-RzMesQ*uD&Ok#>KHESBQ(+oXKH``P-c!i8#$KyhrEg9Wk=PvL>}@q^G5uN?1~pN(n|e4@hen6-^Egm zieWVrnr;q+52xQSji=WVYzCSh-T20odY9$E?bm_3;ttjPSyyiydNd$y2(W8=S zJjjVhE9nM4zP3}s!qO}(a-(D^E<7n(;P83lRuLyS-Mjl>Q`>TM!`BHX#&iDBQPz|F z2k&GAjInSP8pBFh%k<`26jy*@?Hc+Gs>`}U* diff --git a/media/atree/icons.png b/media/atree/icons.png index 8d78c344830496c93c37086e914baf3ff2471425..d812ac418a4bc7639a98d0787c4dbf59243bd73c 100644 GIT binary patch literal 3229 zcmb_di9eKU8y?eWG?tmBk>w2UC~In>I>{xm~c2+R47|V zLHt}IghimccyryDky=V9T8-oXb1$q_s1g@f1hv(T)akc^02jw za01jd_W2rGSvy!>$?zRz89#iYrKNKKZ=eCFYqcHLsy0Mxp;1aGl8&CkK?8}cEeTKJ z*|pmc4p|uMI~X~BtaWhQtMEoc<1j);61sZS)Xd7-MgorcLQ^#b+n-Scd1EgUre}D_ z(bd(1;&8&w{{)e2YGL8#ani(4+v(v0OI=I%vKC1?d-4alm}4&P5UbB0&Osouq4qXJ zkNB~#w`AjHjTEk)HQYNy7xs40Z}Xz_p1zPsRt{J>Jk^DIxI~@1JvedDz2X2lK_Sxi zN-&CbBeJd)CDfTLt`T?CedX4jMJhe1r>znaFGmveF-8O1X9xD~ch!?9y5gm!aJuSC_m=?a{hMO?qK+etu`3 zWB1$)R)t?wSH}2F<(zR}4?!-;DYX<;@@agn)4|AfDtQ*S&#Jp;VIW)g)m8<(FMKjZ zJ2H^8!4E2Bvz`U2+zruJ3%&6%Td911YU6Ql_iW>abi}GB{FhUcCt56J5C$BHrxZFV zszl4$C##MVk=T%sm^jDEw>J__eC2YvVzH&Ro-^?#?nb>i0y>p-geZ0HRCCeHWD#uc zMt6-!O8?asuc)Yq$6FS&5NTiN!d;U7LWaHamR;-gRGD1t+bd&lXU~Lw*or__#QNO? z2AyXsHQWiS__(X_9WBB4#m+J(BXtDPu&d{_bY)X&~_q&tjk!FjJ#BMbC25ozki zKRvtmnu2@00lPZ!9ov2oBgua(Jd(Giz5B38PD>EstT*U3oT(C=gn2~B60B8Pb43R_ zcJ*c<^JQH7`TBmY^U3cbQc^HQgRQ+SuYVfTTrRbGE{xFpITO>^Qiqfs z(#GJ-vtab=tR0%Sa_yz}^tF_4#Rn83Gy^kMzCFEm-yd2A{mCmQI$1WdmN+h}EDEB3 zkD?z@2vn4*>CB?$*8Fa!tZP$>M7p~EW%V}RyTAy4;fh}Q-A4x3?9N90nq^h)^vBtT z82YM)VZ+y7&Mzu#k1PgG9i2>r-p2q<%$T?af9&$26R&pUt{Zd}wVx9pB;pyA2VB@= z6-2rIu@3EY>w9I2RfmfuFJ?2>w&&PdA0EGbZejJo2bS?;$NJew!P^->uk*}GK_*hm8rjbZ0kZVH=4n z^i&v_vn}DX_eJ{$6bXA2yIj>qhzFf(AT32xEX~#nCC2$ z&H10SG$EK^Wvt(iU+a&tne^(}8KMtBkvW%XjS}Oi8)zvigOIc%h0uEkkJ_ZY0_N^M zOxa0gcu9B_BI54kHWDF&(A(;*-Z}~dPP2~ytMIBnA5-DRx}Ep8Kt%bY%Sqord^Gh^ z-1Hk^%>pvYS|@ql)q{!}?r!e^-T~#+IXOAGHSHPKnr!t3hs&zJAkmoe9{q%0*9B7~ zF)mmDA%MIq6}^-*oD6O}O^)pX{O(gOndxLO0)t$xyK($e0m4$Vq44|DTUHW&XG z17Nfa_W1ZXJGj|UNF4kk@&x$rSo_c3A*?fmz zpTMrlx&0xuXg?j^t<~{QWDt*Cler{8j6Vci7r0>(+?7{mls_Y3fAxO zY5RpY*o>~r;e1-}+~i`%+RD_L!#1;IO;y90e>?$C$p-fue0bwojI(*_#N@<;GRP<{ zSV?I=s>B{cMHL%+5~#JF72J!GJ|Xe5Bi{#Kc#2jj#vS5s;i>78jI^2np)RH=^i-!i zllixQj~%FlM{0bDg}AwC-fI9z(;s;sT}AYuGTu>AzU^<1t^SN`SCo0pewg=!gG6hi zM#*ihWwJLT_5A*R{?Mgs$t#jR>o~O}BBhdZ5@MTL5||Hu?Euo)xi4OPm#wlr0tUL1 z+~wZe_eN1)lLw#fpAEx9eI6aBGVbPb#GWFvvAVA-ZdcVPhG!JFGC0REGL~ol`lr~K z^U?RF827RxEY7f*(Az%%LkFX}0L=>lpVuC2(Rvqg&srB)Ze1VSHh3~ij(X}#yY{O0 z-}xp6`RupNiXR{Zv+=Tj_!kyoMe(H+y&f-ugNLeA?)qJSofh!~i0LQ!Z| z9iCLjOnfchJ;SU z^({oI4S;2b7cd}{TmBI#^8f1--q>K!7Sf!$+EC|6>gr*n@S9htmwGQvaRxNN4-y>i#!O1Fq5 zf6=&;e|2f>yK7<}OZ#Q)0p$14^@H^*CYfcLAAi;<0#+5=S0t4wQ^?Xe-{xy(u+|Z7 zalYwATu}}yfv#${=@~hM-)Si6p4)?nUzh0esLE5f31p*J*c|Y1I$=}>aofTqk6qd7 zgKdmUP|K^4ckzHM@R8F@0@+ebqB0t#jmaV+SGHV?yJRk)6$pMaW3Izftzx8MRMh&$ zb?ikEu~Efz9qz`xBcKJ!AEPqNQ>zG>D&YFEco?wBT@ey-sN+%s5$kuqH-P3z>qQV< zwbbEcSw$d6(ecESRMg%!(CAO{X@81-c>m2%Am2X-XtJtdsmns5*sa@m9lnrT=i~ww zb$Q6|3$k>fVg(t{`Am%SlyJ60mn5@75mA>IC&u}xsLs9P!QDJFM}YG8Q|*U#K0WbR(sqJ0s8J1D(%kcBPUNHGLN1{z3ZCWAaA;ac6p5tgGo z_zsv<%ZY4cY3D8~>Mtq_fI<5T{{*u??F2;~)7D&t+ZQQMs#b_`QRnmUhTxuQ zw80wOZH7+B-1+F*zgaxXIYMIgo>(x>MW{fGOSpbRK%27-T||~*u7kkl9gBQg5fmN63B)3IsqFuzZqnyUgQ77TU-ZO3}v`gpjFs^ zfA#rg4PLL%e@ToJ5JSMz@-0J4kOxxBR!c0>_A%<8CnXK3J=vw0GX`oPs%%+7mL4P~ zQBn6ZtC)pToj|Aewt-ayRHcU0tv>o>SGKq=94y%4Vb)&X_oEnJp6KY}#oh21;O#pr zj=14x&Z&sE^z7l2k|tPv1DCO_ttKBH@RgGNGG}!95rFcw{47ywiKvTM^x0Q%y(1zZ zJr^q;MX1&U^aCdfzZ)i=SAp(xHryQBwmE^8hA=Ph__rDV@774N?RA^_Q2HMMpMJ!) Mw{@|pwf4L6AGS;QCIA2c literal 9996 zcmeI2by!sI+V9uUC?%+rGy;lBNC^_s2na|s(%oGn3?m?n(t;u&B@GgiN_TgMgfxsa zLkuzR;`iHopZ)H0&il{#_gr(Wb? ze4j={0PY2|C$<0p^43;HMqNophS|l<*~-?z5&*bj{A0uwTcqx^8IL@dyHDn&?%JuI z`~dl$=+VnIRy{7qw>k_ek1hf^NR{4)Wh@xD?3#byTv+^85LCcS1V@O7KDk$|_ztUl z?V;IIk?oF}*HJazh{0UmF_LiHd@I^KAC=x!owfz;K$>7CNbmFBQL2qLlBXRL;(mU0 zVfznu+yf$w?mF`~a#9ZP&6XgAkvYN-lMf_ZKYwI@d-BDnH|;v5q?@7FX@vWb=^N{i z2o<{&5tRqG#q_pKbojLv?=2#~+Qso$80v^PyXtTYj#qOAm~s^tX8wHPPUHH3eH`?@TO5Wc4nCLHR^x~mZ<8>zS_RQqn3an7p0B?Y@Uo%Hx-XxVXg z<|!O#`u(fEVw__f3&na)0W853(nSBZlU-k*jNJq`GiC6^&v`C0s$UJOGT54`<7>rt z!3*i4rTHOnf`FlL8Uo5};x+Sz?$R*=B<5|Q8c{mro(OJq-T^v;>UQ6XT#rp$aQL^V z3$Czr;=3#@x(6~B&10OwH-A8WQp=l!T@M2g>LSZw^+gG!!aZNBzI&Wl-WvOyoTA=P zCeA6}8ezXwJKht<(S1K(LvscIkWu8OUa;ouja4ij`Z_d~LK?Spg+OYDBw3#MCYkT> z#zu0n%_m)*+}KV#D6^!v_*98oDcS?0;=~xlwPy=$YNm1oQ+)XN!7n@%&w}`eQBjwR9a%fZA^B_B zgX$ZuLE}gMG~wteQ7Gp=3>;lM(yvcJc?LpqbxFOAnC2Yuh*oi1N9f?N7jWTk{58W| z?S85~>(-ZtyWfs!h11}sC@Se|zYrpiAwl0IZn?<(rl3ojc93tqPQ_Y%qeZHfx1?eF zHiy+GzS~ddO32*7xQ4SliIoK)qiK)UOp>GOFB#Xc z$aswTW429$*Rz+w(S)&$Rw@WQIdLM;V6EHDsvcC#)uPHXRBfclx$V&R6bpP>ce7zIV`7i-u zJCvMNol)wJ`6k`Tg`^bGJph-LBdxX+XK#ek5;4;knbF-|W-UB(yT2{qWn`C}NzsaJ zZ^hFH^^TDrnrQX$7?r2?w3Dxkgyx)6AL-1TWWXq2{=Q~|E+7ybVbwEkRdTKp@WU^Z%RmLlXJB0He#g9$1i=J`Lpp(HKIypwwn>la!(*k< zv=<4y!qZoYX%?|deVav-8M6+XIbyDKB>(E9ATD~mQ{gXP%AAw{cS$6-)_GRSP+D*5 zz0#TZVnYA&m6+tk#fQ^Dbf}k#>G#>jqnv52+ZJ_b8v4G#&exRL?^fhAX^Hq)`rIdC zcvZD5^^Bpn0v!!huz&U!?WWuvuUpqyY&V?!4zhdh;9!MksH#?2qj>DJRi@#;Hab7q zOO*JvhK~lNiQ+jQmBgl6kJ$_6YKF8b`zP4FGbf3VFXLx|S2nEoIIkVXLNQ=0$A9r^ zS`T9(bUMt)u7r4J@1*5di!Oa%IQ4jn`KrVD;grT`($P{p8^g<27JkyKKEAWLRacq^ z+eGoOqac7~n`x#~>qD8~l5V&Kztqo4nO0uj8k-_t5;OGmZ zV;?Jpo8oz{Xpki0>d!RxV3cPqr|(Kg1V3|^qLmg#6SLqaLhcoRQy-zN?uvdu1gN}F znG_XI5bE+UnUFs{FH?K}CCmU#=B04LaWpY2UA`_kevtx}rxWm$+w@zvjm1+|L**Tx zD#@{sHZNSN!t0-H45fya1i4_f1dk)sX=79vPO`$*b_@vot5m=mR$k6flFaKXSVEc3M ztWkSH-o}@nbSA0QrxxFQojj|0EMOt_4@xyHVZh|eJc?VZnTDT#!&cVr>fw- zk#jkBhu0d6p|ntjf-2MA`E9+#{;{T{84Zm9;o#We%}4EUM?>$7DPe!xAo&bmnW;~G zn^e*^QrmXYVDR=|ymqZvD@Coc#TJ#+xXEt$#oS9s(ku|;{l%rA>|Wr=Ndid_(W+eYroI+%*)up)X+*G-J-&@A|yDrJp%WKdyM zbq!KyUaLNJNt&DEmP=6S+--JxkTq;OyLF_|0OjBsNw@m&n=8NYyQr!Ag@y^ZP#u#0 z>ipRs<>8sLOyG|3HYWXpHyrw%c!sms`qk(BC@FVAri5rT8RfY!OzJZfuNxN`@#~d$ z#G81qP~PFVK_YCQ?M;eXmLmt z`9&mgL)?kQ(`!?nM8>nZzk;>D)JbS}VpPb)3$|F4WAglHDKgHH;c*;~U@mTV)pja6 zWst|^(A|iLrIi|&mCe1;fQbe5z=LgZ?5VT4X418j1Sioo0XZXwQ}@K^n!1UH2W4}< zByNvIFXTP@Wjevah?;2g!gIygm7p7Nmw&d+&H+L zB8h>|cnRk$=KkaU*JQ+laOXYul(_pGP0Cc+)-u3kZ^($xauRw{QNPlyT=}AToHKY3 zaq}tE6w!)Q^ujIK>D+xxv_ardpu&v4u6b3Sr7J=Gam9TO#8>`I@!iIsvyA)iB={d- z`1i+XZBfyq%tK9mVwT|OGkiuPPo^aD3une4Rd6tZ%tjSNYLl@fL_5-Wg6Yiv=9vyH z^Coqr#MQY45~=L|iKrKozK^R_yjwnYz~kNun`d0=Z2Uztzpk^Dw7r!Bq`2vyhRTwVvbfc z;_CLykr6TDp$A~$OD?7Wv!-{nyzs&4CxrnRSfA8I0bVij^c2+286}9DKw9_M{Baid zRJ2Nl;gB2aYDb?2-#_WHh~DI5ec8j+Qs5N~iddaIiE&lP&AsQTac7Zmvm>&Qqh3ChB^w zB+)K|Q;PSBXTm~65M1*?Y-N#1**?#o9x|{bzjPX&t|tc(4{D8)HF9>G&*_dSKDDtG zLp15lZ?b9v3|Rzb_ZHGSg-F}`ipDlBNM2oGQEjRm_Ak|b?>?HX03sg<_LJ>>EdI@`?yD6A(oBj!xJ-7!U&^HLh?^$8*;h!b)Z48{tVD0Ufi!&gjyE_ z0?<$Xed7TW#O_@lZ;zwY?F!hUn__x`ok zmq(2(Vivyy-Zlkg=|R3R-z4Q)GJXAr@0~}b0xiHNH3T3sc`)}W!nPGDl|yw@kxXb^ z4le(PflM&t74Vc$HNAx_4D_G3g z`k!B6!q`8g=NnAtH|UZQLBktRYwmsUI8f^i&4KZj6Iqe&1HE1ZcfAIbMC$>-AKzR^ z3snz*IB|&Kl+X1Z?iM+RjzIy$Y3a=uTj%y9pR1zRYtphU33{PPMeeP<>XiHrYp)Oc zlk8yl0Nfo#0M{xFWcv6mcc5E<6ae!p8hA-r+B+gYW0uh*d}2C$JNR&cExYjBSJ5@* z^4|+lV;hKt4Q-j__QH|`vDC}IMbH|Nk-l^H0>rm(oi zZkou&JwpJTv<;{&^A}-92DQh_EuJ7M1kJDOO=@soIkfz{~Kl+@}%EpN2>! zL|K`~Yo`onlUhGp7AGEQ-T#_L0`5Kzi5MD(f{Eu*RaHO|IygHQIpjjakfq~`9(cr) zXm_7;qH-`N*1;W{^JdX~T=!ueGQ5d%=GZ~UxPkFTOGyGbAMQ&6Npy0E!^WRlYfQI? zL!+OMen7>lObx_%@Y~|7*GSovA;~QWfJsN#TL|29`XQOCnzSdq$+wL)n}DeCho|4Z~h> zP4503bToVxZPRD7sb&FfAsH2U z(1UPHY}D=_;re&R#gM5kxvvEtVymF^yE!F?S$YPH&^#HZ_@R(yyBhh?2 zx$DN!69H8Nd#U>cn-8~UaFN>%m0m6E1Y^$kj{k!5kSoIbkUmIG8|yA1>P(jQghHx3 z-BOhR54d#VOK0rK%k9VQbu&a(TYa~N#Rok;`0hd7@^cD{>;FB=aZQ!LQS#7p>1|A= z9r?Y`HO$&e;QcVl`e3`{=Ghr<@qaV zySpn*{TyDYPW||fT8t^$9tBtAhhfY$CPz<45qq?07M6NjfwT!K_gl1#^uMP!1_&Fj z*{JunwdDlZ_P~Kgs;UP2$4qAJZudgrKtgYe@+^-$YV^#4u=iN{2AG^ae!AQt?{O** zo*(XXt-wSkAnR;!@hzT=ONR`@CzWCosAyY;K=*2(djQMM+UA)nfU|yidP}Yj#X) z5y;-os6W(6h0R8|l?zl&do=@kW#}WYe9rXa4h<0g6!M(yHY54fDR$x!N4K6_Rk6agmBPObJ)AER}5|CPNm8@ik-s-wOF)g;nlNQ@wD0ik=FR?f)OPikP_ zz$1|~;S+_S{>&b@F6ZWnXU%bDz^i%*qfcc=IGq9}x-TCHGD}EgiW*L#`4P~{2I$Oj zdccBwzb8DiK}0+w{AXH7aN+yYI8HfVW<3`vL1W{)6qFvUCxGQ1aJ?;l*xs~uRTdr%vp z>Ue)aY)6EfHs;OD!KN=y<@pm;q#e~k;#L(jftgRTKkxG!3(6ReY;!Ldj&YNL%jOra z7_bx7>9SS5&gL`~xiNa^wp{ZOgQ+IqONUQjjRq%F2X)3$DfUgGCz1`&y`jcoyy0wDZ*$ijzbt!gwg#X!fbrK%$i}C0`Ee{(N95Iuc>)RWneq9*@5JJ6v> zum_^uucT^BR@cUM`hPvZfk4@g15TOYczBG2sb!#4ISi`q1q+qzf_eOUS<-YFo?ET-VuPrzlM!_)W5$l zoU93G;BK0qYXABKyKNfB=&Lr1E6>loKfS`X^CUviXo6#;qW;%N(5W~1j8lmBY3J(~ zs=EJc)Nn3b6MVw~RfTL7#M2|Y<jvbeSWtBqiug+4A!)|`mq*S1wkE}^R zOuH>~qgh&`&V|F%o6!r!_M041JAU}$CpDJ6kB$#b4tcO7S2_og&C2`<$L?~?v=v)3 z_FJv?f+Gq@&8R>EQ}5L7R!{bis8WbP6h)Svs915SfRl@`zv;?%Ry>V- ziKX~@qku1OcQ8{DOIh`!z94R_fiQf}1b6Wc>60M7IXD%V<}cV5tBLs}L?S=_gsUVx zD;IER$-!beeqh?})nfW7p6i70@h7yVL`AY4ojETTW=;4mZV5ZKvzaF5Dv*LGXd~oh zdec=vj_yWF8rtt0d5p(%(fP_NQ_W~{jrG*6GQ8)?RTM?SBR%A0;mRTGF+w(3kIG;F zOP|>On?7;%n!B}y{+B{2N7G6k>N0Y_tVR;VK@OCSopEOYSRT_;z4uwv=|$+_DPPo+ zsJ{@HmSPr9QGHY_w@J@ z>c%}+y&W9gf94RHQil)Znlj^N_XGgD|B&t*Jr9KsdZOia(&xDi{LeP*Z=4UFRr4e#S8e)mA+luDqb?i*q&qLv z7Mz;Y$&m*;jPibdMA%&(Y&2F1})|3w{p3nm1xIG#K$S%+eZAsMA2_(Put138{ehZG2@*_#ej*W#3uFaXkJxN znA_L08B=Bchf?W2T6l$ONU48JbY)dwk%h5@3MRW)MOSneTz{<^LAz;qb1Ek=`Lh+h zvE?%LSJAgiqWGz>5 z9Il&s^z{e03!q*Gfa~w@fyR_jI+x#)g?Z`R&RBA-ny34Oh&d(hrCn!jX9%#`^YTPe zJ0PM66%Z&pk1zP}vB})D$HD|TEtsDY9CL7Y&*{6f5!lsn(vQSS)-7Xyi{Vc~#I%v91-XRT^s4)p_ucnS%soY!eGIY#Kh$ra5`bGsh&Dm-VG!Zg2xAj@ zY=Pr~`&mz17<3|)qL~CK-Cy_F=S-Ddh04+rd;|wFyY2ZQC)4jMxp|~(t*!~Z4&>$) zR){8}`+GW@{5loY;9s>N9ulXNV75U3?4eHBR@p;Rol`HZ_}u+9ejIl?o-RK{tBk41 zxBY6Ve|gjKoPxB8%P8S#NMybjpuP&8!v`iU<%Qz#hdfuJ`S>WnDz4zpj2Jxg=ltb3v96rY1n<##X6vejz6Y%c?#sKaZasXs^PY+eJj?7-JlJMq8DjUC{k$U z{jxK=#C;A7E(8mY3M-RY`9nKt7WdXf)OTU3LmAM>ea@;rf z5F4s=GgUc#GMy!xa~_L7L``LPy|ubBgCqqdHr|M2;U1scsjRnPh})P6JgTDQah&ZM zPA{jGyXW#~B~gMUQ;HPnU|sixQ6sDi^iZ2x!2XSti+15XR2Vg=xe9ufHe!zVrwNi? zjAS2)l0AD*L-195JQuYrM!N2|f0z69?!K$#3(%K`Njd};e1@0woB_4J%amlH1A*%` zKz#($;_#NcO=9^tLQ7{1I$cFbF+1h36{19vKi@pty)ZiVf0G+xi~c^arIvSJwqR;-=i!N z1P_KE{dGrLDG30d_Sm&`dwjDJKSULex7vho>0VJ8azy0YMzlqft^SnI(=jv`sI2r? zTUy9CO%o?I3|59j!BB- zLFv}hXxM0)_dZ=>gyCoL{nhMJvcRGlExf~i=&jdYcab4ll<}3i3$4kv_FD=!b~8TQ zsudA+P)<;@;b1pD;LI=*-zv6d+$V*jHVV*;8;z)6n;R9NN_nvK+xfx~Gkip=f{4dp zbd2k^VHapmE&(RcYxL17ic*Z>ZCcT&Kfel$++$T3e($#O0}Er`A?lj1pV#S<$-{%=LcgOJw@@5UoQi6a~hW92ijC8^k1akJYX5&jc+!s z5IhEdsz((x%*6cO56WQv4@Nu85Su#OQnx1+kE#6=ymq1UKUdk4LUPcd=6lYflRT$s z#ijH-9FDj+4JfdjgRMbAxkdx>uTg_-KAqL%#qv*KLegZCGvLhrerJiEc}NxKc$3S0 z(QV+CzRUDYTP>)^EXjF)*V|=Y7Z!|J_Iz z32#f3>8|aDt+#W=p1RWA6k0G|f$N{%IR{v_0R@9^Cna1xE0k%zgwH zkt7y#h**3@lhEh0Vh;Z&7L(#z6}x(v+`rC-dYqZzE_U{z>-^RBhK78GfO66g$H3NL z#kJxqRU(Yt{w+9S>SSr=G5$cM&&+3^RN^mi> Date: Tue, 26 Jul 2022 13:44:16 -0400 Subject: [PATCH 76/82] resolve comments on PR #172 --- builder/index_full.html | 34 ++++++++++++++--------------- css/sq2bs.css | 13 ++++++++++++ js/atree.js | 4 ++-- js/icons.js | 46 +++++++++++++++------------------------- media/atree/icons.png | Bin 3229 -> 2891 bytes 5 files changed, 49 insertions(+), 48 deletions(-) diff --git a/builder/index_full.html b/builder/index_full.html index 4e7d217..e6e6252 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -49,7 +49,7 @@
-
+
@@ -76,7 +76,7 @@
-
+
@@ -103,7 +103,7 @@
-
+
@@ -130,7 +130,7 @@
-
+
@@ -156,7 +156,7 @@
-
+
@@ -183,7 +183,7 @@
-
+
@@ -210,7 +210,7 @@
-
+
@@ -237,7 +237,7 @@
-
+
@@ -263,8 +263,8 @@
-
-
+
+background-image: url('../media/items/new.png');
@@ -620,7 +620,7 @@
-
+
@@ -644,7 +644,7 @@
-
+
@@ -668,7 +668,7 @@
-
+
@@ -692,7 +692,7 @@
-
+
@@ -716,7 +716,7 @@
-
+
@@ -740,7 +740,7 @@
-
+
@@ -764,7 +764,7 @@
-
+
diff --git a/css/sq2bs.css b/css/sq2bs.css index 59e4e99..1519a35 100644 --- a/css/sq2bs.css +++ b/css/sq2bs.css @@ -460,3 +460,16 @@ a:hover { .ferricles{ color: #5be553; } + +.item-display-new-toggleable { + image-rendering: pixelated; + background-size: 1200% 100%; + aspect-ratio: 1/1; +} +.tome-image { + background-image: url('../media/items/common.png'); + image-rendering: pixelated; + background-size: 500% 100%; + background-position: 100% 0; + aspect-ratio: 1/1; +} \ No newline at end of file diff --git a/js/atree.js b/js/atree.js index e43e743..3d385ef 100644 --- a/js/atree.js +++ b/js/atree.js @@ -1009,7 +1009,7 @@ function render_AT(UI_elem, list_elem, tree) { // create node let node_elem = document.getElementById("atree-row-" + ability.display.row).children[ability.display.col]; - node_wrap.img = make_elem("div", [], {style: "width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated; z-index: 1; background-image: url('../media/atree/icons.png'); background-size: 1700% 500%;"}) + node_wrap.img = make_elem("div", [], {style: "width: 200%; height: 200%; position: absolute; top: -50%; left: -50%; image-rendering: pixelated; z-index: 1; background-image: url('../media/atree/icons.png'); background-size: 900% 300%;"}) node_elem.appendChild(node_wrap.img); // create hitbox @@ -1277,7 +1277,7 @@ const atreeNodeAtlasPositions = { "node_assassin": 7, "node_shaman": 8 } -const atreeNodeAtlasSize = [17, 5] +const atreeNodeAtlasSize = [9, 3] function atlasBGPositionCalc(pos, atlasSize) { // https://css-tricks.com/focusing-background-image-precise-location-percentages/ // p = (c + 0.5/z - 0.5) * z/(z - 1) + 0.5 diff --git a/js/icons.js b/js/icons.js index ddf9ef0..76088b4 100644 --- a/js/icons.js +++ b/js/icons.js @@ -1,39 +1,27 @@ -//which icons to use let window_storage = window.localStorage; -console.log(window_storage); -icon_state_stored = window_storage.getItem("newicons"); newIcons = true; -if (icon_state_stored === "false") {toggleIcons()} - +if (window_storage.getItem("newicons") === "false") { + toggleIcons(); +} /** Toggle icons on the ENTIRE page. * */ - function toggleIcons() { +function toggleIcons() { newIcons = !newIcons; - let imgs = document.getElementsByTagName("img"); - let divs = document.getElementsByTagName("div"); - let favicon = document.querySelector("link[rel~='icon']"); + window_storage.setItem("newicons", newIcons.toString()); + let newOrOld = (newIcons ? "new" : "old"); - if (newIcons) { //switch to new - favicon.href = favicon.href.replace("media/icons/old","media/icons/new"); - for (const img of imgs) { - if (img.src.includes("media/icons/old")) {img.src = img.src.replace("media/icons/old","media/icons/new");} - } - for (const div of divs) { - if (div.style.backgroundImage.includes("media/items/old")) {div.style.backgroundImage = div.style.backgroundImage.replace("media/items/old","media/items/new");} - } - //toggleiconbutton.textContent = "Use Old Icons"; - window_storage.setItem("newicons","true"); - } else { //switch to old - favicon.href = favicon.href.replace("media/icons/new","media/icons/old"); - for (const img of imgs) { - if (img.src.includes("media/icons/new")) {img.src = img.src.replace("media/icons/new","media/icons/old");} - } - for (const div of divs) { - if (div.style.backgroundImage.includes("media/items/new")) {div.style.backgroundImage = div.style.backgroundImage.replace("media/items/new","media/items/old");} - } - //toggleiconbutton.textContent = "Use New Icons"; - window_storage.setItem("newicons","false"); + let imgs = document.getElementsByTagName("img"); + let divs = document.getElementsByClassName("item-display-new-toggleable"); + let favicon = document.querySelector("link[rel~='icon']"); + favicon.href = favicon.href.replace("media/icons/" + (newIcons ? "old" : "new"), "media/icons/" + newOrOld); + for (const img of imgs) { + // if doesn't contain, replace() does nothing + img.src = img.src.replace("media/icons/" + (newIcons ? "old" : "new"), "media/icons/" + newOrOld); + } + for (let i = 0; i < divs.length; i++) { + console.log(divs.item(i)) + divs.item(i).style.backgroundImage = "url('../media/items/" + (newIcons ? "new" : "old") + ".png')"; } } \ No newline at end of file diff --git a/media/atree/icons.png b/media/atree/icons.png index d812ac418a4bc7639a98d0787c4dbf59243bd73c..fcbc48d78c0e338190c7ab98299ea428629fd437 100644 GIT binary patch delta 2668 zcmV-y3X}Dn8Os(SiBL{Q4GJ0x0000DNk~Le0003X0001B2m=5B0E%*7YLOxQe+n2$ zL_t(|+U;5iTN^nHCF6ADz~mrzAP~;NUjP5^tt8K3k0pn%>~`p`9XhmqKA$C7iD`y60i~ZLODEnVCKI>EJtvCcC*H#_4%YL-xm5-#Q2BGaY!Y~dt*5E>6~h{C zh<_t72t*KIl%a*hVVF>BAIt-CWFTV55d@EigE_#VPZ0SYGju{5!Uwp2LNvdM)?T?_ z=Fc$T$5bgCQQ}C&k)LG$Q@1}hiUI5+fCltp*+V24jpyM339`^je+L}9RD({knji>r zAe_UFK0CXk!wiC42tmvKg{|xPW4aV9z}Dey+Qc#q$MqQvNAlABlMPR+2(KBS;A-p( z?JXYY0c;#W7=8>;45EPU!ImBHzyS!Yh$#l^yu- z+zwPGjpOjGxwxe+Lfm-)d&!G^civ_$dJGZz@bL6h6BOd?ln28}0Pqxi zhQXzVw6#PKg=tC~Ll?6=v1xk{PRvCQC;KpIyy5_r!q4q9L3&E|-=rhq2D%_oO}lJPf5xk1dt1>drQ^7bpOKG$a13$8W0rBoMQeRe$b+4&>-q{p?5`)bICX<8<0CXYXi{aif z?YZlY{sC8Wi*INy8L|?C;ASuZ_f{5PceqOiH#zCLVQ9Qtra5zAW`F3yjNacVS)>Qu zdBiLmHf)+7{Y|vsLGce3YtLLrT5A$luADLc%2%$Re=bP^-K$9Y(*E2I42%DSFFgjH zz?U!9WDau4C6`=s$>l#KUp7?&ZDzFDC>i=J}5Ogk)ITS*n1(izi4V6)YkpMy z4la)>==ddZq~Jx%kJi5KUeO2L0vgcW@px49L96@Kc8dg|B?_nj1nu{tK8X2g_E*&J)UdAa zDfk3T;zhDOH!mDPvOef&p6#uw55g0^KE-5x(8iJhISUf>L41hK;7!&Ck$2GctNNY7 zS%VwvR7PQ^sZ~2%f7o$uF{|LwY92Vxyf9~yk zF&FhgbV3&i{Z7&NhbBJ23g>WJ6p8*@_Zv(fG{cjAzgWonpxXCUdCGabNXuJ_b9kbE z?@jECK4?w$lh6lY{89BmGnYqe`k>--3*^J=Q~IEy$oinH56b$WtPjfipsWx2!V~!N zCF_H7$t9Oua`|=3c$_&%^7HN6e>hu60{n(0Rb@O*o7m9!XI+FCP-_rK-}RVpK;-q02`o$CAF48zhQ=C*%99ux{|JNJgR=ik_stM-$7N~p;~w!aJakDf zv!ytRq4A~`txh$rZ;oMc{~ZIY4-(c-O-UVtkCN`3%D4h`?Y{GJ9AA7Xf4p@Ow|>RA zh=Eu8hp_)VK&KCi20+;9gV4oTAJnTr&3%1N`Ni;dmrGupM4w{-x1I)`}&}; z23835L2(D6K1j!%J}A}R>UgUUDkUc@-71ViU)kw{Bnu7oLBje&eNa>()Ca{22=zfK zUh9MO_D&xp4PE{D$7tGRF>n2zEB?&bkR(()dwjHZ1q7J-spqW z_O(7p!CQS$Yy!N=jXo$os+gcoAM}UNf2a@gMx0T(g}y#W;?LIyDR`?7(%Lur z4!!+VJboR5JAF_ThM7KJA0&84s1Ncgj43}XLwyj{Z)=jnrje-6r6AEe=pK1jlS zeURL~(+5Q>EPZ`YDZ#!zsAmAgU#JiItECuG&JTTk5NC{DjWX5;^%fB6gEYL+2MKtf z4-(sZ`XGS;Pah-`IoFf|DEL6kIwF4orv^Ib2^ zlG6t%LAuii$%lZi4~m0ys1J&Rbf^y!f@q)*5)VO7A0*(SSFW5f{=!$T|Nf;t<%hrWrG5U|XW(x(^B0HttLI#D a3CiCz?;g-+CNKp60000w2+jjWDOlWG`5MuSRxWa**cae zQN}j*h&U?SSeq;j#xiEi@;<%i{S)5%hwtZpp3ilEzt?r$_xHYg_B>NmB@?aBO2d`l zA|fKv76kJPA|enhIM0(110y8(06kfi2S|EZnB(n(M}B5Y2F>WpL|@n4-%sXswvwN* z{Zrn)7YdgTpFa0i6Jl@eck@}_*b%#;!-NnS-!l)>!VofGo(MW*UxKLSycoP$%2tBA z!dQch1ffIklCcL9jt&Hj2y~xXW~PL1qG1I=U)@b#xJC_0+7#sg)A1~Q*03G0oSnM> zki$Bfi$#K^%(z{YVfU7qp8bccG;>W1r#Uwk>Moj)qn>_&4UGoVefzbV>i;|`Ud%y! zmKB%in>$u;fBgoFqR}c<8NLN{s6PV2-W%SU+m&*@eRdkH$jPWIp!}(L)1a#ZClzKH znUBmFA6=)N)3=!npTQnH-QEGr_ataGZ5P41yeA?weBI49IXChd^jdetJWp+9udHtg z@`Z;YYc4w3B^Xr4z*ik$zh9pCqrpT1ev~P65S0z{%TYIVj<00;gjR=yhR)JcE%bR~ zKUpl6KwzSwWrcr=&8jknLnh<(@S-;_*Jn&mWI$)L+RON&+D+T+3?L(e&0Z4F;ZZ-x zyxqd?bc%(-_Swd%$pWds&ksjF&s_ETy6uA~3Uqyn>9d+CR<*;e>I6jxw>EgZ5LiiE z@;$)yheqF0*OZJXld^EX8gp)F8^&%@@=eoHgGZ?t?5%y?OT@n3ghr38p<9ligsHE2 zdMVo)dyey^)VV%ZfL5RFK%AmS7^(sn&s{GzW$_QU?(U37XhXHGkj7}Bn zc&Zv@I$+bXBYk9a<`|z{x^Kp$R3l}$l~kW)eIR@x70P}4Av5qzf*gZ)QoCPR9nVMYw>VTyLnT78UjqeTjpL!@Wcp6E>?8~EeO(QO z+re(>a5eYX<(0ROUR;9|K=wK&`iD#Umg7ey75F#EYkp)s8Fx8}GFm*4RQ8vVf~I*s z0%2qG_vz2UPHFl&cOGgL=2aYhboRR6?fBD$mXEJj2as1)b*q2=errKyhi@k4@`;Hk z$O{yvjv5dIR9{0cEm*S4hw^M8tH?u4Hy&PxLVU@BzE*@6YF}v8h%tR$AXjocQ}})+ zZhc4M8PnsV&u-4IzWhozczwQV#+Unf+STzEwU`?RQ>Go4a8z}_<9~zfnPgUTSLaI1 zDN9Y$n4sdCN#)YzV}*CkJg8{Kj&gL++@isKbU@$^V3#xOMwLWhmPv~&jpaA)JL|J^ zL?vyU?y@6Nib=E}Uf#Z5Rjlr#XFX^5SDWM)7;HRMq1>jV@>3PcJoP8OBp+LA)R}gD z=)(>k5yDo0jeFBVofx5^mhziM)Iy9E{tD#fV2kYO8f{UkGy2ZpQjcAN@xaA5b0K7S z>*8;Kxb4TLv}wCco-YvEsghc7%9|d94)DC6yN5V0X2#+<$n?yf$>A^#`d@R);B_{Z z9RGTCW|9O~I#J1<$ZYoHnJb$3Nr*bjCi|zcV$(ZN@92hGb9>d*L{J_IXxCp?&9AW) z)>L~H?~EZz+>A3t3b4SYtSCUig#kMwaGkk2$SqP6W;X9t#4dp1C}bD$@q5CX&2X`} z&PFGd#$k;66hjZQ3M+Z?8h{yS(q3$Xh{B2oVJjfsAGjYh^@&$DkMJ`+5I$#P4s;^(tUr08ZaTz#6*iT5oxi#H)+x5md<~X7hF+Djeat)6a>ct{z4ag8 z8*D~d(mKvz0s{nqUJSfx)aB!K#@aZX@n13mA1qkUr)@mvkPh*(7?idL-W*cr?8HLr z`ts!ZIWePfH6`8Ye;hCl!cEo+Y+$oCz{)ssY+`Io0n`-aAuoRjnPY(hkeLP!IH262 zh;>ic#lwF;&vDjCzf39?V2^ROb$}RQY*ZQG#?wUAd0nR2QK=uVb({sgu#XJRIVGsC zn{({JL}?Fw@h`#K1C&8x#LA(Tz|!xC7CDJt#;cS!OoXfka+uKESRnb-SIhO|yI0n2 zi;lkJne&s2e6vVGVn|?JLkRWd?N&?_BkBG7HOZ1QdSIg5@HV^7u1|8>YHZjP&^>ck z2jX0D5uoHHF$E5Mqmjy=%eK+VMBS@$+p)}xC<&9RfB%zd!2IU&RDk`^dN)Y79@p93 z1C{kawqexnxP4!LxlQU^z}7a-({0y($%^K%6d0CL4sv>5|U@J^$M5VNoO zL`eUyWgLBj<8(#D!+2Yw(XKI-B;1n=sjaOnRQ0mq)`+Ys{OBbDk-FjJB@4CBj@VQJ zA6O?(-Zb<%Lr8oWXf>6jcVcKF>ynSX@cfdIO#5=)(TDAPy7WB*8Yg;jWX&eDi>~nj z2t15f^V&F4wQLwyp!V&z0~wfA8M|d+al|Adf7Ye`krA|Uh?SXo@*XxLksd-;GTL(R z?bq3*D{P6C$nY6XN$UFxz zMa2it|Ei0Ex za+kgUP>dr>aB+&@|0Tfy#yn}6hsPo>igNk%zg$0I)GnDWfasFNR!fr-9KnyQgTDkI z_cwzdJb4L@+2Ep zHT?`1w`X~q^n(wsAa+)Y%x{y1GDSe7`%%%ja8QWQTfKe2$7Gld+j-z-!yX`zi8w}Z z{f=;JGXjw6Ia{P+{+|LYlAuA!!Nuu-0h~R@5ys^ShM2`|Qq=Bhdn`!y8YEVLeGtk( z05?ez#I|bip-KvPaipw$o%>+^&j8 z|5kAT3Yk27!oEN-(LD%PfDK8`;*w_1cr76EQOO{(e&+&*RJ;n(P_g0T^ALCUk8(*0 zqhlaBYVS`DNpo~85=TgXPQ#enx=thVwQBxn-@*ncqd(TRNLG>Y@u&0e>#!=B?)w5P z7w-vfm`j1I5OFxNU=_$Y6?KqO^)4)|U-`{$xx^9B1%7eEG9v#7J`6yYRoJOHgV|S zn1zkeyLuj=8ygM3zU0V Date: Tue, 26 Jul 2022 13:46:28 -0400 Subject: [PATCH 77/82] update builder/index.html from builder/index_full.html --- builder/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/index.html b/builder/index.html index eec6e2b..3c29e78 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!
\ No newline at end of file + 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
background-image: url('../media/items/new.png');
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 883f6602f044b94c8499b091f595e3604e690b2b Mon Sep 17 00:00:00 2001 From: dr-carlos Date: Wed, 27 Jul 2022 06:48:27 +0930 Subject: [PATCH 78/82] Fix PowderInputNode style --- js/builder_graph.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/js/builder_graph.js b/js/builder_graph.js index f5956a6..1d7d509 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -452,10 +452,11 @@ class PowderInputNode extends InputNode { let first = input.slice(0, 2); let powder = powderIDs.get(first); if (powder === undefined) { - if (first.length > 0) + if (first.length > 0) { errorederrors.push(first); - else + } else { break; + } } else { powdering.push(powder); } @@ -468,10 +469,11 @@ class PowderInputNode extends InputNode { errorederrors.push("Too many powders: " + powdering.length); } - if (errorederrors.length) + if (errorederrors.length) { this.input_field.classList.add("is-invalid"); - else + } else { this.input_field.classList.remove("is-invalid"); + } return powdering; } From 75e1a87a4403e7d124cf4099ad343559deb69e48 Mon Sep 17 00:00:00 2001 From: hppeng Date: Tue, 26 Jul 2022 23:18:55 -0700 Subject: [PATCH 79/82] Tweak graph flow for weapon powdering unjankify: Move powder application out of weapon input node. Item input node now produces an unpowdered item. Powder input node reads this, and uses it to update `slots` message and error. ItemPowderingNode collects from these two nodes and produces a powdered item. --- js/builder_graph.js | 208 ++++++++++++++++++++++++-------------------- 1 file changed, 114 insertions(+), 94 deletions(-) diff --git a/js/builder_graph.js b/js/builder_graph.js index 1d7d509..bf69e71 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -121,7 +121,7 @@ class PowderSpecialDisplayNode extends ComputeNode { /** * Node for getting an item's stats from an item input field. * - * Signature: ItemInputNode(powdering: Optional[list[powder]]) => Item | null + * Signature: ItemInputNode() => Item | null */ class ItemInputNode extends InputNode { /** @@ -143,8 +143,6 @@ class ItemInputNode extends InputNode { } compute_func(input_map) { - const powdering = input_map.get('powdering'); - // built on the assumption of no one will type in CI/CR letter by letter let item_text = this.input_field.value; if (!item_text) { @@ -158,10 +156,6 @@ class ItemInputNode extends InputNode { else if (tomeMap.has(item_text)) { item = new Item(tomeMap.get(item_text)); } if (item) { - if (powdering !== undefined) { - const max_slots = item.statMap.get('slots'); - item.statMap.set('powders', powdering.slice(0, max_slots)); - } let type_match; if (this.category == 'weapon') { type_match = item.statMap.get('category') == 'weapon'; @@ -169,12 +163,6 @@ class ItemInputNode extends InputNode { type_match = item.statMap.get('type') == this.none_item.statMap.get('type'); } if (type_match) { - if (item.statMap.get('category') == 'armor') { - applyArmorPowders(item.statMap); - } - else if (item.statMap.get('category') == 'weapon') { - apply_weapon_powders(item.statMap); - } return item; } } @@ -205,6 +193,31 @@ class ItemInputNode extends InputNode { } } +/** + * Node for updating item input fields from parsed items. + * + * Signature: ItemInputDisplayNode(item: Item, powdering: List[powder]) => Item + */ +class ItemPowderingNode extends ComputeNode { + constructor(name) { super(name); } + + compute_func(input_map) { + const powdering = input_map.get('powdering'); + const item = {}; + item.statMap = new Map(input_map.get('item').statMap); // TODO: performance + + const max_slots = item.statMap.get('slots'); + item.statMap.set('powders', powdering.slice(0, max_slots)); + if (item.statMap.get('category') == 'armor') { + applyArmorPowders(item.statMap); + } + else if (item.statMap.get('category') == 'weapon') { + apply_weapon_powders(item.statMap); + } + return item; + } +} + /** * Node for updating item input fields from parsed items. * @@ -217,7 +230,6 @@ class ItemInputDisplayNode extends ComputeNode { this.input_field = document.getElementById(eq+"-choice"); this.health_field = document.getElementById(eq+"-health"); this.level_field = document.getElementById(eq+"-lv"); - this.powder_field = document.getElementById(eq+"-powder"); // possibly None this.image = item_image; this.fail_cb = true; } @@ -242,18 +254,11 @@ class ItemInputDisplayNode extends ComputeNode { this.input_field.classList.add("is-invalid"); return null; } - if (this.powder_field && item.statMap.has('powders')) { - this.powder_field.placeholder = "powders"; - } if (item.statMap.has('NONE')) { return null; } - if (this.powder_field && item.statMap.has('powders')) { - this.powder_field.placeholder = item.statMap.get('slots') + ' slots'; - } - const tier = item.statMap.get('tier'); this.input_field.classList.add(tier); if (this.health_field) { @@ -374,39 +379,39 @@ class URLUpdateNode extends ComputeNode { * Create a "build" object from a set of equipments. * Returns a new Build object, or null if all items are NONE items. * - * Signature: BuildAssembleNode(helmet-input: Item, - * chestplate-input: Item, - * leggings-input: Item, - * boots-input: Item, - * ring1-input: Item, - * ring2-input: Item, - * bracelet-input: Item, - * necklace-input: Item, - * weapon-input: Item, - * level-input: int) => Build | null + * Signature: BuildAssembleNode(helmet: Item, + * chestplate: Item, + * leggings: Item, + * boots: Item, + * ring1: Item, + * ring2: Item, + * bracelet: Item, + * necklace: Item, + * weapon: Item, + * level: int) => Build | null */ class BuildAssembleNode extends ComputeNode { constructor() { super("builder-make-build"); } compute_func(input_map) { let equipments = [ - input_map.get('helmet-input'), - input_map.get('chestplate-input'), - input_map.get('leggings-input'), - input_map.get('boots-input'), - input_map.get('ring1-input'), - input_map.get('ring2-input'), - input_map.get('bracelet-input'), - input_map.get('necklace-input'), - input_map.get('weaponTome1-input'), - input_map.get('weaponTome2-input'), - input_map.get('armorTome1-input'), - input_map.get('armorTome2-input'), - input_map.get('armorTome3-input'), - input_map.get('armorTome4-input'), - input_map.get('guildTome1-input') + input_map.get('helmet'), + input_map.get('chestplate'), + input_map.get('leggings'), + input_map.get('boots'), + input_map.get('ring1'), + input_map.get('ring2'), + input_map.get('bracelet'), + input_map.get('necklace'), + input_map.get('weaponTome1'), + input_map.get('weaponTome2'), + input_map.get('armorTome1'), + input_map.get('armorTome2'), + input_map.get('armorTome3'), + input_map.get('armorTome4'), + input_map.get('guildTome1') ]; - let weapon = input_map.get('weapon-input'); + let weapon = input_map.get('weapon'); let level = parseInt(input_map.get('level-input')); if (isNaN(level)) { level = 106; @@ -437,13 +442,24 @@ class PlayerClassNode extends ValueCheckComputeNode { * Read an input field and parse into a list of powderings. * Every two characters makes one powder. If parsing fails, NULL is returned. * - * Signature: PowderInputNode() => List[powder] | null + * Signature: PowderInputNode(item: Item) => List[powder] | null */ class PowderInputNode extends InputNode { - constructor(name, input_field) { super(name, input_field); } + constructor(name, input_field) { super(name, input_field); this.fail_cb = true; } compute_func(input_map) { + if (input_map.size !== 1) { throw "PowderInputNode accepts exactly one input (item)"; } + const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element + if (item === null) { + this.input_field.placeholder = 'powders'; + return []; + } + + if (item.statMap.has('slots')) { + this.input_field.placeholder = item.statMap.get('slots') + ' slots'; + } + // TODO: haha improve efficiency to O(n) dumb let input = this.input_field.value.trim(); let powdering = []; @@ -464,9 +480,9 @@ class PowderInputNode extends InputNode { } if (this.input_field.getAttribute("placeholder") != null) { - let placeholder = this.input_field.getAttribute("placeholder"); - if (placeholder.includes(" slots") && parseInt(placeholder[0]) < powdering.length) + if (item.statMap.get('slots') < powdering.length) { errorederrors.push("Too many powders: " + powdering.length); + } } if (errorederrors.length) { @@ -941,9 +957,11 @@ class SumNumberInputNode extends InputNode { } let item_nodes = []; +let item_nodes_map = new Map(); let powder_nodes = []; let edit_input_nodes = []; let skp_inputs = []; +let equip_inputs = []; let build_node; let stat_agg_node; let edit_agg_node; @@ -952,63 +970,65 @@ let atree_graph_creator; function builder_graph_init() { // Phase 1/3: Set up item input, propagate updates, etc. - // Bind item input fields to input nodes, and some display stuff (for auto colorizing stuff). - for (const [eq, display_elem, none_item] of zip3(equipment_fields, build_fields, none_items)) { - let input_field = document.getElementById(eq+"-choice"); - let item_image = document.getElementById(eq+"-img"); - - let item_input = new ItemInputNode(eq+'-input', input_field, none_item); - item_nodes.push(item_input); - new ItemInputDisplayNode(eq+'-input-display', eq, item_image).link_to(item_input); - new ItemDisplayNode(eq+'-item-display', display_elem).link_to(item_input); - //new PrintNode(eq+'-debug').link_to(item_input); - //document.querySelector("#"+eq+"-tooltip").setAttribute("onclick", "collapse_element('#"+ eq +"-tooltip');"); //toggle_plus_minus('" + eq + "-pm'); - } - for (const [eq, none_item] of zip2(tome_fields, [none_tomes[0], none_tomes[0], none_tomes[1], none_tomes[1], none_tomes[1], none_tomes[1], none_tomes[2]])) { - let input_field = document.getElementById(eq+"-choice"); - let item_image = document.getElementById(eq+"-img"); - - let item_input = new ItemInputNode(eq+'-input', input_field, none_item); - item_nodes.push(item_input); - new ItemInputDisplayNode(eq+'-input-display', eq, item_image).link_to(item_input); - } - - // weapon image changer node. - let weapon_image = document.getElementById("weapon-img"); - let weapon_dps = document.getElementById("weapon-dps"); - new WeaponInputDisplayNode('weapon-type', weapon_image, weapon_dps).link_to(item_nodes[8]); - // Level input node. let level_input = new InputNode('level-input', document.getElementById('level-choice')); - - // linking to atree verification - atree_validate.link_to(level_input, 'level'); // "Build" now only refers to equipment and level (no powders). Powders are injected before damage calculation / stat display. build_node = new BuildAssembleNode(); for (const input of item_nodes) { - build_node.link_to(input); } build_node.link_to(level_input); let build_encode_node = new BuildEncodeNode(); build_encode_node.link_to(build_node, 'build'); - let url_update_node = new URLUpdateNode(); - url_update_node.link_to(build_encode_node, 'build-str'); + // Bind item input fields to input nodes, and some display stuff (for auto colorizing stuff). + for (const [eq, display_elem, none_item] of zip3(equipment_fields, build_fields, none_items)) { + let input_field = document.getElementById(eq+"-choice"); + let item_image = document.getElementById(eq+"-img"); - - for (const input of powder_inputs) { - let powder_node = new PowderInputNode(input, document.getElementById(input)); - powder_nodes.push(powder_node); - build_encode_node.link_to(powder_node, input); + let item_input = new ItemInputNode(eq+'-input', input_field, none_item); + equip_inputs.push(item_input); + if (powder_inputs.includes(eq+'-powder')) { // TODO: fragile + const powder_name = eq+'-powder'; + let powder_node = new PowderInputNode(powder_name, document.getElementById(powder_name)) + .link_to(item_input, 'item'); + powder_nodes.push(powder_node); + build_encode_node.link_to(powder_node, powder_name); + let item_powdering = new ItemPowderingNode(eq+'-powder-apply') + .link_to(powder_node, 'powdering').link_to(item_input, 'item'); + item_input = item_powdering; + } + item_nodes.push(item_input); + item_nodes_map.set(eq, item_input); + new ItemInputDisplayNode(eq+'-input-display', eq, item_image).link_to(item_input); + new ItemDisplayNode(eq+'-item-display', display_elem).link_to(item_input); + //new PrintNode(eq+'-debug').link_to(item_input); + //document.querySelector("#"+eq+"-tooltip").setAttribute("onclick", "collapse_element('#"+ eq +"-tooltip');"); //toggle_plus_minus('" + eq + "-pm'); + build_node.link_to(item_input, eq); } - item_nodes[0].link_to(powder_nodes[0], 'powdering'); - item_nodes[1].link_to(powder_nodes[1], 'powdering'); - item_nodes[2].link_to(powder_nodes[2], 'powdering'); - item_nodes[3].link_to(powder_nodes[3], 'powdering'); - item_nodes[8].link_to(powder_nodes[4], 'powdering'); + for (const [eq, none_item] of zip2(tome_fields, [none_tomes[0], none_tomes[0], none_tomes[1], none_tomes[1], none_tomes[1], none_tomes[1], none_tomes[2]])) { + let input_field = document.getElementById(eq+"-choice"); + let item_image = document.getElementById(eq+"-img"); + + let item_input = new ItemInputNode(eq+'-input', input_field, none_item); + equip_inputs.push(item_input); + item_nodes.push(item_input); + new ItemInputDisplayNode(eq+'-input-display', eq, item_image).link_to(item_input); + build_node.link_to(item_input, eq); + } + + // weapon image changer node. + let weapon_image = document.getElementById("weapon-img"); + let weapon_dps = document.getElementById("weapon-dps"); + new WeaponInputDisplayNode('weapon-type', weapon_image, weapon_dps).link_to(item_nodes[8]); + + // linking to atree verification + atree_validate.link_to(level_input, 'level'); + + let url_update_node = new URLUpdateNode(); + url_update_node.link_to(build_encode_node, 'build-str'); // Phase 2/3: Set up editable IDs, skill points; use decodeBuild() skill points, calculate damage @@ -1053,7 +1073,7 @@ function builder_graph_init() { // --------------------------------------------------------------- // Trigger the update cascade for build! // --------------------------------------------------------------- - for (const input_node of item_nodes.concat(powder_nodes)) { + for (const input_node of equip_inputs) { input_node.update(); } armor_powder_node.update(); From d7d45465cd237983577703e071de37352721cd73 Mon Sep 17 00:00:00 2001 From: fin444 Date: Wed, 27 Jul 2022 08:08:06 -0400 Subject: [PATCH 80/82] remove console.log --- js/icons.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/icons.js b/js/icons.js index 76088b4..f933fc4 100644 --- a/js/icons.js +++ b/js/icons.js @@ -21,7 +21,6 @@ function toggleIcons() { img.src = img.src.replace("media/icons/" + (newIcons ? "old" : "new"), "media/icons/" + newOrOld); } for (let i = 0; i < divs.length; i++) { - console.log(divs.item(i)) divs.item(i).style.backgroundImage = "url('../media/items/" + (newIcons ? "new" : "old") + ".png')"; } } \ No newline at end of file From e8adcdd4a65e4b50449ec89b8cf3a4ccb112a9a5 Mon Sep 17 00:00:00 2001 From: dr-carlos Date: Wed, 27 Jul 2022 22:18:44 +0930 Subject: [PATCH 81/82] Detect powder slots based on space position --- js/builder_graph.js | 1889 ++++++++++++++++++++++++------------------- 1 file changed, 1064 insertions(+), 825 deletions(-) diff --git a/js/builder_graph.js b/js/builder_graph.js index 1d7d509..b44964c 100644 --- a/js/builder_graph.js +++ b/js/builder_graph.js @@ -1,121 +1,167 @@ let armor_powder_node = new (class extends ComputeNode { - constructor() { super('builder-armor-powder-input'); } + constructor() { + super("builder-armor-powder-input"); + } - compute_func(input_map) { - let damage_boost = 0; - let def_boost = 0; - let statMap = new Map(); - for (const [e, elem] of zip2(skp_elements, skp_order)) { - let val = parseInt(document.getElementById(elem+"_boost_armor").value); - statMap.set(e+'DamPct', val); - } - return statMap; + compute_func(input_map) { + let damage_boost = 0; + let def_boost = 0; + let statMap = new Map(); + for (const [e, elem] of zip2(skp_elements, skp_order)) { + let val = parseInt(document.getElementById(elem + "_boost_armor").value); + statMap.set(e + "DamPct", val); } + return statMap; + } })(); let boosts_node = new (class extends ComputeNode { - constructor() { super('builder-boost-input'); } + constructor() { + super("builder-boost-input"); + } - compute_func(input_map) { - let damage_boost = 0; - let def_boost = 0; - for (const [key, value] of damageMultipliers) { - let elem = document.getElementById(key + "-boost") - if (elem.classList.contains("toggleOn")) { - damage_boost += value; - if (key === "warscream") { def_boost += .10 } - if (key === "vanish") { def_boost += .15 } - } + compute_func(input_map) { + let damage_boost = 0; + let def_boost = 0; + for (const [key, value] of damageMultipliers) { + let elem = document.getElementById(key + "-boost"); + if (elem.classList.contains("toggleOn")) { + damage_boost += value; + if (key === "warscream") { + def_boost += 0.1; } - let res = new Map(); - res.set('damMult.Potion', 100*damage_boost); - res.set('defMult.Potion', 100*def_boost); - return res; + if (key === "vanish") { + def_boost += 0.15; + } + } } + let res = new Map(); + res.set("damMult.Potion", 100 * damage_boost); + res.set("defMult.Potion", 100 * def_boost); + return res; + } })().update(); /* Updates all spell boosts -*/ + */ function update_boosts(buttonId) { - let elem = document.getElementById(buttonId); - if (elem.classList.contains("toggleOn")) { - elem.classList.remove("toggleOn"); - } else { - elem.classList.add("toggleOn"); - } - boosts_node.mark_dirty().update(); + let elem = document.getElementById(buttonId); + if (elem.classList.contains("toggleOn")) { + elem.classList.remove("toggleOn"); + } else { + elem.classList.add("toggleOn"); + } + boosts_node.mark_dirty().update(); } -let specialNames = ["Quake", "Chain Lightning", "Curse", "Courage", "Wind Prison"]; +let specialNames = [ + "Quake", + "Chain Lightning", + "Curse", + "Courage", + "Wind Prison", +]; let powder_special_input = new (class extends ComputeNode { - constructor() { super('builder-powder-special-input'); } + constructor() { + super("builder-powder-special-input"); + } - compute_func(input_map) { - let powder_specials = []; // [ [special, power], [special, power]] - for (const sName of specialNames) { - for (let i = 1;i < 6; i++) { - if (document.getElementById(sName.replace(" ","_") + "-" + i).classList.contains("toggleOn")) { - let powder_special = powderSpecialStats[specialNames.indexOf(sName.replace("_"," "))]; - powder_specials.push([powder_special, i]); - break; - } - } + compute_func(input_map) { + let powder_specials = []; // [ [special, power], [special, power]] + for (const sName of specialNames) { + for (let i = 1; i < 6; i++) { + if ( + document + .getElementById(sName.replace(" ", "_") + "-" + i) + .classList.contains("toggleOn") + ) { + let powder_special = + powderSpecialStats[specialNames.indexOf(sName.replace("_", " "))]; + powder_specials.push([powder_special, i]); + break; } - return powder_specials; + } } + return powder_specials; + } })(); function updatePowderSpecials(buttonId) { - let prefix = (buttonId).split("-")[0].replace(' ', '_') + '-'; - let elem = document.getElementById(buttonId); - if (elem.classList.contains("toggleOn")) { elem.classList.remove("toggleOn"); } - else { - for (let i = 1;i < 6; i++) { //toggle all pressed buttons of the same powder special off - //name is same, power is i - const elem2 = document.getElementById(prefix + i); - if(elem2.classList.contains("toggleOn")) { elem2.classList.remove("toggleOn"); } - } - //toggle the pressed button on - elem.classList.add("toggleOn"); + let prefix = buttonId.split("-")[0].replace(" ", "_") + "-"; + let elem = document.getElementById(buttonId); + if (elem.classList.contains("toggleOn")) { + elem.classList.remove("toggleOn"); + } else { + for (let i = 1; i < 6; i++) { + //toggle all pressed buttons of the same powder special off + //name is same, power is i + const elem2 = document.getElementById(prefix + i); + if (elem2.classList.contains("toggleOn")) { + elem2.classList.remove("toggleOn"); + } } - powder_special_input.mark_dirty().update(); + //toggle the pressed button on + elem.classList.add("toggleOn"); + } + powder_special_input.mark_dirty().update(); } class PowderSpecialCalcNode extends ComputeNode { - constructor() { super('builder-powder-special-apply'); } + constructor() { + super("builder-powder-special-apply"); + } - compute_func(input_map) { - const powder_specials = input_map.get('powder-specials'); - let stats = new Map(); - for (const [special, power] of powder_specials) { - if (special["weaponSpecialEffects"].has("Damage Boost")) { - let name = special["weaponSpecialName"]; - if (name === "Courage" || name === "Curse") { //courage and curse are is universal damage boost - stats.set("sdPct", special.weaponSpecialEffects.get("Damage Boost")[power-1]); - stats.set("mdPct", special.weaponSpecialEffects.get("Damage Boost")[power-1]); - stats.set("poisonPct", special.weaponSpecialEffects.get("Damage Boost")[power-1]); - } else if (name === "Wind Prison") { - stats.set("aDamPct", special.weaponSpecialEffects.get("Damage Boost")[power-1]); - } - } + compute_func(input_map) { + const powder_specials = input_map.get("powder-specials"); + let stats = new Map(); + for (const [special, power] of powder_specials) { + if (special["weaponSpecialEffects"].has("Damage Boost")) { + let name = special["weaponSpecialName"]; + if (name === "Courage" || name === "Curse") { + //courage and curse are is universal damage boost + stats.set( + "sdPct", + special.weaponSpecialEffects.get("Damage Boost")[power - 1] + ); + stats.set( + "mdPct", + special.weaponSpecialEffects.get("Damage Boost")[power - 1] + ); + stats.set( + "poisonPct", + special.weaponSpecialEffects.get("Damage Boost")[power - 1] + ); + } else if (name === "Wind Prison") { + stats.set( + "aDamPct", + special.weaponSpecialEffects.get("Damage Boost")[power - 1] + ); } - return stats; + } } + return stats; + } } class PowderSpecialDisplayNode extends ComputeNode { - // TODO: Refactor this entirely to be adding more spells to the spell list - constructor() { - super('builder-powder-special-display'); - this.fail_cb = true; - } + // TODO: Refactor this entirely to be adding more spells to the spell list + constructor() { + super("builder-powder-special-display"); + this.fail_cb = true; + } - compute_func(input_map) { - const powder_specials = input_map.get('powder-specials'); - const stats = input_map.get('stats'); - const weapon = input_map.get('build').weapon; - displayPowderSpecials(document.getElementById("powder-special-stats"), powder_specials, stats, weapon.statMap, true); - } + compute_func(input_map) { + const powder_specials = input_map.get("powder-specials"); + const stats = input_map.get("stats"); + const weapon = input_map.get("build").weapon; + displayPowderSpecials( + document.getElementById("powder-special-stats"), + powder_specials, + stats, + weapon.statMap, + true + ); + } } /** @@ -124,85 +170,95 @@ class PowderSpecialDisplayNode extends ComputeNode { * Signature: ItemInputNode(powdering: Optional[list[powder]]) => Item | null */ class ItemInputNode extends InputNode { - /** - * Make an item stat pulling compute node. - * - * @param name: Name of this node. - * @param item_input_field: Input field (html element) to listen for item names from. - * @param none_item: Item object to use as the "none" for this field. - */ - constructor(name, item_input_field, none_item) { - super(name, item_input_field); - this.none_item = new Item(none_item); - this.category = this.none_item.statMap.get('category'); - if (this.category == 'armor' || this.category == 'weapon') { - this.none_item.statMap.set('powders', []); - apply_weapon_powders(this.none_item.statMap); // Needed to put in damagecalc zeros - } - this.none_item.statMap.set('NONE', true); + /** + * Make an item stat pulling compute node. + * + * @param name: Name of this node. + * @param item_input_field: Input field (html element) to listen for item names from. + * @param none_item: Item object to use as the "none" for this field. + */ + constructor(name, item_input_field, none_item) { + super(name, item_input_field); + this.none_item = new Item(none_item); + this.category = this.none_item.statMap.get("category"); + if (this.category == "armor" || this.category == "weapon") { + this.none_item.statMap.set("powders", []); + apply_weapon_powders(this.none_item.statMap); // Needed to put in damagecalc zeros + } + this.none_item.statMap.set("NONE", true); + } + + compute_func(input_map) { + const powdering = input_map.get("powdering"); + + // built on the assumption of no one will type in CI/CR letter by letter + let item_text = this.input_field.value; + if (!item_text) { + return this.none_item; } - compute_func(input_map) { - const powdering = input_map.get('powdering'); - - // built on the assumption of no one will type in CI/CR letter by letter - let item_text = this.input_field.value; - if (!item_text) { - return this.none_item; - } - - let item; - if (item_text.slice(0, 3) == "CI-") { item = getCustomFromHash(item_text); } - else if (item_text.slice(0, 3) == "CR-") { item = getCraftFromHash(item_text); } - else if (itemMap.has(item_text)) { item = new Item(itemMap.get(item_text)); } - else if (tomeMap.has(item_text)) { item = new Item(tomeMap.get(item_text)); } - - if (item) { - if (powdering !== undefined) { - const max_slots = item.statMap.get('slots'); - item.statMap.set('powders', powdering.slice(0, max_slots)); - } - let type_match; - if (this.category == 'weapon') { - type_match = item.statMap.get('category') == 'weapon'; - } else { - type_match = item.statMap.get('type') == this.none_item.statMap.get('type'); - } - if (type_match) { - if (item.statMap.get('category') == 'armor') { - applyArmorPowders(item.statMap); - } - else if (item.statMap.get('category') == 'weapon') { - apply_weapon_powders(item.statMap); - } - return item; - } - } - else if (this.none_item.statMap.get('category') === 'weapon' && item_text.startsWith("Morph-")) { - let replace_items = [ "Morph-Stardust", - "Morph-Steel", - "Morph-Iron", - "Morph-Gold", - "Morph-Topaz", - "Morph-Emerald", - "Morph-Amethyst", - "Morph-Ruby", - item_text.substring(6) - ] - - for (const [i, x] of zip2(equipment_inputs, replace_items)) { setValue(i, x); } - - for (const node of item_nodes) { - if (node !== this) { - // save a tiny bit of compute - calcSchedule(node, 10); - } - } - // Needed to push the weapon node's updates forward - return this.compute_func(input_map); - } - return null; + let item; + if (item_text.slice(0, 3) == "CI-") { + item = getCustomFromHash(item_text); + } else if (item_text.slice(0, 3) == "CR-") { + item = getCraftFromHash(item_text); + } else if (itemMap.has(item_text)) { + item = new Item(itemMap.get(item_text)); + } else if (tomeMap.has(item_text)) { + item = new Item(tomeMap.get(item_text)); } + + if (item) { + if (powdering !== undefined) { + const max_slots = item.statMap.get("slots"); + item.statMap.set("powders", powdering.slice(0, max_slots)); + } + let type_match; + if (this.category == "weapon") { + type_match = item.statMap.get("category") == "weapon"; + } else { + type_match = + item.statMap.get("type") == this.none_item.statMap.get("type"); + } + if (type_match) { + if (item.statMap.get("category") == "armor") { + applyArmorPowders(item.statMap); + } else if (item.statMap.get("category") == "weapon") { + apply_weapon_powders(item.statMap); + } + return item; + } + } else if ( + this.none_item.statMap.get("category") === "weapon" && + item_text.startsWith("Morph-") + ) { + let replace_items = [ + "Morph-Stardust", + "Morph-Steel", + "Morph-Iron", + "Morph-Gold", + "Morph-Topaz", + "Morph-Emerald", + "Morph-Amethyst", + "Morph-Ruby", + item_text.substring(6), + ]; + + for (const [i, x] of zip2(equipment_inputs, replace_items)) { + setValue(i, x); + } + + for (const node of item_nodes) { + if (node !== this) { + // save a tiny bit of compute + calcSchedule(node, 10); + } + } + // Needed to push the weapon node's updates forward + return this.compute_func(input_map); + } + return null; + } } /** @@ -211,62 +267,85 @@ class ItemInputNode extends InputNode { * Signature: ItemInputDisplayNode(item: Item) => null */ class ItemInputDisplayNode extends ComputeNode { + constructor(name, eq, item_image) { + super(name); + this.input_field = document.getElementById(eq + "-choice"); + this.health_field = document.getElementById(eq + "-health"); + this.level_field = document.getElementById(eq + "-lv"); + this.powder_field = document.getElementById(eq + "-powder"); // possibly None + this.image = item_image; + this.fail_cb = true; + } - constructor(name, eq, item_image) { - super(name); - this.input_field = document.getElementById(eq+"-choice"); - this.health_field = document.getElementById(eq+"-health"); - this.level_field = document.getElementById(eq+"-lv"); - this.powder_field = document.getElementById(eq+"-powder"); // possibly None - this.image = item_image; - this.fail_cb = true; + compute_func(input_map) { + if (input_map.size !== 1) { + throw "ItemInputDisplayNode accepts exactly one input (item)"; + } + const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element + + this.input_field.classList.remove( + "text-light", + "is-invalid", + "Normal", + "Unique", + "Rare", + "Legendary", + "Fabled", + "Mythic", + "Set", + "Crafted", + "Custom" + ); + this.input_field.classList.add("text-light"); + this.image.classList.remove( + "Normal-shadow", + "Unique-shadow", + "Rare-shadow", + "Legendary-shadow", + "Fabled-shadow", + "Mythic-shadow", + "Set-shadow", + "Crafted-shadow", + "Custom-shadow" + ); + + if (this.health_field) { + // Doesn't exist for weapons. + this.health_field.textContent = "0"; + } + if (this.level_field) { + // Doesn't exist for tomes. + this.level_field.textContent = "0"; + } + if (!item) { + this.input_field.classList.add("is-invalid"); + return null; + } + if (this.powder_field && item.statMap.has("powders")) { + this.powder_field.placeholder = "powders"; } - compute_func(input_map) { - if (input_map.size !== 1) { throw "ItemInputDisplayNode accepts exactly one input (item)"; } - const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element - - this.input_field.classList.remove("text-light", "is-invalid", 'Normal', 'Unique', 'Rare', 'Legendary', 'Fabled', 'Mythic', 'Set', 'Crafted', 'Custom'); - this.input_field.classList.add("text-light"); - this.image.classList.remove('Normal-shadow', 'Unique-shadow', 'Rare-shadow', 'Legendary-shadow', 'Fabled-shadow', 'Mythic-shadow', 'Set-shadow', 'Crafted-shadow', 'Custom-shadow'); - - if (this.health_field) { - // Doesn't exist for weapons. - this.health_field.textContent = "0"; - } - if (this.level_field) { - // Doesn't exist for tomes. - this.level_field.textContent = "0"; - } - if (!item) { - this.input_field.classList.add("is-invalid"); - return null; - } - if (this.powder_field && item.statMap.has('powders')) { - this.powder_field.placeholder = "powders"; - } - - if (item.statMap.has('NONE')) { - return null; - } - - if (this.powder_field && item.statMap.has('powders')) { - this.powder_field.placeholder = item.statMap.get('slots') + ' slots'; - } - - const tier = item.statMap.get('tier'); - this.input_field.classList.add(tier); - if (this.health_field) { - // Doesn't exist for weapons. - this.health_field.textContent = item.statMap.get('hp'); - } - if (this.level_field) { - // Doesn't exist for tomes. - this.level_field.textContent = item.statMap.get('lvl'); - } - this.image.classList.add(tier + "-shadow"); - return null; + if (item.statMap.has("NONE")) { + return null; } + + if (this.powder_field && item.statMap.has("powders")) { + this.powder_field.placeholder = item.statMap.get("slots") + " slots"; + } + + const tier = item.statMap.get("tier"); + this.input_field.classList.add(tier); + if (this.health_field) { + // Doesn't exist for weapons. + this.health_field.textContent = item.statMap.get("hp"); + } + if (this.level_field) { + // Doesn't exist for tomes. + this.level_field.textContent = item.statMap.get("lvl"); + } + this.image.classList.add(tier + "-shadow"); + return null; + } } /** @@ -275,18 +354,20 @@ class ItemInputDisplayNode extends ComputeNode { * Signature: ItemDisplayNode(item: Item) => null */ class ItemDisplayNode extends ComputeNode { - constructor(name, target_elem) { - super(name); - this.target_elem = target_elem; - } + constructor(name, target_elem) { + super(name); + this.target_elem = target_elem; + } - compute_func(input_map) { - if (input_map.size !== 1) { throw "ItemInputDisplayNode accepts exactly one input (item)"; } - const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element - - displayExpandedItem(item.statMap, this.target_elem); - collapse_element("#"+this.target_elem); + compute_func(input_map) { + if (input_map.size !== 1) { + throw "ItemInputDisplayNode accepts exactly one input (item)"; } + const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element + + displayExpandedItem(item.statMap, this.target_elem); + collapse_element("#" + this.target_elem); + } } /** @@ -295,26 +376,30 @@ class ItemDisplayNode extends ComputeNode { * Signature: WeaponInputDisplayNode(item: Item) => null */ class WeaponInputDisplayNode extends ComputeNode { + constructor(name, image_field, dps_field) { + super(name); + this.image = image_field; + this.dps_field = dps_field; + } - constructor(name, image_field, dps_field) { - super(name); - this.image = image_field; - this.dps_field = dps_field; + compute_func(input_map) { + if (input_map.size !== 1) { + throw "WeaponDisplayNode accepts exactly one input (item)"; } + const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element - compute_func(input_map) { - if (input_map.size !== 1) { throw "WeaponDisplayNode accepts exactly one input (item)"; } - const [item] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element - - const type = item.statMap.get('type'); - this.image.setAttribute('src', '../media/items/new/generic-'+type+'.png'); - let dps = get_base_dps(item.statMap); - if (isNaN(dps)) { - dps = dps[1]; - if (isNaN(dps)) dps = 0; - } - this.dps_field.textContent = Math.round(dps); + const type = item.statMap.get("type"); + this.image.setAttribute( + "src", + "../media/items/new/generic-" + type + ".png" + ); + let dps = get_base_dps(item.statMap); + if (isNaN(dps)) { + dps = dps[1]; + if (isNaN(dps)) dps = 0; } + this.dps_field.textContent = Math.round(dps); + } } /** @@ -328,31 +413,33 @@ class WeaponInputDisplayNode extends ComputeNode { * weapon-powder: List[powder]) => str */ class BuildEncodeNode extends ComputeNode { - constructor() { super("builder-encode"); } + constructor() { + super("builder-encode"); + } - compute_func(input_map) { - const build = input_map.get('build'); - const atree = input_map.get('atree'); - const atree_state = input_map.get('atree-state'); - let powders = [ - input_map.get('helmet-powder'), - input_map.get('chestplate-powder'), - input_map.get('leggings-powder'), - input_map.get('boots-powder'), - input_map.get('weapon-powder') - ]; - const skillpoints = [ - input_map.get('str'), - input_map.get('dex'), - input_map.get('int'), - input_map.get('def'), - input_map.get('agi') - ]; - // TODO: grr global state for copy button.. - player_build = build; - build_powders = powders; - return encodeBuild(build, powders, skillpoints, atree, atree_state); - } + compute_func(input_map) { + const build = input_map.get("build"); + const atree = input_map.get("atree"); + const atree_state = input_map.get("atree-state"); + let powders = [ + input_map.get("helmet-powder"), + input_map.get("chestplate-powder"), + input_map.get("leggings-powder"), + input_map.get("boots-powder"), + input_map.get("weapon-powder"), + ]; + const skillpoints = [ + input_map.get("str"), + input_map.get("dex"), + input_map.get("int"), + input_map.get("def"), + input_map.get("agi"), + ]; + // TODO: grr global state for copy button.. + player_build = build; + build_powders = powders; + return encodeBuild(build, powders, skillpoints, atree, atree_state); + } } /** @@ -361,13 +448,17 @@ class BuildEncodeNode extends ComputeNode { * Signature: URLUpdateNode(build_str: str) => null */ class URLUpdateNode extends ComputeNode { - constructor() { super("builder-url-update"); } + constructor() { + super("builder-url-update"); + } - compute_func(input_map) { - if (input_map.size !== 1) { throw "URLUpdateNode accepts exactly one input (build_str)"; } - const [build_str] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element - location.hash = build_str; + compute_func(input_map) { + if (input_map.size !== 1) { + throw "URLUpdateNode accepts exactly one input (build_str)"; } + const [build_str] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element + location.hash = build_str; + } } /** @@ -386,51 +477,57 @@ class URLUpdateNode extends ComputeNode { * level-input: int) => Build | null */ class BuildAssembleNode extends ComputeNode { - constructor() { super("builder-make-build"); } + constructor() { + super("builder-make-build"); + } - compute_func(input_map) { - let equipments = [ - input_map.get('helmet-input'), - input_map.get('chestplate-input'), - input_map.get('leggings-input'), - input_map.get('boots-input'), - input_map.get('ring1-input'), - input_map.get('ring2-input'), - input_map.get('bracelet-input'), - input_map.get('necklace-input'), - input_map.get('weaponTome1-input'), - input_map.get('weaponTome2-input'), - input_map.get('armorTome1-input'), - input_map.get('armorTome2-input'), - input_map.get('armorTome3-input'), - input_map.get('armorTome4-input'), - input_map.get('guildTome1-input') - ]; - let weapon = input_map.get('weapon-input'); - let level = parseInt(input_map.get('level-input')); - if (isNaN(level)) { - level = 106; - } - - let all_none = weapon.statMap.has('NONE'); - for (const item of equipments) { - all_none = all_none && item.statMap.has('NONE'); - } - if (all_none && !location.hash) { - return null; - } - return new Build(level, equipments, weapon); + compute_func(input_map) { + let equipments = [ + input_map.get("helmet-input"), + input_map.get("chestplate-input"), + input_map.get("leggings-input"), + input_map.get("boots-input"), + input_map.get("ring1-input"), + input_map.get("ring2-input"), + input_map.get("bracelet-input"), + input_map.get("necklace-input"), + input_map.get("weaponTome1-input"), + input_map.get("weaponTome2-input"), + input_map.get("armorTome1-input"), + input_map.get("armorTome2-input"), + input_map.get("armorTome3-input"), + input_map.get("armorTome4-input"), + input_map.get("guildTome1-input"), + ]; + let weapon = input_map.get("weapon-input"); + let level = parseInt(input_map.get("level-input")); + if (isNaN(level)) { + level = 106; } + + let all_none = weapon.statMap.has("NONE"); + for (const item of equipments) { + all_none = all_none && item.statMap.has("NONE"); + } + if (all_none && !location.hash) { + return null; + } + return new Build(level, equipments, weapon); + } } class PlayerClassNode extends ValueCheckComputeNode { - constructor(name) { super(name); } + constructor(name) { + super(name); + } - 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 - return wep_to_class.get(build.weapon.statMap.get('type')); + 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 + return wep_to_class.get(build.weapon.statMap.get("type")); + } } /** @@ -440,43 +537,48 @@ class PlayerClassNode extends ValueCheckComputeNode { * Signature: PowderInputNode() => List[powder] | null */ class PowderInputNode extends InputNode { + constructor(name, input_field) { + super(name, input_field); + } - constructor(name, input_field) { super(name, input_field); } - - compute_func(input_map) { - // TODO: haha improve efficiency to O(n) dumb - let input = this.input_field.value.trim(); - let powdering = []; - let errorederrors = []; - while (input) { - let first = input.slice(0, 2); - let powder = powderIDs.get(first); - if (powder === undefined) { - if (first.length > 0) { - errorederrors.push(first); - } else { - break; - } - } else { - powdering.push(powder); - } - input = input.slice(2); - } - - if (this.input_field.getAttribute("placeholder") != null) { - let placeholder = this.input_field.getAttribute("placeholder"); - if (placeholder.includes(" slots") && parseInt(placeholder[0]) < powdering.length) - errorederrors.push("Too many powders: " + powdering.length); - } - - if (errorederrors.length) { - this.input_field.classList.add("is-invalid"); + compute_func(input_map) { + // TODO: haha improve efficiency to O(n) dumb + let input = this.input_field.value.trim(); + let powdering = []; + let errorederrors = []; + while (input) { + let first = input.slice(0, 2); + let powder = powderIDs.get(first); + if (powder === undefined) { + if (first.length > 0) { + errorederrors.push(first); } else { - this.input_field.classList.remove("is-invalid"); + break; } - - return powdering; + } else { + powdering.push(powder); + } + input = input.slice(2); } + + if (this.input_field.getAttribute("placeholder") != null) { + let placeholder = this.input_field.getAttribute("placeholder"); + if ( + placeholder.includes(" slots") && + parseInt(placeholder.substring(0, placeholder.indexOf(" "))) < + powdering.length + ) + errorederrors.push("Too many powders: " + powdering.length); + } + + if (errorederrors.length) { + this.input_field.classList.add("is-invalid"); + } else { + this.input_field.classList.remove("is-invalid"); + } + + return powdering; + } } /** @@ -487,62 +589,68 @@ class PowderInputNode extends InputNode { * Signature: SpellSelectNode(build: Build) => [Spell, SpellParts] */ class SpellSelectNode extends ComputeNode { - constructor(spell) { - super("builder-spell"+spell.base_spell+"-select"); - this.spell = spell; - } + constructor(spell) { + super("builder-spell" + spell.base_spell + "-select"); + this.spell = spell; + } - compute_func(input_map) { - const build = input_map.get('build'); - let stats = build.statMap; - // TODO: apply major ids... DOOM..... + compute_func(input_map) { + const build = input_map.get("build"); + let stats = build.statMap; + // TODO: apply major ids... DOOM..... - return [this.spell, this.spell.parts]; - } + return [this.spell, this.spell.parts]; + } } /* * Get all defensive stats for this build. */ function getDefenseStats(stats) { - let defenseStats = []; - let def_pct = skillPointsToPercentage(stats.get('def')) * skillpoint_final_mult[3]; - let agi_pct = skillPointsToPercentage(stats.get('agi')) * skillpoint_final_mult[4]; - //total hp - let totalHp = stats.get("hp") + stats.get("hpBonus"); - if (totalHp < 5) totalHp = 5; - defenseStats.push(totalHp); - //EHP - let ehp = [totalHp, totalHp]; - let defMult = (2 - stats.get("classDef")); - for (const [k, v] of stats.get("defMult").entries()) { - defMult *= (1 - v/100); - } - // newehp = oldehp / [0.1 * A(x) + (1 - A(x)) * (1 - D(x))] - ehp[0] = ehp[0] / (0.1*agi_pct + (1-agi_pct) * (1-def_pct)); - ehp[0] /= defMult; - // ehp[0] /= (1-def_pct)*(1-agi_pct)*defMult; - ehp[1] /= (1-def_pct)*defMult; - defenseStats.push(ehp); - //HPR - let totalHpr = rawToPct(stats.get("hprRaw"), stats.get("hprPct")/100.); - defenseStats.push(totalHpr); - //EHPR - let ehpr = [totalHpr, totalHpr]; - ehpr[0] /= (1-def_pct)*(1-agi_pct)*defMult; - ehpr[1] /= (1-def_pct)*defMult; - defenseStats.push(ehpr); - //skp stats - defenseStats.push([ def_pct*100, agi_pct*100]); - //eledefs - TODO POWDERS - let eledefs = [0, 0, 0, 0, 0]; - for(const i in skp_elements){ //kinda jank but ok - eledefs[i] = rawToPct(stats.get(skp_elements[i] + "Def"), stats.get(skp_elements[i] + "DefPct")/100.); - } - defenseStats.push(eledefs); - - //[total hp, [ehp w/ agi, ehp w/o agi], total hpr, [ehpr w/ agi, ehpr w/o agi], [def%, agi%], [edef,tdef,wdef,fdef,adef]] - return defenseStats; + let defenseStats = []; + let def_pct = + skillPointsToPercentage(stats.get("def")) * skillpoint_final_mult[3]; + let agi_pct = + skillPointsToPercentage(stats.get("agi")) * skillpoint_final_mult[4]; + //total hp + let totalHp = stats.get("hp") + stats.get("hpBonus"); + if (totalHp < 5) totalHp = 5; + defenseStats.push(totalHp); + //EHP + let ehp = [totalHp, totalHp]; + let defMult = 2 - stats.get("classDef"); + for (const [k, v] of stats.get("defMult").entries()) { + defMult *= 1 - v / 100; + } + // newehp = oldehp / [0.1 * A(x) + (1 - A(x)) * (1 - D(x))] + ehp[0] = ehp[0] / (0.1 * agi_pct + (1 - agi_pct) * (1 - def_pct)); + ehp[0] /= defMult; + // ehp[0] /= (1-def_pct)*(1-agi_pct)*defMult; + ehp[1] /= (1 - def_pct) * defMult; + defenseStats.push(ehp); + //HPR + let totalHpr = rawToPct(stats.get("hprRaw"), stats.get("hprPct") / 100); + defenseStats.push(totalHpr); + //EHPR + let ehpr = [totalHpr, totalHpr]; + ehpr[0] /= (1 - def_pct) * (1 - agi_pct) * defMult; + ehpr[1] /= (1 - def_pct) * defMult; + defenseStats.push(ehpr); + //skp stats + defenseStats.push([def_pct * 100, agi_pct * 100]); + //eledefs - TODO POWDERS + let eledefs = [0, 0, 0, 0, 0]; + for (const i in skp_elements) { + //kinda jank but ok + eledefs[i] = rawToPct( + stats.get(skp_elements[i] + "Def"), + stats.get(skp_elements[i] + "DefPct") / 100 + ); + } + defenseStats.push(eledefs); + + //[total hp, [ehp w/ agi, ehp w/o agi], total hpr, [ehpr w/ agi, ehpr w/o agi], [def%, agi%], [edef,tdef,wdef,fdef,adef]] + return defenseStats; } /** @@ -554,101 +662,115 @@ function getDefenseStats(stats) { * spell-info: [Spell, SpellParts]) => List[SpellDamage] */ class SpellDamageCalcNode extends ComputeNode { - constructor(spell_num) { - super("builder-spell"+spell_num+"-calc"); - } + constructor(spell_num) { + super("builder-spell" + spell_num + "-calc"); + } - compute_func(input_map) { - const weapon = input_map.get('build').weapon.statMap; - const spell_info = input_map.get('spell-info'); - const spell = spell_info[0]; - const spell_parts = spell_info[1]; - const stats = input_map.get('stats'); - const skillpoints = [ - stats.get('str'), - stats.get('dex'), - stats.get('int'), - stats.get('def'), - stats.get('agi') + compute_func(input_map) { + const weapon = input_map.get("build").weapon.statMap; + const spell_info = input_map.get("spell-info"); + const spell = spell_info[0]; + const spell_parts = spell_info[1]; + const stats = input_map.get("stats"); + const skillpoints = [ + stats.get("str"), + stats.get("dex"), + stats.get("int"), + stats.get("def"), + stats.get("agi"), + ]; + let spell_results = []; + let spell_result_map = new Map(); + const use_speed = "use_atkspd" in spell ? spell.use_atkspd : true; + const use_spell = "scaling" in spell ? spell.scaling === "spell" : true; + + // TODO: move preprocessing to separate node/node chain + for (const part of spell_parts) { + let spell_result; + if ("multipliers" in part) { + // damage type spell + let results = calculateSpellDamage( + stats, + weapon, + part.multipliers, + use_spell, + !use_speed, + spell.base_spell + "." + part.name + ); + spell_result = { + type: "damage", + normal_min: results[2].map((x) => x[0]), + normal_max: results[2].map((x) => x[1]), + normal_total: results[0], + crit_min: results[2].map((x) => x[2]), + crit_max: results[2].map((x) => x[3]), + crit_total: results[1], + }; + } else if ("power" in part) { + // TODO: wynn2 formula + let _heal_amount = + part.power * getDefenseStats(stats)[0] * (stats.get("healPct") / 100); + spell_result = { + type: "heal", + heal_amount: _heal_amount, + }; + } else { + continue; + } + spell_result.name = part.name; + spell_results.push(spell_result); + spell_result_map.set(part.name, spell_result); + } + for (const part of spell_parts) { + if ("hits" in part) { + let spell_result = { + normal_min: [0, 0, 0, 0, 0, 0], + normal_max: [0, 0, 0, 0, 0, 0], + normal_total: [0, 0], + crit_min: [0, 0, 0, 0, 0, 0], + crit_max: [0, 0, 0, 0, 0, 0], + crit_total: [0, 0], + heal_amount: 0, + }; + const dam_res_keys = [ + "normal_min", + "normal_max", + "normal_total", + "crit_min", + "crit_max", + "crit_total", ]; - let spell_results = [] - let spell_result_map = new Map(); - const use_speed = (('use_atkspd' in spell) ? spell.use_atkspd : true); - const use_spell = (('scaling' in spell) ? spell.scaling === 'spell' : true); - - // TODO: move preprocessing to separate node/node chain - for (const part of spell_parts) { - let spell_result; - if ('multipliers' in part) { // damage type spell - let results = calculateSpellDamage(stats, weapon, part.multipliers, use_spell, !use_speed, spell.base_spell + '.' + part.name); - spell_result = { - type: "damage", - normal_min: results[2].map(x => x[0]), - normal_max: results[2].map(x => x[1]), - normal_total: results[0], - crit_min: results[2].map(x => x[2]), - crit_max: results[2].map(x => x[3]), - crit_total: results[1], - } - } else if ('power' in part) { - // TODO: wynn2 formula - let _heal_amount = (part.power * getDefenseStats(stats)[0] * (stats.get('healPct')/100)); - spell_result = { - type: "heal", - heal_amount: _heal_amount - } + for (const [subpart_name, hits] of Object.entries(part.hits)) { + const subpart = spell_result_map.get(subpart_name); + if (!subpart) { + continue; + } + if (spell_result.type) { + if (subpart.type !== spell_result.type) { + throw "SpellCalc total subpart type mismatch"; } - else { - continue; + } else { + spell_result.type = subpart.type; + } + if (spell_result.type === "damage") { + for (const key of dam_res_keys) { + for (let i in spell_result.normal_min) { + spell_result[key][i] += subpart[key][i] * hits; + } } - spell_result.name = part.name; - spell_results.push(spell_result); - spell_result_map.set(part.name, spell_result); + } else { + spell_result.heal_amount += subpart.heal_amount; + } } - for (const part of spell_parts) { - if ('hits' in part) { - let spell_result = { - normal_min: [0, 0, 0, 0, 0, 0], - normal_max: [0, 0, 0, 0, 0, 0], - normal_total: [0, 0], - crit_min: [0, 0, 0, 0, 0, 0], - crit_max: [0, 0, 0, 0, 0, 0], - crit_total: [0, 0], - heal_amount: 0 - } - const dam_res_keys = ['normal_min', 'normal_max', 'normal_total', 'crit_min', 'crit_max', 'crit_total']; - for (const [subpart_name, hits] of Object.entries(part.hits)) { - const subpart = spell_result_map.get(subpart_name); - if (!subpart) { continue; } - if (spell_result.type) { - if (subpart.type !== spell_result.type) { - throw "SpellCalc total subpart type mismatch"; - } - } - else { - spell_result.type = subpart.type; - } - if (spell_result.type === 'damage') { - for (const key of dam_res_keys) { - for (let i in spell_result.normal_min) { - spell_result[key][i] += subpart[key][i] * hits; - } - } - } - else { - spell_result.heal_amount += subpart.heal_amount; - } - } - spell_result.name = part.name; - spell_results.push(spell_result); - spell_result_map.set(part.name, spell_result); - } - } - return spell_results; + spell_result.name = part.name; + spell_results.push(spell_result); + spell_result_map.set(part.name, spell_result); + } } + return spell_results; + } } - /** * Display spell damage from spell parts. * Currently kinda janky / TODO while we rework the internal rep. of spells. @@ -658,22 +780,29 @@ class SpellDamageCalcNode extends ComputeNode { * spell-damage: List[SpellDamage]) => null */ class SpellDisplayNode extends ComputeNode { - constructor(spell_num) { - super("builder-spell"+spell_num+"-display"); - this.spell_idx = spell_num; - } + constructor(spell_num) { + super("builder-spell" + spell_num + "-display"); + this.spell_idx = spell_num; + } - compute_func(input_map) { - const stats = input_map.get('stats'); - const spell_info = input_map.get('spell-info'); - const damages = input_map.get('spell-damage'); - const spell = spell_info[0]; + compute_func(input_map) { + const stats = input_map.get("stats"); + const spell_info = input_map.get("spell-info"); + const damages = input_map.get("spell-damage"); + const spell = spell_info[0]; - const i = this.spell_idx; - let parent_elem = document.getElementById("spell"+i+"-info"); - let overallparent_elem = document.getElementById("spell"+i+"-infoAvg"); - displaySpellDamage(parent_elem, overallparent_elem, stats, spell, i, damages); - } + const i = this.spell_idx; + let parent_elem = document.getElementById("spell" + i + "-info"); + let overallparent_elem = document.getElementById("spell" + i + "-infoAvg"); + displaySpellDamage( + parent_elem, + overallparent_elem, + stats, + spell, + i, + damages + ); + } } /** @@ -682,20 +811,35 @@ class SpellDisplayNode extends ComputeNode { * Signature: BuildDisplayNode(build: Build) => null */ class BuildDisplayNode extends ComputeNode { - constructor() { super("builder-stats-display"); } + constructor() { + super("builder-stats-display"); + } - compute_func(input_map) { - const build = input_map.get('build'); - const stats = input_map.get('stats'); - displayBuildStats('overall-stats', build, build_all_display_commands, stats); - displayBuildStats("offensive-stats", build, build_offensive_display_commands, stats); - displaySetBonuses("set-info", build); - // TODO: move weapon out? - displayDefenseStats(document.getElementById("defensive-stats"), stats); + compute_func(input_map) { + const build = input_map.get("build"); + const stats = input_map.get("stats"); + displayBuildStats( + "overall-stats", + build, + build_all_display_commands, + stats + ); + displayBuildStats( + "offensive-stats", + build, + build_offensive_display_commands, + stats + ); + displaySetBonuses("set-info", build); + // TODO: move weapon out? + displayDefenseStats(document.getElementById("defensive-stats"), stats); - displayPoisonDamage(document.getElementById("build-poison-stats"), build); - displayEquipOrder(document.getElementById("build-order"), build.equip_order); - } + displayPoisonDamage(document.getElementById("build-poison-stats"), build); + displayEquipOrder( + document.getElementById("build-order"), + build.equip_order + ); + } } /** @@ -705,103 +849,150 @@ class BuildDisplayNode extends ComputeNode { * Signature: DisplayBuildWarningNode(build: Build, str: int, dex: int, int: int, def: int, agi: int) => null */ class DisplayBuildWarningsNode extends ComputeNode { - constructor() { super("builder-show-warnings"); } + constructor() { + super("builder-show-warnings"); + } - compute_func(input_map) { - const build = input_map.get('build'); - const min_assigned = build.base_skillpoints; - const base_totals = build.total_skillpoints; - const skillpoints = [ - input_map.get('str'), - input_map.get('dex'), - input_map.get('int'), - input_map.get('def'), - input_map.get('agi') - ]; - let skp_effects = ["% more damage dealt.","% chance to crit.","% spell cost reduction.","% less damage taken.","% chance to dodge."]; - let total_assigned = 0; - for (let i in skp_order){ //big bren - const assigned = skillpoints[i] - base_totals[i] + min_assigned[i] - setText(skp_order[i] + "-skp-base", "Original: " + base_totals[i]); - setText(skp_order[i] + "-skp-assign", "Assign: " + assigned); - setValue(skp_order[i] + "-skp", skillpoints[i]); - let linebreak = document.createElement("br"); - linebreak.classList.add("itemp"); - setText(skp_order[i] + "-skp-pct", (skillPointsToPercentage(skillpoints[i])*100*skillpoint_final_mult[i]).toFixed(1).concat(skp_effects[i])); - document.getElementById(skp_order[i]+"-warnings").textContent = '' - if (assigned > 100) { - let skp_warning = document.createElement("p"); - skp_warning.classList.add("warning", "small-text"); - skp_warning.textContent += "Cannot assign " + assigned + " skillpoints in " + ["Strength","Dexterity","Intelligence","Defense","Agility"][i] + " manually."; - document.getElementById(skp_order[i]+"-warnings").appendChild(skp_warning); - } - total_assigned += assigned; - } - - let summarybox = document.getElementById("summary-box"); - summarybox.textContent = ""; - let skpRow = document.createElement("p"); - - let remainingSkp = document.createElement("p"); - remainingSkp.classList.add("scaled-font"); - let remainingSkpTitle = document.createElement("b"); - remainingSkpTitle.textContent = "Assigned " + total_assigned + " skillpoints. Remaining skillpoints: "; - let remainingSkpContent = document.createElement("b"); - remainingSkpContent.textContent = "" + (levelToSkillPoints(build.level) - total_assigned); - remainingSkpContent.classList.add(levelToSkillPoints(build.level) - total_assigned < 0 ? "negative" : "positive"); - - remainingSkp.appendChild(remainingSkpTitle); - remainingSkp.appendChild(remainingSkpContent); - - summarybox.append(skpRow); - summarybox.append(remainingSkp); - if(total_assigned > levelToSkillPoints(build.level)){ - let skpWarning = document.createElement("span"); - //skpWarning.classList.add("itemp"); - skpWarning.classList.add("warning"); - skpWarning.textContent = "WARNING: Too many skillpoints need to be assigned!"; - let skpCount = document.createElement("p"); - skpCount.classList.add("warning"); - skpCount.textContent = "For level " + (build.level>101 ? "101+" : build.level) + ", there are only " + levelToSkillPoints(build.level) + " skill points available."; - summarybox.append(skpWarning); - summarybox.append(skpCount); - } - let lvlWarning; - for (const item of build.items) { - let item_lvl; - if (item.statMap.get("crafted")) { - //item_lvl = item.get("lvlLow") + "-" + item.get("lvl"); - item_lvl = item.statMap.get("lvlLow"); - } - else { - item_lvl = item.statMap.get("lvl"); - } - - if (build.level < item_lvl) { - if (!lvlWarning) { - lvlWarning = document.createElement("p"); - lvlWarning.classList.add("itemp"); lvlWarning.classList.add("warning"); - lvlWarning.textContent = "WARNING: A level " + build.level + " player cannot use some piece(s) of this build." - } - let baditem = document.createElement("p"); - baditem.classList.add("nocolor"); baditem.classList.add("itemp"); - baditem.textContent = item.statMap.get("displayName") + " requires level " + item_lvl + " to use."; - lvlWarning.appendChild(baditem); - } - } - if(lvlWarning){ - summarybox.append(lvlWarning); - } - for (const [setName, count] of build.activeSetCounts) { - const bonus = sets.get(setName).bonuses[count-1]; - if (bonus["illegal"]) { - let setWarning = document.createElement("p"); - setWarning.classList.add("itemp"); setWarning.classList.add("warning"); - setWarning.textContent = "WARNING: illegal item combination: " + setName - summarybox.append(setWarning); - } - } + compute_func(input_map) { + const build = input_map.get("build"); + const min_assigned = build.base_skillpoints; + const base_totals = build.total_skillpoints; + const skillpoints = [ + input_map.get("str"), + input_map.get("dex"), + input_map.get("int"), + input_map.get("def"), + input_map.get("agi"), + ]; + let skp_effects = [ + "% more damage dealt.", + "% chance to crit.", + "% spell cost reduction.", + "% less damage taken.", + "% chance to dodge.", + ]; + let total_assigned = 0; + for (let i in skp_order) { + //big bren + const assigned = skillpoints[i] - base_totals[i] + min_assigned[i]; + setText(skp_order[i] + "-skp-base", "Original: " + base_totals[i]); + setText(skp_order[i] + "-skp-assign", "Assign: " + assigned); + setValue(skp_order[i] + "-skp", skillpoints[i]); + let linebreak = document.createElement("br"); + linebreak.classList.add("itemp"); + setText( + skp_order[i] + "-skp-pct", + ( + skillPointsToPercentage(skillpoints[i]) * + 100 * + skillpoint_final_mult[i] + ) + .toFixed(1) + .concat(skp_effects[i]) + ); + document.getElementById(skp_order[i] + "-warnings").textContent = ""; + if (assigned > 100) { + let skp_warning = document.createElement("p"); + skp_warning.classList.add("warning", "small-text"); + skp_warning.textContent += + "Cannot assign " + + assigned + + " skillpoints in " + + ["Strength", "Dexterity", "Intelligence", "Defense", "Agility"][i] + + " manually."; + document + .getElementById(skp_order[i] + "-warnings") + .appendChild(skp_warning); + } + total_assigned += assigned; } + + let summarybox = document.getElementById("summary-box"); + summarybox.textContent = ""; + let skpRow = document.createElement("p"); + + let remainingSkp = document.createElement("p"); + remainingSkp.classList.add("scaled-font"); + let remainingSkpTitle = document.createElement("b"); + remainingSkpTitle.textContent = + "Assigned " + total_assigned + " skillpoints. Remaining skillpoints: "; + let remainingSkpContent = document.createElement("b"); + remainingSkpContent.textContent = + "" + (levelToSkillPoints(build.level) - total_assigned); + remainingSkpContent.classList.add( + levelToSkillPoints(build.level) - total_assigned < 0 + ? "negative" + : "positive" + ); + + remainingSkp.appendChild(remainingSkpTitle); + remainingSkp.appendChild(remainingSkpContent); + + summarybox.append(skpRow); + summarybox.append(remainingSkp); + if (total_assigned > levelToSkillPoints(build.level)) { + let skpWarning = document.createElement("span"); + //skpWarning.classList.add("itemp"); + skpWarning.classList.add("warning"); + skpWarning.textContent = + "WARNING: Too many skillpoints need to be assigned!"; + let skpCount = document.createElement("p"); + skpCount.classList.add("warning"); + skpCount.textContent = + "For level " + + (build.level > 101 ? "101+" : build.level) + + ", there are only " + + levelToSkillPoints(build.level) + + " skill points available."; + summarybox.append(skpWarning); + summarybox.append(skpCount); + } + let lvlWarning; + for (const item of build.items) { + let item_lvl; + if (item.statMap.get("crafted")) { + //item_lvl = item.get("lvlLow") + "-" + item.get("lvl"); + item_lvl = item.statMap.get("lvlLow"); + } else { + item_lvl = item.statMap.get("lvl"); + } + + if (build.level < item_lvl) { + if (!lvlWarning) { + lvlWarning = document.createElement("p"); + lvlWarning.classList.add("itemp"); + lvlWarning.classList.add("warning"); + lvlWarning.textContent = + "WARNING: A level " + + build.level + + " player cannot use some piece(s) of this build."; + } + let baditem = document.createElement("p"); + baditem.classList.add("nocolor"); + baditem.classList.add("itemp"); + baditem.textContent = + item.statMap.get("displayName") + + " requires level " + + item_lvl + + " to use."; + lvlWarning.appendChild(baditem); + } + } + if (lvlWarning) { + summarybox.append(lvlWarning); + } + for (const [setName, count] of build.activeSetCounts) { + const bonus = sets.get(setName).bonuses[count - 1]; + if (bonus["illegal"]) { + let setWarning = document.createElement("p"); + setWarning.classList.add("itemp"); + setWarning.classList.add("warning"); + setWarning.textContent = + "WARNING: illegal item combination: " + setName; + summarybox.append(setWarning); + } + } + } } /** @@ -810,17 +1001,19 @@ class DisplayBuildWarningsNode extends ComputeNode { * Signature: AggregateStatsNode(*args) => StatMap */ class AggregateStatsNode extends ComputeNode { - constructor() { super("builder-aggregate-stats"); } + constructor() { + super("builder-aggregate-stats"); + } - compute_func(input_map) { - const output_stats = new Map(); - for (const [k, v] of input_map.entries()) { - for (const [k2, v2] of v.entries()) { - merge_stat(output_stats, k2, v2); - } - } - return output_stats; + compute_func(input_map) { + const output_stats = new Map(); + for (const [k, v] of input_map.entries()) { + for (const [k2, v2] of v.entries()) { + merge_stat(output_stats, k2, v2); + } } + return output_stats; + } } /** @@ -829,24 +1022,30 @@ class AggregateStatsNode extends ComputeNode { * Signature: AggregateEditableIDNode(build: Build, weapon: Item, *args) => StatMap */ class AggregateEditableIDNode extends ComputeNode { - constructor() { super("builder-aggregate-inputs"); } + constructor() { + super("builder-aggregate-inputs"); + } - compute_func(input_map) { - const build = input_map.get('build'); input_map.delete('build'); + compute_func(input_map) { + const build = input_map.get("build"); + input_map.delete("build"); - const output_stats = new Map(build.statMap); - for (const [k, v] of input_map.entries()) { - output_stats.set(k, v); - } - - output_stats.set('classDef', classDefenseMultipliers.get(build.weapon.statMap.get("type"))); - return output_stats; + const output_stats = new Map(build.statMap); + for (const [k, v] of input_map.entries()) { + output_stats.set(k, v); } + + output_stats.set( + "classDef", + classDefenseMultipliers.get(build.weapon.statMap.get("type")) + ); + return output_stats; + } } let edit_id_output; function resetEditableIDs() { - edit_id_output.notify(); + edit_id_output.notify(); } /** * Set the editble id fields. @@ -854,32 +1053,35 @@ function resetEditableIDs() { * Signature: EditableIDSetterNode(build: Build) => null */ class EditableIDSetterNode extends ComputeNode { - constructor(notify_nodes) { - super("builder-id-setter"); - this.notify_nodes = notify_nodes.slice(); - } + constructor(notify_nodes) { + super("builder-id-setter"); + this.notify_nodes = notify_nodes.slice(); + } - compute_func(input_map) { - if (input_map.size !== 1) { throw "EditableIDSetterNode accepts exactly one input (build)"; } - const [build] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element - for (const id of editable_item_fields) { - const val = build.statMap.get(id); - document.getElementById(id).value = val; - document.getElementById(id+'-base').textContent = 'Original Value: ' + val; - } + compute_func(input_map) { + if (input_map.size !== 1) { + throw "EditableIDSetterNode accepts exactly one input (build)"; } + const [build] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element + for (const id of editable_item_fields) { + const val = build.statMap.get(id); + document.getElementById(id).value = val; + document.getElementById(id + "-base").textContent = + "Original Value: " + val; + } + } - notify() { - this.mark_dirty(); - this.update(); - // NOTE: DO NOT merge these loops for performance reasons!!! - for (const node of this.notify_nodes) { - node.mark_dirty(); - } - for (const node of this.notify_nodes) { - node.update(); - } + notify() { + this.mark_dirty(); + this.update(); + // NOTE: DO NOT merge these loops for performance reasons!!! + for (const node of this.notify_nodes) { + node.mark_dirty(); } + for (const node of this.notify_nodes) { + node.update(); + } + } } /** @@ -889,25 +1091,28 @@ class EditableIDSetterNode extends ComputeNode { * Signature: SkillPointSetterNode(build: Build) => null */ class SkillPointSetterNode extends ComputeNode { - constructor(notify_nodes) { - super("builder-skillpoint-setter"); - this.notify_nodes = notify_nodes.slice(); - } + constructor(notify_nodes) { + super("builder-skillpoint-setter"); + this.notify_nodes = notify_nodes.slice(); + } - compute_func(input_map) { - if (input_map.size !== 1) { throw "SkillPointSetterNode accepts exactly one input (build)"; } - const [build] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element - for (const [idx, elem] of skp_order.entries()) { - document.getElementById(elem+'-skp').value = build.total_skillpoints[idx]; - } - // NOTE: DO NOT merge these loops for performance reasons!!! - for (const node of this.notify_nodes) { - node.mark_dirty(); - } - for (const node of this.notify_nodes) { - node.update(); - } + compute_func(input_map) { + if (input_map.size !== 1) { + throw "SkillPointSetterNode accepts exactly one input (build)"; } + const [build] = input_map.values(); // Extract values, pattern match it into size one list and bind to first element + for (const [idx, elem] of skp_order.entries()) { + document.getElementById(elem + "-skp").value = + build.total_skillpoints[idx]; + } + // NOTE: DO NOT merge these loops for performance reasons!!! + for (const node of this.notify_nodes) { + node.mark_dirty(); + } + for (const node of this.notify_nodes) { + node.update(); + } + } } /** @@ -916,28 +1121,30 @@ class SkillPointSetterNode extends ComputeNode { * Signature: SumNumberInputNode() => int */ class SumNumberInputNode extends InputNode { - compute_func(input_map) { - let value = this.input_field.value; - if (value === "") { value = "0"; } - - let input_num = 0; - if (value.includes("+")) { - let skp = value.split("+"); - for (const s of skp) { - const val = parseInt(s,10); - if (isNaN(val)) { - return null; - } - input_num += val; - } - } else { - input_num = parseInt(value,10); - if (isNaN(input_num)) { - return null; - } - } - return input_num; + compute_func(input_map) { + let value = this.input_field.value; + if (value === "") { + value = "0"; } + + let input_num = 0; + if (value.includes("+")) { + let skp = value.split("+"); + for (const s of skp) { + const val = parseInt(s, 10); + if (isNaN(val)) { + return null; + } + input_num += val; + } + } else { + input_num = parseInt(value, 10); + if (isNaN(input_num)) { + return null; + } + } + return input_num; + } } let item_nodes = []; @@ -950,166 +1157,198 @@ let edit_agg_node; let atree_graph_creator; function builder_graph_init() { - // Phase 1/3: Set up item input, propagate updates, etc. + // Phase 1/3: Set up item input, propagate updates, etc. - // Bind item input fields to input nodes, and some display stuff (for auto colorizing stuff). - for (const [eq, display_elem, none_item] of zip3(equipment_fields, build_fields, none_items)) { - let input_field = document.getElementById(eq+"-choice"); - let item_image = document.getElementById(eq+"-img"); + // Bind item input fields to input nodes, and some display stuff (for auto colorizing stuff). + for (const [eq, display_elem, none_item] of zip3( + equipment_fields, + build_fields, + none_items + )) { + let input_field = document.getElementById(eq + "-choice"); + let item_image = document.getElementById(eq + "-img"); - let item_input = new ItemInputNode(eq+'-input', input_field, none_item); - item_nodes.push(item_input); - new ItemInputDisplayNode(eq+'-input-display', eq, item_image).link_to(item_input); - new ItemDisplayNode(eq+'-item-display', display_elem).link_to(item_input); - //new PrintNode(eq+'-debug').link_to(item_input); - //document.querySelector("#"+eq+"-tooltip").setAttribute("onclick", "collapse_element('#"+ eq +"-tooltip');"); //toggle_plus_minus('" + eq + "-pm'); + let item_input = new ItemInputNode(eq + "-input", input_field, none_item); + item_nodes.push(item_input); + new ItemInputDisplayNode(eq + "-input-display", eq, item_image).link_to( + item_input + ); + new ItemDisplayNode(eq + "-item-display", display_elem).link_to(item_input); + //new PrintNode(eq+'-debug').link_to(item_input); + //document.querySelector("#"+eq+"-tooltip").setAttribute("onclick", "collapse_element('#"+ eq +"-tooltip');"); //toggle_plus_minus('" + eq + "-pm'); + } + for (const [eq, none_item] of zip2(tome_fields, [ + none_tomes[0], + none_tomes[0], + none_tomes[1], + none_tomes[1], + none_tomes[1], + none_tomes[1], + none_tomes[2], + ])) { + let input_field = document.getElementById(eq + "-choice"); + let item_image = document.getElementById(eq + "-img"); + + let item_input = new ItemInputNode(eq + "-input", input_field, none_item); + item_nodes.push(item_input); + new ItemInputDisplayNode(eq + "-input-display", eq, item_image).link_to( + item_input + ); + } + + // weapon image changer node. + let weapon_image = document.getElementById("weapon-img"); + let weapon_dps = document.getElementById("weapon-dps"); + new WeaponInputDisplayNode("weapon-type", weapon_image, weapon_dps).link_to( + item_nodes[8] + ); + + // Level input node. + let level_input = new InputNode( + "level-input", + document.getElementById("level-choice") + ); + + // linking to atree verification + atree_validate.link_to(level_input, "level"); + + // "Build" now only refers to equipment and level (no powders). Powders are injected before damage calculation / stat display. + build_node = new BuildAssembleNode(); + for (const input of item_nodes) { + build_node.link_to(input); + } + build_node.link_to(level_input); + + let build_encode_node = new BuildEncodeNode(); + build_encode_node.link_to(build_node, "build"); + + let url_update_node = new URLUpdateNode(); + url_update_node.link_to(build_encode_node, "build-str"); + + for (const input of powder_inputs) { + let powder_node = new PowderInputNode( + input, + document.getElementById(input) + ); + powder_nodes.push(powder_node); + build_encode_node.link_to(powder_node, input); + } + + item_nodes[0].link_to(powder_nodes[0], "powdering"); + item_nodes[1].link_to(powder_nodes[1], "powdering"); + item_nodes[2].link_to(powder_nodes[2], "powdering"); + item_nodes[3].link_to(powder_nodes[3], "powdering"); + item_nodes[8].link_to(powder_nodes[4], "powdering"); + + // 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(); + edit_agg_node = new AggregateEditableIDNode(); + edit_agg_node.link_to(build_node, "build"); + for (const field of editable_item_fields) { + // Create nodes that listens to each editable id input, the node name should match the "id" + const elem = document.getElementById(field); + const node = new SumNumberInputNode("builder-" + field + "-input", elem); + + edit_agg_node.link_to(node, field); + edit_input_nodes.push(node); + } + // Edit IDs setter declared up here to set ids so they will be populated by default. + edit_id_output = new EditableIDSetterNode(edit_input_nodes); // Makes shallow copy of list. + edit_id_output.link_to(build_node); + + for (const skp of skp_order) { + const elem = document.getElementById(skp + "-skp"); + const node = new SumNumberInputNode("builder-" + skp + "-input", elem); + + edit_agg_node.link_to(node, skp); + build_encode_node.link_to(node, skp); + edit_input_nodes.push(node); + skp_inputs.push(node); + } + stat_agg_node.link_to(edit_agg_node); + + // Phase 3/3: Set up atree stuff. + + let class_node = new PlayerClassNode("builder-class").link_to(build_node); + // 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"); + + build_encode_node + .link_to(atree_node, "atree") + .link_to(atree_state_node, "atree-state"); + + // --------------------------------------------------------------- + // Trigger the update cascade for build! + // --------------------------------------------------------------- + for (const input_node of item_nodes.concat(powder_nodes)) { + input_node.update(); + } + armor_powder_node.update(); + level_input.update(); + + atree_graph_creator = new AbilityTreeEnsureNodesNode( + build_node, + stat_agg_node + ).link_to(atree_collect_spells, "spells"); + + // kinda janky, manually set atree and update. Some wasted compute here + if (atree_data !== null && atree_node.value !== null) { + // janky check if atree is valid + const atree_state = atree_state_node.value; + if (atree_data.length > 0) { + const active_nodes = decode_atree(atree_node.value, atree_data); + for (const node of active_nodes) { + atree_set_state(atree_state.get(node.ability.id), true); + } + atree_state_node.mark_dirty().update(); } - for (const [eq, none_item] of zip2(tome_fields, [none_tomes[0], none_tomes[0], none_tomes[1], none_tomes[1], none_tomes[1], none_tomes[1], none_tomes[2]])) { - let input_field = document.getElementById(eq+"-choice"); - let item_image = document.getElementById(eq+"-img"); + } - let item_input = new ItemInputNode(eq+'-input', input_field, none_item); - item_nodes.push(item_input); - new ItemInputDisplayNode(eq+'-input-display', eq, item_image).link_to(item_input); - } + // Powder specials. + 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"); + powder_special_input.update(); - // weapon image changer node. - let weapon_image = document.getElementById("weapon-img"); - let weapon_dps = document.getElementById("weapon-dps"); - new WeaponInputDisplayNode('weapon-type', weapon_image, weapon_dps).link_to(item_nodes[8]); + // Potion boost. + stat_agg_node.link_to(boosts_node, "potion-boost"); - // Level input node. - let level_input = new InputNode('level-input', document.getElementById('level-choice')); - - // linking to atree verification - atree_validate.link_to(level_input, 'level'); + // Also do something similar for skill points - // "Build" now only refers to equipment and level (no powders). Powders are injected before damage calculation / stat display. - build_node = new BuildAssembleNode(); - for (const input of item_nodes) { - build_node.link_to(input); - } - build_node.link_to(level_input); + let build_disp_node = new BuildDisplayNode(); + build_disp_node.link_to(build_node, "build"); + build_disp_node.link_to(stat_agg_node, "stats"); - let build_encode_node = new BuildEncodeNode(); - build_encode_node.link_to(build_node, 'build'); + for (const node of edit_input_nodes) { + node.update(); + } - let url_update_node = new URLUpdateNode(); - url_update_node.link_to(build_encode_node, 'build-str'); + let skp_output = new SkillPointSetterNode(edit_input_nodes); + skp_output.link_to(build_node); + let build_warnings_node = new DisplayBuildWarningsNode(); + build_warnings_node.link_to(build_node, "build"); + for (const [skp_input, skp] of zip2(skp_inputs, skp_order)) { + build_warnings_node.link_to(skp_input, skp); + } + build_warnings_node.update(); - for (const input of powder_inputs) { - let powder_node = new PowderInputNode(input, document.getElementById(input)); - powder_nodes.push(powder_node); - build_encode_node.link_to(powder_node, input); - } + // call node.update() for each skillpoint node and stat edit listener node manually + // NOTE: the text boxes for skill points are already filled out by decodeBuild() so this will fix them + // this will propagate the update to the `stat_agg_node`, and then to damage calc - item_nodes[0].link_to(powder_nodes[0], 'powdering'); - item_nodes[1].link_to(powder_nodes[1], 'powdering'); - item_nodes[2].link_to(powder_nodes[2], 'powdering'); - item_nodes[3].link_to(powder_nodes[3], 'powdering'); - item_nodes[8].link_to(powder_nodes[4], 'powdering'); - - // 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(); - edit_agg_node = new AggregateEditableIDNode(); - edit_agg_node.link_to(build_node, 'build'); - for (const field of editable_item_fields) { - // Create nodes that listens to each editable id input, the node name should match the "id" - const elem = document.getElementById(field); - const node = new SumNumberInputNode('builder-'+field+'-input', elem); - - edit_agg_node.link_to(node, field); - edit_input_nodes.push(node); - } - // Edit IDs setter declared up here to set ids so they will be populated by default. - edit_id_output = new EditableIDSetterNode(edit_input_nodes); // Makes shallow copy of list. - edit_id_output.link_to(build_node); - - for (const skp of skp_order) { - const elem = document.getElementById(skp+'-skp'); - const node = new SumNumberInputNode('builder-'+skp+'-input', elem); - - edit_agg_node.link_to(node, skp); - build_encode_node.link_to(node, skp); - edit_input_nodes.push(node); - skp_inputs.push(node); - } - stat_agg_node.link_to(edit_agg_node); - - // Phase 3/3: Set up atree stuff. - - let class_node = new PlayerClassNode('builder-class').link_to(build_node); - // 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'); - - build_encode_node.link_to(atree_node, 'atree').link_to(atree_state_node, 'atree-state'); - - // --------------------------------------------------------------- - // Trigger the update cascade for build! - // --------------------------------------------------------------- - for (const input_node of item_nodes.concat(powder_nodes)) { - input_node.update(); - } - armor_powder_node.update(); - level_input.update(); - - atree_graph_creator = new AbilityTreeEnsureNodesNode(build_node, stat_agg_node) - .link_to(atree_collect_spells, 'spells'); - - // kinda janky, manually set atree and update. Some wasted compute here - if (atree_data !== null && atree_node.value !== null) { // janky check if atree is valid - const atree_state = atree_state_node.value; - if (atree_data.length > 0) { - const active_nodes = decode_atree(atree_node.value, atree_data); - for (const node of active_nodes) { - atree_set_state(atree_state.get(node.ability.id), true); - } - atree_state_node.mark_dirty().update(); - } - } - - // Powder specials. - 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'); - powder_special_input.update(); - - // Potion boost. - stat_agg_node.link_to(boosts_node, 'potion-boost'); - - // Also do something similar for skill points - - let build_disp_node = new BuildDisplayNode() - build_disp_node.link_to(build_node, 'build'); - build_disp_node.link_to(stat_agg_node, 'stats'); - - for (const node of edit_input_nodes) { - node.update(); - } - - let skp_output = new SkillPointSetterNode(edit_input_nodes); - skp_output.link_to(build_node); - - let build_warnings_node = new DisplayBuildWarningsNode(); - build_warnings_node.link_to(build_node, 'build'); - for (const [skp_input, skp] of zip2(skp_inputs, skp_order)) { - build_warnings_node.link_to(skp_input, skp); - } - build_warnings_node.update(); - - // call node.update() for each skillpoint node and stat edit listener node manually - // NOTE: the text boxes for skill points are already filled out by decodeBuild() so this will fix them - // this will propagate the update to the `stat_agg_node`, and then to damage calc - - console.log("Set up graph"); - graph_live_update = true; + console.log("Set up graph"); + graph_live_update = true; } - From 7906795f1e401964adc1b6d99407323b5cb427ad Mon Sep 17 00:00:00 2001 From: fin444 Date: Wed, 27 Jul 2022 12:15:37 -0400 Subject: [PATCH 82/82] fix typo in html --- builder/index.html | 2 +- builder/index_full.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builder/index.html b/builder/index.html index 3c29e78..1e51d32 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
background-image: url('../media/items/new.png');
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 + 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 diff --git a/builder/index_full.html b/builder/index_full.html index e6e6252..d5160d5 100644 --- a/builder/index_full.html +++ b/builder/index_full.html @@ -263,8 +263,8 @@
-
-background-image: url('../media/items/new.png');
+
+